From: Youmin Ha Date: Thu, 23 Aug 2012 07:13:20 +0000 (+0900) Subject: 2.0_beta sync to rsa X-Git-Tag: 2.0_alpha~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f476ccb6d18ed0c7392ad5508a4c7108c1297f2a;p=framework%2Fweb%2Fweb-ui-fw.git 2.0_beta sync to rsa --- diff --git a/COPYING b/COPYING index 7706565..23acf1f 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -This software is licensed under the MIT licence (as defined +This software is licensed under the MIT license (as defined by the OSI at http://www.opensource.org/licenses/mit-license.php) **************************************************************************** @@ -38,16 +38,18 @@ widgets/jquery.mobile.maps/ svn checkout http://jquery-ui-map.googlecode.com/svn/trunk/ jquery-ui-map-read-only Checked out revision 254. -jQuery UI (http://jqueryui.com/) [MIT licence] +jQuery UI (http://jqueryui.com/) [MIT license] JQM-DateBox (https://github.com/jtsage/jquery-mobile-datebox) [CC 3.0 Attribution] developed by JTSage (http://dev.jtsage.com/blog/) -jQuery Mobile (http://jquerymobile.com/) [MIT licence] +jQuery Mobile (http://jquerymobile.com/) [MIT license] -jQuery (http://jquery.com/) [MIT licence] +jQuery (http://jquery.com/) [MIT license] -(parts of) Underscore (http://documentcloud.github.com/underscore/) [MIT licence] +(parts of) Underscore (http://documentcloud.github.com/underscore/) [MIT license] -jLayout (http://www.bramstein.com/projects/jlayout/) [BSD licence] +jLayout (http://www.bramstein.com/projects/jlayout/) [BSD license] -jSizes (http://www.bramstein.com/projects/jsizes/) [BSD licence] +jSizes (http://www.bramstein.com/projects/jsizes/) [BSD license] + +Globalize (http://github.com/jquery/globalize/) [MIT license] diff --git a/Makefile b/Makefile index 45f7d47..f7f0ccb 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +SHELL := /bin/bash + ## Project setting DEBUG ?= yes PROJECT_NAME = tizen-web-ui-fw @@ -9,6 +11,7 @@ PATH := $(CURDIR)/build-tools/bin:$(PATH) JSLINT_LEVEL = 1 JSLINT = jslint --sloppy --eqeq --bitwise --forin --nomen --predef jQuery --color --plusplus --browser --jqmspace +COMMON_WIDGET = common INLINE_PROTO = 1 OUTPUT_ROOT = $(CURDIR)/build FRAMEWORK_ROOT = ${OUTPUT_ROOT}/${PROJECT_NAME}/${VERSION} @@ -45,12 +48,24 @@ FW_LIBS_JS = ${JS_OUTPUT_ROOT}/${PROJECT_NAME}-libs.js FW_THEME_CSS_FILE = ${PROJECT_NAME}-theme.css FW_WIDGET_CSS_FILE = ${WIDGET_CSS_OUTPUT_ROOT}/${PROJECT_NAME}-widget.css +GEO_VERSION = jquery-geo-1.0a4 + LIBS_JS_FILES = jlayout/jquery.sizes.js \ jlayout/jlayout.border.js \ jlayout/jlayout.grid.js \ jlayout/jlayout.flexgrid.js \ jlayout/jlayout.flow.js \ jlayout/jquery.jlayout.js \ + jquery.easing.1.3.js \ + jquery.tmpl.js \ + jquery.mobile.js \ + ${GEO_VERSION}/js/jquery.geo.head.js \ + ${GEO_VERSION}/js/jquery.mousewheel.js \ + ${GEO_VERSION}/js/jquery.geo.core.js \ + ${GEO_VERSION}/js/jquery.geo.geographics.js \ + ${GEO_VERSION}/js/jquery.geo.geomap.js \ + ${GEO_VERSION}/js/jquery.geo.tiled.js \ + ${GEO_VERSION}/js/jquery.geo.shingled.js \ $(NULL) JQUERY_MOBILE_CSS = submodules/jquery-mobile/compiled/jquery.mobile.structure.css \ @@ -58,19 +73,16 @@ JQUERY_MOBILE_CSS = submodules/jquery-mobile/compiled/jquery.mobile.structure.cs $(NULL) JQUERY_MOBILE_IMAGES = submodules/jquery-mobile/css/themes/default/images -JQM_VERSION = jquery-mobile-1.0.1pre +JQM_VERSION = jquery-mobile-1.1.0 JQM_LIB_PATH = $(CURDIR)/libs/js/${JQM_VERSION} ifeq (${DEBUG},yes) -LIBS_JS_FILES +=\ - jquery.mobile.js \ - $(NULL) -JQUERY = jquery-1.6.4.js +JQUERY = jquery-1.7.1.js else LIBS_JS_FILES +=\ jquery.mobile.min.js \ $(NULL) -JQUERY = jquery-1.6.4.min.js +JQUERY = jquery-1.7.1.min.js endif LIBS_CSS_FILES = @@ -103,7 +115,7 @@ libs_cleanup: jqm: init # Building jQuery Mobile... - cd ${JQM_LIB_PATH} && make all-but-min || exit 1; \ + cd ${JQM_LIB_PATH} && make js NODE=/usr/bin/node || exit 1; \ cp -f ${JQM_LIB_PATH}/compiled/*.js ${JQM_LIB_PATH}/../; \ third_party: init jqm @@ -111,7 +123,7 @@ third_party: init jqm @@cd ${LIBS_DIR}/js; \ for f in ${LIBS_JS_FILES}; do \ cat $$f >> ${FW_LIB_JS}; \ - uglifyjs $$f >> ${FW_LIB_MIN}; \ + uglifyjs --ascii $$f >> ${FW_LIB_MIN}; \ echo "" >> ${FW_LIB_MIN}; \ done; \ cp ${LIBS_DIR}/js/${JQUERY} ${JS_OUTPUT_ROOT}/jquery.js @@ -130,12 +142,14 @@ widgets: init third_party while read REPLY; do \ echo " # Building widget $$REPLY"; \ if test ${JSLINT_LEVEL} -ge 1; then \ - for FNAME in ${WIDGETS_DIR}/$$REPLY/js/*.js; do \ - ${JSLINT} $$FNAME; \ - if test ${JSLINT_LEVEL} -ge 2 -a $$? -ne 0; then \ - exit 1; \ - fi; \ - done; \ + if test $$REPLY != ${COMMON_WIDGET}; then \ + for FNAME in ${WIDGETS_DIR}/$$REPLY/js/*.js; do \ + ${JSLINT} $$FNAME; \ + if test ${JSLINT_LEVEL} -ge 2 -a $$? -ne 0; then \ + exit 1; \ + fi; \ + done; \ + fi; \ fi; \ if test "x${INLINE_PROTO}x" = "x1x"; then \ ./tools/inline-protos.sh ${WIDGETS_DIR}/$$REPLY >> ${WIDGETS_DIR}/$$REPLY/js/$$REPLY.js.compiled; \ @@ -185,12 +199,19 @@ themes: make -C src/themes || exit $? -compress: widgets loader - @@echo " # Compressing...."; - echo '/*' > ${FW_MIN} - cat ${COPYING_FILE} >> ${FW_MIN} - echo '*/' >> ${FW_MIN} - uglifyjs -nc ${FW_JS} >> ${FW_MIN} +compress: widgets loader themes + # Javacript code compressing + @@echo " # Compressing...."; \ + echo '/*' > ${FW_MIN}; \ + cat ${COPYING_FILE} >> ${FW_MIN}; \ + echo '*/' >> ${FW_MIN}; \ + uglifyjs --ascii -nc ${FW_JS} >> ${FW_MIN}; \ + # CSS compressing + @@cd ${THEME_OUTPUT_ROOT}; \ + for csspath in */*.css; do \ + echo "Compressing $$csspath"; \ + cleancss -o $${csspath/%.css/.min.css} $$csspath; \ + done docs: init @@ -216,6 +237,7 @@ version_compat: third_party widgets for v_compat in ${VERSION_COMPAT}; do \ ln -sf ${VERSION} ${FRAMEWORK_ROOT}/../$$v_compat; \ done; + ln -sf ${VERSION} ${FRAMEWORK_ROOT}/../latest demo: widgets mkdir -p ${OUTPUT_ROOT}/demos @@ -224,10 +246,10 @@ demo: widgets install: all - mkdir -p ${INSTALL_DIR}/lib/tizen-web-ui-fw ${INSTALL_DIR}/bin ${INSTALL_DIR}/share/tizen-web-ui-fw/demos/ - cp -av ${OUTPUT_ROOT}/tizen-web-ui-fw/* src/template ${INSTALL_DIR}/lib/tizen-web-ui-fw/ - cp -av tools/* ${INSTALL_DIR}/bin/ - cp -av demos/tizen-gray ${INSTALL_DIR}/share/tizen-web-ui-fw/demos/ && cd ${INSTALL_DIR}/share/tizen-web-ui-fw/demos/tizen-gray && sed -i -e "s#../../build#../../../../lib#g" *.html + mkdir -p ${INSTALL_DIR}/bin ${INSTALL_DIR}/share/tizen-web-ui-fw/demos/ ${INSTALL_DIR}/share/tizen-web-ui-fw/bin/ + cp -av ${OUTPUT_ROOT}/tizen-web-ui-fw/* src/template ${INSTALL_DIR}/share/tizen-web-ui-fw/ + cp -av tools/* ${INSTALL_DIR}/share/tizen-web-ui-fw/bin/ + cp -av demos/tizen-winsets ${INSTALL_DIR}/share/tizen-web-ui-fw/demos/ && cd ${INSTALL_DIR}/share/tizen-web-ui-fw/demos/tizen-winsets && sed -i -e "s#../../build#../../..#g" *.html coverage: clean all @@ -285,5 +307,4 @@ init: clean @@mkdir -p ${CSS_OUTPUT_ROOT} @@mkdir -p ${CSS_IMAGES_OUTPUT_DIR} @@mkdir -p ${PROTOTYPE_HTML_OUTPUT_DIR} - @@test -h ${LATEST_ROOT} || ln -s ${FRAMEWORK_ROOT} ${LATEST_ROOT} @@rm -f docs/*.html diff --git a/build-tools/README.txt b/build-tools/README.txt index 31dc7c0..0efd403 100644 --- a/build-tools/README.txt +++ b/build-tools/README.txt @@ -22,3 +22,23 @@ Tizen Web UI Framework includes following tools used on build; * node-jslint: BSD License (build-tools/lib/jslint/LICENSE) * jslint: Customized MIT License (build-tools/lib/jslint/jslint.js) * nopt, abbrev: MIT License (build-tools/lib/jslint/nopt/LICENSE) + +* clean-css (http://github.com/GoalSmashers/clean-css) + * Version: 0.4.0 + * Description: A CSS code minifier + * Mods + * Fix local library path and name + * License + * MIT license (build-tools/lib/cleancss/LICENSE) + +* optimist (http://github.com/substack/node-optimist) + * Version: 0.3.4 + * Description: A node.js command-line option parser libraryr, used by clean-css. + * License + * MIT/X11 license (build-tools/lib/optimist/LICENSE) + +* wordwrap (http://github.com/substack/node-wordwrap) + * Version: b026541 (Released at Apr. 30 2012) + * Description: Word-wrapping library, used by optimist. + * License + * MIT license (build-tools/lib/wordwrap/LICENSE) diff --git a/build-tools/bin/cleancss b/build-tools/bin/cleancss new file mode 100755 index 0000000..0ec2ef3 --- /dev/null +++ b/build-tools/bin/cleancss @@ -0,0 +1,44 @@ +#!/usr/bin/env node + +global.util = require("util"); +var argv = require('optimist').argv, + cleanCss = require('cleancss'), + fs = require('fs'); + +var options = { + source: null, + target: null +}; +var cleanOptions = {}; + +if (argv.o) options.target = argv.o; +if (argv._) options.source = argv._[0]; +if (argv.e) cleanOptions.removeEmpty = true; + +if (argv.h || argv.help) { + global.util.print('Usage: cleancss [-e] -o \n'); + process.exit(0); +} + +if (options.source) { + fs.readFile(options.source, 'utf8', function(error, text) { + if (error) throw error; + output(cleanCss.process(text)); + }); +} else { + var stdin = process.openStdin(); + stdin.setEncoding('utf-8'); + var text = ''; + stdin.on('data', function(chunk) { text += chunk; }); + stdin.on('end', function() { output(cleanCss.process(text, cleanOptions)); }); +} + +function output(cleaned) { + if (options.target) { + var out = fs.createWriteStream(options.target, { flags: 'w', encoding: 'utf-8', mode: 0644 }); + out.write(cleaned); + out.end(); + } else { + process.stdout.write(cleaned); + } +}; diff --git a/build-tools/bin/lessc b/build-tools/bin/lessc index 1e3c961..32f993f 100755 --- a/build-tools/bin/lessc +++ b/build-tools/bin/lessc @@ -4,7 +4,11 @@ var path = require('path'), fs = require('fs'), sys = require('sys'); -require.paths.unshift(path.join(__dirname, '..', 'lib')); +try { + // For old node.js versions + require.paths.unshift( path.join( __dirname, '..', 'lib' ) ); +} catch ( ex ) { +} var less = require('less'); var args = process.argv.slice(1); diff --git a/build-tools/bin/uglifyjs b/build-tools/bin/uglifyjs index 061cd4d..485d9c1 100755 --- a/build-tools/bin/uglifyjs +++ b/build-tools/bin/uglifyjs @@ -7,7 +7,11 @@ var fs = require("fs"); // Add ../lib to require path // by Youmin Ha var path = require("path"); -require.paths.unshift(path.join(__dirname, '..', 'lib')); + +try { + require.paths.unshift(path.join(__dirname, '..', 'lib')); +} catch (ex) { +} var uglify = require("uglify-js"), // symlink ~/.node_libraries/uglify-js.js to ../uglify-js.js jsp = uglify.parser, diff --git a/build-tools/lib/cleancss/LICENSE b/build-tools/lib/cleancss/LICENSE new file mode 100644 index 0000000..9e592d3 --- /dev/null +++ b/build-tools/lib/cleancss/LICENSE @@ -0,0 +1,7 @@ +Copyright (c) 2011 GoalSmashers.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. \ No newline at end of file diff --git a/build-tools/lib/cleancss/clean.js b/build-tools/lib/cleancss/clean.js new file mode 100644 index 0000000..3fa03f0 --- /dev/null +++ b/build-tools/lib/cleancss/clean.js @@ -0,0 +1,201 @@ +var util = require('util'); + +var CleanCSS = { + colors: { + white: '#fff', + black: '#000', + fuchsia: '#f0f', + yellow: '#ff0' + }, + + specialComments: [], + contentBlocks: [], + + process: function(data, options) { + var self = this, + replace = function(pattern, replacement) { + if (typeof arguments[0] == 'function') + arguments[0](); + else + data = data.replace.apply(data, arguments); + }; + + options = options || {}; + + // replace function + if (options.debug) { + var originalReplace = replace; + replace = function(pattern, replacement) { + var name = typeof pattern == 'function' ? + /function (\w+)\(/.exec(pattern.toString())[1] : + pattern; + console.time(name); + originalReplace(pattern, replacement); + console.timeEnd(name); + }; + } + + // strip comments one by one + replace(function stripComments() { + data = self.stripComments(data); + }); + + // replace content: with a placeholder + replace(function stripContent() { + data = self.stripContent(data); + }); + + replace(/;\s*;+/g, ';') // whitespace between semicolons & multiple semicolons + replace(/\n/g, '') // line breaks + replace(/\s+/g, ' ') // multiple whitespace + replace(/ !important/g, '!important') // whitespace before !important + replace(/[ ]?,[ ]?/g, ',') // space with a comma + replace(/progid:[^(]+\(([^\)]+)/g, function(match, contents) { // restore spaces inside IE filters (IE 7 issue) + return match.replace(/,/g, ', '); + }) + replace(/ ([+~>]) /g, '$1') // replace spaces around selectors + replace(/\{([^}]+)\}/g, function(match, contents) { // whitespace inside content + return '{' + contents.trim().replace(/(\s*)([;:=\s])(\s*)/g, '$2') + '}'; + }) + replace(/;}/g, '}') // trailing semicolons + replace(/rgb\s*\(([^\)]+)\)/g, function(match, color) { // rgb to hex colors + var parts = color.split(','); + var encoded = '#'; + for (var i = 0; i < 3; i++) { + var asHex = parseInt(parts[i], 10).toString(16); + encoded += asHex.length == 1 ? '0' + asHex : asHex; + } + return encoded; + }) + replace(/([^"'=\s])\s*#([0-9a-f]{6})/gi, function(match, prefix, color) { // long hex to short hex + if (color[0] == color[1] && color[2] == color[3] && color[4] == color[5]) + return (prefix + (/:$/.test(prefix) ? '' : ' ')) + '#' + color[0] + color[2] + color[4]; + else + return (prefix + (/:$/.test(prefix) ? '' : ' ')) + '#' + color; + }) + replace(/(color|background):(\w+)/g, function(match, property, colorName) { // replace standard colors with hex values (only if color name is longer then hex value) + if (CleanCSS.colors[colorName]) return property + ':' + CleanCSS.colors[colorName]; + else return match; + }) + replace(/([: ,\(])#f00/g, '$1red') // replace #f00 with red as it's shorter + replace(/font\-weight:(\w+)/g, function(match, weight) { // replace font weight with numerical value + if (weight == 'normal') return 'font-weight:400'; + else if (weight == 'bold') return 'font-weight:700'; + else return match; + }) + replace(/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\([^\)]+\))([;}'"])/g, function(match, filter, args, suffix) { // IE shorter filters but only if single (IE 7 issue) + return filter.toLowerCase() + args + suffix; + }) + replace(/(\s|:)0(px|em|ex|cm|mm|in|pt|pc|%)/g, '$1' + '0') // zero + unit to zero + replace(/(border|border-top|border-right|border-bottom|border-left|outline):none/g, '$1:0') // none to 0 + replace(/(background):none([;}])/g, '$1:0$2') // background:none to 0 + replace(/0 0 0 0([^\.])/g, '0$1') // multiple zeros into one + replace(/([: ,=\-])0\.(\d)/g, '$1.$2') + if (options.removeEmpty) replace(/[^}]+?{\s*?}/g, '') // empty elements + if (data.indexOf('charset') > 0) replace(/(.+)(@charset [^;]+;)/, '$2$1') // move first charset to the beginning + replace(/(.)(@charset [^;]+;)/g, '$1') // remove all extra charsets that are not at the beginning + replace(/\*([\.#:\[])/g, '$1') // remove universal selector when not needed (*#id, *.class etc) + replace(/ {/g, '{') // whitespace before definition + replace(/\} /g, '}') // whitespace after definition + + // Get the special comments, content content, and spaces inside calc back + replace(/calc\([^\}]+\}/g, function(match) { + return match.replace(/\+/g, ' + '); + }); + replace(/__CSSCOMMENT__/g, function() { return self.specialComments.shift(); }); + replace(/__CSSCONTENT__/g, function() { return self.contentBlocks.shift(); }); + + return data.trim() // trim spaces at beginning and end + }, + + // Strips special comments (/*! ... */) by replacing them by __CSSCOMMENT__ marker + // for further restoring. Plain comments are removed. It's done by scanning datq using + // String#indexOf scanning instead of regexps to speed up the process. + stripComments: function(data) { + var tempData = [], + nextStart = 0, + nextEnd = 0, + cursor = 0; + + for (; nextEnd < data.length; ) { + nextStart = data.indexOf('/*', nextEnd); + nextEnd = data.indexOf('*/', nextStart); + if (nextStart == -1 || nextEnd == -1) break; + + tempData.push(data.substring(cursor, nextStart)) + if (data[nextStart + 2] == '!') { + // in case of special comments, replace them with a placeholder + this.specialComments.push(data.substring(nextStart, nextEnd + 2)); + tempData.push('__CSSCOMMENT__'); + } + cursor = nextEnd + 2; + } + + return tempData.length > 0 ? + tempData.join('') + data.substring(cursor, data.length) : + data; + }, + + // Strips content tags by replacing them by __CSSCONTENT__ marker + // for further restoring. It's done via string scanning instead of + // regexps to speed up the process. + stripContent: function(data) { + var tempData = [], + nextStart = 0, + nextEnd = 0, + tempStart = 0, + cursor = 0, + matchedParenthesis = null; + + // Finds either first (matchedParenthesis == null) or second matching parenthesis + // so we can determine boundaries of content block. + var nextParenthesis = function(pos) { + var min, + max = data.length; + + if (matchedParenthesis) { + min = data.indexOf(matchedParenthesis, pos); + if (min == -1) min = max; + } else { + var next1 = data.indexOf("'", pos); + var next2 = data.indexOf('"', pos); + if (next1 == -1) next1 = max; + if (next2 == -1) next2 = max; + + min = next1 > next2 ? next2 : next1; + } + + if (min == max) return -1; + + if (matchedParenthesis) { + matchedParenthesis = null; + return min; + } else { + // check if there's anything else between pos and min that doesn't match ':' or whitespace + if (/[^:\s]/.test(data.substring(pos, min))) return -1; + matchedParenthesis = data.charAt(min); + return min + 1; + } + }; + + for (; nextEnd < data.length; ) { + nextStart = data.indexOf('content', nextEnd); + if (nextStart == -1) break; + + nextStart = nextParenthesis(nextStart + 7); + nextEnd = nextParenthesis(nextStart); + if (nextStart == -1 || nextEnd == -1) break; + + tempData.push(data.substring(cursor, nextStart - 1)); + tempData.push('__CSSCONTENT__'); + this.contentBlocks.push(data.substring(nextStart - 1, nextEnd + 1)); + cursor = nextEnd + 1; + } + + return tempData.length > 0 ? + tempData.join('') + data.substring(cursor, data.length) : + data; + } +}; + +module.exports = CleanCSS; diff --git a/build-tools/lib/cleancss/index.js b/build-tools/lib/cleancss/index.js new file mode 100644 index 0000000..b93b57c --- /dev/null +++ b/build-tools/lib/cleancss/index.js @@ -0,0 +1 @@ +module.exports = require("./clean"); diff --git a/build-tools/lib/less/index.js b/build-tools/lib/less/index.js index 39c40ca..3b4e928 100644 --- a/build-tools/lib/less/index.js +++ b/build-tools/lib/less/index.js @@ -2,7 +2,11 @@ var path = require('path'), sys = require('sys'), fs = require('fs'); -require.paths.unshift(path.join(__dirname, '..')); +try { + // For old node.js versions + require.paths.unshift( path.join( __dirname, '..' ) ); +} catch ( ex ) { +} var less = { version: [1, 1, 3], diff --git a/build-tools/lib/optimist/LICENSE b/build-tools/lib/optimist/LICENSE new file mode 100644 index 0000000..432d1ae --- /dev/null +++ b/build-tools/lib/optimist/LICENSE @@ -0,0 +1,21 @@ +Copyright 2010 James Halliday (mail@substack.net) + +This project is free software released under the MIT/X11 license: + +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. diff --git a/build-tools/lib/optimist/index.js b/build-tools/lib/optimist/index.js new file mode 100644 index 0000000..4dc39f4 --- /dev/null +++ b/build-tools/lib/optimist/index.js @@ -0,0 +1,475 @@ +var path = require('path'); +var wordwrap = require('wordwrap'); + +/* Hack an instance of Argv with process.argv into Argv + so people can do + require('optimist')(['--beeble=1','-z','zizzle']).argv + to parse a list of args and + require('optimist').argv + to get a parsed version of process.argv. +*/ + +var inst = Argv(process.argv.slice(2)); +Object.keys(inst).forEach(function (key) { + Argv[key] = typeof inst[key] == 'function' + ? inst[key].bind(inst) + : inst[key]; +}); + +var exports = module.exports = Argv; +function Argv (args, cwd) { + var self = {}; + if (!cwd) cwd = process.cwd(); + + self.$0 = process.argv + .slice(0,2) + .map(function (x) { + var b = rebase(cwd, x); + return x.match(/^\//) && b.length < x.length + ? b : x + }) + .join(' ') + ; + + if (process.argv[1] == process.env._) { + self.$0 = process.env._.replace( + path.dirname(process.execPath) + '/', '' + ); + } + + var flags = { bools : {}, strings : {} }; + + self.boolean = function (bools) { + if (!Array.isArray(bools)) { + bools = [].slice.call(arguments); + } + + bools.forEach(function (name) { + flags.bools[name] = true; + }); + + return self; + }; + + self.string = function (strings) { + if (!Array.isArray(strings)) { + strings = [].slice.call(arguments); + } + + strings.forEach(function (name) { + flags.strings[name] = true; + }); + + return self; + }; + + var aliases = {}; + self.alias = function (x, y) { + if (typeof x === 'object') { + Object.keys(x).forEach(function (key) { + self.alias(key, x[key]); + }); + } + else if (Array.isArray(y)) { + y.forEach(function (yy) { + self.alias(x, yy); + }); + } + else { + var zs = (aliases[x] || []).concat(aliases[y] || []).concat(x, y); + aliases[x] = zs.filter(function (z) { return z != x }); + aliases[y] = zs.filter(function (z) { return z != y }); + } + + return self; + }; + + var demanded = {}; + self.demand = function (keys) { + if (typeof keys == 'number') { + if (!demanded._) demanded._ = 0; + demanded._ += keys; + } + else if (Array.isArray(keys)) { + keys.forEach(function (key) { + self.demand(key); + }); + } + else { + demanded[keys] = true; + } + + return self; + }; + + var usage; + self.usage = function (msg, opts) { + if (!opts && typeof msg === 'object') { + opts = msg; + msg = null; + } + + usage = msg; + + if (opts) self.options(opts); + + return self; + }; + + function fail (msg) { + self.showHelp(); + if (msg) console.error(msg); + process.exit(1); + } + + var checks = []; + self.check = function (f) { + checks.push(f); + return self; + }; + + var defaults = {}; + self.default = function (key, value) { + if (typeof key === 'object') { + Object.keys(key).forEach(function (k) { + self.default(k, key[k]); + }); + } + else { + defaults[key] = value; + } + + return self; + }; + + var descriptions = {}; + self.describe = function (key, desc) { + if (typeof key === 'object') { + Object.keys(key).forEach(function (k) { + self.describe(k, key[k]); + }); + } + else { + descriptions[key] = desc; + } + return self; + }; + + self.parse = function (args) { + return Argv(args).argv; + }; + + self.option = self.options = function (key, opt) { + if (typeof key === 'object') { + Object.keys(key).forEach(function (k) { + self.options(k, key[k]); + }); + } + else { + if (opt.alias) self.alias(key, opt.alias); + if (opt.demand) self.demand(key); + if (typeof opt.default !== 'undefined') { + self.default(key, opt.default); + } + + if (opt.boolean || opt.type === 'boolean') { + self.boolean(key); + } + if (opt.string || opt.type === 'string') { + self.string(key); + } + + var desc = opt.describe || opt.description || opt.desc; + if (desc) { + self.describe(key, desc); + } + } + + return self; + }; + + var wrap = null; + self.wrap = function (cols) { + wrap = cols; + return self; + }; + + self.showHelp = function (fn) { + if (!fn) fn = console.error; + fn(self.help()); + }; + + self.help = function () { + var keys = Object.keys( + Object.keys(descriptions) + .concat(Object.keys(demanded)) + .concat(Object.keys(defaults)) + .reduce(function (acc, key) { + if (key !== '_') acc[key] = true; + return acc; + }, {}) + ); + + var help = keys.length ? [ 'Options:' ] : []; + + if (usage) { + help.unshift(usage.replace(/\$0/g, self.$0), ''); + } + + var switches = keys.reduce(function (acc, key) { + acc[key] = [ key ].concat(aliases[key] || []) + .map(function (sw) { + return (sw.length > 1 ? '--' : '-') + sw + }) + .join(', ') + ; + return acc; + }, {}); + + var switchlen = longest(Object.keys(switches).map(function (s) { + return switches[s] || ''; + })); + + var desclen = longest(Object.keys(descriptions).map(function (d) { + return descriptions[d] || ''; + })); + + keys.forEach(function (key) { + var kswitch = switches[key]; + var desc = descriptions[key] || ''; + + if (wrap) { + desc = wordwrap(switchlen + 4, wrap)(desc) + .slice(switchlen + 4) + ; + } + + var spadding = new Array( + Math.max(switchlen - kswitch.length + 3, 0) + ).join(' '); + + var dpadding = new Array( + Math.max(desclen - desc.length + 1, 0) + ).join(' '); + + var type = null; + + if (flags.bools[key]) type = '[boolean]'; + if (flags.strings[key]) type = '[string]'; + + if (!wrap && dpadding.length > 0) { + desc += dpadding; + } + + var prelude = ' ' + kswitch + spadding; + var extra = [ + type, + demanded[key] + ? '[required]' + : null + , + defaults[key] !== undefined + ? '[default: ' + JSON.stringify(defaults[key]) + ']' + : null + , + ].filter(Boolean).join(' '); + + var body = [ desc, extra ].filter(Boolean).join(' '); + + if (wrap) { + var dlines = desc.split('\n'); + var dlen = dlines.slice(-1)[0].length + + (dlines.length === 1 ? prelude.length : 0) + + body = desc + (dlen + extra.length > wrap - 2 + ? '\n' + + new Array(wrap - extra.length + 1).join(' ') + + extra + : new Array(wrap - extra.length - dlen + 1).join(' ') + + extra + ); + } + + help.push(prelude + body); + }); + + help.push(''); + return help.join('\n'); + }; + + Object.defineProperty(self, 'argv', { + get : parseArgs, + enumerable : true, + }); + + function parseArgs () { + var argv = { _ : [], $0 : self.$0 }; + Object.keys(flags.bools).forEach(function (key) { + setArg(key, defaults[key] || false); + }); + + function setArg (key, val) { + var num = Number(val); + var value = typeof val !== 'string' || isNaN(num) ? val : num; + if (flags.strings[key]) value = val; + + setKey(argv, key.split('.'), value); + + (aliases[key] || []).forEach(function (x) { + argv[x] = argv[key]; + }); + } + + for (var i = 0; i < args.length; i++) { + var arg = args[i]; + + if (arg === '--') { + argv._.push.apply(argv._, args.slice(i + 1)); + break; + } + else if (arg.match(/^--.+=/)) { + var m = arg.match(/^--([^=]+)=(.*)/); + setArg(m[1], m[2]); + } + else if (arg.match(/^--no-.+/)) { + var key = arg.match(/^--no-(.+)/)[1]; + setArg(key, false); + } + else if (arg.match(/^--.+/)) { + var key = arg.match(/^--(.+)/)[1]; + var next = args[i + 1]; + if (next !== undefined && !next.match(/^-/) + && !flags.bools[key] + && (aliases[key] ? !flags.bools[aliases[key]] : true)) { + setArg(key, next); + i++; + } + else if (/true|false/.test(next)) { + setArg(key, next === 'true'); + i++; + } + else { + setArg(key, true); + } + } + else if (arg.match(/^-[^-]+/)) { + var letters = arg.slice(1,-1).split(''); + + var broken = false; + for (var j = 0; j < letters.length; j++) { + if (letters[j+1] && letters[j+1].match(/\W/)) { + setArg(letters[j], arg.slice(j+2)); + broken = true; + break; + } + else { + setArg(letters[j], true); + } + } + + if (!broken) { + var key = arg.slice(-1)[0]; + + if (args[i+1] && !args[i+1].match(/^-/) + && !flags.bools[key] + && (aliases[key] ? !flags.bools[aliases[key]] : true)) { + setArg(key, args[i+1]); + i++; + } + else if (args[i+1] && /true|false/.test(args[i+1])) { + setArg(key, args[i+1] === 'true'); + i++; + } + else { + setArg(key, true); + } + } + } + else { + var n = Number(arg); + argv._.push(flags.strings['_'] || isNaN(n) ? arg : n); + } + } + + Object.keys(defaults).forEach(function (key) { + if (!(key in argv)) { + argv[key] = defaults[key]; + if (key in aliases) { + argv[aliases[key]] = defaults[key]; + } + } + }); + + if (demanded._ && argv._.length < demanded._) { + fail('Not enough non-option arguments: got ' + + argv._.length + ', need at least ' + demanded._ + ); + } + + var missing = []; + Object.keys(demanded).forEach(function (key) { + if (!argv[key]) missing.push(key); + }); + + if (missing.length) { + fail('Missing required arguments: ' + missing.join(', ')); + } + + checks.forEach(function (f) { + try { + if (f(argv) === false) { + fail('Argument check failed: ' + f.toString()); + } + } + catch (err) { + fail(err) + } + }); + + return argv; + } + + function longest (xs) { + return Math.max.apply( + null, + xs.map(function (x) { return x.length }) + ); + } + + return self; +}; + +// rebase an absolute path to a relative one with respect to a base directory +// exported for tests +exports.rebase = rebase; +function rebase (base, dir) { + var ds = path.normalize(dir).split('/').slice(1); + var bs = path.normalize(base).split('/').slice(1); + + for (var i = 0; ds[i] && ds[i] == bs[i]; i++); + ds.splice(0, i); bs.splice(0, i); + + var p = path.normalize( + bs.map(function () { return '..' }).concat(ds).join('/') + ).replace(/\/$/,'').replace(/^$/, '.'); + return p.match(/^[.\/]/) ? p : './' + p; +}; + +function setKey (obj, keys, value) { + var o = obj; + keys.slice(0,-1).forEach(function (key) { + if (o[key] === undefined) o[key] = {}; + o = o[key]; + }); + + var key = keys[keys.length - 1]; + if (o[key] === undefined || typeof o[key] === 'boolean') { + o[key] = value; + } + else if (Array.isArray(o[key])) { + o[key].push(value); + } + else { + o[key] = [ o[key], value ]; + } +} diff --git a/build-tools/lib/wordwrap/LICENSE b/build-tools/lib/wordwrap/LICENSE new file mode 100644 index 0000000..e65c0b2 --- /dev/null +++ b/build-tools/lib/wordwrap/LICENSE @@ -0,0 +1,4 @@ +Copyright 2011 James Halliday (mail@substack.net) + +This project is free software released under the MIT license: +http://www.opensource.org/licenses/mit-license.php diff --git a/build-tools/lib/wordwrap/index.js b/build-tools/lib/wordwrap/index.js new file mode 100644 index 0000000..c9bc945 --- /dev/null +++ b/build-tools/lib/wordwrap/index.js @@ -0,0 +1,76 @@ +var wordwrap = module.exports = function (start, stop, params) { + if (typeof start === 'object') { + params = start; + start = params.start; + stop = params.stop; + } + + if (typeof stop === 'object') { + params = stop; + start = start || params.start; + stop = undefined; + } + + if (!stop) { + stop = start; + start = 0; + } + + if (!params) params = {}; + var mode = params.mode || 'soft'; + var re = mode === 'hard' ? /\b/ : /(\S+\s+)/; + + return function (text) { + var chunks = text.toString() + .split(re) + .reduce(function (acc, x) { + if (mode === 'hard') { + for (var i = 0; i < x.length; i += stop - start) { + acc.push(x.slice(i, i + stop - start)); + } + } + else acc.push(x) + return acc; + }, []) + ; + + return chunks.reduce(function (lines, rawChunk) { + if (rawChunk === '') return lines; + + var chunk = rawChunk.replace(/\t/g, ' '); + + var i = lines.length - 1; + if (lines[i].length + chunk.length > stop) { + lines[i] = lines[i].replace(/\s+$/, ''); + + chunk.split(/\n/).forEach(function (c) { + lines.push( + new Array(start + 1).join(' ') + + c.replace(/^\s+/, '') + ); + }); + } + else if (chunk.match(/\n/)) { + var xs = chunk.split(/\n/); + lines[i] += xs.shift(); + xs.forEach(function (c) { + lines.push( + new Array(start + 1).join(' ') + + c.replace(/^\s+/, '') + ); + }); + } + else { + lines[i] += chunk; + } + + return lines; + }, [ new Array(start + 1).join(' ') ]).join('\n'); + }; +}; + +wordwrap.soft = wordwrap; + +wordwrap.hard = function (start, stop) { + return wordwrap(start, stop, { mode : 'hard' }); +}; diff --git a/build-tools/node_modules b/build-tools/node_modules new file mode 120000 index 0000000..7951405 --- /dev/null +++ b/build-tools/node_modules @@ -0,0 +1 @@ +lib \ No newline at end of file diff --git a/demos/tizen-gray/custom.css b/demos/tizen-gray/custom.css deleted file mode 100644 index 58ca0b0..0000000 --- a/demos/tizen-gray/custom.css +++ /dev/null @@ -1,6 +0,0 @@ -.my-check-button-style { - margin: 10px; -} -.my-check-inline-style { - display: inline; -} diff --git a/demos/tizen-gray/desktopbrowser.js b/demos/tizen-gray/desktopbrowser.js deleted file mode 100644 index 98e3ba2..0000000 --- a/demos/tizen-gray/desktopbrowser.js +++ /dev/null @@ -1,4 +0,0 @@ -window.innerHeight = 720; -window.innerWidth = 1280; -document.body.scroll = "no"; - diff --git a/demos/tizen-gray/index.html b/demos/tizen-gray/index.html deleted file mode 100755 index fedf813..0000000 --- a/demos/tizen-gray/index.html +++ /dev/null @@ -1,993 +0,0 @@ - - - - - - - - - - - - - - - - - - - - Tizen UI - - - - - - - - - -
-
-

Tizen UI

-
- -
- -
-
-

Not Implemented

-
-
-

Not Implemented

-
-
- -
-
-

Slider

-
-
-
    -
  • Normal Slider
  • -
  • -
  • Popup Slider
  • -
  • -
  • Icon Slider
  • -
  • -
  • -
  • Text Slider
  • -
  • -
  • -
-
-
- -
-
-

No Contents

-
-
-
-
-
- -
-
-

No Contents

-
-
-
-
-
- -
-
-

No Contents

-
-
-
-
-
- -
-
-

No Contents

-
-
-
-
-
- -
-
-

Optional Header

-
- -
- -
-
- TestBtn -

Option header - 2 buttons

- - TestBtn - -
-
- - -
-
-
-
-

Some content would be here

-
-
- -
-
-

Option header - 3 buttons

-
-
- - - -
-
-
-
-

Some content would be here

-
-
- -
-
-

Option header - 4 buttons

-
-
- - - - -
-
-
-
-

Some content would be here

-
-
- -
-
-

Option header - 4 buttons

- -
-
-

Some content would be here

-
-
- -
-
-

ControlBar

-
-
- -
-
- - - -
-
-
- -
-
-
-
- -
-
-
-
-
-
-
-

Tabbar

-
-
- -
-
-
- -
-
-
- -
-
-

Tabbar

-
-
- -
-
-
- -
-
-
- -
-
-

Tabbar

-
-
- -
-
-
- -
-
-
- -
-
-

Tabbar

-
-
- -
-
-
- -
-
-
- -
-
-

Tabbar

-
-
-
- -
-
-
-
- -
-
-
- -
-
-

Tabbar

-
-
-
- -
-
-
-
-
    -
  • -
  • -
  • -
  • -
  • -
-
-
-
- - - - -
-
-
- -
-
-
-
- -
-
-
-
-
- - -
-
-

Toolbar

-
-
-
- -
-
-
-
- -
-
-
- -
-
-

Toolbar

-
-
-
- -
-
-
-
- -
-
-
- -
-
-

Toolbar

-
-
-
- -
-
-
-
- -
-
-
- -
-
-

Toolbar

-
-
-
- -
-
-
-
- -
-
-
- -
-
-

Toolbar

-
-
-
- -
-
-
-
- -
-
-
- -
-
-

Toolbar

-
-
-
- -
-
-
-
-
    -
  • -
  • -
  • -
  • -
  • -
-
-
-
- - - - -
-
-

Mixed Toolbar

-
-
-

Not Supported for winset

-
-
- - - -
-
-

Vertical Toolbar

-
-
- -
- -
-
-
- - - -
-
-

Vertical Toolbar

-
-
- -
- -
-
-
- - - -
-
-

Vertical Toolbar

-
-
-
-
-
- -
-
-
- - - - -
-
-

Normal Title

-
- -
- -
-
- Text1 -

Normal Title

-
- -
- -
-
- Text1 -

Normal Title

- Text2 -
- -
- -
-
- Text1 -

Normal Title

- Text2 - Text3 -
- -
- -
-
-

Extended Title

-
- -
- -
-
- Text -

Extended Title 2 Button

- Text -
-
- - - - -
-
-
-
-
- -
-
-
- -
-
- Text -

Extended Title 3 Button

- Text -
-
- - - - - - -
-
-
-
-
- -
-
-
- -
-
-

Extended Title 4 Button

-
-
- - - - - - - - -
-
-
-
-
- -
-
-
- -
-
-

Extended Footer style

-
-
-

test page

-
-
-
-
- - - - - - - - -
-
- Edit -
-
- - - - - diff --git a/demos/tizen-gray/init.js b/demos/tizen-gray/init.js deleted file mode 100755 index fa4a4d9..0000000 --- a/demos/tizen-gray/init.js +++ /dev/null @@ -1,227 +0,0 @@ -$( document ).bind("pagecreate", function () { - /* Color widget demo */ - $("input[type='checkbox'][data-widget-type-list]").bind("change", function() { - var ls = $( this ).attr("data-widget-type-list").split(","), - page = $( this ).closest(":jqmData(role='page')"), - disabled = $( this ).is(":checked"); - - $.each(ls, function( idx, widgetType ) { - var ar = widgetType.split("-"); - - if ( ar.length === 2 ) { - page.find(":" + widgetType)[ar[1]]( "option", "disabled", disabled ); - } - }); - }); - - $("#checkHideInput").bind("change", function (e) { - $("#colorpickerbutton").colorpickerbutton("option", "hideInput", $("#checkHideInput").is(":checked")); - }); - - $('#scroller-demo').bind('pageshow', function ( e ) { - $page = $( e.target ); - /* - * many options cannot be set without subclassing since they're - * used in the _create method - it seems as if these are for - * internal use only and scrollDuration is only changable by - * chance. - */ - var $scroller2List = $('#scroller2').find('ul'); - $scroller2List.scrollview( 'option','scrollDuration','10000' ); - - // only works by manipulating css - // the only other way is to use attribute 'scroll-method="scroll"' in html - $('#scroller2 .ui-scrollbar').css( 'visibility','hidden' ); - - /* - * make toggle button switch scroll bars on and off - */ - var scrollBarVisible = $('#scroller2').find('.ui-scrollbar').css('visibility') === "visible"; - - var $toggleScrollBars = $('#toggleScrollBars'); - $toggleScrollBars.attr( "checked", scrollBarVisible ).checkboxradio("refresh"); - - /* the 'label' is the thing that is clicked, not the input element */ - var $label = $toggleScrollBars.siblings('label').attr( 'for', '#toggleScrollBars' ); - $label.bind("click", function () { - var $scrollBar = $('#scroller2').find('.ui-scrollbar'); - var scrollBarVisible = $scrollBar.css('visibility') === "visible"; - var newVisibility = scrollBarVisible ? "hidden" : "visible"; - $scrollBar.css( 'visibility', scrollBarVisible ? "hidden" : "visible" ); - }); - }); - - $("#demo-date").bind("date-changed", function ( e, newDate ) { - $("#selected-date1").text( newDate.toString() ); - }); - - $("#demo-date2").bind("date-changed", function ( e, newDate ) { - $("#selected-date2").text( newDate.toString() ); - }); - - $("#demo-date3").bind("date-changed", function ( e, newDate ) { - $("#selected-date3").text( newDate.toString() ); - }); - - $("#demo-date4").bind("date-changed", function ( e, newDate ) { - $("#selected-date4").text( newDate.toString() ); - }); - - $('#notification-demo').bind('vmouseup', function ( e ) { - $('#notification').notification('show'); - }); - - $('#notification-demo').bind('tapped', function ( e, m ) { - /* DO SOMETHING */ - alert('notification is tapped\nparameter:"' + m + '"'); - }); - - $('#imageslider-add').bind('vmouseup', function ( e ) { - $('#imageslider').imageslider('add', './test/10.jpg'); - $('#imageslider').imageslider('add', './test/11.jpg'); - $('#imageslider').imageslider('refresh'); - }); - - $('#imageslider-del').bind('vmouseup', function ( e ) { - $('#imageslider').imageslider('del'); - }); - - $('#selectioninfo-demo').bind('vmouseup', function ( e ) { - $('#smallpopup_selectioninfo').attr("data-text1", - $("#dayselector1").find(".ui-checkbox-on").length + " items are selected"); - $('#smallpopup_selectioninfo').notification('show'); - }); - - $('#groupindex-demo').bind('pageshow', function () { - $('#groupindex').scrolllistview(); - }); - - $("#showVolumeButton").bind("vclick", function ( e ) { - $("#myVolumeControl").volumecontrol("open"); - }); - - $("#volumecontrol_setBasicTone").bind("change", function ( e ) { - var basicTone = !($("#volumecontrol_setBasicTone").next('label') - .find(".ui-icon").hasClass("ui-icon-checkbox-on")); - - if ( basicTone ) { - $("#myVolumeControl").volumecontrol( "option", "basicTone", true ); - $("#myVolumeControl").volumecontrol( "option", "title", "Basic Tone" ); - } else { - $("#myVolumeControl").volumecontrol( "option", "basicTone", false ); - $("#myVolumeControl").volumecontrol( "option", "title", "Volume" ); - } - }); - - $("#myoptionheader").bind('collapse', function () { - console.log('option header was collapsed'); - }); - - $("#myoptionheader").bind('expand', function () { - console.log('option header was expanded'); - }); - - //day-selector codes... - $("#day-selector-check-all").live('vclick', function () { - $("#dayselector1").dayselector('selectAll'); - }); - - $("#day-selector-get-days").live('vclick', function () { - var valuesStr = $("#dayselector1").dayselector('value').join(', '); - $(".selectedDay").text( valuesStr ); - }); - - /* Gen list : Dummy DB load */ - $(".virtuallist_demo_page").live("pagecreate", function () { - /* ?_=ts code for no cache mechanism */ - $.getScript( "./virtuallist-db-demo.js", function ( data, textStatus ) { - $("ul").filter( function () { - return $( this ).data("role") == "virtuallistview"; - }).addClass("vlLoadSuccess"); - - $(".virtuallist_demo_page").die(); - $("ul.ui-virtual-list-container").virtuallistview("create"); - }); - }); - - /*Expandable list : Dummy DB load*/ - $("#genlist_extendable_page").live("pagecreate", function () { - /*?_=ts code for no cache mechanism*/ - $.getScript( "./virtuallist-db-demo.js", function ( data, textStatus ) { - $("ul").filter( function () { - return $( this ).data("role") == "extendablelist"; - }).addClass("elLoadSuccess"); - - $("#genlist-extendable-page").die(); - $("ul.ui-extendable-list-container").extendablelist("create"); - }); - }); - - /* Color widget demo */ - var clrWidgetsAreInit = false; - $("#colorwidgets-demo").bind("pageshow", function () { - if ( clrWidgetsAreInit ) { - return; - } - - $("#colorpicker").bind("colorchanged", function ( e, clr ) { - $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); - $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); - $("#hsvpicker").hsvpicker( "option", "color", clr ); - $("#colortitle").colortitle( "option", "color", clr ); - $("#colorpalette").colorpalette( "option", "color", clr ); - }); - - $("#colorpickerbutton").bind("colorchanged", function ( e, clr ) { - $("#colorpicker").colorpicker( "option", "color", clr ); - $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); - $("#hsvpicker").hsvpicker( "option", "color", clr ); - $("#colortitle").colortitle( "option", "color", clr ); - $("#colorpalette").colorpalette( "option", "color", clr ); - }); - - $("#colorpickerbutton-noform").bind("colorchanged", function ( e, clr ) { - $("#colorpicker").colorpicker( "option", "color", clr ); - $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); - $("#hsvpicker").hsvpicker( "option", "color", clr ); - $("#colortitle").colortitle( "option", "color", clr ); - $("#colorpalette").colorpalette( "option", "color", clr ); - }); - - $("#hsvpicker").bind("colorchanged", function ( e, clr ) { - $("#colorpicker").colorpicker( "option", "color", clr ); - $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); - $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); - $("#colortitle").colortitle( "option", "color", clr ); - $("#colorpalette").colorpalette( "option", "color", clr ); - }); - - $("#colortitle").bind("colorchanged", function ( e, clr ) { - $("#colorpicker").colorpicker( "option", "color", clr ); - $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); - $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); - $("#hsvpicker").hsvpicker( "option", "color", clr ); - $("#colorpalette").colorpalette( "option", "color", clr ); - }); - - $("#colorpalette").bind("colorchanged", function ( e, clr ) { - $("#colorpicker").colorpicker( "option", "color", clr ); - $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); - $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); - $("#hsvpicker").hsvpicker( "option", "color", clr ); - $("#colortitle").colortitle( "option", "color", clr ); - }); - - $("#colorpalette").colorpalette("option", "color", "#45cc98"); - - clrWidgetsAreInit = true; - }); -}); - -$(document).ready( function () { - // add current datetime with browser language format - // NOTE: Globalize.* functions must be run after docoument ready. - $('#current_date').html(Globalize.culture().name + " -- " + - Globalize.format( new Date(), "F" )); - $('#html_font_size').html('html font size:' + $('html').css('font-size')); -}); diff --git a/demos/tizen-gray/tips/generate-elements-dynamically.html b/demos/tizen-gray/tips/generate-elements-dynamically.html deleted file mode 100755 index e1ff81c..0000000 --- a/demos/tizen-gray/tips/generate-elements-dynamically.html +++ /dev/null @@ -1,16 +0,0 @@ -
-
-

Generate elements dynamically

-
- - -
-
- -
- -
-
-
diff --git a/demos/tizen-gray/tips/generate-elements-dynamically.js b/demos/tizen-gray/tips/generate-elements-dynamically.js deleted file mode 100755 index e66d459..0000000 --- a/demos/tizen-gray/tips/generate-elements-dynamically.js +++ /dev/null @@ -1,15 +0,0 @@ -var myArray = []; -function addCheckbox(){ - var newhtml; - var i = myArray.length; - myArray[myArray.length] = 'Item - ' + myArray.length; - newhtml = '' ; - newhtml += ''; - $("#checkboxItems").append(newhtml); - $("#checkboxItems").trigger( "create" ); -} - - -$('#bAdd').live('vclick', function () { - addCheckbox(); -}); diff --git a/demos/tizen-gray/widgets/button/button.html b/demos/tizen-gray/widgets/button/button.html deleted file mode 100755 index b6d138f..0000000 --- a/demos/tizen-gray/widgets/button/button.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - -
-
-

Buttons

-
-
-
    -
  • List item 1
    Text Button TesT
  • -
  • List item 2
    Call Icon
  • -
  • List item 3
    Longer Call Icon
  • -
  • List item 4
    Icon Text
  • -
  • List item 5
  • -
  • List item 6
  • -
  • List item 7
  • -
  • List item 8
  • -
  • List item 9
  • -
  • List item 10
  • -
  • List item 11
  • -
  • List item 12
    Delete
  • -
-
-
- - - - - diff --git a/demos/tizen-gray/widgets/datefield.html b/demos/tizen-gray/widgets/datefield.html deleted file mode 100644 index 53f08ac..0000000 --- a/demos/tizen-gray/widgets/datefield.html +++ /dev/null @@ -1,44 +0,0 @@ -
-
-

Date/time picker

-
-
-
    -
  • - - - - - Date/Time Picker(Custom) - (select a date first) - -
  • -
  • - - - - - Date/Time Picker - (select a date first) - -
  • -
  • - - - - - Date Picker - (select a date first) - -
  • -
  • - - - - - Time Picker - (select a date first) - -
  • -
-
-
- - diff --git a/demos/tizen-gray/widgets/entry.html b/demos/tizen-gray/widgets/entry.html deleted file mode 100755 index 64b2e9a..0000000 --- a/demos/tizen-gray/widgets/entry.html +++ /dev/null @@ -1,48 +0,0 @@ - -
- -
-

Entry

-
- -
-
- -
-
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
-
-
- diff --git a/demos/tizen-gray/widgets/grid/css/namecard.css b/demos/tizen-gray/widgets/grid/css/namecard.css deleted file mode 100755 index 4d88f2a..0000000 --- a/demos/tizen-gray/widgets/grid/css/namecard.css +++ /dev/null @@ -1,46 +0,0 @@ -.ui-demo-namecard { - display : inline-block; - width : 5.1rem; - height : 6.1rem; - margin-right: 0.4rem; - margin-left: 0.4rem; - margin-bottom: 1.5rem; -} - -.ui-demo-namecard-pic { - float : left; - padding-top : 0.2rem; - padding-left : 0.2rem; - padding-bottom: 0rem; -} - -.ui-demo-namecard-pic-img { - height : 5rem; - width : 5rem; -} - -.ui-demo-namecard-contents { - float : left; - height : 1rem; - margin: 0rem; -} - -.ui-demo-namecard-contents span { - font-style : italic; - color : #666; - border-bottom : 1px dashed; - margin-top: 0rem; -} - -.ui-demo-namecard-contents span.name { - color : white; - font : normal 0.8rem Georgia, serif !important; - - width: 5rem; - display: inline-block; - white-space : nowrap; - overflow : hidden !important; - text-overflow : ellipsis !important; - -o-text-overflow:ellipsis; - resize:horizontal; -} diff --git a/demos/tizen-gray/widgets/grid/virtualgrid.html b/demos/tizen-gray/widgets/grid/virtualgrid.html deleted file mode 100755 index f3c5570..0000000 --- a/demos/tizen-gray/widgets/grid/virtualgrid.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
-

Virtualgrid

-
-
- -
-
- -
diff --git a/demos/tizen-gray/widgets/handler.html b/demos/tizen-gray/widgets/handler.html deleted file mode 100755 index a96bd43..0000000 --- a/demos/tizen-gray/widgets/handler.html +++ /dev/null @@ -1,118 +0,0 @@ - -
-
-

Handler Test

-
-
- -
-
\ No newline at end of file diff --git a/demos/tizen-gray/widgets/imageslider.html b/demos/tizen-gray/widgets/imageslider.html deleted file mode 100644 index fb9c518..0000000 --- a/demos/tizen-gray/widgets/imageslider.html +++ /dev/null @@ -1,27 +0,0 @@ - -
-
-

Image Slider

-
-
-
- - - - - - - - - -
-
-
-
- -
-
-
diff --git a/demos/tizen-gray/widgets/list/list-dialogue.html b/demos/tizen-gray/widgets/list/list-dialogue.html deleted file mode 100644 index 6f9a52e..0000000 --- a/demos/tizen-gray/widgets/list/list-dialogue.html +++ /dev/null @@ -1,362 +0,0 @@ -
-
-

Dialog lists

-
-
-
    - -
  • - 1line -
  • -
  • - 1line (with link) -
  • -
  • - 1line-sub - subtext -
  • -
  • - - 1line-sub (with link) - subtext - -
  • -
  • - 1line-setting - Sub text -
  • -
  • - 1line-btn1 -
    Text Button
    -
  • -
  • - 1line-btn2 -
    -
  • -
  • - 1line-toggle -
    -
  • - -
  • - 1line-bigicon1 - -
  • -
  • - 1line-bigicon2 - - Sub text -
  • -
  • - 1line-bigicon4 - -
    Text Button
    -
  • -
  • - 1line-bigicon5 - -
    -
  • -
  • - 1line-bigicon6 - -
    -
  • -
  • - 1line-check1 - -
  • -
  • - 1line-check2 -
    -
    -
  • -
  • - 1line-check3 -
    - -
  • -
  • - 1line-check4 -
    - -
    -
  • -
  • - 1line-radio1 -
    -
  • -
  • - 1line-radio3 -
    -
    -
  • -
  • - 1line-radio4 -
    - -
  • -
  • - 1line-radio5 -
    - -
    -
  • - - -
  • -
    subtext
    -
    1line-leftsub1 longtextlongtextlongtextlongtextlongtextlongtext
    -
  • -
  • -
    subtext
    -
    1line-leftsub2
    - -
  • -
  • - 3line-dgroup1 - Subtext1 - Subtext2 -
  • - - -
  • - 2line - Subtext -
  • - -
  • - 2line-sub-main - Subtext -
  • - -
  • - 2line-2sub - Subtext - Subtext2 -
  • - -
  • - 2line-btn1 - Subtext -
    button
    -
  • - -
  • - 2line-btn1 - Subtext -
    -
  • - -
  • - 2line-btn2 - Subtext -
    -
  • - -
  • - 2line-star1 - - Subtext - Subtext2 -
  • - -
  • - 2line-star2 - - Subtext - -
  • - -
  • - 2line-setting - Subtext -
  • - -
  • - 2line-toggle-setting - Subtext -
    -
  • - -
  • - 2line-btn-setting - Subtext -
    -
  • - -
  • - 2line-bigicon0 - Subtext -
    -
  • - -
  • - 2line-bigicon1 - Subtext - -
  • - -
  • - 2line-bigicon2 - Subtext - - Subtext2 -
  • - -
  • - 2line-bigicon3 - Subtext - -
  • - -
  • - 2line-bigicon4 - Subtext -
    - -
  • - -
  • - 2line-check1 - Subtext -
    -
  • - -
  • - 2line-check2 - Subtext -
    -
    -
  • - -
  • - 2line-check3 - Subtext -
    - -
  • - - -
  • - 2line-radio1 - Subtext -
    -
  • - -
  • - 2line-radio2 - Subtext -
    - -
  • - - -
  • - - 2line-colorbar1 - Subtext - - - - - Subtext2 -
    button
    -
  • - -
  • - - 2line-colorbar3 - Subtext -
    button
    -
  • - -
  • - - 2line-colorbar3 - Subtext -
    -
  • - -
  • - - 2line-colorbar3 - Subtext -
    - -
  • - -
  • - - 2line-bigicon8 - Subtext - -
  • - -
  • - 2line-thumb1 - Subtext - -
  • - -
  • - 2line-thumb2 - Subtext - -
  • - -
  • - Subtext - 2line-sub-main-bigicon1 - -
  • - -
  • - - 2line-bigicon-pgbar1 - Subtext - Subtext2 -
    Cancel
    -
    -
  • - -
  • - - 2line-bigicon-pgbar2 - Subtext -
    button
    -
  • - -
  • - - 2line-bigicon-pgbar2 - Subtext -
    -
  • - -
  • - - 2line-bigicon-pgbar3 - Subtext - Subtext2 -
    -
  • - -
  • -
    - - 2line-icon-bigicon-btn - Subtext -
    -
  • - -
  • - 2line-thumb3 - Subtext - -
  • - -
-
-
- diff --git a/demos/tizen-gray/widgets/list/list-expandable.html b/demos/tizen-gray/widgets/list/list-expandable.html deleted file mode 100644 index b164328..0000000 --- a/demos/tizen-gray/widgets/list/list-expandable.html +++ /dev/null @@ -1,45 +0,0 @@ -
-
-

expandable list

-
-
-
    -
  • 1line
  • -
  • exp1-sub 1
  • -
  • exp1-sub 2
  • -
  • exp1-sub 3
  • -
  • exp1-sub 4
  • -
  • exp1-sub 5
  • -
  • exp1-sub 6
  • -
  • exp1-sub 7
  • -
  • exp1-sub 2 (exp2)
  • -
  • exp2-sub 1
  • -
  • exp2-sub 2
  • -
  • exp2-sub 3
  • -
  • - 2line - Subtext -
  • -
  • - 2line-sub-main - Subtext -
  • -
  • - 2line-radio1 - Subtext -
    -
  • -
  • - - 2line-colorbar3 - Subtext - - -
  • - - -
-
-
-
-
diff --git a/demos/tizen-gray/widgets/list/list-radio.html b/demos/tizen-gray/widgets/list/list-radio.html deleted file mode 100644 index c9feecf..0000000 --- a/demos/tizen-gray/widgets/list/list-radio.html +++ /dev/null @@ -1,56 +0,0 @@ -
-
-

Radio Button lists

-
-
-
-
    -
  • - Radio Item 1 - -
  • -
  • - Radio Item 2 - -
  • -
  • - Radio Item 3 - -
  • -
  • - Radio Item 4 - -
    -
  • -
  • - Radio Item 5 - - -
  • -
  • - Radio Item 6 - -
  • -
  • - Radio Item 7 - -
  • -
  • - Radio Item 8 - -
  • -
  • - Radio Item 9 - -
    -
  • -
  • - Radio Item 10 - - -
  • -
-
-
-
- diff --git a/demos/tizen-gray/widgets/list/list-swipe.html b/demos/tizen-gray/widgets/list/list-swipe.html deleted file mode 100644 index b6502ea..0000000 --- a/demos/tizen-gray/widgets/list/list-swipe.html +++ /dev/null @@ -1,107 +0,0 @@ -
-
-

Swipe lists

-
-
-
    -
      -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      subtext
      -
      1line-leftsub1
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      1line
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      subtext
      -
      1line-leftsub1
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      1line
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      subtext
      -
      1line-leftsub1
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      1line
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      subtext
      -
      1line-leftsub1
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      1line
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      subtext
      -
      1line-leftsub1
      -
      -
    • -
    • -
      Twitter
      -
      Twitter
      -
      Facebook
      -
      Facebook
      -
      -
      1line
      -
      -
    • -
    -
-
-
- diff --git a/demos/tizen-gray/widgets/list/list.html b/demos/tizen-gray/widgets/list/list.html deleted file mode 100755 index b45ec05..0000000 --- a/demos/tizen-gray/widgets/list/list.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - -
-
-

-
-
- - -
-
- - - - diff --git a/demos/tizen-gray/widgets/pagecontrol/pagecontrol.html b/demos/tizen-gray/widgets/pagecontrol/pagecontrol.html deleted file mode 100644 index 90015ec..0000000 --- a/demos/tizen-gray/widgets/pagecontrol/pagecontrol.html +++ /dev/null @@ -1,20 +0,0 @@ -
-
-

Pagecontrol (page indicator)

-
-
-
-
-
-
-
-
-
-
-
-
- -
here
- Set each values randomly -
-
diff --git a/demos/tizen-gray/widgets/progressbar.html b/demos/tizen-gray/widgets/progressbar.html deleted file mode 100644 index 0785d6e..0000000 --- a/demos/tizen-gray/widgets/progressbar.html +++ /dev/null @@ -1,20 +0,0 @@ -
-
-

Progress bar

-
-
-
    -
  • Progress Bar
  • -
  • When you click progress bar, it starts updating values...
  • -
  • - -
  • Progress Pending
  • -
  • - -
  • Progress ~ing
  • -
  • -
-
-
- - diff --git a/demos/tizen-gray/widgets/progressbar.js b/demos/tizen-gray/widgets/progressbar.js deleted file mode 100644 index 6055202..0000000 --- a/demos/tizen-gray/widgets/progressbar.js +++ /dev/null @@ -1,69 +0,0 @@ -var progressbar_running; - -$("#progressbar-demo").live("pageshow", function ( e ) { - - $("#progressbarTest").bind("vclick", function ( e ) { - progressbar_running = !progressbar_running; - - // request animation frame - window.requestAnimFrame = (function () { - return window.requestAnimationFrame || - window.webkitRequestAnimationFrame || - window.mozRequestAnimationFrame || - window.oRequestAnimationFrame || - window.msRequestAnimationFrame || - function (animloop) { - return window.setTimeout(animloop, 1000 / 60); - }; - }()); - - window.cancelRequestAnimFrame = (function () { - return window.cancelAnimationFrame || - window.webkitCancelRequestAnimationFrame || - window.mozCancelRequestAnimationFrame || - window.oCancelRequestAnimationFrame || - window.msCancelRequestAnimationFrame || - clearTimeout; - }()); - - var request, - i = 0; - - // start and run the animloop - (function animloop() { - if ( !progressbar_running ) { - cancelRequestAnimFrame( request ); - return; - } - - $("#progressbar").progressbar( "option", "value", i++ ); - - request = requestAnimFrame( animloop ); - - if ( i > 100 ) { - cancelRequestAnimFrame( request ); - } - }()); - }); - - $( this ).find("#pending").progress({ running: true }); - $( this ).find("#progressing").progress({ running: true }); - - $("#pendingTest").bind("vclick", function ( e ) { - var running = $("#pending").progress( "option", "running" ); - // start/stop progressing animation - $("#pending").progress( "option", "running", !running ); - }); - - $("#progressingTest").bind("vclick", function ( e ) { - var running = $("#progressing").progress( "option", "running" ); - // start/stop progressing animation - $("#progressing").progress( "option", "running", !running ); - }); -}); - -$("#progressbar-demo").live("pagehide", function ( e ) { - progressbar_running = false; - $( this ).find("#pending").progress( { running: true } ); - $( this ).find("#progressing").progress( { running: true } ); -}); diff --git a/demos/tizen-gray/widgets/searchbar.html b/demos/tizen-gray/widgets/searchbar.html deleted file mode 100755 index b1a1e47..0000000 --- a/demos/tizen-gray/widgets/searchbar.html +++ /dev/null @@ -1,51 +0,0 @@ - -
-
-

Searchbar

-
-
- - - -
- -
- -
- -
-

Hairston

-

Hansbrough

-

Allred

-

Hanrahan

-

Egan

-

Dare

-

Edmonson

-

Calip

-

Baker

-

Fazekas

-

Garrity

-

Hansen

-

Feigenbaum

-

Fillmore

-

Darden

-

Davis

-

Fitzgerald

-

Carr

-

Danilovic

-

Dark

-

Alexander

-

Allen

-

Edwards

-

Garrett

-

Gardner

-

Carroll

-

Garner

-

Finn

-

Edelin

-

Gay

-
- - -
- diff --git a/demos/tizen-gray/widgets/selectioninfo.html b/demos/tizen-gray/widgets/selectioninfo.html deleted file mode 100755 index f8273d3..0000000 --- a/demos/tizen-gray/widgets/selectioninfo.html +++ /dev/null @@ -1,25 +0,0 @@ - - -
-
-
-

Selection Info

-
- -
-

Selectioninfo Test

-
- Choose some days -
- - - -
- - -

Click Here to Show Small Popup

- -
- - - diff --git a/demos/tizen-gray/widgets/small-popup-interval.html b/demos/tizen-gray/widgets/small-popup-interval.html deleted file mode 100644 index 28caacb..0000000 --- a/demos/tizen-gray/widgets/small-popup-interval.html +++ /dev/null @@ -1,10 +0,0 @@ - -
-
-
-

Notification

-
-
-

Click Here to Show Small Popup

-
-
diff --git a/demos/tizen-gray/widgets/small-popup.html b/demos/tizen-gray/widgets/small-popup.html deleted file mode 100644 index 500c723..0000000 --- a/demos/tizen-gray/widgets/small-popup.html +++ /dev/null @@ -1,10 +0,0 @@ - -
-
-
-

Notification

-
-
-

Click Here to Show Small Popup

-
-
diff --git a/demos/tizen-gray/widgets/switch/switch.html b/demos/tizen-gray/widgets/switch/switch.html deleted file mode 100644 index 890aaa6..0000000 --- a/demos/tizen-gray/widgets/switch/switch.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -
-
-

Switch

-
-
-
-

-

-

Coordinated switches:

-
-
-
-
-

Web UI Framework - Widgets gallery

-
-
- - diff --git a/demos/tizen-gray/widgets/switch/switch.js b/demos/tizen-gray/widgets/switch/switch.js deleted file mode 100644 index 5addffc..0000000 --- a/demos/tizen-gray/widgets/switch/switch.js +++ /dev/null @@ -1,13 +0,0 @@ -var coordSwitchesAreInit = false; -$("#switch-demo").live("pageshow", function(e) { - if ( coordSwitchesAreInit ) return; - - $("#switch-1-coord").bind("changed", function(e) { - $("#switch-2-coord").toggleswitch("option", "checked", $("#switch-1-coord").toggleswitch("option", "checked")); - }); - $("#switch-2-coord").bind("changed", function(e) { - $("#switch-1-coord").toggleswitch("option", "checked", $("#switch-2-coord").toggleswitch("option", "checked")); - }); - - coordSwitchesAreInit = true; -}); diff --git a/demos/tizen-gray/widgets/tickernoti-interval.html b/demos/tizen-gray/widgets/tickernoti-interval.html deleted file mode 100644 index 92a4c18..0000000 --- a/demos/tizen-gray/widgets/tickernoti-interval.html +++ /dev/null @@ -1,10 +0,0 @@ - -
-
-
-

Notification

-
-
-

Click Here to Show TickerNoti

-
-
diff --git a/demos/tizen-gray/widgets/tickernoti.html b/demos/tizen-gray/widgets/tickernoti.html deleted file mode 100644 index 673760c..0000000 --- a/demos/tizen-gray/widgets/tickernoti.html +++ /dev/null @@ -1,10 +0,0 @@ - -
-
-
-

Notification

-
-
-

Click Here to Show TickerNoti

-
-
diff --git a/demos/tizen-gray/configure.js b/demos/tizen-winsets/configure.js similarity index 100% rename from demos/tizen-gray/configure.js rename to demos/tizen-winsets/configure.js diff --git a/demos/tizen-winsets/custom.css b/demos/tizen-winsets/custom.css new file mode 100644 index 0000000..fb9759d --- /dev/null +++ b/demos/tizen-winsets/custom.css @@ -0,0 +1,17 @@ +.my-check-button-style { + margin: 10px; +} +.my-check-inline-style { + display: inline; +} + +.ui-icon-test{ + background-size: 100% 100%; + background-image: url(test.png); +} + +.ui-icon-test2{ + background-position:0% 0%; + background-size:50% 50%; + background-image: url(test.png); +} diff --git a/demos/tizen-gray/icon-tizen.png b/demos/tizen-winsets/icon-tizen.png similarity index 100% rename from demos/tizen-gray/icon-tizen.png rename to demos/tizen-winsets/icon-tizen.png diff --git a/demos/tizen-winsets/index.html b/demos/tizen-winsets/index.html new file mode 100755 index 0000000..9969ada --- /dev/null +++ b/demos/tizen-winsets/index.html @@ -0,0 +1,1171 @@ + + + + + + + + + + + + Tizen UI + + + + + + + + + +
+
+

Tizen UI

+
+
+

+

+
+ Select theme + + + + +
+ + +
+
+ +
+
+

Not Implemented

+
+
+

Not Implemented

+
+
+ +
+
+

Slider

+
+
+
    +
  • Normal Slider
  • +
  • +
  • Popup Slider
  • +
  • +
  • Icon Slider
  • +
  • +
  • +
  • Text Slider
  • +
  • +
  • +
+
+
+ +
+
+

Optional Header

+
+ +
+ +
+
+ TestBtn +

Option header - 2 buttons

+ + TestBtn + +
+
+ + +
+
+
+
+

Some content would be here

+
+
+ +
+
+

Option header - 3 buttons

+
+
+ + + +
+
+
+
+

Some content would be here

+
+
+ +
+
+

Option header - 4 buttons

+
+
+ + + + +
+
+
+
+

Some content would be here

+
+
+ +
+
+

Option header - 4 buttons

+ +
+
+

Some content would be here

+
+
+ +
+
+

ControlBar

+
+
+ +
+
+ + + +
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+

Tabbar

+
+
+ +
+
+
+ +
+
+
+ +
+
+

Tabbar

+
+
+ +
+
+
+ +
+
+
+ +
+
+

Tabbar

+
+
+ +
+
+
+ +
+
+
+ +
+
+

Tabbar

+
+
+ +
+
+
+ +
+
+
+ +
+
+

Tabbar

+
+
+
+ +
+
+
+
+ +
+
+
+ +
+
+

Tabbar

+
+
+
+ +
+
+
+
+
    +
  • +
  • +
  • +
  • +
  • +
+
+
+
+ + + + +
+
+
+ +
+
+
+
+ +
+
+
+
+
+ + +
+
+

Toolbar

+
+
+
+ +
+
+
+
+ +
+
+
+ +
+
+

Toolbar

+
+
+
+ +
+
+
+
+ +
+
+
+ +
+
+

Toolbar

+
+
+
+ +
+
+
+
+ +
+
+
+ +
+
+

Toolbar

+
+
+
+ +
+
+
+
+ +
+
+
+ +
+
+

Toolbar

+
+
+
+ +
+
+
+
+ +
+
+
+ +
+
+

Toolbar

+
+
+
+ +
+
+
+
+
    +
  • +
  • +
  • +
  • +
  • +
+
+
+
+ + + + +
+
+

Mixed Toolbar

+
+
+

Not Supported for winset

+
+
+ + + +
+
+

Vertical Toolbar

+
+
+ +
+ +
+
+
+ + + +
+
+

Vertical Toolbar

+
+
+ +
+ +
+
+
+ + + +
+
+

Vertical Toolbar

+
+
+
+
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Extended Title

+
+ +
+ +
+
+

Extended Title 2 Button

+
+
+ + + + +
+
+
+
+
+ +
+
+
+ +
+
+

Extended Title 3 Button

+
+
+ + + + + + +
+
+
+
+
+ +
+
+
+ +
+
+

Extended Title 4 Button

+
+
+ + + + + + + + +
+
+
+
+
+ +
+
+
+ +
+
+

Extended Footer style

+
+
+

test page

+
+
+
+
+ + + + + + +
+
+ Edit +
+
+ + + + + +
+
+

No Contents

+
+
+
+

Text Type

+

Text

+
+
+
+ +
+
+

No Contents

+
+
+
+

Picture Type

+

Text

+
+
+
+ +
+
+

No Contents

+
+
+
+

Multimedia Type

+

Text

+
+
+
+ +
+
+

No Contents

+
+
+
+

Unnamed Type

+
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/demos/tizen-winsets/main.js b/demos/tizen-winsets/main.js new file mode 100755 index 0000000..5f42b6f --- /dev/null +++ b/demos/tizen-winsets/main.js @@ -0,0 +1,230 @@ +$( document ).bind("pagecreate", function () { + /* Color widget demo */ + $("input[type='checkbox'][data-widget-type-list]").bind("change", function() { + var ls = $( this ).attr("data-widget-type-list").split(","), + page = $( this ).closest(":jqmData(role='page')"), + disabled = $( this ).is(":checked"); + + $.each(ls, function( idx, widgetType ) { + var ar = widgetType.split("-"); + + if ( ar.length === 2 ) { + page.find(":" + widgetType)[ar[1]]( "option", "disabled", disabled ); + } + }); + }); + + $("#checkHideInput").bind("change", function (e) { + $("#colorpickerbutton").colorpickerbutton("option", "hideInput", $("#checkHideInput").is(":checked")); + }); + + $('#scroller-demo').bind('pageshow', function ( e ) { + $page = $( e.target ); + /* + * many options cannot be set without subclassing since they're + * used in the _create method - it seems as if these are for + * internal use only and scrollDuration is only changable by + * chance. + */ + var $scroller2List = $('#scroller2').find('ul'); + $scroller2List.scrollview( 'option','scrollDuration','10000' ); + + // only works by manipulating css + // the only other way is to use attribute 'scroll-method="scroll"' in html + $('#scroller2 .ui-scrollbar').css( 'visibility','hidden' ); + + /* + * make toggle button switch scroll bars on and off + */ + var scrollBarVisible = $('#scroller2').find('.ui-scrollbar').css('visibility') === "visible"; + + var $toggleScrollBars = $('#toggleScrollBars'); + $toggleScrollBars.attr( "checked", scrollBarVisible ).checkboxradio("refresh"); + + /* the 'label' is the thing that is clicked, not the input element */ + var $label = $toggleScrollBars.siblings('label').attr( 'for', '#toggleScrollBars' ); + $label.bind("click", function () { + var $scrollBar = $('#scroller2').find('.ui-scrollbar'); + var scrollBarVisible = $scrollBar.css('visibility') === "visible"; + var newVisibility = scrollBarVisible ? "hidden" : "visible"; + $scrollBar.css( 'visibility', scrollBarVisible ? "hidden" : "visible" ); + }); + }); + + $("#demo-date").bind("date-changed", function ( e, newDate ) { + $("#selected-date1").text( newDate.toString() ); + }); + + $("#demo-date2").bind("date-changed", function ( e, newDate ) { + $("#selected-date2").text( newDate.toString() ); + }); + + $("#demo-date3").bind("date-changed", function ( e, newDate ) { + $("#selected-date3").text( newDate.toString() ); + }); + + $("#demo-date4").bind("date-changed", function ( e, newDate ) { + $("#selected-date4").text( newDate.toString() ); + }); + + $('#noti-demo').bind('vmouseup', function ( e ) { + $('#notification').notification('open'); + }); + + $('#noti-icon1').bind('vclick', function ( e ) { + $('#notification').notification('icon', './test/icon02.png'); + }); + + $('#noti-icon2').bind('vclick', function ( e ) { + $('#notification').notification('icon', './test/icon01.png'); + }); + + $('#imageslider-add').bind('vmouseup', function ( e ) { + $('#imageslider').imageslider('add', './test/10.jpg'); + $('#imageslider').imageslider('add', './test/11.jpg'); + $('#imageslider').imageslider('refresh'); + }); + + $('#imageslider-del').bind('vmouseup', function ( e ) { + $('#imageslider').imageslider('delete'); + }); + + $('#selectioninfo-demo').bind('vmouseup', function ( e ) { + $('#smallpopup_selectioninfo').notification( "text", + $("#dayselector1").find(".ui-checkbox-on").length + " items are selected" ); + $('#smallpopup_selectioninfo').notification('open'); + }); + + $('#groupindex-demo').bind('pageshow', function () { + $('#groupindex').scrolllistview(); + }); + + $("#showVolumeButton").bind("vclick", function ( e ) { + $("#myVolumeControl").volumecontrol("open"); + }); + + $("#volumecontrol_setBasicTone").bind("change", function ( e ) { + var basicTone = !($("#volumecontrol_setBasicTone").next('label') + .find(".ui-icon").hasClass("ui-icon-checkbox-on")); + + if ( basicTone ) { + $("#myVolumeControl").volumecontrol( "option", "basicTone", true ); + $("#myVolumeControl").volumecontrol( "option", "title", "Basic Tone" ); + } else { + $("#myVolumeControl").volumecontrol( "option", "basicTone", false ); + $("#myVolumeControl").volumecontrol( "option", "title", "Volume" ); + } + }); + + $("#myoptionheader").bind('collapse', function () { + console.log('option header was collapsed'); + }); + + $("#myoptionheader").bind('expand', function () { + console.log('option header was expanded'); + }); + + //day-selector codes... + $("#day-selector-check-all").live('vclick', function () { + $("#dayselector1").dayselector('selectAll'); + }); + + $("#day-selector-get-days").live('vclick', function () { + var valuesStr = $("#dayselector1").dayselector('value').join(', '); + $(".selectedDay").text( valuesStr ); + }); + + /* Gen list : Dummy DB load */ + $(".virtuallist_demo_page").live("pagecreate", function () { + /* ?_=ts code for no cache mechanism */ + $.getScript( "./virtuallist-db-demo.js", function ( data, textStatus ) { + $("ul").filter( function () { + return $( this ).data("role") == "virtuallistview"; + }).addClass("vlLoadSuccess"); + + $(".virtuallist_demo_page").die(); + $("ul.ui-virtual-list-container").virtuallistview("create"); + }); + }); + + /*Expandable list : Dummy DB load*/ + $("#genlist_extendable_page").live("pagecreate", function () { + /*?_=ts code for no cache mechanism*/ + $.getScript( "./virtuallist-db-demo.js", function ( data, textStatus ) { + $("ul").filter( function () { + return $( this ).data("role") == "extendablelist"; + }).addClass("elLoadSuccess"); + + $("#genlist-extendable-page").die(); + $("ul.ui-extendable-list-container").extendablelist("create"); + }); + }); + + /* Color widget demo */ + var clrWidgetsAreInit = false; + $("#colorwidgets-demo").bind("pageshow", function () { + if ( clrWidgetsAreInit ) { + return; + } + + $("#colorpicker").bind("colorchanged", function ( e, clr ) { + $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); + $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); + $("#hsvpicker").hsvpicker( "option", "color", clr ); + $("#colortitle").colortitle( "option", "color", clr ); + $("#colorpalette").colorpalette( "option", "color", clr ); + }); + + $("#colorpickerbutton").bind("colorchanged", function ( e, clr ) { + $("#colorpicker").colorpicker( "option", "color", clr ); + $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); + $("#hsvpicker").hsvpicker( "option", "color", clr ); + $("#colortitle").colortitle( "option", "color", clr ); + $("#colorpalette").colorpalette( "option", "color", clr ); + }); + + $("#colorpickerbutton-noform").bind("colorchanged", function ( e, clr ) { + $("#colorpicker").colorpicker( "option", "color", clr ); + $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); + $("#hsvpicker").hsvpicker( "option", "color", clr ); + $("#colortitle").colortitle( "option", "color", clr ); + $("#colorpalette").colorpalette( "option", "color", clr ); + }); + + $("#hsvpicker").bind("colorchanged", function ( e, clr ) { + $("#colorpicker").colorpicker( "option", "color", clr ); + $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); + $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); + $("#colortitle").colortitle( "option", "color", clr ); + $("#colorpalette").colorpalette( "option", "color", clr ); + }); + + $("#colortitle").bind("colorchanged", function ( e, clr ) { + $("#colorpicker").colorpicker( "option", "color", clr ); + $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); + $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); + $("#hsvpicker").hsvpicker( "option", "color", clr ); + $("#colorpalette").colorpalette( "option", "color", clr ); + }); + + $("#colorpalette").bind("colorchanged", function ( e, clr ) { + $("#colorpicker").colorpicker( "option", "color", clr ); + $("#colorpickerbutton").colorpickerbutton( "option", "color", clr ); + $("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr ); + $("#hsvpicker").hsvpicker( "option", "color", clr ); + $("#colortitle").colortitle( "option", "color", clr ); + }); + + $("#colorpalette").colorpalette("option", "color", "#45cc98"); + + clrWidgetsAreInit = true; + }); +}); + +$(document).ready( function () { + // add current datetime with browser language format + // NOTE: Globalize.* functions must be run after docoument ready. + $('#current_date').html(Globalize.culture().name + " -- " + + Globalize.format( new Date(), "F" )); + $('#html_font_size').html('html font size:' + $('html').css('font-size')); +}); diff --git a/src/themes/tizen/tizen-gray/images/00_button_reveal_press.png b/demos/tizen-winsets/test.png similarity index 100% rename from src/themes/tizen/tizen-gray/images/00_button_reveal_press.png rename to demos/tizen-winsets/test.png diff --git a/src/themes/tizen/tizen-gray/images/00_button_reveal.png b/demos/tizen-winsets/test.png~HEAD similarity index 100% rename from src/themes/tizen/tizen-gray/images/00_button_reveal.png rename to demos/tizen-winsets/test.png~HEAD diff --git a/demos/tizen-winsets/test.png~master b/demos/tizen-winsets/test.png~master new file mode 100755 index 0000000..973b0ea Binary files /dev/null and b/demos/tizen-winsets/test.png~master differ diff --git a/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html b/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html new file mode 100644 index 0000000..d9d750c --- /dev/null +++ b/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html @@ -0,0 +1,12 @@ +
+
+

Custom globalize culture

+
+
+

Loading custom globalize culture file

+

A predefined Globalize culture file is loaded by the loader in Tizen Web UI Framework, according to the current language. If you want to load additional culture file, you can create each culture files, and let to choose one of them to load it by using $.tizen.util.loadCustomGlobalizeCulture() API.

+
+
+ +
+ diff --git a/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.js b/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.js new file mode 100644 index 0000000..df7036c --- /dev/null +++ b/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.js @@ -0,0 +1,19 @@ +( function ( $ ) { + var customCultureFiles = { + "en" : "en.js", + "en-US" : "en.js", + "fr" : "fr.js" + }, + lang, + content = $( '#page-tips-custom-globalize-culture > :jqmData(role="content")' ); + + $.tizen.util.loadCustomGlobalizeCulture( customCultureFiles ); + + lang = Globalize.culture( ).name; + content.append( $( '
' ) + .text( "This is a text from custom globalize culture file (key:hello): " + Globalize.localize( 'hello' ) ) ); + content.append( + $( '
' ) + .text( "Current lang: " + lang + ", Custom culture file: " + customCultureFiles[lang] ) ); + content.trigger( "refresh" ); +} ) ( jQuery ); diff --git a/demos/tizen-winsets/tips/custom-globalize-culture/en.js b/demos/tizen-winsets/tips/custom-globalize-culture/en.js new file mode 100644 index 0000000..97574a1 --- /dev/null +++ b/demos/tizen-winsets/tips/custom-globalize-culture/en.js @@ -0,0 +1,17 @@ +( function ( ) { + + var cultureInfo = { + messages: { + "hello" : "hello", + "translate" : "translate" + } + }, + supportLang = [ "en", "en-US" ], + i, lang; + + for ( i in supportLang ) { + lang = supportLang[ i ]; + Globalize.addCultureInfo( lang, cultureInfo ); + } + +} ) ( ); diff --git a/demos/tizen-winsets/tips/custom-globalize-culture/fr.js b/demos/tizen-winsets/tips/custom-globalize-culture/fr.js new file mode 100644 index 0000000..7e43728 --- /dev/null +++ b/demos/tizen-winsets/tips/custom-globalize-culture/fr.js @@ -0,0 +1,10 @@ +( function ( ) { + + Globalize.addCultureInfo( "fr", { + messages: { + "hello" : "bonjour", + "translate" : "traduire" + } + } ); + +} ) ( ); diff --git a/demos/tizen-winsets/tips/generate-elements-dynamically.html b/demos/tizen-winsets/tips/generate-elements-dynamically.html new file mode 100755 index 0000000..8d19c68 --- /dev/null +++ b/demos/tizen-winsets/tips/generate-elements-dynamically.html @@ -0,0 +1,82 @@ +
+
+

Generate elements dynamically

+
+ + +
+
+
Example #1 Trigger Create
+
Trigger Create after append element on HTML.
+
+

+ $( "#checkboxItems" ).append( newhtml) ;
+ $( "#checkboxItems" ).trigger( "create" );
+

+
+ +
+ +
+ +
+
+
+
Example #2 Call the widget Creator function.
+
+ Call the widget's creator function after append element on HTML.
+ Usually, creator function is same to widget name. But, "button" widget is a little bit different. + Call buttonMarkup() or trigger "create" to the parent of button. +
+
+

+ /* Append new button */
+ var buttonTemplate = "<div data-role='button' data-inline='true' " + "data-icon='call' data-style='circle' " + "data-theme='s' class='newbutton'></div>";
+ $( buttonTemplate ).buttonMarkup().appendTo( "#buttonItems" );

+ + /* It's same to call ".buttonMarkup()". */
+ $( "#buttonItems" ).trigger( "create" ); +

+
+ +
+
+ +
+
+
Add new Button item
+
+
+
+
+
Example #3 Append Listview on JQM.
+
+ To add new <LI> element on JQM listview, insert items and call "refresh" to the listview.
+
+
+

+ var listTemplate = "<li>Appended New Item</li>";
+ $( listTemplate ).appendTo( "#listview" );
+ $( "#listview" ).listview( "refresh");
+

+
+ +
    +
  • Test
  • +
  • Test
  • +
  • Test
  • +
+ +
+
+
Add new item to Listview
+
+
+
+
+
diff --git a/demos/tizen-winsets/tips/generate-elements-dynamically.js b/demos/tizen-winsets/tips/generate-elements-dynamically.js new file mode 100755 index 0000000..415343e --- /dev/null +++ b/demos/tizen-winsets/tips/generate-elements-dynamically.js @@ -0,0 +1,33 @@ +var myArray = []; +function addCheckbox(){ + var newhtml, + i = myArray.length; + + myArray[myArray.length] = 'Item - ' + myArray.length; + newhtml = '' ; + newhtml += ''; + $( "#checkboxItems" ).append( newhtml ); + $( "#checkboxItems" ).trigger( "create" ); +} + + +$( '#bAdd' ).live( 'vclick', function () { + addCheckbox(); +} ); + +$( "#ButtonAdd" ).live( "vclick", function() { + /* Append new button */ + var buttonTemplate = "
"; + $( buttonTemplate ).buttonMarkup().appendTo( "#buttonItems" ); + + /* Same works */ + /*$("#buttonItems").trigger("create");*/ +} ); + +$( "#ListAdd" ).live( "vclick", function() { + var listTemplate = "
  • Appended New Item
  • "; + $( listTemplate ).appendTo( "#listview" ); + $( "#listview" ).listview( "refresh"); +} ); diff --git a/demos/tizen-winsets/tips/list-sample/expandable.html b/demos/tizen-winsets/tips/list-sample/expandable.html new file mode 100644 index 0000000..bf980c7 --- /dev/null +++ b/demos/tizen-winsets/tips/list-sample/expandable.html @@ -0,0 +1,13 @@ +
    +
    +

    Single-Page Application

    +
    + +
    +
      +
    +
    + +
    +
    +
    diff --git a/demos/tizen-winsets/tips/list-sample/expandable.js b/demos/tizen-winsets/tips/list-sample/expandable.js new file mode 100644 index 0000000..cfaecac --- /dev/null +++ b/demos/tizen-winsets/tips/list-sample/expandable.js @@ -0,0 +1,22 @@ +$( document ).bind( "pagebeforeshow", function () { + var id = 0, + add_ex = function () { + var li = '
  • exp1 parent
  • ' + + '
  • exp1-sub 1
  • ' + + '
  • exp1-sub 2
  • '; + + $("#mylist").append( li ).trigger("create"); + }, + add_item = function () { + var li = '
  • exp1-sub 3
  • '; + + $("#mylist").append( li ).trigger("create"); + }; + + add_ex(); + $("#mylist").listview("refresh"); + + add_item(); + $("#mylist").listview("refresh"); + $("#exp1").expandablelist("refresh"); +}); diff --git a/demos/tizen-winsets/tips/list-sample/list-sample.html b/demos/tizen-winsets/tips/list-sample/list-sample.html new file mode 100644 index 0000000..4179413 --- /dev/null +++ b/demos/tizen-winsets/tips/list-sample/list-sample.html @@ -0,0 +1,21 @@ +
    +
    +

    Single-Page Application

    +
    + +
    +
      +
    +
    + +
    +
    + +
    +
    +
    diff --git a/demos/tizen-winsets/tips/list-sample/list-sample.js b/demos/tizen-winsets/tips/list-sample/list-sample.js new file mode 100644 index 0000000..5c4c9cf --- /dev/null +++ b/demos/tizen-winsets/tips/list-sample/list-sample.js @@ -0,0 +1,52 @@ +$( document ).bind( "pagecreate", function () { + var id = 0, + add_item = function () { + var li = '
  • ' + + 'Item ' + id + '' + + '
    delete
    '+ + '
  • '; + + id++; + + $("#mylist").append( li ).trigger("create"); + }; + + $("#add").bind( "vclick", function ( e ) { + add_item(); + $("#mylist").listview("refresh"); + }); + + $("#add2").bind( "vclick", function ( e ) { + var i; + + for ( i = 0; i < 20; i++ ) { + add_item(); + } + + $("#mylist").listview("refresh"); + }); + + $("#new").bind( "vclick", function ( e ) { + $("#mylist").html("").trigger("create"); + + add_item(); + $("#mylist").listview("refresh"); + }); + + $("#new2").bind( "vclick", function ( e ) { + var i; + + $("#mylist").html("").trigger("create"); + + for ( i = 0; i < 20; i++ ) { + add_item(); + } + + $("#mylist").listview("refresh"); + }); + + $("#mylist").delegate( ".ui-btn", "vclick", function ( e ) { + $( "#li" + this.id ).remove(); + $("#mylist").listview("refresh"); + }); +}); diff --git a/demos/tizen-winsets/tips/page-transition/transition-page.html b/demos/tizen-winsets/tips/page-transition/transition-page.html new file mode 100644 index 0000000..8a6cb33 --- /dev/null +++ b/demos/tizen-winsets/tips/page-transition/transition-page.html @@ -0,0 +1,12 @@ + +
    +
    +

    No Contents

    +
    +
    +
    +

    Picture Type

    +

    Text

    +
    +
    +
    diff --git a/demos/tizen-winsets/tips/page-transition/transition.html b/demos/tizen-winsets/tips/page-transition/transition.html new file mode 100644 index 0000000..1f55f4d --- /dev/null +++ b/demos/tizen-winsets/tips/page-transition/transition.html @@ -0,0 +1,20 @@ + +
    +
    +

    Transitions

    +
    +
    + +
    +
    diff --git a/demos/tizen-winsets/tips/two-line-text/two-line-text.html b/demos/tizen-winsets/tips/two-line-text/two-line-text.html new file mode 100755 index 0000000..49d3df2 --- /dev/null +++ b/demos/tizen-winsets/tips/two-line-text/two-line-text.html @@ -0,0 +1,35 @@ +
    +
    +

    Two line text sample

    +
    + +
    +

    short button or long text button

    +

    do not need to control width. because button control text width in case content area

    +

    Text Button Test
    +
    Text Button Test. long text line
    +
    +

    but some case, for example width fixed area or narrow width
    + browser change text to ellipsis

    +
    + + + + + + +

    +

    to make text in button, 2 line +

    Simple making step is ...

    + 1. first insert <br> tag between text

    + 2. then set fontsize to see text in small area
    +   ex> $( "#textposition" ).css("font-size", "12px");

    + 3. if element attribute or inner attributes has padding-top/bottom,
    + control this value because this value hide some text top/bottom
    +   ex> $( "#textposition" ).find("span").css("padding-top", "4px");

    + 4. last control height between line text using line-height
    +   ex> $( "#textposition" ).find("span").css("line-height", "14px");



    +

    +
    +
    +
    diff --git a/demos/tizen-winsets/tips/two-line-text/two-line-text.js b/demos/tizen-winsets/tips/two-line-text/two-line-text.js new file mode 100755 index 0000000..b06313b --- /dev/null +++ b/demos/tizen-winsets/tips/two-line-text/two-line-text.js @@ -0,0 +1,8 @@ +$( document ).bind( "pagebeforeshow", function( e ) { + if( $( "#textposition" ).length ) { + $( "#textposition" ).css( "font-size", "12px" ); + $( "#textposition" ).find( "span" ).css( "height", "32px" ); + $( "#textposition" ).find( "span" ).css("padding-top", "4px"); + $( "#textposition" ).find( "span" ).css("padding-bottom", "4px"); + } +}); diff --git a/demos/tizen-winsets/tizen-web-ui-fw b/demos/tizen-winsets/tizen-web-ui-fw new file mode 120000 index 0000000..c692543 --- /dev/null +++ b/demos/tizen-winsets/tizen-web-ui-fw @@ -0,0 +1 @@ +../../build/tizen-web-ui-fw \ No newline at end of file diff --git a/demos/tizen-gray/widgets/auto-dividers.html b/demos/tizen-winsets/widgets/auto-dividers.html similarity index 100% rename from demos/tizen-gray/widgets/auto-dividers.html rename to demos/tizen-winsets/widgets/auto-dividers.html diff --git a/demos/tizen-winsets/widgets/button/button.html b/demos/tizen-winsets/widgets/button/button.html new file mode 100755 index 0000000..1bb8240 --- /dev/null +++ b/demos/tizen-winsets/widgets/button/button.html @@ -0,0 +1,47 @@ + + + + + + + + + + + + + +
    +
    +

    Buttons

    +
    +
    +
      +
    • Buttons Pages(not in list)
    • +
    • Custom
      T
    • +
    • Custom Width
      Test
    • +
    • Custom Width, Height
      Test
    • +
    • Custom Width, Height, Right
      Test
    • +
    • Circle-Custom
    • +
    • Custom Top
      tEST
    • +
    • Custom Bottom
      Test
    • +
    • List item 1
      Text Button TesT
    • +
    • List item 2
      Call Icon
    • +
    • List item 3
      Longer Call Icon
    • +
    • List item 4
      Icon Text
    • +
    • List item 5
    • +
    • List item 6
    • +
    • List item 7
    • +
    • List item 8
    • +
    • List item 9
    • +
    • List item 10
    • +
    • List item 11
    • +
    • List item 12
      Delete
    • +
    +
    +
    + + + diff --git a/demos/tizen-winsets/widgets/button/buttonNolist.html b/demos/tizen-winsets/widgets/button/buttonNolist.html new file mode 100644 index 0000000..1c24e8e --- /dev/null +++ b/demos/tizen-winsets/widgets/button/buttonNolist.html @@ -0,0 +1,78 @@ + + + + + + + + + + + + + +
    +
    +

    Buttons

    +
    +
    + *Default Button +
    Button
    + HTML Code: + +

    + *Inline Button, Inline Button With Icon
    +
    DataInline True
    +
    Icon Text
    +
    Icon Text
    +
    +

    + HTML Code: +

    + *Default Button (A tag) + A Tag Button + HTML Code: + +

    + *Button Icon Position top, bottom (with inline) +
    PositionTop

    +
    PositionBottom

    +
    PositionTop
    +
    PositionBottom

    + HTML Code: +

    + *Custom Button:
    +
    Custom
    +
    Custom Top
    +
    Custom Bottom
    +
    Custom width,height
    +

    + HTML Code: + + CSS Code:
    + +
    +
    + + + diff --git a/demos/tizen-gray/widgets/checkbox/checkbox.html b/demos/tizen-winsets/widgets/checkbox/checkbox.html similarity index 100% rename from demos/tizen-gray/widgets/checkbox/checkbox.html rename to demos/tizen-winsets/widgets/checkbox/checkbox.html diff --git a/demos/tizen-gray/widgets/checkbox/checkbox.js b/demos/tizen-winsets/widgets/checkbox/checkbox.js similarity index 100% rename from demos/tizen-gray/widgets/checkbox/checkbox.js rename to demos/tizen-winsets/widgets/checkbox/checkbox.js diff --git a/demos/tizen-gray/widgets/colorpicker.html b/demos/tizen-winsets/widgets/colorpicker.html similarity index 100% rename from demos/tizen-gray/widgets/colorpicker.html rename to demos/tizen-winsets/widgets/colorpicker.html diff --git a/demos/tizen-gray/widgets/ctxpopup.html b/demos/tizen-winsets/widgets/ctxpopup.html similarity index 100% rename from demos/tizen-gray/widgets/ctxpopup.html rename to demos/tizen-winsets/widgets/ctxpopup.html diff --git a/demos/tizen-gray/widgets/ctxpopup.js b/demos/tizen-winsets/widgets/ctxpopup.js similarity index 100% rename from demos/tizen-gray/widgets/ctxpopup.js rename to demos/tizen-winsets/widgets/ctxpopup.js diff --git a/demos/tizen-winsets/widgets/datefield.html b/demos/tizen-winsets/widgets/datefield.html new file mode 100644 index 0000000..ae06846 --- /dev/null +++ b/demos/tizen-winsets/widgets/datefield.html @@ -0,0 +1,44 @@ +
    +
    +

    Date/time picker

    +
    +
    +
      +
    • + + + + + Date/Time Picker(Custom) - (select a date first) + +
    • +
    • + + + + + Date/Time Picker - (select a date first) + +
    • +
    • + + + + + Date Picker - (select a date first) + +
    • +
    • + + + + + Time Picker - (select a date first) + +
    • +
    +
    +
    + + diff --git a/demos/tizen-gray/widgets/day-selector.html b/demos/tizen-winsets/widgets/day-selector.html similarity index 100% rename from demos/tizen-gray/widgets/day-selector.html rename to demos/tizen-winsets/widgets/day-selector.html diff --git a/demos/tizen-winsets/widgets/entry.html b/demos/tizen-winsets/widgets/entry.html new file mode 100755 index 0000000..2c59421 --- /dev/null +++ b/demos/tizen-winsets/widgets/entry.html @@ -0,0 +1,70 @@ + + +
    +
    +

    Entry

    +
    + +
    +
    + + + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    + + diff --git a/demos/tizen-gray/widgets/fast-scroll.html b/demos/tizen-winsets/widgets/fast-scroll.html similarity index 100% rename from demos/tizen-gray/widgets/fast-scroll.html rename to demos/tizen-winsets/widgets/fast-scroll.html diff --git a/demos/tizen-gray/widgets/font-effect.html b/demos/tizen-winsets/widgets/font-effect.html similarity index 100% rename from demos/tizen-gray/widgets/font-effect.html rename to demos/tizen-winsets/widgets/font-effect.html diff --git a/demos/tizen-gray/widgets/forms-all-native.html b/demos/tizen-winsets/widgets/forms-all-native.html similarity index 100% rename from demos/tizen-gray/widgets/forms-all-native.html rename to demos/tizen-winsets/widgets/forms-all-native.html diff --git a/demos/tizen-gray/widgets/forms-all.html b/demos/tizen-winsets/widgets/forms-all.html similarity index 100% rename from demos/tizen-gray/widgets/forms-all.html rename to demos/tizen-winsets/widgets/forms-all.html diff --git a/demos/tizen-winsets/widgets/grid/css/namecard.css b/demos/tizen-winsets/widgets/grid/css/namecard.css new file mode 100755 index 0000000..105edea --- /dev/null +++ b/demos/tizen-winsets/widgets/grid/css/namecard.css @@ -0,0 +1,118 @@ +.ui-demo-namecard { + display : inline-block; + width : 5.1rem; + height : 6.1rem; + margin-right: 0.4rem; + margin-left: 0.4rem; + margin-bottom: 1.5rem; +} + +.ui-demo-rotation-namecard { + position : fixed; + width : 5.1rem; + height : 6.1rem; + margin-right: 0.3rem; + margin-left: 0.3rem; + margin-bottom: 1.5rem; +} + +.ui-demo-namecard-pic { + float : left; + padding-top : 0.2rem; + padding-left : 0.2rem; + padding-bottom: 0rem; +} + +.ui-demo-namecard-pic-img { + height : 5rem; + width : 5rem; +} + +.ui-demo-namecard-contents { + float : left; + height : 1rem; + margin: 0rem; +} + +.ui-demo-namecard-contents span { + font-style : italic; + color : #666; + border-bottom : 1px dashed; + margin-top: 0rem; +} + +.ui-demo-rotation-x-namecard { + width : 5.1rem; + height : 6.1rem; + display: block; + margin-right: 0.3rem; + margin-left: 0.3rem; + margin-bottom: 0.6rem; +} + +.ui-demo-namecard-contents-x { + height : 1rem; + margin: 0rem; +} + +.ui-demo-namecard-span-x { + color : white; + font : normal 0.8rem Georgia, serif !important; + + width: 5rem; + display: block; + white-space : nowrap; + overflow : hidden !important; + text-overflow : ellipsis !important; + -o-text-overflow:ellipsis; + resize:horizontal; +} + +.ui-demo-namecard-contents span.name { + color : white; + font : normal 0.8rem Georgia, serif !important; + + width: 5rem; + display: inline-block; + white-space : nowrap; + overflow : hidden !important; + text-overflow : ellipsis !important; + -o-text-overflow:ellipsis; + resize:horizontal; +} + +.ui-demo-rotation-list-namecard { + height : 70px; + display:block; + border-bottom-color: #444; +} + +.ui-demo-namecard-list-pic { + height : 2.7rem; + width : 2.7rem; + float : left; + padding-top : 0rem; + padding-left : 0.2rem; + padding-right : 1rem; + padding-bottom: 0rem; + border-width: 0; +} + +.ui-demo-namecard-list-pic-img { + height : 2.7rem; + width : 2.7rem; +} + +.ui-demo-namecard-list-contents { + height : 2.5rem; +} + +.ui-demo-namecard-list-contents span{ + left : 9.6rem; + font-weight : normal; + font-size : 1.2rem; + color : white; + padding-top : 1rem; + font-family: Helvetica, Arial, sans-serif; + margin-top: 0rem; +} \ No newline at end of file diff --git a/demos/tizen-gray/widgets/test/nba_76ers.jpg b/demos/tizen-winsets/widgets/grid/images/nba_76ers.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_76ers.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_76ers.jpg diff --git a/demos/tizen-gray/widgets/test/nba_bobcats.jpg b/demos/tizen-winsets/widgets/grid/images/nba_bobcats.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_bobcats.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_bobcats.jpg diff --git a/demos/tizen-gray/widgets/test/nba_bucks.jpg b/demos/tizen-winsets/widgets/grid/images/nba_bucks.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_bucks.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_bucks.jpg diff --git a/demos/tizen-gray/widgets/test/nba_bulls.jpg b/demos/tizen-winsets/widgets/grid/images/nba_bulls.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_bulls.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_bulls.jpg diff --git a/demos/tizen-gray/widgets/test/nba_cavaliers.jpg b/demos/tizen-winsets/widgets/grid/images/nba_cavaliers.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_cavaliers.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_cavaliers.jpg diff --git a/demos/tizen-gray/widgets/test/nba_celtics.jpg b/demos/tizen-winsets/widgets/grid/images/nba_celtics.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_celtics.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_celtics.jpg diff --git a/demos/tizen-gray/widgets/test/nba_clippers.jpg b/demos/tizen-winsets/widgets/grid/images/nba_clippers.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_clippers.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_clippers.jpg diff --git a/demos/tizen-gray/widgets/test/nba_griz.jpg b/demos/tizen-winsets/widgets/grid/images/nba_griz.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_griz.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_griz.jpg diff --git a/demos/tizen-gray/widgets/test/nba_hawks.jpg b/demos/tizen-winsets/widgets/grid/images/nba_hawks.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_hawks.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_hawks.jpg diff --git a/demos/tizen-gray/widgets/test/nba_heats.jpg b/demos/tizen-winsets/widgets/grid/images/nba_heats.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_heats.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_heats.jpg diff --git a/demos/tizen-gray/widgets/test/nba_honets.jpg b/demos/tizen-winsets/widgets/grid/images/nba_honets.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_honets.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_honets.jpg diff --git a/demos/tizen-gray/widgets/test/nba_jazz.jpg b/demos/tizen-winsets/widgets/grid/images/nba_jazz.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_jazz.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_jazz.jpg diff --git a/demos/tizen-gray/widgets/test/nba_kings.jpg b/demos/tizen-winsets/widgets/grid/images/nba_kings.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_kings.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_kings.jpg diff --git a/demos/tizen-gray/widgets/test/nba_knics.jpg b/demos/tizen-winsets/widgets/grid/images/nba_knics.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_knics.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_knics.jpg diff --git a/demos/tizen-gray/widgets/test/nba_lakers.jpg b/demos/tizen-winsets/widgets/grid/images/nba_lakers.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_lakers.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_lakers.jpg diff --git a/demos/tizen-gray/widgets/test/nba_magics.jpg b/demos/tizen-winsets/widgets/grid/images/nba_magics.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_magics.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_magics.jpg diff --git a/demos/tizen-gray/widgets/test/nba_mavericks.jpg b/demos/tizen-winsets/widgets/grid/images/nba_mavericks.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_mavericks.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_mavericks.jpg diff --git a/demos/tizen-gray/widgets/test/nba_nets.jpg b/demos/tizen-winsets/widgets/grid/images/nba_nets.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_nets.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_nets.jpg diff --git a/demos/tizen-gray/widgets/test/nba_nuggets.jpg b/demos/tizen-winsets/widgets/grid/images/nba_nuggets.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_nuggets.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_nuggets.jpg diff --git a/demos/tizen-gray/widgets/test/nba_pacers.jpg b/demos/tizen-winsets/widgets/grid/images/nba_pacers.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_pacers.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_pacers.jpg diff --git a/demos/tizen-gray/widgets/test/nba_pistons.jpg b/demos/tizen-winsets/widgets/grid/images/nba_pistons.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_pistons.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_pistons.jpg diff --git a/demos/tizen-gray/widgets/test/nba_raptors.jpg b/demos/tizen-winsets/widgets/grid/images/nba_raptors.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_raptors.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_raptors.jpg diff --git a/demos/tizen-gray/widgets/test/nba_rockets.jpg b/demos/tizen-winsets/widgets/grid/images/nba_rockets.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_rockets.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_rockets.jpg diff --git a/demos/tizen-gray/widgets/test/nba_sonics.jpg b/demos/tizen-winsets/widgets/grid/images/nba_sonics.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_sonics.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_sonics.jpg diff --git a/demos/tizen-gray/widgets/test/nba_spurs.jpg b/demos/tizen-winsets/widgets/grid/images/nba_spurs.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_spurs.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_spurs.jpg diff --git a/demos/tizen-gray/widgets/test/nba_suns.jpg b/demos/tizen-winsets/widgets/grid/images/nba_suns.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_suns.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_suns.jpg diff --git a/demos/tizen-gray/widgets/test/nba_timberwolves.jpg b/demos/tizen-winsets/widgets/grid/images/nba_timberwolves.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_timberwolves.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_timberwolves.jpg diff --git a/demos/tizen-gray/widgets/test/nba_trail.jpg b/demos/tizen-winsets/widgets/grid/images/nba_trail.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_trail.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_trail.jpg diff --git a/demos/tizen-gray/widgets/test/nba_warriors.jpg b/demos/tizen-winsets/widgets/grid/images/nba_warriors.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_warriors.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_warriors.jpg diff --git a/demos/tizen-gray/widgets/test/nba_wizards.jpg b/demos/tizen-winsets/widgets/grid/images/nba_wizards.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/nba_wizards.jpg rename to demos/tizen-winsets/widgets/grid/images/nba_wizards.jpg diff --git a/demos/tizen-gray/widgets/grid/js/virtualgrid-db-demo.js b/demos/tizen-winsets/widgets/grid/js/virtualgrid-db-demo.js similarity index 100% rename from demos/tizen-gray/widgets/grid/js/virtualgrid-db-demo.js rename to demos/tizen-winsets/widgets/grid/js/virtualgrid-db-demo.js diff --git a/demos/tizen-winsets/widgets/grid/virtualgrid-auto.html b/demos/tizen-winsets/widgets/grid/virtualgrid-auto.html new file mode 100755 index 0000000..ae2b470 --- /dev/null +++ b/demos/tizen-winsets/widgets/grid/virtualgrid-auto.html @@ -0,0 +1,33 @@ +
    +
    +

    Virtual Grid - Auto

    +
    +
    + +
    +
    +
    + +
    diff --git a/demos/tizen-winsets/widgets/grid/virtualgrid-list.html b/demos/tizen-winsets/widgets/grid/virtualgrid-list.html new file mode 100755 index 0000000..ae6b7c7 --- /dev/null +++ b/demos/tizen-winsets/widgets/grid/virtualgrid-list.html @@ -0,0 +1,36 @@ +
    +
    +

    Virtual Grid - List

    +
    +
    + +
    +
    + +
    diff --git a/demos/tizen-winsets/widgets/grid/virtualgrid-rotation.html b/demos/tizen-winsets/widgets/grid/virtualgrid-rotation.html new file mode 100755 index 0000000..8029e10 --- /dev/null +++ b/demos/tizen-winsets/widgets/grid/virtualgrid-rotation.html @@ -0,0 +1,35 @@ +
    +
    +

    Virtual Grid - Rotation

    +
    +
    + +
    +
    +
    + +
    diff --git a/demos/tizen-winsets/widgets/grid/virtualgrid-x.html b/demos/tizen-winsets/widgets/grid/virtualgrid-x.html new file mode 100755 index 0000000..8e769a6 --- /dev/null +++ b/demos/tizen-winsets/widgets/grid/virtualgrid-x.html @@ -0,0 +1,40 @@ +
    +
    +

    Virtual Grid - X

    +
    +
    + +
    +
    +
    + + +
    diff --git a/demos/tizen-winsets/widgets/grid/virtualgrid.html b/demos/tizen-winsets/widgets/grid/virtualgrid.html new file mode 100755 index 0000000..f3db2dc --- /dev/null +++ b/demos/tizen-winsets/widgets/grid/virtualgrid.html @@ -0,0 +1,36 @@ +
    +
    +

    Virtual Grid

    +
    +
    + +
    +
    +
    + +
    diff --git a/demos/tizen-winsets/widgets/handler.html b/demos/tizen-winsets/widgets/handler.html new file mode 100755 index 0000000..ac74293 --- /dev/null +++ b/demos/tizen-winsets/widgets/handler.html @@ -0,0 +1,118 @@ + +
    +
    +

    Handler Test

    +
    +
    + +
    +
    \ No newline at end of file diff --git a/demos/tizen-winsets/widgets/imageslider.html b/demos/tizen-winsets/widgets/imageslider.html new file mode 100644 index 0000000..5ac9181 --- /dev/null +++ b/demos/tizen-winsets/widgets/imageslider.html @@ -0,0 +1,27 @@ + +
    +
    +

    Image Slider

    +
    +
    +
    + + + + + + + + + +
    +
    +
    +
    + +
    +
    +
    diff --git a/demos/tizen-gray/widgets/list/00_winset_icon_favorite_on.png b/demos/tizen-winsets/widgets/list/00_winset_icon_favorite_on.png similarity index 100% rename from demos/tizen-gray/widgets/list/00_winset_icon_favorite_on.png rename to demos/tizen-winsets/widgets/list/00_winset_icon_favorite_on.png diff --git a/demos/tizen-gray/widgets/list/images/nba_76ers.jpg b/demos/tizen-winsets/widgets/list/images/nba_76ers.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_76ers.jpg rename to demos/tizen-winsets/widgets/list/images/nba_76ers.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_bobcats.jpg b/demos/tizen-winsets/widgets/list/images/nba_bobcats.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_bobcats.jpg rename to demos/tizen-winsets/widgets/list/images/nba_bobcats.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_bucks.jpg b/demos/tizen-winsets/widgets/list/images/nba_bucks.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_bucks.jpg rename to demos/tizen-winsets/widgets/list/images/nba_bucks.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_bulls.jpg b/demos/tizen-winsets/widgets/list/images/nba_bulls.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_bulls.jpg rename to demos/tizen-winsets/widgets/list/images/nba_bulls.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_cavaliers.jpg b/demos/tizen-winsets/widgets/list/images/nba_cavaliers.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_cavaliers.jpg rename to demos/tizen-winsets/widgets/list/images/nba_cavaliers.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_celtics.jpg b/demos/tizen-winsets/widgets/list/images/nba_celtics.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_celtics.jpg rename to demos/tizen-winsets/widgets/list/images/nba_celtics.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_clippers.jpg b/demos/tizen-winsets/widgets/list/images/nba_clippers.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_clippers.jpg rename to demos/tizen-winsets/widgets/list/images/nba_clippers.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_griz.jpg b/demos/tizen-winsets/widgets/list/images/nba_griz.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_griz.jpg rename to demos/tizen-winsets/widgets/list/images/nba_griz.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_hawks.jpg b/demos/tizen-winsets/widgets/list/images/nba_hawks.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_hawks.jpg rename to demos/tizen-winsets/widgets/list/images/nba_hawks.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_heats.jpg b/demos/tizen-winsets/widgets/list/images/nba_heats.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_heats.jpg rename to demos/tizen-winsets/widgets/list/images/nba_heats.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_honets.jpg b/demos/tizen-winsets/widgets/list/images/nba_honets.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_honets.jpg rename to demos/tizen-winsets/widgets/list/images/nba_honets.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_jazz.jpg b/demos/tizen-winsets/widgets/list/images/nba_jazz.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_jazz.jpg rename to demos/tizen-winsets/widgets/list/images/nba_jazz.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_kings.jpg b/demos/tizen-winsets/widgets/list/images/nba_kings.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_kings.jpg rename to demos/tizen-winsets/widgets/list/images/nba_kings.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_knics.jpg b/demos/tizen-winsets/widgets/list/images/nba_knics.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_knics.jpg rename to demos/tizen-winsets/widgets/list/images/nba_knics.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_lakers.jpg b/demos/tizen-winsets/widgets/list/images/nba_lakers.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_lakers.jpg rename to demos/tizen-winsets/widgets/list/images/nba_lakers.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_magics.jpg b/demos/tizen-winsets/widgets/list/images/nba_magics.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_magics.jpg rename to demos/tizen-winsets/widgets/list/images/nba_magics.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_mavericks.jpg b/demos/tizen-winsets/widgets/list/images/nba_mavericks.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_mavericks.jpg rename to demos/tizen-winsets/widgets/list/images/nba_mavericks.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_nets.jpg b/demos/tizen-winsets/widgets/list/images/nba_nets.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_nets.jpg rename to demos/tizen-winsets/widgets/list/images/nba_nets.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_nuggets.jpg b/demos/tizen-winsets/widgets/list/images/nba_nuggets.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_nuggets.jpg rename to demos/tizen-winsets/widgets/list/images/nba_nuggets.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_pacers.jpg b/demos/tizen-winsets/widgets/list/images/nba_pacers.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_pacers.jpg rename to demos/tizen-winsets/widgets/list/images/nba_pacers.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_pistons.jpg b/demos/tizen-winsets/widgets/list/images/nba_pistons.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_pistons.jpg rename to demos/tizen-winsets/widgets/list/images/nba_pistons.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_raptors.jpg b/demos/tizen-winsets/widgets/list/images/nba_raptors.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_raptors.jpg rename to demos/tizen-winsets/widgets/list/images/nba_raptors.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_rockets.jpg b/demos/tizen-winsets/widgets/list/images/nba_rockets.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_rockets.jpg rename to demos/tizen-winsets/widgets/list/images/nba_rockets.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_sonics.jpg b/demos/tizen-winsets/widgets/list/images/nba_sonics.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_sonics.jpg rename to demos/tizen-winsets/widgets/list/images/nba_sonics.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_spurs.jpg b/demos/tizen-winsets/widgets/list/images/nba_spurs.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_spurs.jpg rename to demos/tizen-winsets/widgets/list/images/nba_spurs.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_suns.jpg b/demos/tizen-winsets/widgets/list/images/nba_suns.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_suns.jpg rename to demos/tizen-winsets/widgets/list/images/nba_suns.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_timberwolves.jpg b/demos/tizen-winsets/widgets/list/images/nba_timberwolves.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_timberwolves.jpg rename to demos/tizen-winsets/widgets/list/images/nba_timberwolves.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_trail.jpg b/demos/tizen-winsets/widgets/list/images/nba_trail.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_trail.jpg rename to demos/tizen-winsets/widgets/list/images/nba_trail.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_warriors.jpg b/demos/tizen-winsets/widgets/list/images/nba_warriors.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_warriors.jpg rename to demos/tizen-winsets/widgets/list/images/nba_warriors.jpg diff --git a/demos/tizen-gray/widgets/list/images/nba_wizards.jpg b/demos/tizen-winsets/widgets/list/images/nba_wizards.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/images/nba_wizards.jpg rename to demos/tizen-winsets/widgets/list/images/nba_wizards.jpg diff --git a/demos/tizen-gray/widgets/list/list-bubble-sample1.png b/demos/tizen-winsets/widgets/list/list-bubble-sample1.png similarity index 100% rename from demos/tizen-gray/widgets/list/list-bubble-sample1.png rename to demos/tizen-winsets/widgets/list/list-bubble-sample1.png diff --git a/demos/tizen-gray/widgets/list/list-bubble.html b/demos/tizen-winsets/widgets/list/list-bubble.html similarity index 100% rename from demos/tizen-gray/widgets/list/list-bubble.html rename to demos/tizen-winsets/widgets/list/list-bubble.html diff --git a/demos/tizen-winsets/widgets/list/list-dialogue.html b/demos/tizen-winsets/widgets/list/list-dialogue.html new file mode 100755 index 0000000..2f9061a --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-dialogue.html @@ -0,0 +1,344 @@ +
    +
    +

    Dialog lists

    +
    +
    +
      + +
    • + 1line +
    • +
    • + 1line (with link) +
    • +
    • + 1line-sub + subtext +
    • +
    • + + 1line-sub (with link) + subtext + +
    • +
    • + 1line-setting + Sub text +
    • +
    • + 1line-btn1 +
      Text Button
      +
    • +
    • + 1line-btn2 +
      +
    • +
    • + 1line-toggle +
      +
    • +
    • + 1line-bigicon1 + +
    • +
    • + 1line-bigicon2 + + Sub text +
    • +
    • + 1line-bigicon4 + +
      Text Button
      +
    • +
    • + 1line-bigicon5 + +
      +
    • +
    • + 1line-bigicon6 + +
      +
    • +
    • +
      + 1line-check1 +
    • +
    • +
      + 1line-check2 +
      +
    • +
    • +
      + 1line-check3 + +
    • +
    • +
      + 1line-check4 + +
      +
    • +
    • +
      + 1line-radio1 +
    • +
    • +
      + 1line-radio3 +
      +
    • +
    • +
      + + 1line-radio4 +
    • +
    • +
      + + 1line-radio5 +
      +
    • + +
    • + 2line + Subtext +
    • + +
    • + 2line-sub-main + Subtext +
    • + +
    • + 2line-2sub + Subtext + Subtext2 +
    • + +
    • + 2line-btn1 + Subtext +
      button
      +
    • + +
    • + 2line-btn1 + Subtext +
      +
    • + +
    • + 2line-btn2 + Subtext +
      +
    • + +
    • + 2line-star1 + + Subtext + Subtext2 +
    • + +
    • + 2line-star2 + + Subtext + +
    • + +
    • + 2line-setting + Subtext +
    • + +
    • + 2line-toggle-setting + Subtext +
      +
    • + +
    • + 2line-btn-setting + Subtext +
      +
    • + +
    • + 2line-bigicon0 + Subtext +
      +
    • + +
    • + 2line-bigicon1 + Subtext + +
    • + +
    • + 2line-bigicon2 + Subtext + + Subtext2 +
    • + +
    • + 2line-bigicon3 + Subtext + +
    • + +
    • + 2line-bigicon4 + Subtext +
      + +
    • + +
    • + 2line-check1 + Subtext +
      +
    • + +
    • + 2line-check2 + Subtext +
      +
      +
    • + +
    • + 2line-check3 + Subtext +
      + +
    • + + +
    • + 2line-radio1 + Subtext +
      +
    • + +
    • + 2line-radio2 + Subtext +
      + +
    • + + +
    • + + 2line-colorbar1 + Subtext + + + + + Subtext2 +
      button
      +
    • + +
    • + + 2line-colorbar3 + Subtext +
      button
      +
    • + +
    • + + 2line-colorbar3 + Subtext +
      +
    • + +
    • + + 2line-colorbar3 + Subtext +
      + +
    • + +
    • + + 2line-bigicon8 + Subtext + +
    • + +
    • + 2line-thumb1 + Subtext + +
    • + +
    • + 2line-thumb2 + Subtext + +
    • + +
    • + Subtext + 2line-sub-main-bigicon1 + +
    • + +
    • + + 2line-bigicon-pgbar1 + Subtext + Subtext2 +
      Cancel
      +
      +
    • + +
    • + + 2line-bigicon-pgbar2 + Subtext +
      button
      +
    • + +
    • + + 2line-bigicon-pgbar2 + Subtext +
      +
    • + +
    • + + 2line-bigicon-pgbar3 + Subtext + Subtext2 +
      +
    • + +
    • +
      + + 2line-icon-bigicon-btn + Subtext +
      +
    • + +
    • + 2line-thumb3 + Subtext + +
    • + +
    +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list-divider_check.html b/demos/tizen-winsets/widgets/list/list-divider_check.html new file mode 100755 index 0000000..0210231 --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-divider_check.html @@ -0,0 +1,22 @@ +
    +
    +

    Normal Divider

    +
    +
    + +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list-divider_groupped.html b/demos/tizen-winsets/widgets/list/list-divider_groupped.html new file mode 100755 index 0000000..65ed720 --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-divider_groupped.html @@ -0,0 +1,22 @@ +
    +
    +

    Normal Divider

    +
    +
    + +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list-divider_normal.html b/demos/tizen-winsets/widgets/list/list-divider_normal.html new file mode 100755 index 0000000..d13b96e --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-divider_normal.html @@ -0,0 +1,22 @@ +
    +
    +

    Normal Divider

    +
    +
    + +
    +
    + diff --git a/demos/tizen-gray/widgets/list/list-email.html b/demos/tizen-winsets/widgets/list/list-email.html similarity index 100% rename from demos/tizen-gray/widgets/list/list-email.html rename to demos/tizen-winsets/widgets/list/list-email.html diff --git a/demos/tizen-winsets/widgets/list/list-expandable.html b/demos/tizen-winsets/widgets/list/list-expandable.html new file mode 100755 index 0000000..2d4ef69 --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-expandable.html @@ -0,0 +1,43 @@ +
    +
    +

    expandable list

    +
    +
    +
      +
    • 1line
    • +
    • exp1-sub 1
    • +
    • exp1-sub 2
    • +
    • exp1-sub 3
    • +
    • exp1-sub 4
    • +
    • exp1-sub 5
    • +
    • exp1-sub 6
    • +
    • exp1-sub 7
    • +
    • exp1-sub 2 (exp2)
    • +
    • exp2-sub 1
    • +
    • exp2-sub 2
    • +
    • exp2-sub 3
    • +
    • + 2line + Subtext +
    • +
    • + 2line-sub-main + Subtext +
    • +
    • + 2line-radio1 + Subtext +
      +
    • +
    • + + 2line-colorbar3 + Subtext + + +
    • +
    +
    +
    +
    +
    diff --git a/demos/tizen-gray/widgets/list/list-extendable.html b/demos/tizen-winsets/widgets/list/list-extendable.html similarity index 100% rename from demos/tizen-gray/widgets/list/list-extendable.html rename to demos/tizen-winsets/widgets/list/list-extendable.html diff --git a/demos/tizen-gray/widgets/list/list-multiline.html b/demos/tizen-winsets/widgets/list/list-multiline.html similarity index 100% rename from demos/tizen-gray/widgets/list/list-multiline.html rename to demos/tizen-winsets/widgets/list/list-multiline.html diff --git a/demos/tizen-gray/widgets/list/list-normal.html b/demos/tizen-winsets/widgets/list/list-normal.html similarity index 100% rename from demos/tizen-gray/widgets/list/list-normal.html rename to demos/tizen-winsets/widgets/list/list-normal.html diff --git a/demos/tizen-winsets/widgets/list/list-normal_anchor.html b/demos/tizen-winsets/widgets/list/list-normal_anchor.html new file mode 100755 index 0000000..0c98bdb --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-normal_anchor.html @@ -0,0 +1,459 @@ +
    +
    +

    Normal anchor lists

    +
    +
    + +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list-normal_anchor_h3.html b/demos/tizen-winsets/widgets/list/list-normal_anchor_h3.html new file mode 100755 index 0000000..8a94f64 --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-normal_anchor_h3.html @@ -0,0 +1,460 @@ +
    +
    +

    Normal anchor lists

    +
    +
    + +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list-normal_no_anchor.html b/demos/tizen-winsets/widgets/list/list-normal_no_anchor.html new file mode 100755 index 0000000..ca02d8c --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-normal_no_anchor.html @@ -0,0 +1,346 @@ +
    +
    +

    Normal lists

    +
    +
    +
      + +
    • + 1line +
    • + +
    • + 1line-sub + subtext +
    • + +
    • + 1line-btn1 +
      Text Button
      +
    • + +
    • + 1line-btn2 +
      +
    • + +
    • + 1line-toggle +
      +
    • + +
    • + + 1line-bigicon1 +
    • + +
    • + + 1line-bigicon2 + Sub text +
    • + +
    • + + 1line-bigicon4 +
      Text Button
      +
    • + +
    • + + 1line-bigicon5 +
      +
    • + +
    • + + 1line-bigicon6 +
      +
    • + +
    • + + 1line-check1 +
    • + +
    • +
      + 1line-check2 +
      +
    • + +
    • +
      + + 1line-check3 +
    • + +
    • +
      + + 1line-check4 +
      +
    • + +
    • +
      + 1line-radio1 +
    • + +
    • +
      + 1line-radio3 +
      +
    • + +
    • +
      + + 1line-radio4 +
    • + +
    • +
      + 1line-radio5 + +
      +
    • + +
    • +
      + 1line-radio + +
    • + +
    • + 2line + Subtext +
    • + +
    • + 2line-2sub + Subtext + Subtext2 +
    • + +
    • + 2line-btn1 + Subtext +
      button
      +
    • + +
    • + 2line-btn1 + Subtext +
      +
    • + +
    • + 2line-btn2 + Subtext +
      +
    • + +
    • + 2line-star1 + Subtext + + Subtext2 +
    • + +
    • + 2line-star2 + Subtext + +
    • + +
    • + 2line-setting + Subtext +
    • + +
    • + 2line-toggle-setting + Subtext +
      +
    • + +
    • + 2line-btn-setting + Subtext +
      +
    • + +
    • + 2line-bigicon0 + Subtext +
      +
    • + +
    • + + 2line-bigicon1 + Subtext +
    • + +
    • + + 2line-bigicon2 + Subtext + Subtext2 +
    • + +
    • + + 2line-bigicon3 + Subtext +
    • + +
    • + + 2line-bigicon4 + Subtext +
      +
    • + +
    • +
      + 2line-check + Subtext +
    • + +
    • +
      + 2line-check2 + Subtext +
      +
    • + +
    • +
      + + 2line-check3 + Subtext +
    • + +
    • +
      + 2line-radio1 + Subtext +
    • + +
    • +
      + + 2line-radio2 + Subtext +
    • + +
    • + + 2line-colorbar1 + Subtext + + + + +
      button
      +
    • + +
    • + + 2line-colorbar2 + + Subtext +
      button
      +
    • + +
    • + + 2line-colorbar2 + + Subtext +
      +
    • + +
    • + + + 2line-colorbar3 + Subtext +
      +
    • + +
    • + + 2line-bigicon8 + Subtext + +
    • + +
    • + 2line-thumb1 + Subtext + +
    • + +
    • + 2line-thumb2 + + Subtext + +
    • + +
    • + Subtext + 2line-sub-main-bigicon1 + +
    • + +
    • + + 2line-bigicon-pgbar1 + Subtext + Subtext2 +
      +
    • + +
    • + + 2line-bigicon-pgbar2 + Subtext +
      button
      +
    • + +
    • + + 2line-bigicon-pgbar2 + Subtext +
      +
    • + +
    • + + 2line-bigicon-pgbar3 + Subtext + Subtext2 +
      +
    • + +
    • +
      + + 2line-icon-bigicon-btn + Subtext +
      +
    • + +
    • + 2line-thumb3 + + Subtext + +
    • +
    +
    +
    diff --git a/demos/tizen-winsets/widgets/list/list-normal_no_anchor_h3.html b/demos/tizen-winsets/widgets/list/list-normal_no_anchor_h3.html new file mode 100755 index 0000000..808020e --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-normal_no_anchor_h3.html @@ -0,0 +1,346 @@ +
    +
    +

    Normal lists

    +
    +
    +
      + +
    • +

      1line

      +
    • + +
    • +

      1line-sub

      + subtext +
    • + +
    • +

      1line-btn1

      +
      Text Button
      +
    • + +
    • +

      1line-btn2

      +
      +
    • + +
    • +

      1line-toggle

      +
      +
    • + +
    • + +

      1line-bigicon1

      +
    • + +
    • + +

      1line-bigicon2

      + Sub text +
    • + +
    • + +

      1line-bigicon4

      +
      Text Button
      +
    • + +
    • + +

      1line-bigicon5

      +
      +
    • + +
    • + +

      1line-bigicon6

      +
      +
    • + +
    • + +

      1line-check1

      +
    • + +
    • +
      +

      1line-check2

      +
      +
    • + +
    • +
      + +

      1line-check3

      +
    • + +
    • +
      + +

      1line-check4

      +
      +
    • + +
    • +
      +

      1line-radio1

      +
    • + +
    • +
      +

      1line-radio3

      +
      +
    • + +
    • +
      + +

      1line-radio4

      +
    • + +
    • +
      +

      1line-radio5

      + +
      +
    • + +
    • +
      +

      1line-radio

      + +
    • + +
    • +

      2line

      + Subtext +
    • + +
    • +

      2line-2sub

      + Subtext + Subtext2 +
    • + +
    • +

      2line-btn1

      + Subtext +
      button
      +
    • + +
    • +

      2line-btn1

      + Subtext +
      +
    • + +
    • +

      2line-btn2

      + Subtext +
      +
    • + +
    • +

      2line-star1

      + Subtext + + Subtext2 +
    • + +
    • +

      2line-star

      + Subtext + +
    • + +
    • +

      2line-setting

      + Subtext +
    • + +
    • +

      2line-toggle-setting

      + Subtext +
      +
    • + +
    • +

      2line-btn-setting

      + Subtext +
      +
    • + +
    • +

      2line-bigicon0

      + Subtext +
      +
    • + +
    • + +

      2line-bigicon1

      + Subtext +
    • + +
    • + +

      2line-bigicon2

      + Subtext + Subtext2 +
    • + +
    • + +

      2line-bigicon3

      + Subtext +
    • + +
    • + +

      2line-bigicon4

      + Subtext +
      +
    • + +
    • +
      +

      2line-check

      + Subtext +
    • + +
    • +
      +

      2line-check2

      + Subtext +
      +
    • + +
    • +
      + +

      2line-check3

      + Subtext +
    • + +
    • +
      +

      2line-radio1

      + Subtext +
    • + +
    • +
      + +

      2line-radio2

      + Subtext +
    • + +
    • + +

      2line-colorbar1

      + Subtext + + + + +
      button
      +
    • + +
    • + +

      2line-colorbar2

      + + Subtext +
      button
      +
    • + +
    • + +

      2line-colorbar2

      + + Subtext +
      +
    • + +
    • + + +

      2line-colorbar3

      + Subtext +
      +
    • + +
    • + +

      2line-bigicon8

      + Subtext + +
    • + +
    • +

      2line-thumb1

      + Subtext + +
    • + +
    • +

      2line-thumb2

      + + Subtext + +
    • + +
    • + Subtext +

      2line-sub-main-bigicon1

      + +
    • + +
    • + +

      2line-bigicon-pgbar1

      + Subtext + Subtext2 +
      +
    • + +
    • + +

      2line-bigicon-pgbar2

      + Subtext +
      button
      +
    • + +
    • + +

      2line-bigicon-pgbar2

      + Subtext +
      +
    • + +
    • + +

      2line-bigicon-pgbar3

      + Subtext + Subtext2 +
      +
    • + +
    • +
      + +

      2line-icon-bigicon-btn

      + Subtext +
      +
    • + +
    • +

      2line-thumb3

      + + Subtext + +
    • +
    +
    +
    diff --git a/demos/tizen-winsets/widgets/list/list-radio.html b/demos/tizen-winsets/widgets/list/list-radio.html new file mode 100755 index 0000000..d209d47 --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-radio.html @@ -0,0 +1,59 @@ +
    +
    +

    Radio Button lists

    +
    +
    +
    +
      + + + +
    • + + Radio Item 4 +
      +
    • +
    • + + + Radio Item 5 +
    • +
    • + + Radio Item 6 +
    • +
    • + + Radio Item 7 +
    • +
    • + + Radio Item 8 +
    • +
    • + + Radio Item 9 +
      +
    • +
    • + + Radio Item 10 + +
    • +
    +
    +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list-swipe.html b/demos/tizen-winsets/widgets/list/list-swipe.html new file mode 100755 index 0000000..bb4adba --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list-swipe.html @@ -0,0 +1,107 @@ +
    +
    +

    Swipe lists

    +
    +
    +
      +
        +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        subtext
        +
        1line-leftsub1
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        1line + +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        subtext
        +
        1line-leftsub1
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        1line
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        subtext
        +
        1line-leftsub1
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        1line
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        subtext
        +
        1line-leftsub1
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        1line
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        subtext
        +
        1line-leftsub1
        +
        +
      • +
      • +
        Twitter
        +
        Twitter
        +
        Facebook
        +
        Facebook
        +
        +
        1line
        +
        +
      • +
      +
    +
    +
    + diff --git a/demos/tizen-winsets/widgets/list/list.html b/demos/tizen-winsets/widgets/list/list.html new file mode 100755 index 0000000..3f80bf8 --- /dev/null +++ b/demos/tizen-winsets/widgets/list/list.html @@ -0,0 +1,58 @@ + + + + + + + + + + + +
    +
    +

    +
    +
    + + +
    +
    + + + + diff --git a/demos/tizen-gray/widgets/list/thumbnail.jpg b/demos/tizen-winsets/widgets/list/thumbnail.jpg similarity index 100% rename from demos/tizen-gray/widgets/list/thumbnail.jpg rename to demos/tizen-winsets/widgets/list/thumbnail.jpg diff --git a/demos/tizen-gray/widgets/list/virtuallist-db-demo.js b/demos/tizen-winsets/widgets/list/virtuallist-db-demo.js similarity index 100% rename from demos/tizen-gray/widgets/list/virtuallist-db-demo.js rename to demos/tizen-winsets/widgets/list/virtuallist-db-demo.js diff --git a/demos/tizen-gray/widgets/list/virtuallist-normal.html b/demos/tizen-winsets/widgets/list/virtuallist-normal.html similarity index 100% rename from demos/tizen-gray/widgets/list/virtuallist-normal.html rename to demos/tizen-winsets/widgets/list/virtuallist-normal.html diff --git a/demos/tizen-gray/widgets/list/virtuallist-normal_3_1_14.html b/demos/tizen-winsets/widgets/list/virtuallist-normal_3_1_14.html similarity index 100% rename from demos/tizen-gray/widgets/list/virtuallist-normal_3_1_14.html rename to demos/tizen-winsets/widgets/list/virtuallist-normal_3_1_14.html diff --git a/demos/tizen-gray/widgets/list/virtuallist-normal_3_1_4.html b/demos/tizen-winsets/widgets/list/virtuallist-normal_3_1_4.html similarity index 100% rename from demos/tizen-gray/widgets/list/virtuallist-normal_3_1_4.html rename to demos/tizen-winsets/widgets/list/virtuallist-normal_3_1_4.html diff --git a/demos/tizen-gray/widgets/list/virtuallist-normal_3_1_6.html b/demos/tizen-winsets/widgets/list/virtuallist-normal_3_1_6.html similarity index 100% rename from demos/tizen-gray/widgets/list/virtuallist-normal_3_1_6.html rename to demos/tizen-winsets/widgets/list/virtuallist-normal_3_1_6.html diff --git a/demos/tizen-gray/widgets/list/virtuallist-normal_3_2_7.html b/demos/tizen-winsets/widgets/list/virtuallist-normal_3_2_7.html similarity index 100% rename from demos/tizen-gray/widgets/list/virtuallist-normal_3_2_7.html rename to demos/tizen-winsets/widgets/list/virtuallist-normal_3_2_7.html diff --git a/demos/tizen-gray/widgets/listviewcontrols.html b/demos/tizen-winsets/widgets/listviewcontrols.html similarity index 100% rename from demos/tizen-gray/widgets/listviewcontrols.html rename to demos/tizen-winsets/widgets/listviewcontrols.html diff --git a/demos/tizen-gray/widgets/multibuttonentry-demo.js b/demos/tizen-winsets/widgets/multibuttonentry-demo.js similarity index 100% rename from demos/tizen-gray/widgets/multibuttonentry-demo.js rename to demos/tizen-winsets/widgets/multibuttonentry-demo.js diff --git a/demos/tizen-gray/widgets/multimediaview/multimediaview.html b/demos/tizen-winsets/widgets/multimediaview/multimediaview.html similarity index 100% rename from demos/tizen-gray/widgets/multimediaview/multimediaview.html rename to demos/tizen-winsets/widgets/multimediaview/multimediaview.html diff --git a/demos/tizen-gray/widgets/multimediaview/multimediaview_audio.html b/demos/tizen-winsets/widgets/multimediaview/multimediaview_audio.html similarity index 100% rename from demos/tizen-gray/widgets/multimediaview/multimediaview_audio.html rename to demos/tizen-winsets/widgets/multimediaview/multimediaview_audio.html diff --git a/demos/tizen-gray/widgets/multimediaview/multimediaview_video.html b/demos/tizen-winsets/widgets/multimediaview/multimediaview_video.html similarity index 100% rename from demos/tizen-gray/widgets/multimediaview/multimediaview_video.html rename to demos/tizen-winsets/widgets/multimediaview/multimediaview_video.html diff --git a/demos/tizen-gray/widgets/navigationbar.html b/demos/tizen-winsets/widgets/navigationbar.html similarity index 100% rename from demos/tizen-gray/widgets/navigationbar.html rename to demos/tizen-winsets/widgets/navigationbar.html diff --git a/demos/tizen-gray/widgets/pagecontrol/pagecontrol-demo.js b/demos/tizen-winsets/widgets/pagecontrol/pagecontrol-demo.js similarity index 100% rename from demos/tizen-gray/widgets/pagecontrol/pagecontrol-demo.js rename to demos/tizen-winsets/widgets/pagecontrol/pagecontrol-demo.js diff --git a/demos/tizen-winsets/widgets/pagecontrol/pagecontrol.html b/demos/tizen-winsets/widgets/pagecontrol/pagecontrol.html new file mode 100644 index 0000000..da722bb --- /dev/null +++ b/demos/tizen-winsets/widgets/pagecontrol/pagecontrol.html @@ -0,0 +1,20 @@ +
    +
    +

    Pagecontrol (page indicator)

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    here
    + Set each values randomly +
    +
    diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton-control.html b/demos/tizen-winsets/widgets/pagelayout/backbutton-control.html new file mode 100755 index 0000000..7db37e9 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton-control.html @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton-control.js b/demos/tizen-winsets/widgets/pagelayout/backbutton-control.js new file mode 100755 index 0000000..f89cfb8 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton-control.js @@ -0,0 +1,14 @@ +$( document ).bind("pagecreate", function () { + + $("#genBackToFooter").bind("vmousedown", function (e) { + $(".ui-page-active").find(".ui-footer").barlayout("addBackBtn"); + }); + + $("#genBackToFooter2").bind("vmousedown", function (e) { + $(".ui-page-active").find(".ui-header").barlayout("addBackBtn"); + }); + + $("#backButtonDemo5").bind("vmousedown", function (e) { + $(".ui-page-active").find(".ui-footer").hide(); + }); +}); diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html new file mode 100755 index 0000000..7d70ee3 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html @@ -0,0 +1,31 @@ + + + + + + +
    +
    +

    Back button to Header

    +
    + +
    +

    Case 6 :

    + Web Developer defines that back button will be attached to header
    + This page declared "data-add-back-btn=header" to page
    + 1. check and draw back button to header

    +
    +

    + <div data-role="page" data-add-back-btn="header">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    + </div>

    +

    + Go Back +
    +
    + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html new file mode 100755 index 0000000..4f52ec0 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html @@ -0,0 +1,31 @@ + + + + + + +
    +
    +

    Normal footer generate

    +
    + +
    +

    Case 1 :

    + Web Developer doesn't define footer in page
    + This page do not have <div> footer in html file
    + Framework automatically generate footer in case no footer definition in page


    +
    +

    + <div data-role="page">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    + </div>

    +

    +
    +
    + + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal2.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal2.html new file mode 100755 index 0000000..db5f118 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal2.html @@ -0,0 +1,35 @@ + + + + + + +
    +
    +

    Defined normal footer

    +
    + +
    +

    Case 2 :

    + Web Developer defines footer in page
    + This page has <div> footer in html file
    + Framework gets tizen theme of footer and styling footer


    +
    +

    + <div data-role="page">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    +     <div data-role="footer">
    +     </div>
    + </div>

    +

    +
    + +
    +
    +
    + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal3.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal3.html new file mode 100755 index 0000000..cc09ca1 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal3.html @@ -0,0 +1,32 @@ + + + + + + +
    +
    +

    Defined back button in page

    +
    + +
    +

    Case 3 :

    + Web Developer defines back button in page
    + This page does not have <div> footer in html file
    + but declared back button in page
    + Framework generates footer then attach back button to footer


    +
    +

    + <div data-role="page" data-add-back-btn="footer">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    + </div>

    +

    +
    + +
    + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html new file mode 100755 index 0000000..7294a78 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html @@ -0,0 +1,48 @@ + + + + + + +
    +
    +

    Back button to Header

    +
    + +
    +

    Case 7 :

    + Web Developer declared only footer in page
    + but need to add back button dynamically
    + select footer and call barlayout("addBackBtn") API

    +
    +

    + <div data-role="page" data-add-back-btn="none">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    +     <div data-role="footer">
    +     </div>
    + </div>

    +

    + +
    +

    + <script>
    +   var $elFooter = $(".ui-page-active").find(".ui-footer");
    +   $elFooter.barlayout("addBackBtn");
    + </script>
    +

    +

    + + Generate backbutton to footer

    + Go Back +
    + +
    +
    +
    + + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html new file mode 100755 index 0000000..0b4e640 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html @@ -0,0 +1,48 @@ + + + + + + +
    +
    +

    Back button to Header

    +
    + +
    +

    Case 7 :

    + Web Developer declared only footer in page
    + but need to add back button dynamically in header
    + select header and call barlayout("addBackBtn") API

    +
    +

    + <div data-role="page" data-add-back-btn="none">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    +     <div data-role="footer">
    +     </div>
    + </div>

    +

    + +
    +

    + <script>
    +   var $elHeader = $(".ui-page-active").find(".ui-header");
    +   $elHeader.barlayout("addBackBtn");
    + </script>
    +

    +

    + + Generate backbutton to header

    + Go Back +
    + +
    +
    +
    + + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html new file mode 100755 index 0000000..8583755 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html @@ -0,0 +1,33 @@ + + + + + + +
    +
    +

    No back button

    +
    + +
    +

    Case 5 :

    + Web Developer defines that back button will not use in this page
    + This page declared that this page will not use back button
    + declared "data-add-back-btn=none" to page
    + 1. draw footer to page
    + 2. check and do not draw back button to page

    +
    +

    + <div data-role="page" data-add-back-btn="none">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    + </div>

    +

    + Go Back +
    +
    + + diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html new file mode 100755 index 0000000..3701b61 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html @@ -0,0 +1,31 @@ + + + + + + +
    +
    +

    Defined normal footer

    +
    + +
    +

    Case 4 :

    + Web Developer defines that footer will not use in this page
    + This page declared that this page will not use footer (footer-exist)
    + 1. do not go to footerDraw routine

    +
    +

    + <div data-role="page" data-footer-exist="false">
    +     <div data-role="header" data-position="fixed">
    +         <h1>back button sample</h1>
    +     </div>
    +     <div data-role="content">
    +     </div>
    + </div>

    +

    + Go Back +
    +
    + + diff --git a/demos/tizen-winsets/widgets/pagelayout/barcontrol.html b/demos/tizen-winsets/widgets/pagelayout/barcontrol.html new file mode 100755 index 0000000..636a1ef --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/barcontrol.html @@ -0,0 +1,50 @@ + + + + + + +
    +
    +

    Update page

    +
    +
    +
    +

    Use case :
    + In case, web Developer controls tizen bar(header/footer) without transitioning other page, + and web Developer use scrollview + Content in page needs to be updated because of scrollable area changed according to content, and changed fixed area need to be hide/show +

    + +

    +

    + var $elPage = $( ".ui-page-active" );

    + $elPage.find( ".ui-header" ).hide();
    + $elPage.page( "refresh" );

    + + $elPage.find( ".ui-header" ).show();
    + $elPage.page( "refresh" );
    +

    +
    +
    Hide header
    +
    Show header

    + +
    +
    +
    +

    + var $elPage = $( ".ui-page-active" );

    + $elPage.find( ".ui-footer" ).hide();
    + $elPage.page( "refresh" );

    + + $elPage.find( ".ui-footer" ).show();
    + $elPage.page( "refresh" );
    +


    +
    + +
    Hide footer
    +
    Show footer
    +
    +
    + + diff --git a/demos/tizen-winsets/widgets/pagelayout/barcontrol.js b/demos/tizen-winsets/widgets/pagelayout/barcontrol.js new file mode 100755 index 0000000..f7549b4 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/barcontrol.js @@ -0,0 +1,29 @@ +$( document ).bind( "pagecreate", function () { + $( "#hideheader" ).bind( "vclick", function ( e ) { + var $elPage = $( ".ui-page-active" ); + + $elPage.find( ".ui-header" ).hide(); + $elPage.page( "refresh" ); + }); + + $( "#showheader" ).bind( "vclick", function ( e ) { + var $elPage = $( ".ui-page-active" ); + + $elPage.find( ".ui-header" ).show(); + $elPage.page( "refresh" ); + }); + + $( "#hidefooter" ).bind( "vclick", function ( e ) { + var $elPage = $( ".ui-page-active" ); + + $elPage.find( ".ui-footer" ).hide(); + $elPage.page( "refresh" ); + }); + + $( "#showfooter" ).bind( "vclick", function ( e ) { + var $elPage = $( ".ui-page-active" ); + + $elPage.find( ".ui-footer" ).show(); + $elPage.page( "refresh" ); + }); +}); diff --git a/demos/tizen-winsets/widgets/pagelayout/ctrl-test.html b/demos/tizen-winsets/widgets/pagelayout/ctrl-test.html new file mode 100755 index 0000000..9fc408b --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/ctrl-test.html @@ -0,0 +1,39 @@ + + +
    +
    +

    Tizen UI

    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    +
    + + + diff --git a/demos/tizen-winsets/widgets/pagelayout/ctrl-test.js b/demos/tizen-winsets/widgets/pagelayout/ctrl-test.js new file mode 100755 index 0000000..826a032 --- /dev/null +++ b/demos/tizen-winsets/widgets/pagelayout/ctrl-test.js @@ -0,0 +1,6 @@ +/* test file for content div control, not completed yet */ +$( "#ctrlbar_5item" ).live( "click", function() { + var a; + $("#ctrlbar_5item").controlbar('enable', a); + $("#ctrlbar_5item").controlbar('disable', undefined); +}); diff --git a/demos/tizen-gray/widgets/popupwindow/dialog-center-info.html b/demos/tizen-winsets/widgets/popupwindow/dialog-center-info.html similarity index 100% rename from demos/tizen-gray/widgets/popupwindow/dialog-center-info.html rename to demos/tizen-winsets/widgets/popupwindow/dialog-center-info.html diff --git a/demos/tizen-gray/widgets/popupwindow/popup.html b/demos/tizen-winsets/widgets/popupwindow/popup.html similarity index 100% rename from demos/tizen-gray/widgets/popupwindow/popup.html rename to demos/tizen-winsets/widgets/popupwindow/popup.html diff --git a/demos/tizen-gray/widgets/popupwindow/popupwindow.js b/demos/tizen-winsets/widgets/popupwindow/popupwindow.js similarity index 100% rename from demos/tizen-gray/widgets/popupwindow/popupwindow.js rename to demos/tizen-winsets/widgets/popupwindow/popupwindow.js diff --git a/demos/tizen-winsets/widgets/progressbar.html b/demos/tizen-winsets/widgets/progressbar.html new file mode 100644 index 0000000..9523b3f --- /dev/null +++ b/demos/tizen-winsets/widgets/progressbar.html @@ -0,0 +1,21 @@ +
    +
    +

    Progress bar

    +
    +
    +
      +
    • Progress Bar
    • +
    • When you click progress bar, it starts updating values...
    • +
    • + +
    • Progress Pending
    • +
    • + +
    • Progress ~ing
    • +
    • +
      + Loading.. +
    • +
    +
    +
    diff --git a/demos/tizen-winsets/widgets/progressbar.js b/demos/tizen-winsets/widgets/progressbar.js new file mode 100644 index 0000000..fa6016f --- /dev/null +++ b/demos/tizen-winsets/widgets/progressbar.js @@ -0,0 +1,73 @@ +var progressbar_running; + +$("#progressbar-demo").live("pageshow", function ( e ) { + + $("#progressbarTest").bind("vclick", function ( e ) { + progressbar_running = !progressbar_running; + + // request animation frame + window.requestAnimFrame = (function () { + return window.requestAnimationFrame || + window.webkitRequestAnimationFrame || + window.mozRequestAnimationFrame || + window.oRequestAnimationFrame || + window.msRequestAnimationFrame || + function (animloop) { + return window.setTimeout(animloop, 1000 / 60); + }; + }()); + + window.cancelRequestAnimFrame = (function () { + return window.cancelAnimationFrame || + window.webkitCancelRequestAnimationFrame || + window.mozCancelRequestAnimationFrame || + window.oCancelRequestAnimationFrame || + window.msCancelRequestAnimationFrame || + clearTimeout; + }()); + + var request, + i = 0; + + // start and run the animloop + (function animloop() { + if ( !progressbar_running ) { + cancelRequestAnimFrame( request ); + return; + } + + $("#progressbar").progressbar( "option", "value", i++ ); + + request = requestAnimFrame( animloop ); + + if ( i > 100 ) { + cancelRequestAnimFrame( request ); + } + }()); + }); + + $("#pending").progress( "running", true ); + $("#progressing").progress( "running", true ); + + $("#pendingTest").bind("vclick", function ( e ) { + var running = $("#pending").progress( "running" ); + // start/stop progressing animation + $("#pending").progress( "running", !running ); + }); + + $("#progressingTest").bind("vclick", function ( e ) { + var running = $("#progressing").progress( "running" ); + // start/stop progressing animation + $("#progressing").progress( "running", !running ); + + if ( running ) { + $("#progressing").progress( "hide" ); + } + }); +}); + +$("#progressbar-demo").live("pagehide", function ( e ) { + progressbar_running = false; + $("#pending").progress( "running", false ); + $("#progressing").progress( "running", false ); +}); diff --git a/demos/tizen-gray/widgets/radio/radio.html b/demos/tizen-winsets/widgets/radio/radio.html similarity index 100% rename from demos/tizen-gray/widgets/radio/radio.html rename to demos/tizen-winsets/widgets/radio/radio.html diff --git a/demos/tizen-gray/widgets/radio/radio.js b/demos/tizen-winsets/widgets/radio/radio.js similarity index 100% rename from demos/tizen-gray/widgets/radio/radio.js rename to demos/tizen-winsets/widgets/radio/radio.js diff --git a/demos/tizen-winsets/widgets/searchbar.html b/demos/tizen-winsets/widgets/searchbar.html new file mode 100755 index 0000000..b5ebc11 --- /dev/null +++ b/demos/tizen-winsets/widgets/searchbar.html @@ -0,0 +1,44 @@ + +
    +
    +

    Searchbar

    + + +
    + +
    +

    Hairston

    +

    Hansbrough

    +

    Allred

    +

    Hanrahan

    +

    Egan

    +

    Dare

    +

    Edmonson

    +

    Calip

    +

    Baker

    +

    Fazekas

    +

    Garrity

    +

    Hansen

    +

    Feigenbaum

    +

    Fillmore

    +

    Darden

    +

    Davis

    +

    Fitzgerald

    +

    Carr

    +

    Danilovic

    +

    Dark

    +

    Alexander

    +

    Allen

    +

    Edwards

    +

    Garrett

    +

    Gardner

    +

    Carroll

    +

    Garner

    +

    Finn

    +

    Edelin

    +

    Gay

    +
    + + +
    + diff --git a/demos/tizen-gray/widgets/searchbar.js b/demos/tizen-winsets/widgets/searchbar.js similarity index 100% rename from demos/tizen-gray/widgets/searchbar.js rename to demos/tizen-winsets/widgets/searchbar.js diff --git a/demos/tizen-gray/widgets/segmentctrl.html b/demos/tizen-winsets/widgets/segmentctrl.html similarity index 100% rename from demos/tizen-gray/widgets/segmentctrl.html rename to demos/tizen-winsets/widgets/segmentctrl.html diff --git a/demos/tizen-winsets/widgets/selectioninfo.html b/demos/tizen-winsets/widgets/selectioninfo.html new file mode 100755 index 0000000..fbd0e38 --- /dev/null +++ b/demos/tizen-winsets/widgets/selectioninfo.html @@ -0,0 +1,18 @@ +
    +
    +
    +
    +

    Selection Info

    +
    + +
    +

    Selectioninfo Test

    +
    + Choose some days +
    + + +
    + +

    Click Here to Show Small Popup

    +
    diff --git a/demos/tizen-winsets/widgets/small-popup.html b/demos/tizen-winsets/widgets/small-popup.html new file mode 100644 index 0000000..52ec444 --- /dev/null +++ b/demos/tizen-winsets/widgets/small-popup.html @@ -0,0 +1,12 @@ + +
    +
    +

    Notification Demo

    +
    +
    +

    Notification

    +
    +
    +
    Show Smallpopup
    +
    +
    diff --git a/demos/tizen-winsets/widgets/switch/switch.html b/demos/tizen-winsets/widgets/switch/switch.html new file mode 100644 index 0000000..8f76143 --- /dev/null +++ b/demos/tizen-winsets/widgets/switch/switch.html @@ -0,0 +1,16 @@ +
    +
    +

    Switch

    +
    +
    +
    +

    +

    +

    Coordinated switches:

    +
    +
    +
    +
    +

    Web UI Framework - Widgets gallery

    +
    +
    diff --git a/demos/tizen-winsets/widgets/switch/switch.js b/demos/tizen-winsets/widgets/switch/switch.js new file mode 100644 index 0000000..8b2d855 --- /dev/null +++ b/demos/tizen-winsets/widgets/switch/switch.js @@ -0,0 +1,8 @@ +$("#switch-demo").live("pageshow", function(e) { + $("#switch-1-coord").bind("changed", function(e) { + $("#switch-2-coord").toggleswitch("option", "checked", $("#switch-1-coord").toggleswitch("option", "checked")); + }); + $("#switch-2-coord").bind("changed", function(e) { + $("#switch-1-coord").toggleswitch("option", "checked", $("#switch-2-coord").toggleswitch("option", "checked")); + }); +}); diff --git a/demos/tizen-gray/widgets/test/01.jpg b/demos/tizen-winsets/widgets/test/01.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/01.jpg rename to demos/tizen-winsets/widgets/test/01.jpg diff --git a/demos/tizen-gray/widgets/test/02.jpg b/demos/tizen-winsets/widgets/test/02.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/02.jpg rename to demos/tizen-winsets/widgets/test/02.jpg diff --git a/demos/tizen-gray/widgets/test/03.jpg b/demos/tizen-winsets/widgets/test/03.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/03.jpg rename to demos/tizen-winsets/widgets/test/03.jpg diff --git a/demos/tizen-gray/widgets/test/04.jpg b/demos/tizen-winsets/widgets/test/04.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/04.jpg rename to demos/tizen-winsets/widgets/test/04.jpg diff --git a/demos/tizen-gray/widgets/test/05.jpg b/demos/tizen-winsets/widgets/test/05.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/05.jpg rename to demos/tizen-winsets/widgets/test/05.jpg diff --git a/demos/tizen-gray/widgets/test/06.jpg b/demos/tizen-winsets/widgets/test/06.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/06.jpg rename to demos/tizen-winsets/widgets/test/06.jpg diff --git a/demos/tizen-gray/widgets/test/07.jpg b/demos/tizen-winsets/widgets/test/07.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/07.jpg rename to demos/tizen-winsets/widgets/test/07.jpg diff --git a/demos/tizen-gray/widgets/test/08.jpg b/demos/tizen-winsets/widgets/test/08.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/08.jpg rename to demos/tizen-winsets/widgets/test/08.jpg diff --git a/demos/tizen-gray/widgets/test/09.jpg b/demos/tizen-winsets/widgets/test/09.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/09.jpg rename to demos/tizen-winsets/widgets/test/09.jpg diff --git a/demos/tizen-gray/widgets/test/10.jpg b/demos/tizen-winsets/widgets/test/10.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/10.jpg rename to demos/tizen-winsets/widgets/test/10.jpg diff --git a/demos/tizen-gray/widgets/test/11.jpg b/demos/tizen-winsets/widgets/test/11.jpg similarity index 100% rename from demos/tizen-gray/widgets/test/11.jpg rename to demos/tizen-winsets/widgets/test/11.jpg diff --git a/demos/tizen-gray/widgets/test/ctxpopup_1.png b/demos/tizen-winsets/widgets/test/ctxpopup_1.png similarity index 100% rename from demos/tizen-gray/widgets/test/ctxpopup_1.png rename to demos/tizen-winsets/widgets/test/ctxpopup_1.png diff --git a/demos/tizen-gray/widgets/test/ctxpopup_2.png b/demos/tizen-winsets/widgets/test/ctxpopup_2.png similarity index 100% rename from demos/tizen-gray/widgets/test/ctxpopup_2.png rename to demos/tizen-winsets/widgets/test/ctxpopup_2.png diff --git a/demos/tizen-gray/widgets/test/ctxpopup_3.png b/demos/tizen-winsets/widgets/test/ctxpopup_3.png similarity index 100% rename from demos/tizen-gray/widgets/test/ctxpopup_3.png rename to demos/tizen-winsets/widgets/test/ctxpopup_3.png diff --git a/demos/tizen-gray/widgets/test/ctxpopup_4.png b/demos/tizen-winsets/widgets/test/ctxpopup_4.png similarity index 100% rename from demos/tizen-gray/widgets/test/ctxpopup_4.png rename to demos/tizen-winsets/widgets/test/ctxpopup_4.png diff --git a/src/themes/tizen/tizen-gray/images/controlbar/01_controlbar_icon_DM.png b/demos/tizen-winsets/widgets/test/icon01.png similarity index 100% rename from src/themes/tizen/tizen-gray/images/controlbar/01_controlbar_icon_DM.png rename to demos/tizen-winsets/widgets/test/icon01.png diff --git a/src/themes/tizen/tizen-gray/images/controlbar/01_controlbar_icon_call.png b/demos/tizen-winsets/widgets/test/icon02.png similarity index 100% rename from src/themes/tizen/tizen-gray/images/controlbar/01_controlbar_icon_call.png rename to demos/tizen-winsets/widgets/test/icon02.png diff --git a/demos/tizen-gray/widgets/grid/images/nba_76ers.jpg b/demos/tizen-winsets/widgets/test/nba_76ers.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_76ers.jpg rename to demos/tizen-winsets/widgets/test/nba_76ers.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_bobcats.jpg b/demos/tizen-winsets/widgets/test/nba_bobcats.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_bobcats.jpg rename to demos/tizen-winsets/widgets/test/nba_bobcats.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_bucks.jpg b/demos/tizen-winsets/widgets/test/nba_bucks.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_bucks.jpg rename to demos/tizen-winsets/widgets/test/nba_bucks.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_bulls.jpg b/demos/tizen-winsets/widgets/test/nba_bulls.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_bulls.jpg rename to demos/tizen-winsets/widgets/test/nba_bulls.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_cavaliers.jpg b/demos/tizen-winsets/widgets/test/nba_cavaliers.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_cavaliers.jpg rename to demos/tizen-winsets/widgets/test/nba_cavaliers.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_celtics.jpg b/demos/tizen-winsets/widgets/test/nba_celtics.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_celtics.jpg rename to demos/tizen-winsets/widgets/test/nba_celtics.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_clippers.jpg b/demos/tizen-winsets/widgets/test/nba_clippers.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_clippers.jpg rename to demos/tizen-winsets/widgets/test/nba_clippers.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_griz.jpg b/demos/tizen-winsets/widgets/test/nba_griz.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_griz.jpg rename to demos/tizen-winsets/widgets/test/nba_griz.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_hawks.jpg b/demos/tizen-winsets/widgets/test/nba_hawks.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_hawks.jpg rename to demos/tizen-winsets/widgets/test/nba_hawks.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_heats.jpg b/demos/tizen-winsets/widgets/test/nba_heats.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_heats.jpg rename to demos/tizen-winsets/widgets/test/nba_heats.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_honets.jpg b/demos/tizen-winsets/widgets/test/nba_honets.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_honets.jpg rename to demos/tizen-winsets/widgets/test/nba_honets.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_jazz.jpg b/demos/tizen-winsets/widgets/test/nba_jazz.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_jazz.jpg rename to demos/tizen-winsets/widgets/test/nba_jazz.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_kings.jpg b/demos/tizen-winsets/widgets/test/nba_kings.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_kings.jpg rename to demos/tizen-winsets/widgets/test/nba_kings.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_knics.jpg b/demos/tizen-winsets/widgets/test/nba_knics.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_knics.jpg rename to demos/tizen-winsets/widgets/test/nba_knics.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_lakers.jpg b/demos/tizen-winsets/widgets/test/nba_lakers.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_lakers.jpg rename to demos/tizen-winsets/widgets/test/nba_lakers.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_magics.jpg b/demos/tizen-winsets/widgets/test/nba_magics.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_magics.jpg rename to demos/tizen-winsets/widgets/test/nba_magics.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_mavericks.jpg b/demos/tizen-winsets/widgets/test/nba_mavericks.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_mavericks.jpg rename to demos/tizen-winsets/widgets/test/nba_mavericks.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_nets.jpg b/demos/tizen-winsets/widgets/test/nba_nets.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_nets.jpg rename to demos/tizen-winsets/widgets/test/nba_nets.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_nuggets.jpg b/demos/tizen-winsets/widgets/test/nba_nuggets.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_nuggets.jpg rename to demos/tizen-winsets/widgets/test/nba_nuggets.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_pacers.jpg b/demos/tizen-winsets/widgets/test/nba_pacers.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_pacers.jpg rename to demos/tizen-winsets/widgets/test/nba_pacers.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_pistons.jpg b/demos/tizen-winsets/widgets/test/nba_pistons.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_pistons.jpg rename to demos/tizen-winsets/widgets/test/nba_pistons.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_raptors.jpg b/demos/tizen-winsets/widgets/test/nba_raptors.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_raptors.jpg rename to demos/tizen-winsets/widgets/test/nba_raptors.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_rockets.jpg b/demos/tizen-winsets/widgets/test/nba_rockets.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_rockets.jpg rename to demos/tizen-winsets/widgets/test/nba_rockets.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_sonics.jpg b/demos/tizen-winsets/widgets/test/nba_sonics.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_sonics.jpg rename to demos/tizen-winsets/widgets/test/nba_sonics.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_spurs.jpg b/demos/tizen-winsets/widgets/test/nba_spurs.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_spurs.jpg rename to demos/tizen-winsets/widgets/test/nba_spurs.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_suns.jpg b/demos/tizen-winsets/widgets/test/nba_suns.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_suns.jpg rename to demos/tizen-winsets/widgets/test/nba_suns.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_timberwolves.jpg b/demos/tizen-winsets/widgets/test/nba_timberwolves.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_timberwolves.jpg rename to demos/tizen-winsets/widgets/test/nba_timberwolves.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_trail.jpg b/demos/tizen-winsets/widgets/test/nba_trail.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_trail.jpg rename to demos/tizen-winsets/widgets/test/nba_trail.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_warriors.jpg b/demos/tizen-winsets/widgets/test/nba_warriors.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_warriors.jpg rename to demos/tizen-winsets/widgets/test/nba_warriors.jpg diff --git a/demos/tizen-gray/widgets/grid/images/nba_wizards.jpg b/demos/tizen-winsets/widgets/test/nba_wizards.jpg similarity index 100% rename from demos/tizen-gray/widgets/grid/images/nba_wizards.jpg rename to demos/tizen-winsets/widgets/test/nba_wizards.jpg diff --git a/demos/tizen-winsets/widgets/tickernoti.html b/demos/tizen-winsets/widgets/tickernoti.html new file mode 100644 index 0000000..c537c75 --- /dev/null +++ b/demos/tizen-winsets/widgets/tickernoti.html @@ -0,0 +1,16 @@ + +
    +
    + +

    Hello Tizen

    +

    Jobs

    +
    +
    +

    Notification

    +
    +
    +
    Show TickerNoti

    +
    Change Icon - Phone
    +
    Change Icon - Message

    +
    +
    diff --git a/libs/js/globalize/.gitignore b/libs/js/globalize/.gitignore new file mode 100644 index 0000000..a4f14d9 --- /dev/null +++ b/libs/js/globalize/.gitignore @@ -0,0 +1,7 @@ +.project +*~ +*.diff +*.patch +.DS_Store +generator/bin +generator/obj diff --git a/libs/js/jquery-1.6.4.min.js b/libs/js/jquery-1.6.4.min.js deleted file mode 100644 index 628ed9b..0000000 --- a/libs/js/jquery-1.6.4.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v1.6.4 http://jquery.com/ | http://jquery.org/license */ -(function(a,b){function cu(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cr(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
    a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
    ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
    t
    ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
    ";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); \ No newline at end of file diff --git a/libs/js/jquery-1.7.1.js b/libs/js/jquery-1.7.1.js new file mode 100644 index 0000000..8ccd0ea --- /dev/null +++ b/libs/js/jquery-1.7.1.js @@ -0,0 +1,9266 @@ +/*! + * jQuery JavaScript Library v1.7.1 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Mon Nov 21 21:11:03 2011 -0500 + */ +(function( window, undefined ) { + +// Use the correct document accordingly with window argument (sandbox) +var document = window.document, + navigator = window.navigator, + location = window.location; +var jQuery = (function() { + +// Define a local copy of jQuery +var jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // A central reference to the root jQuery(document) + rootjQuery, + + // A simple way to check for HTML strings or ID strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, + + // Check if a string has a non-whitespace character in it + rnotwhite = /\S/, + + // Used for trimming whitespace + trimLeft = /^\s+/, + trimRight = /\s+$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, + rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + + // Useragent RegExp + rwebkit = /(webkit)[ \/]([\w.]+)/, + ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, + rmsie = /(msie) ([\w.]+)/, + rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, + + // Matches dashed string for camelizing + rdashAlpha = /-([a-z]|[0-9])/ig, + rmsPrefix = /^-ms-/, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return ( letter + "" ).toUpperCase(); + }, + + // Keep a UserAgent string for use with jQuery.browser + userAgent = navigator.userAgent, + + // For matching the engine and version of the browser + browserMatch, + + // The deferred used on DOM ready + readyList, + + // The ready event handler + DOMContentLoaded, + + // Save a reference to some core methods + toString = Object.prototype.toString, + hasOwn = Object.prototype.hasOwnProperty, + push = Array.prototype.push, + slice = Array.prototype.slice, + trim = String.prototype.trim, + indexOf = Array.prototype.indexOf, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), or $(undefined) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // The body element only exists once, optimize finding it + if ( selector === "body" && !context && document.body ) { + this.context = document; + this[0] = document.body; + this.selector = selector; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + // Are we dealing with HTML string or an ID? + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = quickExpr.exec( selector ); + } + + // Verify a match, and that no context was specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + doc = ( context ? context.ownerDocument || context : document ); + + // If a single string is passed in and it's a single tag + // just do a createElement and skip the rest + ret = rsingleTag.exec( selector ); + + if ( ret ) { + if ( jQuery.isPlainObject( context ) ) { + selector = [ document.createElement( ret[1] ) ]; + jQuery.fn.attr.call( selector, context, true ); + + } else { + selector = [ doc.createElement( ret[1] ) ]; + } + + } else { + ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); + selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes; + } + + return jQuery.merge( this, selector ); + + // HANDLE: $("#id") + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.7.1", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return slice.call( this, 0 ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + // Build a new jQuery matched element set + var ret = this.constructor(); + + if ( jQuery.isArray( elems ) ) { + push.apply( ret, elems ); + + } else { + jQuery.merge( ret, elems ); + } + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Attach the listeners + jQuery.bindReady(); + + // Add the callback + readyList.add( fn ); + + return this; + }, + + eq: function( i ) { + i = +i; + return i === -1 ? + this.slice( i ) : + this.slice( i, i + 1 ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ), + "slice", slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + // Either a released hold or an DOMready/load event and not yet ready + if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.fireWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger( "ready" ).off( "ready" ); + } + } + }, + + bindReady: function() { + if ( readyList ) { + return; + } + + readyList = jQuery.Callbacks( "once memory" ); + + // Catch cases where $(document).ready() is called after the + // browser event has already occurred. + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + return setTimeout( jQuery.ready, 1 ); + } + + // Mozilla, Opera and webkit nightlies currently support this event + if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else if ( document.attachEvent ) { + // ensure firing before onload, + // maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", DOMContentLoaded ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var toplevel = false; + + try { + toplevel = window.frameElement == null; + } catch(e) {} + + if ( document.documentElement.doScroll && toplevel ) { + doScrollCheck(); + } + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + // A crude way of determining if an object is a window + isWindow: function( obj ) { + return obj && typeof obj === "object" && "setInterval" in obj; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call(obj, "constructor") && + !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + for ( var name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + parseJSON: function( data ) { + if ( typeof data !== "string" || !data ) { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + + } + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && rnotwhite.test( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); + }, + + // args is for internal usage only + each: function( object, callback, args ) { + var name, i = 0, + length = object.length, + isObj = length === undefined || jQuery.isFunction( object ); + + if ( args ) { + if ( isObj ) { + for ( name in object ) { + if ( callback.apply( object[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( object[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in object ) { + if ( callback.call( object[ name ], name, object[ name ] ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.call( object[ i ], i, object[ i++ ] ) === false ) { + break; + } + } + } + } + + return object; + }, + + // Use native String.trim function wherever possible + trim: trim ? + function( text ) { + return text == null ? + "" : + trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); + }, + + // results is for internal usage only + makeArray: function( array, results ) { + var ret = results || []; + + if ( array != null ) { + // The window, strings (and functions) also have 'length' + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + var type = jQuery.type( array ); + + if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { + push.call( ret, array ); + } else { + jQuery.merge( ret, array ); + } + } + + return ret; + }, + + inArray: function( elem, array, i ) { + var len; + + if ( array ) { + if ( indexOf ) { + return indexOf.call( array, elem, i ); + } + + len = array.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in array && array[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var i = first.length, + j = 0; + + if ( typeof second.length === "number" ) { + for ( var l = second.length; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var ret = [], retVal; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( var i = 0, length = elems.length; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, key, ret = [], + i = 0, + length = elems.length, + // jquery objects are treated as arrays + isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( key in elems ) { + value = callback( elems[ key ], key, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + if ( typeof context === "string" ) { + var tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + var args = slice.call( arguments, 2 ), + proxy = function() { + return fn.apply( context, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; + + return proxy; + }, + + // Mutifunctional method to get and set values to a collection + // The value/s can optionally be executed if it's a function + access: function( elems, key, value, exec, fn, pass ) { + var length = elems.length; + + // Setting many attributes + if ( typeof key === "object" ) { + for ( var k in key ) { + jQuery.access( elems, k, key[k], exec, fn, value ); + } + return elems; + } + + // Setting one attribute + if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = !pass && exec && jQuery.isFunction(value); + + for ( var i = 0; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + + return elems; + } + + // Getting an attribute + return length ? fn( elems[0], key ) : undefined; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // Use of jQuery.browser is frowned upon. + // More details: http://docs.jquery.com/Utilities/jQuery.browser + uaMatch: function( ua ) { + ua = ua.toLowerCase(); + + var match = rwebkit.exec( ua ) || + ropera.exec( ua ) || + rmsie.exec( ua ) || + ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || + []; + + return { browser: match[1] || "", version: match[2] || "0" }; + }, + + sub: function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + return jQuerySub; + }, + + browser: {} +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +browserMatch = jQuery.uaMatch( userAgent ); +if ( browserMatch.browser ) { + jQuery.browser[ browserMatch.browser ] = true; + jQuery.browser.version = browserMatch.version; +} + +// Deprecated, use jQuery.browser.webkit instead +if ( jQuery.browser.webkit ) { + jQuery.browser.safari = true; +} + +// IE doesn't match non-breaking spaces with \s +if ( rnotwhite.test( "\xA0" ) ) { + trimLeft = /^[\s\xA0]+/; + trimRight = /[\s\xA0]+$/; +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); + +// Cleanup functions for the document ready method +if ( document.addEventListener ) { + DOMContentLoaded = function() { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + }; + +} else if ( document.attachEvent ) { + DOMContentLoaded = function() { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( document.readyState === "complete" ) { + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }; +} + +// The DOM ready check for Internet Explorer +function doScrollCheck() { + if ( jQuery.isReady ) { + return; + } + + try { + // If IE is used, use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + document.documentElement.doScroll("left"); + } catch(e) { + setTimeout( doScrollCheck, 1 ); + return; + } + + // and execute any waiting functions + jQuery.ready(); +} + +return jQuery; + +})(); + + +// String to Object flags format cache +var flagsCache = {}; + +// Convert String-formatted flags into Object-formatted ones and store in cache +function createFlags( flags ) { + var object = flagsCache[ flags ] = {}, + i, length; + flags = flags.split( /\s+/ ); + for ( i = 0, length = flags.length; i < length; i++ ) { + object[ flags[i] ] = true; + } + return object; +} + +/* + * Create a callback list using the following parameters: + * + * flags: an optional list of space-separated flags that will change how + * the callback list behaves + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible flags: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( flags ) { + + // Convert flags from String-formatted to Object-formatted + // (we check in cache first) + flags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {}; + + var // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = [], + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Add one or several callbacks to the list + add = function( args ) { + var i, + length, + elem, + type, + actual; + for ( i = 0, length = args.length; i < length; i++ ) { + elem = args[ i ]; + type = jQuery.type( elem ); + if ( type === "array" ) { + // Inspect recursively + add( elem ); + } else if ( type === "function" ) { + // Add if not in unique mode and callback is not in + if ( !flags.unique || !self.has( elem ) ) { + list.push( elem ); + } + } + } + }, + // Fire callbacks + fire = function( context, args ) { + args = args || []; + memory = !flags.memory || [ context, args ]; + firing = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) { + memory = true; // Mark as halted + break; + } + } + firing = false; + if ( list ) { + if ( !flags.once ) { + if ( stack && stack.length ) { + memory = stack.shift(); + self.fireWith( memory[ 0 ], memory[ 1 ] ); + } + } else if ( memory === true ) { + self.disable(); + } else { + list = []; + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + var length = list.length; + add( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away, unless previous + // firing was halted (stopOnFalse) + } else if ( memory && memory !== true ) { + firingStart = length; + fire( memory[ 0 ], memory[ 1 ] ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + var args = arguments, + argIndex = 0, + argLength = args.length; + for ( ; argIndex < argLength ; argIndex++ ) { + for ( var i = 0; i < list.length; i++ ) { + if ( args[ argIndex ] === list[ i ] ) { + // Handle firingIndex and firingLength + if ( firing ) { + if ( i <= firingLength ) { + firingLength--; + if ( i <= firingIndex ) { + firingIndex--; + } + } + } + // Remove the element + list.splice( i--, 1 ); + // If we have some unicity property then + // we only need to do this once + if ( flags.unique ) { + break; + } + } + } + } + } + return this; + }, + // Control if a given callback is in the list + has: function( fn ) { + if ( list ) { + var i = 0, + length = list.length; + for ( ; i < length; i++ ) { + if ( fn === list[ i ] ) { + return true; + } + } + } + return false; + }, + // Remove all callbacks from the list + empty: function() { + list = []; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory || memory === true ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( stack ) { + if ( firing ) { + if ( !flags.once ) { + stack.push( [ context, args ] ); + } + } else if ( !( flags.once && memory ) ) { + fire( context, args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!memory; + } + }; + + return self; +}; + + + + +var // Static reference to slice + sliceDeferred = [].slice; + +jQuery.extend({ + + Deferred: function( func ) { + var doneList = jQuery.Callbacks( "once memory" ), + failList = jQuery.Callbacks( "once memory" ), + progressList = jQuery.Callbacks( "memory" ), + state = "pending", + lists = { + resolve: doneList, + reject: failList, + notify: progressList + }, + promise = { + done: doneList.add, + fail: failList.add, + progress: progressList.add, + + state: function() { + return state; + }, + + // Deprecated + isResolved: doneList.fired, + isRejected: failList.fired, + + then: function( doneCallbacks, failCallbacks, progressCallbacks ) { + deferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks ); + return this; + }, + always: function() { + deferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments ); + return this; + }, + pipe: function( fnDone, fnFail, fnProgress ) { + return jQuery.Deferred(function( newDefer ) { + jQuery.each( { + done: [ fnDone, "resolve" ], + fail: [ fnFail, "reject" ], + progress: [ fnProgress, "notify" ] + }, function( handler, data ) { + var fn = data[ 0 ], + action = data[ 1 ], + returned; + if ( jQuery.isFunction( fn ) ) { + deferred[ handler ](function() { + returned = fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); + } + }); + } else { + deferred[ handler ]( newDefer[ action ] ); + } + }); + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + if ( obj == null ) { + obj = promise; + } else { + for ( var key in promise ) { + obj[ key ] = promise[ key ]; + } + } + return obj; + } + }, + deferred = promise.promise({}), + key; + + for ( key in lists ) { + deferred[ key ] = lists[ key ].fire; + deferred[ key + "With" ] = lists[ key ].fireWith; + } + + // Handle state + deferred.done( function() { + state = "resolved"; + }, failList.disable, progressList.lock ).fail( function() { + state = "rejected"; + }, doneList.disable, progressList.lock ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( firstParam ) { + var args = sliceDeferred.call( arguments, 0 ), + i = 0, + length = args.length, + pValues = new Array( length ), + count = length, + pCount = length, + deferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ? + firstParam : + jQuery.Deferred(), + promise = deferred.promise(); + function resolveFunc( i ) { + return function( value ) { + args[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; + if ( !( --count ) ) { + deferred.resolveWith( deferred, args ); + } + }; + } + function progressFunc( i ) { + return function( value ) { + pValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; + deferred.notifyWith( promise, pValues ); + }; + } + if ( length > 1 ) { + for ( ; i < length; i++ ) { + if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) { + args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) ); + } else { + --count; + } + } + if ( !count ) { + deferred.resolveWith( deferred, args ); + } + } else if ( deferred !== firstParam ) { + deferred.resolveWith( deferred, length ? [ firstParam ] : [] ); + } + return promise; + } +}); + + + + +jQuery.support = (function() { + + var support, + all, + a, + select, + opt, + input, + marginDiv, + fragment, + tds, + events, + eventName, + i, + isSupported, + div = document.createElement( "div" ), + documentElement = document.documentElement; + + // Preliminary tests + div.setAttribute("className", "t"); + div.innerHTML = "
    a"; + + all = div.getElementsByTagName( "*" ); + a = div.getElementsByTagName( "a" )[ 0 ]; + + // Can't get basic test support + if ( !all || !all.length || !a ) { + return {}; + } + + // First batch of supports tests + select = document.createElement( "select" ); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName( "input" )[ 0 ]; + + support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: ( div.firstChild.nodeType === 3 ), + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText instead) + style: /top/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: ( a.getAttribute("href") === "/a" ), + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.55/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: ( input.value === "on" ), + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", + + // Tests for enctype support on a form(#6743) + enctype: !!document.createElement("form").enctype, + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", + + // Will be defined later + submitBubbles: true, + changeBubbles: true, + focusinBubbles: false, + deleteExpando: true, + noCloneEvent: true, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableMarginRight: true + }; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { + div.attachEvent( "onclick", function() { + // Cloning a node shouldn't copy over any + // bound event handlers (IE does this) + support.noCloneEvent = false; + }); + div.cloneNode( true ).fireEvent( "onclick" ); + } + + // Check if a radio maintains its value + // after being appended to the DOM + input = document.createElement("input"); + input.value = "t"; + input.setAttribute("type", "radio"); + support.radioValue = input.value === "t"; + + input.setAttribute("checked", "checked"); + div.appendChild( input ); + fragment = document.createDocumentFragment(); + fragment.appendChild( div.lastChild ); + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + fragment.removeChild( input ); + fragment.appendChild( div ); + + div.innerHTML = ""; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. For more + // info see bug #3333 + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + if ( window.getComputedStyle ) { + marginDiv = document.createElement( "div" ); + marginDiv.style.width = "0"; + marginDiv.style.marginRight = "0"; + div.style.width = "2px"; + div.appendChild( marginDiv ); + support.reliableMarginRight = + ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; + } + + // Technique from Juriy Zaytsev + // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ + // We only care about the case where non-standard event systems + // are used, namely in IE. Short-circuiting here helps us to + // avoid an eval call (in setAttribute) which can cause CSP + // to go haywire. See: https://developer.mozilla.org/en/Security/CSP + if ( div.attachEvent ) { + for( i in { + submit: 1, + change: 1, + focusin: 1 + }) { + eventName = "on" + i; + isSupported = ( eventName in div ); + if ( !isSupported ) { + div.setAttribute( eventName, "return;" ); + isSupported = ( typeof div[ eventName ] === "function" ); + } + support[ i + "Bubbles" ] = isSupported; + } + } + + fragment.removeChild( div ); + + // Null elements to avoid leaks in IE + fragment = select = opt = marginDiv = div = input = null; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, outer, inner, table, td, offsetSupport, + conMarginTop, ptlm, vb, style, html, + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + conMarginTop = 1; + ptlm = "position:absolute;top:0;left:0;width:1px;height:1px;margin:0;"; + vb = "visibility:hidden;border:0;"; + style = "style='" + ptlm + "border:5px solid #000;padding:0;'"; + html = "
    " + + "" + + "
    "; + + container = document.createElement("div"); + container.style.cssText = vb + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; + body.insertBefore( container, body.firstChild ); + + // Construct the test element + div = document.createElement("div"); + container.appendChild( div ); + + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + // (only IE 8 fails this test) + div.innerHTML = "
    t
    "; + tds = div.getElementsByTagName( "td" ); + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Check if empty table cells still have offsetWidth/Height + // (IE <= 8 fail this test) + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Figure out if the W3C box model works as expected + div.innerHTML = ""; + div.style.width = div.style.paddingLeft = "1px"; + jQuery.boxModel = support.boxModel = div.offsetWidth === 2; + + if ( typeof div.style.zoom !== "undefined" ) { + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + // (IE < 8 does this) + div.style.display = "inline"; + div.style.zoom = 1; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 2 ); + + // Check if elements with layout shrink-wrap their children + // (IE 6 does this) + div.style.display = ""; + div.innerHTML = "
    "; + support.shrinkWrapBlocks = ( div.offsetWidth !== 2 ); + } + + div.style.cssText = ptlm + vb; + div.innerHTML = html; + + outer = div.firstChild; + inner = outer.firstChild; + td = outer.nextSibling.firstChild.firstChild; + + offsetSupport = { + doesNotAddBorder: ( inner.offsetTop !== 5 ), + doesAddBorderForTableAndCells: ( td.offsetTop === 5 ) + }; + + inner.style.position = "fixed"; + inner.style.top = "20px"; + + // safari subtracts parent border width here which is 5px + offsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 ); + inner.style.position = inner.style.top = ""; + + outer.style.overflow = "hidden"; + outer.style.position = "relative"; + + offsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 ); + offsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop ); + + body.removeChild( container ); + div = container = null; + + jQuery.extend( support, offsetSupport ); + }); + + return support; +})(); + + + + +var rbrace = /^(?:\{.*\}|\[.*\])$/, + rmultiDash = /([A-Z])/g; + +jQuery.extend({ + cache: {}, + + // Please use with caution + uuid: 0, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var privateCache, thisCache, ret, + internalKey = jQuery.expando, + getByName = typeof name === "string", + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey, + isEvents = name === "events"; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ internalKey ] = id = ++jQuery.uuid; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + + // Avoids exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + if ( !isNode ) { + cache[ id ].toJSON = jQuery.noop; + } + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + privateCache = thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Users should not attempt to inspect the internal events object using jQuery.data, + // it is undocumented and subject to change. But does anyone listen? No. + if ( isEvents && !thisCache[ name ] ) { + return privateCache.events; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( getByName ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; + }, + + removeData: function( elem, name, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, l, + + // Reference to internal data cache key + internalKey = jQuery.expando, + + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + + // See jQuery.data for more information + id = isNode ? elem[ internalKey ] : internalKey; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split( " " ); + } + } + } + + for ( i = 0, l = name.length; i < l; i++ ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject(cache[ id ]) ) { + return; + } + } + + // Browsers that fail expando deletion also refuse to delete expandos on + // the window, but it will allow it on all other JS objects; other browsers + // don't care + // Ensure that `cache` is not a window object #10080 + if ( jQuery.support.deleteExpando || !cache.setInterval ) { + delete cache[ id ]; + } else { + cache[ id ] = null; + } + + // We destroyed the cache and need to eliminate the expando on the node to avoid + // false lookups in the cache for entries that no longer exist + if ( isNode ) { + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( jQuery.support.deleteExpando ) { + delete elem[ internalKey ]; + } else if ( elem.removeAttribute ) { + elem.removeAttribute( internalKey ); + } else { + elem[ internalKey ] = null; + } + } + }, + + // For internal use only. + _data: function( elem, name, data ) { + return jQuery.data( elem, name, data, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + if ( elem.nodeName ) { + var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; + + if ( match ) { + return !(match === true || elem.getAttribute("classid") !== match); + } + } + + return true; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var parts, attr, name, + data = null; + + if ( typeof key === "undefined" ) { + if ( this.length ) { + data = jQuery.data( this[0] ); + + if ( this[0].nodeType === 1 && !jQuery._data( this[0], "parsedAttrs" ) ) { + attr = this[0].attributes; + for ( var i = 0, l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.substring(5) ); + + dataAttr( this[0], name, data[ name ] ); + } + } + jQuery._data( this[0], "parsedAttrs", true ); + } + } + + return data; + + } else if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + parts = key.split("."); + parts[1] = parts[1] ? "." + parts[1] : ""; + + if ( value === undefined ) { + data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); + + // Try to fetch any internally stored data first + if ( data === undefined && this.length ) { + data = jQuery.data( this[0], key ); + data = dataAttr( this[0], key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + + } else { + return this.each(function() { + var self = jQuery( this ), + args = [ parts[0], value ]; + + self.triggerHandler( "setData" + parts[1] + "!", args ); + jQuery.data( this, key, value ); + self.triggerHandler( "changeData" + parts[1] + "!", args ); + }); + } + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + jQuery.isNumeric( data ) ? parseFloat( data ) : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + for ( var name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} + + + + +function handleQueueMarkDefer( elem, type, src ) { + var deferDataKey = type + "defer", + queueDataKey = type + "queue", + markDataKey = type + "mark", + defer = jQuery._data( elem, deferDataKey ); + if ( defer && + ( src === "queue" || !jQuery._data(elem, queueDataKey) ) && + ( src === "mark" || !jQuery._data(elem, markDataKey) ) ) { + // Give room for hard-coded callbacks to fire first + // and eventually mark/queue something else on the element + setTimeout( function() { + if ( !jQuery._data( elem, queueDataKey ) && + !jQuery._data( elem, markDataKey ) ) { + jQuery.removeData( elem, deferDataKey, true ); + defer.fire(); + } + }, 0 ); + } +} + +jQuery.extend({ + + _mark: function( elem, type ) { + if ( elem ) { + type = ( type || "fx" ) + "mark"; + jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 ); + } + }, + + _unmark: function( force, elem, type ) { + if ( force !== true ) { + type = elem; + elem = force; + force = false; + } + if ( elem ) { + type = type || "fx"; + var key = type + "mark", + count = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 ); + if ( count ) { + jQuery._data( elem, key, count ); + } else { + jQuery.removeData( elem, key, true ); + handleQueueMarkDefer( elem, type, "mark" ); + } + } + }, + + queue: function( elem, type, data ) { + var q; + if ( elem ) { + type = ( type || "fx" ) + "queue"; + q = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !q || jQuery.isArray(data) ) { + q = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + q.push( data ); + } + } + return q || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + fn = queue.shift(), + hooks = {}; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + } + + if ( fn ) { + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + jQuery._data( elem, type + ".run", hooks ); + fn.call( elem, function() { + jQuery.dequeue( elem, type ); + }, hooks ); + } + + if ( !queue.length ) { + jQuery.removeData( elem, type + "queue " + type + ".run", true ); + handleQueueMarkDefer( elem, type, "queue" ); + } + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + } + + if ( data === undefined ) { + return jQuery.queue( this[0], type ); + } + return this.each(function() { + var queue = jQuery.queue( this, type, data ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, object ) { + if ( typeof type !== "string" ) { + object = type; + type = undefined; + } + type = type || "fx"; + var defer = jQuery.Deferred(), + elements = this, + i = elements.length, + count = 1, + deferDataKey = type + "defer", + queueDataKey = type + "queue", + markDataKey = type + "mark", + tmp; + function resolve() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + } + while( i-- ) { + if (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) || + ( jQuery.data( elements[ i ], queueDataKey, undefined, true ) || + jQuery.data( elements[ i ], markDataKey, undefined, true ) ) && + jQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( "once memory" ), true ) )) { + count++; + tmp.add( resolve ); + } + } + resolve(); + return defer.promise(); + } +}); + + + + +var rclass = /[\n\t\r]/g, + rspace = /\s+/, + rreturn = /\r/g, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea)?$/i, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + nodeHook, boolHook, fixSpecified; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.attr ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.prop ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classNames, i, l, elem, + setClass, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call(this, j, this.className) ); + }); + } + + if ( value && typeof value === "string" ) { + classNames = value.split( rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className && classNames.length === 1 ) { + elem.className = value; + + } else { + setClass = " " + elem.className + " "; + + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { + setClass += classNames[ c ] + " "; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classNames, i, l, elem, className, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call(this, j, this.className) ); + }); + } + + if ( (value && typeof value === "string") || value === undefined ) { + classNames = ( value || "" ).split( rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 && elem.className ) { + if ( value ) { + className = (" " + elem.className + " ").replace( rclass, " " ); + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + className = className.replace(" " + classNames[ c ] + " ", " "); + } + elem.className = jQuery.trim( className ); + + } else { + elem.className = ""; + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( rspace ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space seperated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var hooks, ret, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var self = jQuery(this), val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, self.val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + }, + select: { + get: function( elem ) { + var value, i, max, option, + index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type === "select-one"; + + // Nothing was selected + if ( index < 0 ) { + return null; + } + + // Loop through all the selected options + i = one ? index : 0; + max = one ? index + 1 : options.length; + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Don't return options that are disabled or in a disabled optgroup + if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && + (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + // Fixes Bug #2551 -- select.val() broken in IE after form.reset() + if ( one && !values.length && options.length ) { + return jQuery( options[ index ] ).val(); + } + + return values; + }, + + set: function( elem, value ) { + var values = jQuery.makeArray( value ); + + jQuery(elem).find("option").each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attrFn: { + val: true, + css: true, + html: true, + text: true, + data: true, + width: true, + height: true, + offset: true + }, + + attr: function( elem, name, value, pass ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( pass && name in jQuery.attrFn ) { + return jQuery( elem )[ name ]( value ); + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( notxml ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + + } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, "" + value ); + return value; + } + + } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + + ret = elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return ret === null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var propName, attrNames, name, l, + i = 0; + + if ( value && elem.nodeType === 1 ) { + attrNames = value.toLowerCase().split( rspace ); + l = attrNames.length; + + for ( ; i < l; i++ ) { + name = attrNames[ i ]; + + if ( name ) { + propName = jQuery.propFix[ name ] || name; + + // See #9699 for explanation of this approach (setting first, then removal) + jQuery.attr( elem, name, "" ); + elem.removeAttribute( getSetAttribute ? name : propName ); + + // Set corresponding property to false for boolean attributes + if ( rboolean.test( name ) && propName in elem ) { + elem[ propName ] = false; + } + } + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to it's default in case type is set after value + // This is for element creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + }, + // Use the value property for back compat + // Use the nodeHook for button elements in IE6/7 (#1954) + value: { + get: function( elem, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.get( elem, name ); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.set( elem, value, name ); + } + // Does not return so that setAttribute is also used + elem.value = value; + } + } + }, + + propFix: { + tabindex: "tabIndex", + readonly: "readOnly", + "for": "htmlFor", + "class": "className", + maxlength: "maxLength", + cellspacing: "cellSpacing", + cellpadding: "cellPadding", + rowspan: "rowSpan", + colspan: "colSpan", + usemap: "useMap", + frameborder: "frameBorder", + contenteditable: "contentEditable" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + return ( elem[ name ] = value ); + } + + } else { + if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + return elem[ name ]; + } + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + var attributeNode = elem.getAttributeNode("tabindex"); + + return attributeNode && attributeNode.specified ? + parseInt( attributeNode.value, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + } + } +}); + +// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) +jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; + +// Hook for boolean attributes +boolHook = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } +}; + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + fixSpecified = { + name: true, + id: true + }; + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = jQuery.valHooks.button = { + get: function( elem, name ) { + var ret; + ret = elem.getAttributeNode( name ); + return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ? + ret.nodeValue : + undefined; + }, + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + ret = document.createAttribute( name ); + elem.setAttributeNode( ret ); + } + return ( ret.nodeValue = value + "" ); + } + }; + + // Apply the nodeHook to tabindex + jQuery.attrHooks.tabindex.set = nodeHook.set; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }); + }); + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + if ( value === "" ) { + value = "false"; + } + nodeHook.set( elem, value, name ); + } + }; +} + + +// Some attributes require a special call on IE +if ( !jQuery.support.hrefNormalized ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + get: function( elem ) { + var ret = elem.getAttribute( name, 2 ); + return ret === null ? undefined : ret; + } + }); + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Normalize to lowercase since IE uppercases css property names + return elem.style.cssText.toLowerCase() || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = "" + value ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }); +} + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +if ( !jQuery.support.checkOn ) { + jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + get: function( elem ) { + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + } + }; + }); +} +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }); +}); + + + + +var rformElems = /^(?:textarea|input|select)$/i, + rtypenamespace = /^([^\.]*)?(?:\.(.+))?$/, + rhoverHack = /\bhover(\.\S+)?\b/, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rquickIs = /^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/, + quickParse = function( selector ) { + var quick = rquickIs.exec( selector ); + if ( quick ) { + // 0 1 2 3 + // [ _, tag, id, class ] + quick[1] = ( quick[1] || "" ).toLowerCase(); + quick[3] = quick[3] && new RegExp( "(?:^|\\s)" + quick[3] + "(?:\\s|$)" ); + } + return quick; + }, + quickIs = function( elem, m ) { + var attrs = elem.attributes || {}; + return ( + (!m[1] || elem.nodeName.toLowerCase() === m[1]) && + (!m[2] || (attrs.id || {}).value === m[2]) && + (!m[3] || m[3].test( (attrs[ "class" ] || {}).value )) + ); + }, + hoverHack = function( events ) { + return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + add: function( elem, types, handler, data, selector ) { + + var elemData, eventHandle, events, + t, tns, type, namespaces, handleObj, + handleObjIn, quick, handlers, special; + + // Don't attach events to noData or text/comment nodes (allow plain objects tho) + if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + events = elemData.events; + if ( !events ) { + elemData.events = events = {}; + } + eventHandle = elemData.handle; + if ( !eventHandle ) { + elemData.handle = eventHandle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = jQuery.trim( hoverHack(types) ).split( " " ); + for ( t = 0; t < types.length; t++ ) { + + tns = rtypenamespace.exec( types[t] ) || []; + type = tns[1]; + namespaces = ( tns[2] || "" ).split( "." ).sort(); + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: tns[1], + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + quick: quickParse( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + handlers = events[ type ]; + if ( !handlers ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var elemData = jQuery.hasData( elem ) && jQuery._data( elem ), + t, tns, type, origType, namespaces, origCount, + j, events, special, handle, eventType, handleObj; + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = jQuery.trim( hoverHack( types || "" ) ).split(" "); + for ( t = 0; t < types.length; t++ ) { + tns = rtypenamespace.exec( types[t] ) || []; + type = origType = tns[1]; + namespaces = tns[2]; + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector? special.delegateType : special.bindType ) || type; + eventType = events[ type ] || []; + origCount = eventType.length; + namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null; + + // Remove matching events + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !namespaces || namespaces.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + eventType.splice( j--, 1 ); + + if ( handleObj.selector ) { + eventType.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( eventType.length === 0 && origCount !== eventType.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + handle = elemData.handle; + if ( handle ) { + handle.elem = null; + } + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery.removeData( elem, [ "events", "handle" ], true ); + } + }, + + // Events that are safe to short-circuit if no handlers are attached. + // Native DOM events should not be added, they may have inline handlers. + customEvent: { + "getData": true, + "setData": true, + "changeData": true + }, + + trigger: function( event, data, elem, onlyHandlers ) { + // Don't do events on text and comment nodes + if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { + return; + } + + // Event object or event type + var type = event.type || event, + namespaces = [], + cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType; + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "!" ) >= 0 ) { + // Exclusive events trigger only for the exact event (no namespaces) + type = type.slice(0, -1); + exclusive = true; + } + + if ( type.indexOf( "." ) >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + + if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { + // No jQuery handlers for this event type, and it can't have inline handlers + return; + } + + // Caller can pass in an Event, Object, or just an event type string + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + new jQuery.Event( type, event ) : + // Just the event type (string) + new jQuery.Event( type ); + + event.type = type; + event.isTrigger = true; + event.exclusive = exclusive; + event.namespace = namespaces.join( "." ); + event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.)?") + "(\\.|$)") : null; + ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; + + // Handle a global trigger + if ( !elem ) { + + // TODO: Stop taunting the data cache; remove global events and always attach to document + cache = jQuery.cache; + for ( i in cache ) { + if ( cache[ i ].events && cache[ i ].events[ type ] ) { + jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); + } + } + return; + } + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data != null ? jQuery.makeArray( data ) : []; + data.unshift( event ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + eventPath = [[ elem, special.bindType || type ]]; + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; + old = null; + for ( ; cur; cur = cur.parentNode ) { + eventPath.push([ cur, bubbleType ]); + old = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( old && old === elem.ownerDocument ) { + eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); + } + } + + // Fire handlers on the event path + for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { + + cur = eventPath[i][0]; + event.type = eventPath[i][1]; + + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + // Note that this is a bare JS function and not a jQuery handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && + !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + // IE<9 dies on focus/blur to hidden element (#1486) + if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + old = elem[ ontype ]; + + if ( old ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( old ) { + elem[ ontype ] = old; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event || window.event ); + + var handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), + delegateCount = handlers.delegateCount, + args = [].slice.call( arguments, 0 ), + run_all = !event.exclusive && !event.namespace, + handlerQueue = [], + i, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Determine handlers that should run if there are delegated events + // Avoid disabled elements in IE (#6911) and non-left-click bubbling in Firefox (#3861) + if ( delegateCount && !event.target.disabled && !(event.button && event.type === "click") ) { + + // Pregenerate a single jQuery object for reuse with .is() + jqcur = jQuery(this); + jqcur.context = this.ownerDocument || this; + + for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { + selMatch = {}; + matches = []; + jqcur[0] = cur; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + sel = handleObj.selector; + + if ( selMatch[ sel ] === undefined ) { + selMatch[ sel ] = ( + handleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel ) + ); + } + if ( selMatch[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, matches: matches }); + } + } + } + + // Add the remaining (directly-bound) handlers + if ( handlers.length > delegateCount ) { + handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); + } + + // Run delegates first; they may want to stop propagation beneath us + for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { + matched = handlerQueue[ i ]; + event.currentTarget = matched.elem; + + for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { + handleObj = matched.matches[ j ]; + + // Triggered event must either 1) be non-exclusive and have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { + + event.data = handleObj.data; + event.handleObj = handleObj; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + return event.result; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** + props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, + originalEvent = event, + fixHook = jQuery.event.fixHooks[ event.type ] || {}, + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = jQuery.Event( originalEvent ); + + for ( i = copy.length; i; ) { + prop = copy[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Target should not be a text node (#504, Safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8) + if ( event.metaKey === undefined ) { + event.metaKey = event.ctrlKey; + } + + return fixHook.filter? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + ready: { + // Make sure the ready event is setup + setup: jQuery.bindReady + }, + + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + + focus: { + delegateType: "focusin" + }, + blur: { + delegateType: "focusout" + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +// Some plugins are using, but it's undocumented/deprecated and will be removed. +// The 1.7 special event interface should provide all the hooks needed now. +jQuery.event.handle = jQuery.event.dispatch; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + if ( elem.detachEvent ) { + elem.detachEvent( "on" + type, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var target = this, + related = event.relatedTarget, + handleObj = event.handleObj, + selector = handleObj.selector, + ret; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !form._submit_attached ) { + jQuery.event.add( form, "submit._submit", function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + }); + form._submit_attached = true; + } + }); + // return undefined since we don't need an event listener + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + jQuery.event.simulate( "change", this, event, true ); + } + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !elem._change_attached ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + elem._change_attached = true; + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on.call( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + var handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace? handleObj.type + "." + handleObj.namespace : handleObj.type, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( var type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + live: function( types, data, fn ) { + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; + }, + die: function( types, fn ) { + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length == 1? this.off( selector, "**" ) : this.off( types, selector, fn ); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + if ( this[0] ) { + return jQuery.event.trigger( type, data, this[0], true ); + } + }, + + toggle: function( fn ) { + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + if ( fn == null ) { + fn = data; + data = null; + } + + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; + + if ( jQuery.attrFn ) { + jQuery.attrFn[ name ] = true; + } + + if ( rkeyEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; + } + + if ( rmouseEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; + } +}); + + + +/*! + * Sizzle CSS Selector Engine + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){ + +var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, + expando = "sizcache" + (Math.random() + '').replace('.', ''), + done = 0, + toString = Object.prototype.toString, + hasDuplicate = false, + baseHasDuplicate = true, + rBackslash = /\\/g, + rReturn = /\r\n/g, + rNonWord = /\W/; + +// Here we check if the JavaScript engine is using some sort of +// optimization where it does not always call our comparision +// function. If that is the case, discard the hasDuplicate value. +// Thus far that includes Google Chrome. +[0, 0].sort(function() { + baseHasDuplicate = false; + return 0; +}); + +var Sizzle = function( selector, context, results, seed ) { + results = results || []; + context = context || document; + + var origContext = context; + + if ( context.nodeType !== 1 && context.nodeType !== 9 ) { + return []; + } + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + var m, set, checkSet, extra, ret, cur, pop, i, + prune = true, + contextXML = Sizzle.isXML( context ), + parts = [], + soFar = selector; + + // Reset the position of the chunker regexp (start from head) + do { + chunker.exec( "" ); + m = chunker.exec( soFar ); + + if ( m ) { + soFar = m[3]; + + parts.push( m[1] ); + + if ( m[2] ) { + extra = m[3]; + break; + } + } + } while ( m ); + + if ( parts.length > 1 && origPOS.exec( selector ) ) { + + if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { + set = posProcess( parts[0] + parts[1], context, seed ); + + } else { + set = Expr.relative[ parts[0] ] ? + [ context ] : + Sizzle( parts.shift(), context ); + + while ( parts.length ) { + selector = parts.shift(); + + if ( Expr.relative[ selector ] ) { + selector += parts.shift(); + } + + set = posProcess( selector, set, seed ); + } + } + + } else { + // Take a shortcut and set the context if the root selector is an ID + // (but not if it'll be faster if the inner selector is an ID) + if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && + Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { + + ret = Sizzle.find( parts.shift(), context, contextXML ); + context = ret.expr ? + Sizzle.filter( ret.expr, ret.set )[0] : + ret.set[0]; + } + + if ( context ) { + ret = seed ? + { expr: parts.pop(), set: makeArray(seed) } : + Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); + + set = ret.expr ? + Sizzle.filter( ret.expr, ret.set ) : + ret.set; + + if ( parts.length > 0 ) { + checkSet = makeArray( set ); + + } else { + prune = false; + } + + while ( parts.length ) { + cur = parts.pop(); + pop = cur; + + if ( !Expr.relative[ cur ] ) { + cur = ""; + } else { + pop = parts.pop(); + } + + if ( pop == null ) { + pop = context; + } + + Expr.relative[ cur ]( checkSet, pop, contextXML ); + } + + } else { + checkSet = parts = []; + } + } + + if ( !checkSet ) { + checkSet = set; + } + + if ( !checkSet ) { + Sizzle.error( cur || selector ); + } + + if ( toString.call(checkSet) === "[object Array]" ) { + if ( !prune ) { + results.push.apply( results, checkSet ); + + } else if ( context && context.nodeType === 1 ) { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { + results.push( set[i] ); + } + } + + } else { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && checkSet[i].nodeType === 1 ) { + results.push( set[i] ); + } + } + } + + } else { + makeArray( checkSet, results ); + } + + if ( extra ) { + Sizzle( extra, origContext, results, seed ); + Sizzle.uniqueSort( results ); + } + + return results; +}; + +Sizzle.uniqueSort = function( results ) { + if ( sortOrder ) { + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( var i = 1; i < results.length; i++ ) { + if ( results[i] === results[ i - 1 ] ) { + results.splice( i--, 1 ); + } + } + } + } + + return results; +}; + +Sizzle.matches = function( expr, set ) { + return Sizzle( expr, null, null, set ); +}; + +Sizzle.matchesSelector = function( node, expr ) { + return Sizzle( expr, null, null, [node] ).length > 0; +}; + +Sizzle.find = function( expr, context, isXML ) { + var set, i, len, match, type, left; + + if ( !expr ) { + return []; + } + + for ( i = 0, len = Expr.order.length; i < len; i++ ) { + type = Expr.order[i]; + + if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { + left = match[1]; + match.splice( 1, 1 ); + + if ( left.substr( left.length - 1 ) !== "\\" ) { + match[1] = (match[1] || "").replace( rBackslash, "" ); + set = Expr.find[ type ]( match, context, isXML ); + + if ( set != null ) { + expr = expr.replace( Expr.match[ type ], "" ); + break; + } + } + } + } + + if ( !set ) { + set = typeof context.getElementsByTagName !== "undefined" ? + context.getElementsByTagName( "*" ) : + []; + } + + return { set: set, expr: expr }; +}; + +Sizzle.filter = function( expr, set, inplace, not ) { + var match, anyFound, + type, found, item, filter, left, + i, pass, + old = expr, + result = [], + curLoop = set, + isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); + + while ( expr && set.length ) { + for ( type in Expr.filter ) { + if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { + filter = Expr.filter[ type ]; + left = match[1]; + + anyFound = false; + + match.splice(1,1); + + if ( left.substr( left.length - 1 ) === "\\" ) { + continue; + } + + if ( curLoop === result ) { + result = []; + } + + if ( Expr.preFilter[ type ] ) { + match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); + + if ( !match ) { + anyFound = found = true; + + } else if ( match === true ) { + continue; + } + } + + if ( match ) { + for ( i = 0; (item = curLoop[i]) != null; i++ ) { + if ( item ) { + found = filter( item, match, i, curLoop ); + pass = not ^ found; + + if ( inplace && found != null ) { + if ( pass ) { + anyFound = true; + + } else { + curLoop[i] = false; + } + + } else if ( pass ) { + result.push( item ); + anyFound = true; + } + } + } + } + + if ( found !== undefined ) { + if ( !inplace ) { + curLoop = result; + } + + expr = expr.replace( Expr.match[ type ], "" ); + + if ( !anyFound ) { + return []; + } + + break; + } + } + } + + // Improper expression + if ( expr === old ) { + if ( anyFound == null ) { + Sizzle.error( expr ); + + } else { + break; + } + } + + old = expr; + } + + return curLoop; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Utility function for retreiving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +var getText = Sizzle.getText = function( elem ) { + var i, node, + nodeType = elem.nodeType, + ret = ""; + + if ( nodeType ) { + if ( nodeType === 1 || nodeType === 9 ) { + // Use textContent || innerText for elements + if ( typeof elem.textContent === 'string' ) { + return elem.textContent; + } else if ( typeof elem.innerText === 'string' ) { + // Replace IE's carriage returns + return elem.innerText.replace( rReturn, '' ); + } else { + // Traverse it's children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + } else { + + // If no nodeType, this is expected to be an array + for ( i = 0; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + if ( node.nodeType !== 8 ) { + ret += getText( node ); + } + } + } + return ret; +}; + +var Expr = Sizzle.selectors = { + order: [ "ID", "NAME", "TAG" ], + + match: { + ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, + ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, + TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, + CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, + POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, + PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ + }, + + leftMatch: {}, + + attrMap: { + "class": "className", + "for": "htmlFor" + }, + + attrHandle: { + href: function( elem ) { + return elem.getAttribute( "href" ); + }, + type: function( elem ) { + return elem.getAttribute( "type" ); + } + }, + + relative: { + "+": function(checkSet, part){ + var isPartStr = typeof part === "string", + isTag = isPartStr && !rNonWord.test( part ), + isPartStrNotTag = isPartStr && !isTag; + + if ( isTag ) { + part = part.toLowerCase(); + } + + for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { + if ( (elem = checkSet[i]) ) { + while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} + + checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? + elem || false : + elem === part; + } + } + + if ( isPartStrNotTag ) { + Sizzle.filter( part, checkSet, true ); + } + }, + + ">": function( checkSet, part ) { + var elem, + isPartStr = typeof part === "string", + i = 0, + l = checkSet.length; + + if ( isPartStr && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + var parent = elem.parentNode; + checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; + } + } + + } else { + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + checkSet[i] = isPartStr ? + elem.parentNode : + elem.parentNode === part; + } + } + + if ( isPartStr ) { + Sizzle.filter( part, checkSet, true ); + } + } + }, + + "": function(checkSet, part, isXML){ + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); + }, + + "~": function( checkSet, part, isXML ) { + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); + } + }, + + find: { + ID: function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }, + + NAME: function( match, context ) { + if ( typeof context.getElementsByName !== "undefined" ) { + var ret = [], + results = context.getElementsByName( match[1] ); + + for ( var i = 0, l = results.length; i < l; i++ ) { + if ( results[i].getAttribute("name") === match[1] ) { + ret.push( results[i] ); + } + } + + return ret.length === 0 ? null : ret; + } + }, + + TAG: function( match, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( match[1] ); + } + } + }, + preFilter: { + CLASS: function( match, curLoop, inplace, result, not, isXML ) { + match = " " + match[1].replace( rBackslash, "" ) + " "; + + if ( isXML ) { + return match; + } + + for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { + if ( elem ) { + if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { + if ( !inplace ) { + result.push( elem ); + } + + } else if ( inplace ) { + curLoop[i] = false; + } + } + } + + return false; + }, + + ID: function( match ) { + return match[1].replace( rBackslash, "" ); + }, + + TAG: function( match, curLoop ) { + return match[1].replace( rBackslash, "" ).toLowerCase(); + }, + + CHILD: function( match ) { + if ( match[1] === "nth" ) { + if ( !match[2] ) { + Sizzle.error( match[0] ); + } + + match[2] = match[2].replace(/^\+|\s*/g, ''); + + // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' + var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( + match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || + !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); + + // calculate the numbers (first)n+(last) including if they are negative + match[2] = (test[1] + (test[2] || 1)) - 0; + match[3] = test[3] - 0; + } + else if ( match[2] ) { + Sizzle.error( match[0] ); + } + + // TODO: Move to normal caching system + match[0] = done++; + + return match; + }, + + ATTR: function( match, curLoop, inplace, result, not, isXML ) { + var name = match[1] = match[1].replace( rBackslash, "" ); + + if ( !isXML && Expr.attrMap[name] ) { + match[1] = Expr.attrMap[name]; + } + + // Handle if an un-quoted value was used + match[4] = ( match[4] || match[5] || "" ).replace( rBackslash, "" ); + + if ( match[2] === "~=" ) { + match[4] = " " + match[4] + " "; + } + + return match; + }, + + PSEUDO: function( match, curLoop, inplace, result, not ) { + if ( match[1] === "not" ) { + // If we're dealing with a complex expression, or a simple one + if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { + match[3] = Sizzle(match[3], null, null, curLoop); + + } else { + var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); + + if ( !inplace ) { + result.push.apply( result, ret ); + } + + return false; + } + + } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { + return true; + } + + return match; + }, + + POS: function( match ) { + match.unshift( true ); + + return match; + } + }, + + filters: { + enabled: function( elem ) { + return elem.disabled === false && elem.type !== "hidden"; + }, + + disabled: function( elem ) { + return elem.disabled === true; + }, + + checked: function( elem ) { + return elem.checked === true; + }, + + selected: function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + parent: function( elem ) { + return !!elem.firstChild; + }, + + empty: function( elem ) { + return !elem.firstChild; + }, + + has: function( elem, i, match ) { + return !!Sizzle( match[3], elem ).length; + }, + + header: function( elem ) { + return (/h\d/i).test( elem.nodeName ); + }, + + text: function( elem ) { + var attr = elem.getAttribute( "type" ), type = elem.type; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && "text" === type && ( attr === type || attr === null ); + }, + + radio: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "radio" === elem.type; + }, + + checkbox: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "checkbox" === elem.type; + }, + + file: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "file" === elem.type; + }, + + password: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "password" === elem.type; + }, + + submit: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && "submit" === elem.type; + }, + + image: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "image" === elem.type; + }, + + reset: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && "reset" === elem.type; + }, + + button: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && "button" === elem.type || name === "button"; + }, + + input: function( elem ) { + return (/input|select|textarea|button/i).test( elem.nodeName ); + }, + + focus: function( elem ) { + return elem === elem.ownerDocument.activeElement; + } + }, + setFilters: { + first: function( elem, i ) { + return i === 0; + }, + + last: function( elem, i, match, array ) { + return i === array.length - 1; + }, + + even: function( elem, i ) { + return i % 2 === 0; + }, + + odd: function( elem, i ) { + return i % 2 === 1; + }, + + lt: function( elem, i, match ) { + return i < match[3] - 0; + }, + + gt: function( elem, i, match ) { + return i > match[3] - 0; + }, + + nth: function( elem, i, match ) { + return match[3] - 0 === i; + }, + + eq: function( elem, i, match ) { + return match[3] - 0 === i; + } + }, + filter: { + PSEUDO: function( elem, match, i, array ) { + var name = match[1], + filter = Expr.filters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + + } else if ( name === "contains" ) { + return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; + + } else if ( name === "not" ) { + var not = match[3]; + + for ( var j = 0, l = not.length; j < l; j++ ) { + if ( not[j] === elem ) { + return false; + } + } + + return true; + + } else { + Sizzle.error( name ); + } + }, + + CHILD: function( elem, match ) { + var first, last, + doneName, parent, cache, + count, diff, + type = match[1], + node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + + case "nth": + first = match[2]; + last = match[3]; + + if ( first === 1 && last === 0 ) { + return true; + } + + doneName = match[0]; + parent = elem.parentNode; + + if ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) { + count = 0; + + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + node.nodeIndex = ++count; + } + } + + parent[ expando ] = doneName; + } + + diff = elem.nodeIndex - last; + + if ( first === 0 ) { + return diff === 0; + + } else { + return ( diff % first === 0 && diff / first >= 0 ); + } + } + }, + + ID: function( elem, match ) { + return elem.nodeType === 1 && elem.getAttribute("id") === match; + }, + + TAG: function( elem, match ) { + return (match === "*" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match; + }, + + CLASS: function( elem, match ) { + return (" " + (elem.className || elem.getAttribute("class")) + " ") + .indexOf( match ) > -1; + }, + + ATTR: function( elem, match ) { + var name = match[1], + result = Sizzle.attr ? + Sizzle.attr( elem, name ) : + Expr.attrHandle[ name ] ? + Expr.attrHandle[ name ]( elem ) : + elem[ name ] != null ? + elem[ name ] : + elem.getAttribute( name ), + value = result + "", + type = match[2], + check = match[4]; + + return result == null ? + type === "!=" : + !type && Sizzle.attr ? + result != null : + type === "=" ? + value === check : + type === "*=" ? + value.indexOf(check) >= 0 : + type === "~=" ? + (" " + value + " ").indexOf(check) >= 0 : + !check ? + value && result !== false : + type === "!=" ? + value !== check : + type === "^=" ? + value.indexOf(check) === 0 : + type === "$=" ? + value.substr(value.length - check.length) === check : + type === "|=" ? + value === check || value.substr(0, check.length + 1) === check + "-" : + false; + }, + + POS: function( elem, match, i, array ) { + var name = match[2], + filter = Expr.setFilters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + } + } + } +}; + +var origPOS = Expr.match.POS, + fescape = function(all, num){ + return "\\" + (num - 0 + 1); + }; + +for ( var type in Expr.match ) { + Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); + Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); +} + +var makeArray = function( array, results ) { + array = Array.prototype.slice.call( array, 0 ); + + if ( results ) { + results.push.apply( results, array ); + return results; + } + + return array; +}; + +// Perform a simple check to determine if the browser is capable of +// converting a NodeList to an array using builtin methods. +// Also verifies that the returned array holds DOM nodes +// (which is not the case in the Blackberry browser) +try { + Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; + +// Provide a fallback method if it does not work +} catch( e ) { + makeArray = function( array, results ) { + var i = 0, + ret = results || []; + + if ( toString.call(array) === "[object Array]" ) { + Array.prototype.push.apply( ret, array ); + + } else { + if ( typeof array.length === "number" ) { + for ( var l = array.length; i < l; i++ ) { + ret.push( array[i] ); + } + + } else { + for ( ; array[i]; i++ ) { + ret.push( array[i] ); + } + } + } + + return ret; + }; +} + +var sortOrder, siblingCheck; + +if ( document.documentElement.compareDocumentPosition ) { + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { + return a.compareDocumentPosition ? -1 : 1; + } + + return a.compareDocumentPosition(b) & 4 ? -1 : 1; + }; + +} else { + sortOrder = function( a, b ) { + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Fallback to using sourceIndex (in IE) if it's available on both nodes + } else if ( a.sourceIndex && b.sourceIndex ) { + return a.sourceIndex - b.sourceIndex; + } + + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // If the nodes are siblings (or identical) we can do a quick check + if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + + siblingCheck = function( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; + }; +} + +// Check to see if the browser returns elements by name when +// querying by getElementById (and provide a workaround) +(function(){ + // We're going to inject a fake input element with a specified name + var form = document.createElement("div"), + id = "script" + (new Date()).getTime(), + root = document.documentElement; + + form.innerHTML = ""; + + // Inject it into the root element, check its status, and remove it quickly + root.insertBefore( form, root.firstChild ); + + // The workaround has to do additional checks after a getElementById + // Which slows things down for other browsers (hence the branching) + if ( document.getElementById( id ) ) { + Expr.find.ID = function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + + return m ? + m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? + [m] : + undefined : + []; + } + }; + + Expr.filter.ID = function( elem, match ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + + return elem.nodeType === 1 && node && node.nodeValue === match; + }; + } + + root.removeChild( form ); + + // release memory in IE + root = form = null; +})(); + +(function(){ + // Check to see if the browser returns only elements + // when doing getElementsByTagName("*") + + // Create a fake element + var div = document.createElement("div"); + div.appendChild( document.createComment("") ); + + // Make sure no comments are found + if ( div.getElementsByTagName("*").length > 0 ) { + Expr.find.TAG = function( match, context ) { + var results = context.getElementsByTagName( match[1] ); + + // Filter out possible comments + if ( match[1] === "*" ) { + var tmp = []; + + for ( var i = 0; results[i]; i++ ) { + if ( results[i].nodeType === 1 ) { + tmp.push( results[i] ); + } + } + + results = tmp; + } + + return results; + }; + } + + // Check to see if an attribute returns normalized href attributes + div.innerHTML = ""; + + if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && + div.firstChild.getAttribute("href") !== "#" ) { + + Expr.attrHandle.href = function( elem ) { + return elem.getAttribute( "href", 2 ); + }; + } + + // release memory in IE + div = null; +})(); + +if ( document.querySelectorAll ) { + (function(){ + var oldSizzle = Sizzle, + div = document.createElement("div"), + id = "__sizzle__"; + + div.innerHTML = "

    "; + + // Safari can't handle uppercase or unicode characters when + // in quirks mode. + if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { + return; + } + + Sizzle = function( query, context, extra, seed ) { + context = context || document; + + // Only use querySelectorAll on non-XML documents + // (ID selectors don't work in non-HTML documents) + if ( !seed && !Sizzle.isXML(context) ) { + // See if we find a selector to speed up + var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); + + if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { + // Speed-up: Sizzle("TAG") + if ( match[1] ) { + return makeArray( context.getElementsByTagName( query ), extra ); + + // Speed-up: Sizzle(".CLASS") + } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { + return makeArray( context.getElementsByClassName( match[2] ), extra ); + } + } + + if ( context.nodeType === 9 ) { + // Speed-up: Sizzle("body") + // The body element only exists once, optimize finding it + if ( query === "body" && context.body ) { + return makeArray( [ context.body ], extra ); + + // Speed-up: Sizzle("#ID") + } else if ( match && match[3] ) { + var elem = context.getElementById( match[3] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id === match[3] ) { + return makeArray( [ elem ], extra ); + } + + } else { + return makeArray( [], extra ); + } + } + + try { + return makeArray( context.querySelectorAll(query), extra ); + } catch(qsaError) {} + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + var oldContext = context, + old = context.getAttribute( "id" ), + nid = old || id, + hasParent = context.parentNode, + relativeHierarchySelector = /^\s*[+~]/.test( query ); + + if ( !old ) { + context.setAttribute( "id", nid ); + } else { + nid = nid.replace( /'/g, "\\$&" ); + } + if ( relativeHierarchySelector && hasParent ) { + context = context.parentNode; + } + + try { + if ( !relativeHierarchySelector || hasParent ) { + return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); + } + + } catch(pseudoError) { + } finally { + if ( !old ) { + oldContext.removeAttribute( "id" ); + } + } + } + } + + return oldSizzle(query, context, extra, seed); + }; + + for ( var prop in oldSizzle ) { + Sizzle[ prop ] = oldSizzle[ prop ]; + } + + // release memory in IE + div = null; + })(); +} + +(function(){ + var html = document.documentElement, + matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector; + + if ( matches ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9 fails this) + var disconnectedMatch = !matches.call( document.createElement( "div" ), "div" ), + pseudoWorks = false; + + try { + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( document.documentElement, "[test!='']:sizzle" ); + + } catch( pseudoError ) { + pseudoWorks = true; + } + + Sizzle.matchesSelector = function( node, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); + + if ( !Sizzle.isXML( node ) ) { + try { + if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { + var ret = matches.call( node, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || !disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9, so check for that + node.document && node.document.nodeType !== 11 ) { + return ret; + } + } + } catch(e) {} + } + + return Sizzle(expr, null, null, [node]).length > 0; + }; + } +})(); + +(function(){ + var div = document.createElement("div"); + + div.innerHTML = "
    "; + + // Opera can't find a second classname (in 9.6) + // Also, make sure that getElementsByClassName actually exists + if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { + return; + } + + // Safari caches class attributes, doesn't catch changes (in 3.2) + div.lastChild.className = "e"; + + if ( div.getElementsByClassName("e").length === 1 ) { + return; + } + + Expr.order.splice(1, 0, "CLASS"); + Expr.find.CLASS = function( match, context, isXML ) { + if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { + return context.getElementsByClassName(match[1]); + } + }; + + // release memory in IE + div = null; +})(); + +function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem[ expando ] === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 && !isXML ){ + elem[ expando ] = doneName; + elem.sizset = i; + } + + if ( elem.nodeName.toLowerCase() === cur ) { + match = elem; + break; + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem[ expando ] === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 ) { + if ( !isXML ) { + elem[ expando ] = doneName; + elem.sizset = i; + } + + if ( typeof cur !== "string" ) { + if ( elem === cur ) { + match = true; + break; + } + + } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { + match = elem; + break; + } + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +if ( document.documentElement.contains ) { + Sizzle.contains = function( a, b ) { + return a !== b && (a.contains ? a.contains(b) : true); + }; + +} else if ( document.documentElement.compareDocumentPosition ) { + Sizzle.contains = function( a, b ) { + return !!(a.compareDocumentPosition(b) & 16); + }; + +} else { + Sizzle.contains = function() { + return false; + }; +} + +Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; + + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +var posProcess = function( selector, context, seed ) { + var match, + tmpSet = [], + later = "", + root = context.nodeType ? [context] : context; + + // Position selectors must be done after the filter + // And so must :not(positional) so we move all PSEUDOs to the end + while ( (match = Expr.match.PSEUDO.exec( selector )) ) { + later += match[0]; + selector = selector.replace( Expr.match.PSEUDO, "" ); + } + + selector = Expr.relative[selector] ? selector + "*" : selector; + + for ( var i = 0, l = root.length; i < l; i++ ) { + Sizzle( selector, root[i], tmpSet, seed ); + } + + return Sizzle.filter( later, tmpSet ); +}; + +// EXPOSE +// Override sizzle attribute retrieval +Sizzle.attr = jQuery.attr; +Sizzle.selectors.attrMap = {}; +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.filters; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})(); + + +var runtil = /Until$/, + rparentsprev = /^(?:parents|prevUntil|prevAll)/, + // Note: This RegExp should be improved, or likely pulled from Sizzle + rmultiselector = /,/, + isSimple = /^.[^:#\[\.,]*$/, + slice = Array.prototype.slice, + POS = jQuery.expr.match.POS, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var self = this, + i, l; + + if ( typeof selector !== "string" ) { + return jQuery( selector ).filter(function() { + for ( i = 0, l = self.length; i < l; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }); + } + + var ret = this.pushStack( "", "find", selector ), + length, n, r; + + for ( i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( n = length; n < ret.length; n++ ) { + for ( r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + var targets = jQuery( target ); + return this.filter(function() { + for ( var i = 0, l = targets.length; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + return !!selector && ( + typeof selector === "string" ? + // If this is a positional selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + POS.test( selector ) ? + jQuery( selector, this.context ).index( this[0] ) >= 0 : + jQuery.filter( selector, this ).length > 0 : + this.filter( selector ).length > 0 ); + }, + + closest: function( selectors, context ) { + var ret = [], i, l, cur = this[0]; + + // Array (deprecated as of jQuery 1.7) + if ( jQuery.isArray( selectors ) ) { + var level = 1; + + while ( cur && cur.ownerDocument && cur !== context ) { + for ( i = 0; i < selectors.length; i++ ) { + + if ( jQuery( cur ).is( selectors[ i ] ) ) { + ret.push({ selector: selectors[ i ], elem: cur, level: level }); + } + } + + cur = cur.parentNode; + level++; + } + + return ret; + } + + // String + var pos = POS.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( i = 0, l = this.length; i < l; i++ ) { + cur = this[i]; + + while ( cur ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + + } else { + cur = cur.parentNode; + if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) { + break; + } + } + } + } + + ret = ret.length > 1 ? jQuery.unique( ret ) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + andSelf: function() { + return this.add( this.prevObject ); + } +}); + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return jQuery.nth( elem, 2, "nextSibling" ); + }, + prev: function( elem ) { + return jQuery.nth( elem, 2, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( elem.parentNode.firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.makeArray( elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, slice.call( arguments ).join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + nth: function( cur, result, dir, elem ) { + result = result || 1; + var num = 0; + + for ( ; cur; cur = cur[dir] ) { + if ( cur.nodeType === 1 && ++num === result ) { + break; + } + } + + return cur; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + + // Can't pass null or undefined to indexOf in Firefox 4 + // Set to 0 to skip string check + qualifier = qualifier || 0; + + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return ( elem === qualifier ) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; + }); +} + + + + +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, + rtagName = /<([\w:]+)/, + rtbody = /", "" ], + legend: [ 1, "
    ", "
    " ], + thead: [ 1, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + col: [ 2, "", "
    " ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }, + safeFragment = createSafeFragment( document ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE can't serialize and + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/all-tiled.html b/libs/js/jquery-geo-1.0a4/docs/examples/all-tiled.html new file mode 100755 index 0000000..8847861 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/all-tiled.html @@ -0,0 +1,196 @@ + + + + + everything tiled + + + + + + + + +
    +
    +
    +
    + + +

    tiled

    + +

    The everything demo, tiled edition!

    + +
    +

    info

    + + + + + + +
    + +
    + +
    +

    basics

    + + + +
    +

    scroll

    +
    + + +
    +
    +
    + +
    +

    mode

    + + +
    + + + +
    + +
    + + + +
    +

    toggle

    + +
    + + +
    +
    + +
    +

    zoom

    + + + + +
    + +
    +
    + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/append.html b/libs/js/jquery-geo-1.0a4/docs/examples/append.html new file mode 100755 index 0000000..dd2746e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/append.html @@ -0,0 +1,95 @@ + + + + append test + + + + + + + +
    +
    +
    +
    + +

    append

    +

    This page tests geomap's append method and some style and refresh arguments.

    +

    A geomap widget is initialized to the continental US and a point is placed in Massachusetts. A line extends from MA to South Jersey where a triangle covers an area. For points, geomap draws a pixel-based oval around the map coordinate. Since the size of the oval is based on pixels, it will be the same size at all scales. The pixel length of lines and size of polygons changes at different scales because each point that makes up the shapes is locked at specific map coordinates. The stroke width for all shapes will be the same number of pixels at all scales.

    +

    All the geometry is stored in a single GeometryCollection. This example first draws the entire collection with a broad stroked, off-white style to create a halo effect behind the real shapes. This makes them a little easier to see on the map. Then we draw each individual shape again with color. The first two have the default style which is red. For the last one, we change the color to blue.

    +
    +
    + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/appendservice.html b/libs/js/jquery-geo-1.0a4/docs/examples/appendservice.html new file mode 100755 index 0000000..19eec07 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/appendservice.html @@ -0,0 +1,94 @@ + + + + append to service test + + + + + + + +
    +
    +
    +
    + +

    append to service

    +

    This page is similar to the regular append example but tests appending shapes to a specific service instead of the map itself. The result, however, should look exactly the same.

    +
    +
    + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/bbox.html b/libs/js/jquery-geo-1.0a4/docs/examples/bbox.html new file mode 100755 index 0000000..e35f5c2 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/bbox.html @@ -0,0 +1,252 @@ + + + + bbox examples + + + + + + + + + +
    +
    +
    +
    + +

    + bbox

    +

    This example tests getting and setting the bbox property on the geomap widget as well as calling various $.geo bbox functions.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    )
    .geomap( "option", "bbox" )
    $.geo.proj.fromGeodetic( bbox )
    $.geo.proj.toGeodetic( bbox )
    $.geo.center( bbox )
    $.geo.width( bbox )
    $.geo.height( bbox )
    +
    +
    +

    For this example, the functions below operate on the above text input only. After using them, you can click set to update the map and other info.

    +
    + + + + + +
    $.geo.expandBy( bbox, , )
    +
    +
    + + + + + +
    $.geo.scaleBy( bbox, )
    +
    +

    This last function, reaspect, forces an aspect ratio (calculation of width divided height) onto the bbox. You can run this but it will be difficult to visually see the effects because the geomap widget will automatically reaspect again to fit the bbox back into the viewport.

    +

    Common aspect ratio values: 16:9 = 16/9 ~ 1.78:1 & 4:3 = 4/3 ~ 1.33:1

    +
    + + + + + +
    $.geo.reaspect( bbox, )
    +
    +
    +
    +
    + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/census.html b/libs/js/jquery-geo-1.0a4/docs/examples/census.html new file mode 100755 index 0000000..28cf49d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/census.html @@ -0,0 +1,142 @@ + + + + + + Census + + + + + + + + +
    + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/center.html b/libs/js/jquery-geo-1.0a4/docs/examples/center.html new file mode 100755 index 0000000..9ed1e87 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/center.html @@ -0,0 +1,147 @@ + + + + center/zoom example + + + + + + + + + +
    +
    +
    +
    + +

    center & zoom example

    +

    This page tests getting and setting the center & zoom options as well as getting the read-only pixelSize.

    +

    The center option is a GeoJSON position. The zoom option for a tiled service a whole number from zero to the number of levels defined by the tilingScheme minus one. The pixelSize is the number of map units that fit in a single pixel of the current view. By default, pixelSize is in meters because the default map service is in web mercator meters.

    +

    runtime options

    +

    Change the center or zoom option and click set to update the map.

    +
    + + +
    +
    + + +
    +

    actual values

    +

    The center option is in geodetic cooridinates, [lon, lat], but the internal center is in map units, web mercator by default.

    + + + + + + + + + + + + + + + + + + + + + +
    .geomap( "option", "center" )
    $.geo.proj.toGeodetic( center )
    internal center, always projected
    .geomap( "option", "zoom" )
    .geomap( "option", "pixelSize" )
    +
    +
    + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/css/style.css b/libs/js/jquery-geo-1.0a4/docs/examples/css/style.css new file mode 100755 index 0000000..3b2dd19 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/css/style.css @@ -0,0 +1,86 @@ +.links +{ + float: right; +} + +.docLink +{ + background: url(../../images/$.geo-logo-small.png) right no-repeat; + color: #7f0000; + display: block; + font-size: 24px; + font-weight: bold; + padding-right: 24px; + text-decoration: none; + text-transform: uppercase; +} + +.fiddleLink +{ + display: block; + font-weight: bold; + margin: 4px; + text-align: right; + text-decoration: none; +} + +.fiddleLink img +{ + border: none; + vertical-align: middle; +} + +.mobile-shrink +{ + font-size: .6em; +} + +.not-mobile +{ + display: none; +} + +@media only screen and (min-width: 800px) +{ + .info + { + max-width: 45% !important; + position: absolute !important; + right: 16px; + top: 16px; + } + + .mobile-shrink + { + font-size: 1em; + } + + .not-mobile + { + display: block; + } +} + +html +{ + font:13px/1.231 Calibri,Arial,sans-serif; *font-size:small; +} + +.info +{ + background: #fff; + border-radius: 8px; + box-shadow: -4px 4px #444; + opacity: .8; + padding: 8px; + width: 95%; +} + +fieldset { border: none; } + +legend { + font-size: 14px; + font-weight: bold; +} + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/destroy.html b/libs/js/jquery-geo-1.0a4/docs/examples/destroy.html new file mode 100755 index 0000000..be0bad2 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/destroy.html @@ -0,0 +1,67 @@ + + + + destroy example + + + + + + + + + +
    +
    +
    + < docs +

    + destroy

    +

    + This example allows you to create and destroy the geomap widget and test that everything is returned to normal.

    + + +
    +
    +
    + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/draw.html b/libs/js/jquery-geo-1.0a4/docs/examples/draw.html new file mode 100755 index 0000000..77921f4 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/draw.html @@ -0,0 +1,80 @@ + + + + drawing examples + + + + + + + + + +
    +
    +
    +
    + +

    drawing

    +

    This example tests the three shape drawing modes: drawPoint, drawLineString and drawPolygon. Choose a tool below and start tapping!

    +

    Double-tap to add the last point and end lines & polygons.

    +

    You can remove individual points while drawing lines & polygons with the escape key.

    +
    + + + +
    +
    +
    + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/drawStyle.html b/libs/js/jquery-geo-1.0a4/docs/examples/drawStyle.html new file mode 100755 index 0000000..939fec4 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/drawStyle.html @@ -0,0 +1,142 @@ + + + + + drawStyle test + + + + + + + + +
    +
    +
    +
    + +

    drawStyle

    +

    This page tests various style properties using the drawStyle option to change the style displayed when a user is drawing shapes in drawLineString and drawPolygon modes.

    +
    + + + +
    +
    +
    + geomap drawStyle option +
    + + +
    +
    + + +
    +
    + + + +
    +
    + + + +
    +
    + + +
    +
    +
    + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/empty.html b/libs/js/jquery-geo-1.0a4/docs/examples/empty.html new file mode 100755 index 0000000..02f6b61 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/empty.html @@ -0,0 +1,42 @@ + + + + + geomap empty test + + + + + + +
    + < docs +

    + geomap empty test

    +

    + Click the map to add points, click the Empty button to remove them all at once.

    + +
    +
    +
    + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/emptyservice.html b/libs/js/jquery-geo-1.0a4/docs/examples/emptyservice.html new file mode 100755 index 0000000..b166eca --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/emptyservice.html @@ -0,0 +1,39 @@ + + + + + geomap empty service test + + + + + + +
    + < docs +

    geomap empty service test

    +

    This page is similar to the regular empty example but tests removing all shapes from a specific service instead of the map itself.

    + +
    +
    +
    + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/events.html b/libs/js/jquery-geo-1.0a4/docs/examples/events.html new file mode 100755 index 0000000..7e8096d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/events.html @@ -0,0 +1,160 @@ + + + + + events example + + + + + + + +
    +
    +
    +
    + +

    events

    +

    The basic interaction events are: move, click, dblclick, and bboxchange. jQuery Geo triggers then when a user interacts with the map.

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + event (time) + + geo argument +
    + move () + +
    + click () + +
    + dblclick () + +
    + bboxchange () + +
    +
    +
    + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/find.html b/libs/js/jquery-geo-1.0a4/docs/examples/find.html new file mode 100755 index 0000000..6496ddb --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/find.html @@ -0,0 +1,67 @@ + + + + geomap find test + + + + < docs +

    geomap find test

    +
    +
    +

    Click the geometry!

    +
      + +
      + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/findservice.html b/libs/js/jquery-geo-1.0a4/docs/examples/findservice.html new file mode 100755 index 0000000..f27d0f7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/findservice.html @@ -0,0 +1,76 @@ + + + + geomap find service test + + + + < docs +

      geomap find service test

      +
      +
      +

      Click the geometry!

      +
        + +
        + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/geo-geometry.html b/libs/js/jquery-geo-1.0a4/docs/examples/geo-geometry.html new file mode 100755 index 0000000..4c67798 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/geo-geometry.html @@ -0,0 +1,326 @@ + + + + geometry function examples + + + + + + + + + +
        +
        +
        +
        + +

        + geometry functions

        +

        This example appends a few Points, LineStrings, and Polygons. It then calculates some relationships and info about the shapes using the geometry functions in the $.geo namespace.

        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        distance
        pt, pt
        pt, line
        pt, poly
        line, pt
        line, line
        line, poly
        poly, pt
        poly, line
        poly, poly
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        contains
        pt, pt
        pt, line
        pt, poly
        line, pt
        line, line
        line, poly
        poly, pt
        poly, line
        poly, poly
        +
        +
        + + + + + + + + + + + + + + + + + + + + + +
        contains
        poly, pt
        poly, line
        poly, poly
        poly, poly
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + +
        centroid
        pt
        line
        poly
        poly
        poly
        +
        +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/geometry.html b/libs/js/jquery-geo-1.0a4/docs/examples/geometry.html new file mode 100755 index 0000000..890fdc7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/geometry.html @@ -0,0 +1,133 @@ + + + + + proj test + + + + + + + +
        + < docs +

        + proj test

        +

        + This page has a couple basic interactive tests of the default $.geo.proj object.

        +

        + direct conversion

        +

        + Enter a lon/lat in the top inputs (remember, longitude is first here and throughout jQuery Geo but usually spoken second) & click fromGeodetic to convert it to web mercator and store the new values in the bottom two inputs. Click toGeodetic to reverse.

        + + + + + + +

        + osm nominatim

        +

        + Enter a search term in the input and click search. If successful, geodetic & web mercator coordinates are written to the inputs above. This example uses MapQuest's OSM API: http://open.mapquestapi.com/nominatim.

        + + +

        + status

        +

        + Status result for any test.

        +
        + ready
        +
        + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/hurricane.html b/libs/js/jquery-geo-1.0a4/docs/examples/hurricane.html new file mode 100755 index 0000000..9270a0d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/hurricane.html @@ -0,0 +1,180 @@ + + + + + + hurricane + + + + + + + + +
        +
        + +
        +
        + < docs +

        Hurricane tracking

        +

        Displaying a snapshot of storm data extracted from stormpulse.com

        +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/image.html b/libs/js/jquery-geo-1.0a4/docs/examples/image.html new file mode 100755 index 0000000..1d2c911 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/image.html @@ -0,0 +1,93 @@ + + + + + image example + + + + + + + + +
        +
        +
        +
        + +

        image

        +

        + +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/img/ajax-loader.gif b/libs/js/jquery-geo-1.0a4/docs/examples/img/ajax-loader.gif new file mode 100755 index 0000000..148005d Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/examples/img/ajax-loader.gif differ diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/img/jsfiddle.png b/libs/js/jquery-geo-1.0a4/docs/examples/img/jsfiddle.png new file mode 100755 index 0000000..082c0ab Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/examples/img/jsfiddle.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/isGeodetic.html b/libs/js/jquery-geo-1.0a4/docs/examples/isGeodetic.html new file mode 100755 index 0000000..f896312 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/isGeodetic.html @@ -0,0 +1,70 @@ + + + + + TEMPLATE example + + + + + + + + +
        +
        +
        +
        + +

        Is Geodetic?

        + + + + + + + + + + + +
        [-71.05, 42.36]
        [-8102018.97, 5011809.33]
        [-72.78, 40.99, -69.33, 43.69]
        [-8102018.97, 5011809.33, -7718610.83, 5418454.32]
        [[-72.78, 43.32], [-71.33, 42.43]]
        [[-8102018.97, 5011809.33], [-7718610.83, 5418454.32]]
        [[[-72.78, 43.32], [-71.33, 42.43], [-70.12, 43.16], [-72.78, 43.32]]]
        [[[-8102018.97, 5011809.33], [-7718610.83, 5418454.32], [-8102018.83, 5418454.32], [-8102018.97, 5011809.33]]]
        [[[[-72.78, 43.32], [-71.33, 42.43], [-70.12, 43.16], [-72.78, 43.32]]]]
        [[[[-8102018.97, 5011809.33], [-7718610.83, 5418454.32], [-8102018.83, 5418454.32], [-8102018.97, 5011809.33]]]]
        +
        +
        + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/jqm.html b/libs/js/jquery-geo-1.0a4/docs/examples/jqm.html new file mode 100755 index 0000000..709e336 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/jqm.html @@ -0,0 +1,137 @@ + + + + + TEMPLATE example + + + + + + + + + + +
        +
        +

        Amherst

        +
        + +
        +
        +

        Which map would you like?

        + +
        +
        +
        + +
        +
        +

        Parcel App

        + Select Tab +
        + +
        +
        +
        +
        + + +
        +

         

        +
        +
        + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/js/all-shingled.js b/libs/js/jquery-geo-1.0a4/docs/examples/js/all-shingled.js new file mode 100755 index 0000000..b7ad738 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/js/all-shingled.js @@ -0,0 +1,243 @@ +$(function () { + // Firefox likes to cache form values during refresh + $( "form" )[ 0 ].reset( ); + + $( "form" ).submit( function( ) { + // also, we don't want the form to actually submit + return false; + } ); + + // set proj to null because we don't have the code for this projection + // and are working entirely in map units + + $.geo.proj = null; + + // define two shingled services + var services = [ + // define a basemap service + { + id: "massgis_basemap", + type: "shingled", + src: "http://giswebservices.massgis.state.ma.us/geoserver/wms?LAYERS=massgis_basemap&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&FORMAT=image%2Fpng&SRS=EPSG%3A26986&BBOX={{=bbox}}&WIDTH={{=width}}&HEIGHT={{=height}}", + attr: "© 2011 Commonwealth of Massachusetts" + }, + + // define a second service as a layer on top of the basemap + // we use this service as the target when "target" is set to service in this demo + { + id: "massgis_hydrography", + type: "shingled", + src: "http://giswebservices.massgis.state.ma.us/geoserver/wms?LAYERS=massgis%3AGISDATA.MAJPOND_POLY,massgis%3AGISDATA.MAJSTRM_ARC&TRANSPARENT=true&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&FORMAT=image%2Fpng&SRS=EPSG%3A26986&BBOX={{=bbox}}&WIDTH={{=width}}&HEIGHT={{=height}}" + } + ]; + + + // create a map without a tilingScheme & with the two shingled services + var map = $( "#map" ).geomap( { + // add a cursor for our custom mode: remove + cursors: { remove: "crosshair" }, + + // use the services array defined above + services: services, + + // you must set bboxMax for shingled services for the zoom property to mean anything + bboxMax: [ 31789.1658, 790194.4183, 337250.8970, 961865.1338 ], + + // shingled services do not have a tilingScheme + tilingScheme: null, + + // center & zoom values that fit MassGIS's projection + center: [ 235670.21967, 900771.290247 ], + zoom: 13, + + bboxchange: function( e, geo ) { + // when the bbox changes, update the info section with new option values + updateInfo( ); + }, + + shape: function( e, geo ) { + // when the user draws a shape, show it on the map + // the shape event triggers when the user finishes drawing a shape + // the geo argument is a GeoJSON object representing the shape + + // for this example, we'll append it to the map forcing an + // individual style that matches the current drawStyle + + // make a copy of the current drawStyle + var drawStyle = $.extend( { }, map.geomap( "option", "drawStyle" ) ); + + // grab the label (if any) from the input + var label = $( "#shapeLabels input" ).val( ); + + // append the shape using that style + // however, depending on which target is checked, we will append the shape to either the map widget itself or a specific map service + if ( $( "#clickTargetWidget" ).is( ":checked" ) ) { + // if the map is our target, just append the shape to the map + // if there's a label entered, used it + map.geomap( "append", geo, drawStyle, label ); + } else { + // otherwise, grab a reference to a service + // ( by id in this case ) and append the shape to that + // the value of the remaining radio buttons matches the id of a service + // if there's a label entered, used it + var serviceToAppend = $( "#" + $( "input[name='clickTarget']:checked" ).val( ) ); + + $( serviceToAppend ).geomap( "append", geo, drawStyle, label ); + + // also note, that the label is controlled seperately from the shape, by CSS, rather than by jQuery Geo shapeStyle objects + // if you look at the CSS, you will notice: + // + // #massgis_hydrography { color: blue; } + // + // which makes all labels on the hydro service blue text + } + }, + + click: function( e, geo ) { + // when the user clicks the map while in our custom mode, remove, + // we will search for shapes on either the map widget itself + // ( and, by design, all map services) or a single, specific map service + + // we'll use a nice, fat 5px radius for the searches here, that's what the (, 5) is below + + // however, in this demo, we remove any shapes found from either the map or service + + // if the map is our target, grab the map reference + // otherwise, grab a reference to a service, in this case, by id + var target = $( "#clickTargetWidget" ).is( ":checked" ) ? map : $( "#" + $( "input[name='clickTarget']:checked" ).val( ) ); + + // by design, calling find on the map itself returns all shapes at that location + // even if they have been appended to a service + // when target is the service, find is limited to shapes that have been appended there + var shapes = target.geomap( "find", geo, 3 ); + + // even though we potentially found service-level shapes with the find method, + // calling remove on the map does not remove from all services + $.each( shapes, function( ) { + target.geomap( "remove", this ); + } ); + } + } ); + + // jQuery UI for pretty buttons + $( "button, #togglePannable" ).button( ); + $( ".modes, .scrollOptions, .clickTargets, .toggleTargets" ).buttonset( ); + + $( "#toggle-info" ).click( function( ) { + // show or hide some map info such as bbox, center and zoom + $( "#mapInfo" ).toggle( ); + } ); + + $( "#togglePannable" ).click( function( ) { + // change the pannable option to allow users to pan or not pan your map + map.geomap( "option", "pannable", $( this ).is( ":checked" ) ); + } ); + + $( ".scrollOptions input" ).click( function( ) { + // set the map's scroll option based on value of the input clicked + // currently, default and scroll are the same; the only other option is off + var scrollValue = $( this ).val( ); + map.geomap( "option", "scroll", scrollValue ); + + } ); + + $( "#change-mode").click( function( ) { + // show or hide the mode options + $( "#modeOptions" ).toggle( ); + } ); + + $( ".modes input" ).click( function () { + // set the map's mode option based on value of the input clicked + var modeValue = $( this ).val( ); + map.geomap( "option", "mode", modeValue ); + + // if mode is one of the draw modes (or remove), show the target section, otherwise hide it + $( "#clickTarget" ).toggle( modeValue.substr( 0, 4 ) === "draw" || modeValue === "remove" ); + + // if mode is one of the draw modes, + // show the label inputs & shape style as well + $( "#shapeLabels, #drawStyle" ).toggle( modeValue.substr( 0, 4 ) === "draw" ); + + // also display the current mode on the button + $( "#change-mode .ui-button-text" ).text( modeValue ); + + // hide the mode options + $( "#modeOptions" ).hide( ); + } ); + + $( "#drawStyle input" ).change( function( ) { + // when an input of the drawStyle area changes, + // immediately set the property of geomap's drawStyle option + + // keep in mind that the three point-only styles (width, height & borderRadius) + // cannot be seen because with drawPoint, the shape event triggers immediately + // without drawing a shape + // this example, however, does use them when appending the shape after a click + + // first, we can grab a jQuery reference to the input that changed + var $this = $( this ); + + // next, we can create an object that represents this change + // this example doesn't, but you can set more than one property + // on geomap's drawStyle option at a time + var styleOption = { }; + styleOption[ $this.attr( "name" ) ] = $this.val(); + + map.geomap( "option", "drawStyle", styleOption ); + } ); + + + $( ".toggleTargets input" ).click( function( ) { + // when a service is toggled, we tell the geomap widget to toggle it + // the value of each checkbox input equals the id of a service + var checkboxClicked = $( this ); + var serviceToToggle = $( "#" + checkboxClicked.val( ) ); + + // toggle the service, shapes on the service will also be toggled + serviceToToggle.geomap( "toggle" ); + } ); + + $( "#zoomOut" ).button( "option", { + // just icons for the zoom buttons + icons: { primary: "ui-icon-minus" }, + text: false + } ).click( function( ) { + // use the zoom method to zoom out + map.geomap( "zoom", -1 ); + } ); + + $( "#zoomIn" ).button( "option", { + // just icons for the zoom buttons + icons: { primary: "ui-icon-plus" }, + text: false + } ).click( function( ) { + // also use the zoom method to zoom in + map.geomap( "zoom", +1 ); + } ); + + // update the info section with initial option values + updateInfo( ); + + function updateInfo( ) { + // update the info section with option values + $( "#mapInfo td" ).each( function( ) { + // a reference to the current option td element + var optionCell = $( this ); + + // since each td has a data-option attribute, + // jQuery can extract the option value via the data function + var optionValue = map.geomap( "option", optionCell.data( "option" ) ); + + if ( $.isArray( optionValue ) ) { + // display array values a little nicer + $.each( optionValue, function( i ) { + optionValue[ i ] = this.toFixed( 2 ); + } ); + optionCell.text( "[ " + optionValue.join( ", " ) + " ]" ); + } else { + optionCell.text( optionValue ); + } + } ); + } +}); + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/js/all-tiled.js b/libs/js/jquery-geo-1.0a4/docs/examples/js/all-tiled.js new file mode 100755 index 0000000..ccc762d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/js/all-tiled.js @@ -0,0 +1,247 @@ +$(function () { + // Firefox likes to cache form values during refresh + $( "form" )[ 0 ].reset( ); + + $( "form" ).submit( function( ) { + // also, we don't want the form to actually submit + return false; + } ); + + // define two tiled services + var services = [ + // a free basemap tile set from MapQuest + { + id: "mapquest-open", + type: "tiled", + src: function( view ) { + return "http://otile" + ((view.index % 4) + 1) + ".mqcdn.com/tiles/1.0.0/osm/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png"; + }, + attr: 'Tiles Courtesy of MapQuest ' + }, + + // define a second service as a layer on top of the basemap + // we use this service as the target when "target" is set to service in this demo + { + id: "broadband-speedtest", + type: "tiled", + src: "http://www.broadbandmap.gov/StamenTiles/speedtest/speedtest/download/{{=zoom}}/{{=tile.column}}/{{=tile.row}}.png", + attr: "Speed Test data maintained by the NTIA, in collaboration with the FCC" + } + ]; + + // create a map with a tilingScheme & with the two tiled services + var map = $( "#map" ).geomap( { + // add a cursor for our custom mode: remove + cursors: { remove: "crosshair" }, + + // use the services array defined above + services: services, + + // these tiled services are in jQuery Geo's default tilingScheme, web mercator + // we don't need to change it but will write it here in comments, for this demo + /* + tilingScheme: { + tileWidth: 256, + tileHeight: 256, + levels: 18, + basePixelSize: 156543.03392799936, + pixelSizes: null, + origin: [ -20037508.342787, 20037508.342787 ] + }, + */ + + // center & zoom values that default to showing the contenental United States of America + center: [ -89.34, 38.84 ], + zoom: 5, + + bboxchange: function( e, geo ) { + // when the bbox changes, update the info section with new option values + updateInfo( ); + }, + + shape: function( e, geo ) { + // when the user draws a shape, show it on the map + // the shape event triggers when the user finishes drawing a shape + // the geo argument is a GeoJSON object representing the shape + + // for this example, we'll append it to the map forcing an + // individual style that matches the current drawStyle + + // make a copy of the current drawStyle + var drawStyle = $.extend( { }, map.geomap( "option", "drawStyle" ) ); + + // grab the label (if any) from the input + var label = $( "#shapeLabels input" ).val( ); + + // append the shape using that style + // however, depending on which target is checked, we will append the shape to either the map widget itself or a specific map service + if ( $( "#clickTargetWidget" ).is( ":checked" ) ) { + // if the map is our target, just append the shape to the map + // if there's a label entered, used it + map.geomap( "append", geo, drawStyle, label ); + } else { + // otherwise, grab a reference to a service + // ( by id in this case ) and append the shape to that + // the value of the remaining radio buttons matches the id of a service + // if there's a label entered, used it + var serviceToAppend = $( "#" + $( "input[name='clickTarget']:checked" ).val( ) ); + + $( serviceToAppend ).geomap( "append", geo, drawStyle, label ); + + // also note, that the label is controlled seperately from the shape, by CSS, rather than by jQuery Geo shapeStyle objects + // if you look at the CSS, you will notice: + // + // #broadband-speedtest { color: purple; font-weight: bold; } + // + // which makes all labels on the speedtest service blue text + } + }, + + click: function( e, geo ) { + // when the user clicks the map while in our custom mode, remove, + // we will search for shapes on either the map widget itself + // ( and, by design, all map services) or a single, specific map service + + // we'll use a nice, fat 5px radius for the searches here, that's what the (, 5) is below + + // however, in this demo, we remove any shapes found from either the map or service + + // if the map is our target, grab the map reference + // otherwise, grab a reference to a service, in this case, by id + var target = $( "#clickTargetWidget" ).is( ":checked" ) ? map : $( "#" + $( "input[name='clickTarget']:checked" ).val( ) ); + + // by design, calling find on the map itself returns all shapes at that location + // even if they have been appended to a service + // when target is the service, find is limited to shapes that have been appended there + var shapes = target.geomap( "find", geo, 3 ); + + // even though we potentially found service-level shapes with the find method, + // calling remove on the map does not remove from all services + $.each( shapes, function( ) { + target.geomap( "remove", this ); + } ); + } + } ); + + // jQuery UI for pretty buttons + $( "button, #togglePannable" ).button( ); + $( ".modes, .scrollOptions, .clickTargets, .toggleTargets" ).buttonset( ); + + $( "#toggle-info" ).click( function( ) { + // show or hide some map info such as bbox, center and zoom + $( "#mapInfo" ).toggle( ); + } ); + + $( "#togglePannable" ).click( function( ) { + // change the pannable option to allow users to pan or not pan your map + map.geomap( "option", "pannable", $( this ).is( ":checked" ) ); + } ); + + $( ".scrollOptions input" ).click( function( ) { + // set the map's scroll option based on value of the input clicked + // currently, default and scroll are the same; the only other option is off + var scrollValue = $( this ).val( ); + map.geomap( "option", "scroll", scrollValue ); + + } ); + + $( "#change-mode").click( function( ) { + // show or hide the mode options + $( "#modeOptions" ).toggle( ); + } ); + + $( ".modes input" ).click( function () { + // set the map's mode option based on value of the input clicked + var modeValue = $( this ).val( ); + map.geomap( "option", "mode", modeValue ); + + // if mode is one of the draw modes (or remove), show the target section, otherwise hide it + $( "#clickTarget" ).toggle( modeValue.substr( 0, 4 ) === "draw" || modeValue === "remove" ); + + // if mode is one of the draw modes, + // show the label inputs & shape style as well + $( "#shapeLabels, #drawStyle" ).toggle( modeValue.substr( 0, 4 ) === "draw" ); + + // also display the current mode on the button + $( "#change-mode .ui-button-text" ).text( modeValue ); + + // hide the mode options + $( "#modeOptions" ).hide( ); + } ); + + $( "#drawStyle input" ).change( function( ) { + // when an input of the drawStyle area changes, + // immediately set the property of geomap's drawStyle option + + // keep in mind that the three point-only styles (width, height & borderRadius) + // cannot be seen because with drawPoint, the shape event triggers immediately + // without drawing a shape + // this example, however, does use them when appending the shape after a click + + // first, we can grab a jQuery reference to the input that changed + var $this = $( this ); + + // next, we can create an object that represents this change + // this example doesn't, but you can set more than one property + // on geomap's drawStyle option at a time + var styleOption = { }; + styleOption[ $this.attr( "name" ) ] = $this.val(); + + map.geomap( "option", "drawStyle", styleOption ); + } ); + + + $( ".toggleTargets input" ).click( function( ) { + // when a service is toggled, we tell the geomap widget to toggle it + // the value of each checkbox input equals the id of a service + var checkboxClicked = $( this ); + var serviceToToggle = $( "#" + checkboxClicked.val( ) ); + + // toggle the service, shapes on the service will also be toggled + serviceToToggle.geomap( "toggle" ); + } ); + + $( "#zoomOut" ).button( "option", { + // just icons for the zoom buttons + icons: { primary: "ui-icon-minus" }, + text: false + } ).click( function( ) { + // use the zoom method to zoom out + map.geomap( "zoom", -1 ); + } ); + + $( "#zoomIn" ).button( "option", { + // just icons for the zoom buttons + icons: { primary: "ui-icon-plus" }, + text: false + } ).click( function( ) { + // also use the zoom method to zoom in + map.geomap( "zoom", +1 ); + } ); + + // update the info section with initial option values + updateInfo( ); + + function updateInfo( ) { + // update the info section with option values + $( "#mapInfo td" ).each( function( ) { + // a reference to the current option td element + var optionCell = $( this ); + + // since each td has a data-option attribute, + // jQuery can extract the option value via the data function + var optionValue = map.geomap( "option", optionCell.data( "option" ) ); + + if ( $.isArray( optionValue ) ) { + // display array values a little nicer + $.each( optionValue, function( i ) { + optionValue[ i ] = this.toFixed( 2 ); + } ); + optionCell.text( "[ " + optionValue.join( ", " ) + " ]" ); + } else { + optionCell.text( optionValue ); + } + } ); + } +}); + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/js/iecors.js b/libs/js/jquery-geo-1.0a4/docs/examples/js/iecors.js new file mode 100755 index 0000000..3dce2a4 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/js/iecors.js @@ -0,0 +1,55 @@ +$.ajaxTransport( function( options, originalOptions, jqXHR ) { + var xdr; + + return { + send: function( _, completeCallback ) { + xdr = new XDomainRequest(); + + xdr.onload = function() { + var responses = { + text: xdr.responseText + }; + + // force status code to 200, XDomainRequest rejects all other successful status codes + if (xdr.contentType.match(/\/xml/)){ + // there is no responseXML in XDomainRequest, so we have to create it manually + var dom = new ActiveXObject('Microsoft.XMLDOM'); + dom.async = false; + dom.loadXML(xdr.responseText); + responses.xml = dom; + + if($(dom).children('error').length != 0) { + var $error = $(dom).find('error'); + completeCallback(parseInt($error.attr('response_code')), $error.attr('message_key'), responses); + } else { + completeCallback(200, 'success', responses); + } + } else if (xdr.contentType.match(/\/json/)) { + options.dataTypes.push("json"); + completeCallback(200, 'success', responses); + } else { + completeCallback(200, 'success', responses); + // see bug https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=334804 + } + }; + + xdr.onprogress = function() { }; + + xdr.onerror = xdr.ontimeout = function() { + var responses = { + text: xdr.responseText + }; + completeCallback(400, 'failed', responses); + }; + + xdr.open(options.type, options.url); + xdr.send(options.data); + }, + abort: function() { + if(xdr) { + xdr.abort(); + } + } + }; +}); + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/js/json2.min.js b/libs/js/jquery-geo-1.0a4/docs/examples/js/json2.min.js new file mode 100755 index 0000000..0bdcc5e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/js/json2.min.js @@ -0,0 +1 @@ +var JSON;if(!JSON){JSON={}}(function(){function f(n){return n<10?"0"+n:n}if(typeof Date.prototype.toJSON!=="function"){Date.prototype.toJSON=function(key){return isFinite(this.valueOf())?this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z":null};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf()}}var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},rep;function quote(string){escapable.lastIndex=0;return escapable.test(string)?'"'+string.replace(escapable,function(a){var c=meta[a];return typeof c==="string"?c:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+string+'"'}function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==="object"&&typeof value.toJSON==="function"){value=value.toJSON(key)}if(typeof rep==="function"){value=rep.call(holder,key,value)}switch(typeof value){case"string":return quote(value);case"number":return isFinite(value)?String(value):"null";case"boolean":case"null":return String(value);case"object":if(!value){return"null"}gap+=indent;partial=[];if(Object.prototype.toString.apply(value)==="[object Array]"){length=value.length;for(i=0;i + + + label examples + + + + + + + + + +
        +
        +
        +
        + +

        label

        +

        This example builds on the drawing example by appending a label with shapes. Enter label text (HTML is ok), choose a tool below, and start labelling!

        + +
        + + + +
        +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/labelservice.html b/libs/js/jquery-geo-1.0a4/docs/examples/labelservice.html new file mode 100755 index 0000000..5abb3de --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/labelservice.html @@ -0,0 +1,81 @@ + + + + label service examples + + + + + + + + + +
        +
        +
        +
        + +

        label service

        +

        This page is similar to the regular label example but tests appending labeled shapes to a specific service instead of the map itself.

        + +
        + + + +
        +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/logo.html b/libs/js/jquery-geo-1.0a4/docs/examples/logo.html new file mode 100755 index 0000000..c962b75 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/logo.html @@ -0,0 +1,126 @@ + + + + + + + + jQuery Geo logo + + + + + + + + + +
        +
        +
        +
        + < docs +

        + jQuery Geo logos!

        +

        This demo uses jQuery Geo to draw its own logo at the top left of the map. Single-click the map to make more logos! The shapes created for the logo are based on the pixelSize of the current scale so your map's current zoom determines the Earth-size of the logo. When you zoom in, the points of the individual logos will spread out.

        +
        +
        + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/measure.html b/libs/js/jquery-geo-1.0a4/docs/examples/measure.html new file mode 100755 index 0000000..2d69cdc --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/measure.html @@ -0,0 +1,78 @@ + + + + + measure example + + + + + + + + +
        +
        +
        +
        + +

        measure

        +

        This example tests the two measure modes: measureLength, and measureArea. Choose a tool below and start measuring!

        +
        + + +
        +
        +
        + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/mobile.html b/libs/js/jquery-geo-1.0a4/docs/examples/mobile.html new file mode 100755 index 0000000..f0abd77 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/mobile.html @@ -0,0 +1,36 @@ + + + + + + mobile + + + + + + + + +
        +
        +
        +
        + < docs +

        mobile

        +

        A full window div...geomap called, zoomed in to level 6.

        +

        Add a meta viewport tag to your head element and you're good to go.

        +
        +
        + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/mode-zoom.html b/libs/js/jquery-geo-1.0a4/docs/examples/mode-zoom.html new file mode 100755 index 0000000..268885b --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/mode-zoom.html @@ -0,0 +1,74 @@ + + + + zoom mode example + + + + + + + + + +
        +
        +
        +
        + +

        + zoom mode

        +

        When a geomap widget's mode option is "zoom", you can your your mouse to draw a rectangle. jQuery Geo will change the bbox of the map to match the rectangle as closely as possible based on the tiling scheme and viewport size.

        +

        This mode is more useful for dynamic map services and may be more familiar to GIS professionals.

        +

        Hint: in pan or any of the draw modes, you can hold the shift key to temporarily switch to zoom mode.

        +
        + + +
        +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/opacity.html b/libs/js/jquery-geo-1.0a4/docs/examples/opacity.html new file mode 100755 index 0000000..4d9c2af --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/opacity.html @@ -0,0 +1,86 @@ + + + + + + opacity + + + + + + + + + +
        +
        +
        +
        + +

        opacity & toggle

        +

        The slider calls geomap's opacity method targeting the OSM service. The default service object doesn't have an id but it does have a class, osm, that we can reference using $(".osm"). The button calls the toggle method. I've matched the map div's background color to OSM's water color for effect.

        + + +
        +
        + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/panscroll.html b/libs/js/jquery-geo-1.0a4/docs/examples/panscroll.html new file mode 100755 index 0000000..565300d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/panscroll.html @@ -0,0 +1,94 @@ + + + + + panning & scroll example + + + + + + + + +
        +
        +
        +
        + +

        panning & scroll

        + +

        The panning option can remove a user's ability to pan the map. The scroll option can remove a user's ability to use the mouse wheel to zoom.

        + +

        scroll options default and zoom work the same.

        + +
        + pannable (click to toggle) + +
        + +
        + scroll +
        + + + +
        +
        + + + +
        +
        + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/proj.html b/libs/js/jquery-geo-1.0a4/docs/examples/proj.html new file mode 100755 index 0000000..890fdc7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/proj.html @@ -0,0 +1,133 @@ + + + + + proj test + + + + + + + +
        + < docs +

        + proj test

        +

        + This page has a couple basic interactive tests of the default $.geo.proj object.

        +

        + direct conversion

        +

        + Enter a lon/lat in the top inputs (remember, longitude is first here and throughout jQuery Geo but usually spoken second) & click fromGeodetic to convert it to web mercator and store the new values in the bottom two inputs. Click toGeodetic to reverse.

        + + + + + + +

        + osm nominatim

        +

        + Enter a search term in the input and click search. If successful, geodetic & web mercator coordinates are written to the inputs above. This example uses MapQuest's OSM API: http://open.mapquestapi.com/nominatim.

        + + +

        + status

        +

        + Status result for any test.

        +
        + ready
        +
        + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/remove.html b/libs/js/jquery-geo-1.0a4/docs/examples/remove.html new file mode 100755 index 0000000..bfd6af1 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/remove.html @@ -0,0 +1,62 @@ + + + + geomap remove test + + + + + < docs +

        geomap remove test

        +

        Click on the buttons to the right to call geomap.remove on points one at a time.

        +
        +
        +
          + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/removeservice.html b/libs/js/jquery-geo-1.0a4/docs/examples/removeservice.html new file mode 100755 index 0000000..45f2ee0 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/removeservice.html @@ -0,0 +1,56 @@ + + + + geomap remove service test + + + + + < docs +

          geomap remove service test

          +

          Similar to the regular remove example but tests removing shapes from a specific service instead of the map itself.

          +
            +
          +
          +
          + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/services.html b/libs/js/jquery-geo-1.0a4/docs/examples/services.html new file mode 100755 index 0000000..1af6f47 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/services.html @@ -0,0 +1,57 @@ + + + + services example + + + + + + + + + +
          +
          +
          +
          + +

          services

          +

          This example tests setting the service object array, i.e., the geomap services option, in different ways.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/shapeStyle.html b/libs/js/jquery-geo-1.0a4/docs/examples/shapeStyle.html new file mode 100755 index 0000000..364ee15 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/shapeStyle.html @@ -0,0 +1,155 @@ + + + + + shapeStyle test + + + + + + + + +
          +
          +
          +
          + +

          shapeStyle

          +

          This page tests various style properties using the shapeStyle option to change the default style or and passing a shape-specific style to the append method.

          +
          +
          + base geomap shapeStyle option +
          + + +
          +
          + + +
          +
          + + + +
          +
          + + + +
          +
          + + +
          +
          +
          + specific append style argument +
          + + +
          +
          + + +
          +
          + + + +
          +
          + + + +
          +
          + +
          +
          +
          + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/shapeStyleservice.html b/libs/js/jquery-geo-1.0a4/docs/examples/shapeStyleservice.html new file mode 100755 index 0000000..5738ce8 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/shapeStyleservice.html @@ -0,0 +1,156 @@ + + + + + shapeStyle service test + + + + + + + + +
          +
          +
          +
          + +

          shapeStyle service

          +

          This page is similar to the regular shapeStyle example but tests changing the style of a specific service instead of the map itself.

          +
          +
          + base geomap shapeStyle option +
          + + +
          +
          + + +
          +
          + + + +
          +
          + + + +
          +
          + + +
          +
          +
          + specific append style argument +
          + + +
          +
          + + +
          +
          + + + +
          +
          + + + +
          +
          + +
          +
          +
          + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/shingled.html b/libs/js/jquery-geo-1.0a4/docs/examples/shingled.html new file mode 100755 index 0000000..1e95366 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/shingled.html @@ -0,0 +1,141 @@ + + + + shingled example + + + + + + + + + +
          +
          +
          +
          + +

          + shingled

          +

          This page tests geomap with shingled services, i.e., fully dynamic services that to not use a tilingScheme. Dynamic services can be set to any scale.

          +

          If all shingled services are in the same projection, they can be layered and turned on and off at any time by updating and re-setting the services option of the geomap widget or by using the toggle convenience method.

          +

          The toggle method is preferred because it is faster and you can use it on specific services, e.g., $("#massgis_interiorforest").geomap("toggle").

          +

          These services are hosted by MassGIS.

          +
          + + +
          + +
          +
          + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html b/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html new file mode 100755 index 0000000..a294173 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html @@ -0,0 +1,29 @@ + + + + + + simplest + + + + + + +
          + < docs +

          simplest

          +

          A 256x256 pixel div...geomap called with no arguments.

          +
          +
          + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/static.html b/libs/js/jquery-geo-1.0a4/docs/examples/static.html new file mode 100755 index 0000000..bfd938e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/static.html @@ -0,0 +1,58 @@ + + + + + static mode example + + + + + + + + +
          +
          +
          +
          + +

          static mode

          +

          When the mode option is set to "static" a developer can create a map that the user can see but cannot change.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/stringsrc.html b/libs/js/jquery-geo-1.0a4/docs/examples/stringsrc.html new file mode 100755 index 0000000..1d0ea2f --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/stringsrc.html @@ -0,0 +1,65 @@ + + + + + string src example + + + + + + + + +
          +
          +
          +
          + +

          string service src

          +

          This example shows how you can set a service's src property to a jsRender template string.

          +

          The src property of the service object for this map is set to:

          +

          "http://tile.openstreetmap.org/{{=zoom}}/{{=tile.column}}/{{=tile.row}}.png"

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/template.html b/libs/js/jquery-geo-1.0a4/docs/examples/template.html new file mode 100755 index 0000000..0cd491a --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/template.html @@ -0,0 +1,67 @@ + + + + + TEMPLATE example + + + + + + + + +
          +
          +
          +
          + +

          TEMPLATE

          +

          +
          +
          + + + + + + + + + + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/tiledservices.html b/libs/js/jquery-geo-1.0a4/docs/examples/tiledservices.html new file mode 100755 index 0000000..dbbdf34 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/tiledservices.html @@ -0,0 +1,239 @@ + + + + tiled services test + + + + +
          + < docs +

          tiled services test

          + +

          This page tests initializing geomap with different services that support the same tilingScheme.

          + +

          + So long as all services support the current tiling scheme, they are interchangeabe without worrying about the tilingScheme property.

          +

          + Dynamic services can be layered on top of tiled services as they don't require a tilingScheme at all, however you have to make sure the map units match, e.g., the dynamic service accepts a geodetic (lon/lat) bounding box or you set $.proj to null and work entirely in a specific projection's map units.

          +

          + service examples

          +

          + Choose a services array and click set via init to refresh the page and re-initialize the map (including center & zoom properties) or set via property to change only the services property at runtime.

          +
          +
          + +
          [
          +  {
          +    id: "OSM",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://tile.openstreetmap.org/"
          +       + view.zoom + "/"
          +       + view.tile.column + "/"
          +       + view.tile.row
          +       + ".png";
          +    },
          +    attr: "© OpenStreetMap & contributors, CC-BY-SA"
          +  }
          +]
          + +
          [
          +  {
          +    id: "OSM_MapQuest",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://otile" + ((view.index % 4) + 1) + ".mqcdn.com/tiles/1.0.0/osm/"
          +       + view.zoom + "/"
          +       + view.tile.column + "/"
          +       + view.tile.row
          +       + ".png";
          +    },
          +    attr: "Tiles Courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>"
          +  }
          +]
          + +
          [
          +  {
          +    id: "Ortho_MapQuest",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://oatile" + ((view.index % 4) + 1) + ".mqcdn.com/naip/"
          +       + view.zoom + "/"
          +       + view.tile.column + "/"
          +       + view.tile.row
          +       + ".png";
          +    },
          +    attr: "Tiles Courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>"
          +  }
          +]
          + +
          [
          +  {
          +    id: "Ortho_MapQuest",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://oatile" + ((view.index % 4) + 1) + ".mqcdn.com/naip/"
          +       + view.zoom + "/"
          +       + view.tile.column + "/"
          +       + view.tile.row
          +       + ".png";
          +    },
          +    attr: "Tiles Courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>"
          +  },
          +  {
          +    id: "OSM_MapQuest",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://otile" + ((view.index % 4) + 1) + ".mqcdn.com/tiles/1.0.0/osm/"
          +       + view.zoom + "/"
          +       + view.tile.column + "/"
          +       + view.tile.row
          +       + ".png";
          +    },
          +    style: { opacity: .3 }
          +  }
          +]
          +
          + + +
          +
          +
          +
          + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/tilingScheme.html b/libs/js/jquery-geo-1.0a4/docs/examples/tilingScheme.html new file mode 100755 index 0000000..b5a76f6 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/tilingScheme.html @@ -0,0 +1,211 @@ + + + + tilingScheme test + + + + +
          + < docs +

          + tilingScheme test

          +

          + This page tests initializing geomap with services requiring different tilingSchemes.

          +

          + Dynamic services are not yet implemented but will be able to be layered on top of tiled services as they don't require a tilingScheme at all.

          +

          + For this example, I have set $.geo.proj to null and am setting the center in real map units. This is because the second service, New Jersey, is not in web mercator and geomap does not provide a built-in conversion from lon/lat.

          +

          + The New Jersey service is a tiled service with an ArcGIS Server REST endpoint. The level stops of an ArcGIS Server tile cache are often not a power of two and therefore cannot be calculated. We list them all out by using the pixelSizes property of the tilingScheme instead of specifying basePixelSize and levels properties.

          +

          + examples

          +

          + Choose a service/tilingScheme combo and click set to refresh the page and re-initialize the map.

          +
          +
          + +
          services: [
          +  {
          +    id: "OSM",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://tile.openstreetmap.org/"
          +       + view.zoom + "/"
          +       + view.tile.column + "/"
          +       + view.tile.row
          +       + ".png";
          +    },
          +    attr: "© OpenStreetMap & contributors, CC-BY-SA"
          +  }
          +],
          +tilingScheme: {
          +  tileWidth: 256,
          +  tileHeight: 256,
          +  levels: 18,
          +  basePixelSize: 156543.03392799936,
          +  origin: [-20037508.342787, 20037508.342787]
          +}
          + +
          services: [
          +  {
          +    id: "NewJersey",
          +    type: "tiled",
          +    src: function (view) {
          +      return "http://njgin.state.nj.us/ArcGIS/rest/services/basemap_v4/MapServer/tile/"
          +       + view.zoom + "/"
          +       + view.tile.row + "/"
          +       + view.tile.column;
          +    }
          +  }
          +],
          +tilingScheme: {
          +  tileWidth: 512,
          +  tileHeight: 512,
          +  pixelSizes: [
          +    3472.22222222222,
          +    2604.16666666667,
          +    2170.13888888889,
          +    1562.5,
          +    976.5625,
          +    494.791666666667,
          +    260.416666666667,
          +    130.208333333333,
          +    65.1041666666667,
          +    32.5520833333333,
          +    21.7013888888889,
          +    10.8506944444444,
          +    5.20833333333333,
          +    2.08333333333333,
          +    1.04166666666667
          +  ],
          +  origin: [-842000, 1440000]
          +}
          +
          + + +
          +
          +
          +
          + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/tracking.html b/libs/js/jquery-geo-1.0a4/docs/examples/tracking.html new file mode 100755 index 0000000..651fd7c --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/tracking.html @@ -0,0 +1,79 @@ + + + + + GPS Tracking + + + + + + + +
          +
          +
          +
          + < docs +

          + GPS Tracking

          +

          + This simple demo continually follows your location at zoom level 15 showing the Esri World Street Map tiles.

          +

          + Inspired by Royce Simpson

          +
          +
          + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/twheat/img/$.geo-logo-small.png b/libs/js/jquery-geo-1.0a4/docs/examples/twheat/img/$.geo-logo-small.png new file mode 100755 index 0000000..1a9ad85 Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/examples/twheat/img/$.geo-logo-small.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/twheat/index.html b/libs/js/jquery-geo-1.0a4/docs/examples/twheat/index.html new file mode 100755 index 0000000..2a0f738 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/twheat/index.html @@ -0,0 +1,486 @@ + + + + + Twheat + + + + + + + +
          +
          + +
          +
          +
          + + +
          +
          + + +
          +
          no tweets mapped yet :(
          +
          +
          +
          + +

          Twheat!

          +

          A Twitter Heat Map

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/twitter-heat.html b/libs/js/jquery-geo-1.0a4/docs/examples/twitter-heat.html new file mode 100755 index 0000000..a061251 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/twitter-heat.html @@ -0,0 +1,307 @@ + + + + + Twitter Heat Map + + + + + + + +
          +
          + +
          +
          +
          + + +
          +
          + + +
          +
          +
          + +

          + Twitter Heat Map

          +

          + This demo continually searches Twitter based on location & query and draws the results as a heat map.

          +

          + You can hover over data to read the tweets.

          +
          +
          + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/usastates.html b/libs/js/jquery-geo-1.0a4/docs/examples/usastates.html new file mode 100755 index 0000000..a1481b4 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/usastates.html @@ -0,0 +1,66 @@ + + + + + USA States + + + + + + + +
          +
          +
          +
          + +

          USA States

          +

          This map reads USA state boundary data as a GeoJSON FeatureCollection and draws it on top of OpenStreetMap.

          +

          Click a state to change its color!

          +
          +
          + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/apple-touch-icon.png b/libs/js/jquery-geo-1.0a4/docs/examples/utah/apple-touch-icon.png new file mode 100755 index 0000000..8bcff2d Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/examples/utah/apple-touch-icon.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/css/style.css b/libs/js/jquery-geo-1.0a4/docs/examples/utah/css/style.css new file mode 100755 index 0000000..4c27467 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/utah/css/style.css @@ -0,0 +1,222 @@ +/* HTML5 ✰ Boilerplate */ + +html, body, div, span, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, +small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, figcaption, figure, +footer, header, hgroup, menu, nav, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} + +blockquote, q { quotes: none; } +blockquote:before, blockquote:after, +q:before, q:after { content: ""; content: none; } +ins { background-color: #ff9; color: #000; text-decoration: none; } +mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } +del { text-decoration: line-through; } +abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } +table { border-collapse: collapse; border-spacing: 0; } +hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } +input, select { vertical-align: middle; } + +body { font:13px/1.231 sans-serif; *font-size:small; } +select, input, textarea, button { font:99% sans-serif; } +pre, code, kbd, samp { font-family: monospace, sans-serif; } + +a:hover, a:active { outline: none; } +ul, ol { margin-left: 2em; } +ol { list-style-type: decimal; } +nav ul, nav li { margin: 0; list-style:none; list-style-image: none; } +small { font-size: 85%; } +strong, th { font-weight: bold; } +td { vertical-align: top; } +sub, sup { font-size: 75%; line-height: 0; position: relative; } +sup { top: -0.5em; } +sub { bottom: -0.25em; } + +pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; padding: 15px; } +textarea { overflow: auto; } +.ie6 legend, .ie7 legend { margin-left: -7px; } +input[type="radio"] { vertical-align: text-bottom; } +input[type="checkbox"] { vertical-align: bottom; } +.ie7 input[type="checkbox"] { vertical-align: baseline; } +.ie6 input { vertical-align: text-bottom; } +label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; } +button, input, select, textarea { margin: 0; } +input:valid, textarea:valid { } +input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red; } +.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; } + + +a:link { -webkit-tap-highlight-color: #FF5E99; } +button { width: auto; overflow: visible; } +.ie7 img { -ms-interpolation-mode: bicubic; } + +body, select, input, textarea { color: #444; } +h1, h2, h3, h4, h5, h6 { font-weight: bold; } +a, a:active, a:visited { color: #607890; } +a:hover { color: #036; } + + +/** + * Primary styles + * + * Author: Ryan Westphal + */ + +body { background: #ccc; } +#index { bottom: 0; left: 32px; min-width: 800px; position: absolute; right: 32px; top: 0; } +header +{ + background: #fdfdfd; + -moz-border-radius-bottomright: 16px; + -moz-border-radius-bottomleft: 16px; + -webkit-border-bottom-right-radius: 16px; + -webkit-border-bottom-left-radius: 16px; + border-bottom-right-radius: 16px; + border-bottom-left-radius: 16px; + padding: 16px 12px 16px 12px; +} +h1 { color: #1C56A3; display: inline; font-family: Georgia; font-size: 32px; } +#basemapButtons { float: right; } +span.selector { background: url(../img/BaseMapSelectorSprite-v1.1.png) no-repeat scroll; display: block; height: 49px; width: 50px; } +span.Lite { background-position: -90px -276px; } +span.Hybrid { background-position: -15px -276px; } +span.Hillshade { background-position: -15px -213px; } +span.Terrain { background-position: -91px -18px; } +span.Vector { background-position: -15px -84px; } +span.Imagery2009 { background-position: -15px -149px; } +span.Topo { background-position: -15px -18px; } + +#pnlInfoAndSearch +{ + left: 12px; + position: relative; + top: 12px; +} + +#lblCoords +{ + color: #1C56A3; + display: inline-block; + font-size: 14px; + font-weight: bold; + width: 512px; +} + +.ie7 #lblCoords +{ + float: left; +} + +#pnlSearch +{ + display: inline-block; + font-size: 14px; + font-weight: bold; +} + +.ie7 #pnlSearch +{ + float: left; +} + +#pnlSearch label span +{ + color: #1C56A3; + margin-right: 4px; +} + +#pnlSearch input +{ + width: 192px; +} + +#pnlSearch button +{ + display: none; +} + +#map +{ + background: #ccc; + -moz-border-radius-topleft: 16px; + -moz-border-radius-topright: 16px; + -webkit-border-top-left-radius: 16px; + -webkit-border-top-right-radius: 16px; + border-top-left-radius: 16px; + border-top-right-radius: 16px; + bottom: 0; + left: 0; + position: fixed; + right: 0; + top: 128px; +} + +#infoBar +{ + background: #ccc; + bottom: 0; + color: #1C56A3; + font-size: 14px; + font-weight: bold; + left: 0; + padding: 16px; + position: absolute; + right: 0; +} + +.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; } +.hidden { display: none; visibility: hidden; } +.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } +.visuallyhidden.focusable:active, +.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } +.invisible { visibility: hidden; } +.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; } +.clearfix:after { clear: both; } +.clearfix { zoom: 1; } + + +@media all and (orientation:portrait) { + +} + +@media all and (orientation:landscape) { + +} + +@media screen and (max-device-width: 480px) { + + /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ +} + + +@media print { + * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; + -ms-filter: none !important; } + a, a:visited { color: #444 !important; text-decoration: underline; } + a[href]:after { content: " (" attr(href) ")"; } + abbr[title]:after { content: " (" attr(title) ")"; } + .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } + pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } + thead { display: table-header-group; } + tr, img { page-break-inside: avoid; } + @page { margin: 0.5cm; } + p, h2, h3 { orphans: 3; widows: 3; } + h2, h3{ page-break-after: avoid; } +} + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/favicon.ico b/libs/js/jquery-geo-1.0a4/docs/examples/utah/favicon.ico new file mode 100755 index 0000000..04122e7 Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/examples/utah/favicon.ico differ diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/img/BaseMapSelectorSprite-v1.1.png b/libs/js/jquery-geo-1.0a4/docs/examples/utah/img/BaseMapSelectorSprite-v1.1.png new file mode 100755 index 0000000..84a7a8a Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/examples/utah/img/BaseMapSelectorSprite-v1.1.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/index.html b/libs/js/jquery-geo-1.0a4/docs/examples/utah/index.html new file mode 100755 index 0000000..06c2a1d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/utah/index.html @@ -0,0 +1,64 @@ + + + + + + + + + + Atlas Utah! + + + + + + + + + + + + + + + +
          +
          +
          + + + + + + + +
          +

          Atlas Utah!

          + +
          +
          +
          + UTM NAD83 coords: (453709,4333922) +
          +
          + + +
          +
          +
          +
          +
          +
          + +
          +
          + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/js/libs/jquery.watermark.min.js b/libs/js/jquery-geo-1.0a4/docs/examples/utah/js/libs/jquery.watermark.min.js new file mode 100755 index 0000000..4cc6e43 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/utah/js/libs/jquery.watermark.min.js @@ -0,0 +1,8 @@ +/* + Watermark v3.1.3 (March 22, 2011) plugin for jQuery + http://jquery-watermark.googlecode.com/ + Copyright (c) 2009-2011 Todd Northrop + http://www.speednet.biz/ + Dual licensed under the MIT or GPL Version 2 licenses. +*/ +(function(a,h,y){var w="function",v="password",j="maxLength",n="type",b="",c=true,u="placeholder",i=false,t="watermark",g=t,f="watermarkClass",q="watermarkFocus",l="watermarkSubmit",o="watermarkMaxLength",e="watermarkPassword",d="watermarkText",k=/\r/g,s="input:data("+g+"),textarea:data("+g+")",m="input:text,input:password,input[type=search],input:not([type]),textarea",p=["Page_ClientValidate"],r=i,x=u in document.createElement("input");a.watermark=a.watermark||{version:"3.1.3",runOnce:c,options:{className:t,useNative:c,hideBeforeUnload:c},hide:function(b){a(b).filter(s).each(function(){a.watermark._hide(a(this))})},_hide:function(a,r){var p=a[0],q=(p.value||b).replace(k,b),l=a.data(d)||b,m=a.data(o)||0,i=a.data(f);if(l.length&&q==l){p.value=b;if(a.data(e))if((a.attr(n)||b)==="text"){var g=a.data(e)||[],c=a.parent()||[];if(g.length&&c.length){c[0].removeChild(a[0]);c[0].appendChild(g[0]);a=g}}if(m){a.attr(j,m);a.removeData(o)}if(r){a.attr("autocomplete","off");h.setTimeout(function(){a.select()},1)}}i&&a.removeClass(i)},show:function(b){a(b).filter(s).each(function(){a.watermark._show(a(this))})},_show:function(g){var p=g[0],u=(p.value||b).replace(k,b),h=g.data(d)||b,s=g.attr(n)||b,t=g.data(f);if((u.length==0||u==h)&&!g.data(q)){r=c;if(g.data(e))if(s===v){var m=g.data(e)||[],l=g.parent()||[];if(m.length&&l.length){l[0].removeChild(g[0]);l[0].appendChild(m[0]);g=m;g.attr(j,h.length);p=g[0]}}if(s==="text"||s==="search"){var i=g.attr(j)||0;if(i>0&&h.length>i){g.data(o,i);g.attr(j,h.length)}}t&&g.addClass(t);p.value=h}else a.watermark._hide(g)},hideAll:function(){if(r){a.watermark.hide(m);r=i}},showAll:function(){a.watermark.show(m)}};a.fn.watermark=a.fn.watermark||function(p,o){var t="string";if(!this.length)return this;var s=i,r=typeof p===t;if(r)p=p.replace(k,b);if(typeof o==="object"){s=typeof o.className===t;o=a.extend({},a.watermark.options,o)}else if(typeof o===t){s=c;o=a.extend({},a.watermark.options,{className:o})}else o=a.watermark.options;if(typeof o.useNative!==w)o.useNative=o.useNative?function(){return c}:function(){return i};return this.each(function(){var B="dragleave",A="dragenter",z=this,i=a(z);if(!i.is(m))return;if(i.data(g)){if(r||s){a.watermark._hide(i);r&&i.data(d,p);s&&i.data(f,o.className)}}else{if(x&&o.useNative.call(z,i)&&(i.attr("tagName")||b)!=="TEXTAREA"){r&&i.attr(u,p);return}i.data(d,r?p:b);i.data(f,o.className);i.data(g,1);if((i.attr(n)||b)===v){var C=i.wrap("").parent(),t=a(C.html().replace(/type=["']?password["']?/i,'type="text"'));t.data(d,i.data(d));t.data(f,i.data(f));t.data(g,1);t.attr(j,p.length);t.focus(function(){a.watermark._hide(t,c)}).bind(A,function(){a.watermark._hide(t)}).bind("dragend",function(){h.setTimeout(function(){t.blur()},1)});i.blur(function(){a.watermark._show(i)}).bind(B,function(){a.watermark._show(i)});t.data(e,i);i.data(e,t)}else i.focus(function(){i.data(q,1);a.watermark._hide(i,c)}).blur(function(){i.data(q,0);a.watermark._show(i)}).bind(A,function(){a.watermark._hide(i)}).bind(B,function(){a.watermark._show(i)}).bind("dragend",function(){h.setTimeout(function(){a.watermark._show(i)},1)}).bind("drop",function(e){var c=i[0],a=e.originalEvent.dataTransfer.getData("Text");if((c.value||b).replace(k,b).replace(a,b)===i.data(d))c.value=a;i.focus()});if(z.form){var w=z.form,y=a(w);if(!y.data(l)){y.submit(a.watermark.hideAll);if(w.submit){y.data(l,w.submit);w.submit=function(c,b){return function(){var d=b.data(l);a.watermark.hideAll();if(d.apply)d.apply(c,Array.prototype.slice.call(arguments));else d()}}(w,y)}else{y.data(l,1);w.submit=function(b){return function(){a.watermark.hideAll();delete b.submit;b.submit()}}(w)}}}}a.watermark._show(i)})};if(a.watermark.runOnce){a.watermark.runOnce=i;a.extend(a.expr[":"],{data:function(c,d,b){return!!a.data(c,b[3])}});(function(c){a.fn.val=function(){var e=this;if(!e.length)return arguments.length?e:y;if(!arguments.length)if(e.data(g)){var f=(e[0].value||b).replace(k,b);return f===(e.data(d)||b)?b:f}else return c.apply(e,arguments);else{c.apply(e,arguments);a.watermark.show(e);return e}}})(a.fn.val);p.length&&a(function(){for(var b,c,d=p.length-1;d>=0;d--){b=p[d];c=h[b];if(typeof c===w)h[b]=function(b){return function(){a.watermark.hideAll();return b.apply(null,Array.prototype.slice.call(arguments))}}(c)}});a(h).bind("beforeunload",function(){a.watermark.options.hideBeforeUnload&&a.watermark.hideAll()})}})(jQuery,window); \ No newline at end of file diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/utah/js/libs/modernizr-1.7.min.js b/libs/js/jquery-geo-1.0a4/docs/examples/utah/js/libs/modernizr-1.7.min.js new file mode 100755 index 0000000..6f54850 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/utah/js/libs/modernizr-1.7.min.js @@ -0,0 +1,2 @@ +// Modernizr v1.7 www.modernizr.com +window.Modernizr=function(a,b,c){function G(){e.input=function(a){for(var b=0,c=a.length;b7)},r.history=function(){return !!(a.history&&history.pushState)},r.draganddrop=function(){return x("dragstart")&&x("drop")},r.websockets=function(){return"WebSocket"in a},r.rgba=function(){A("background-color:rgba(150,255,150,.5)");return D(k.backgroundColor,"rgba")},r.hsla=function(){A("background-color:hsla(120,40%,100%,.5)");return D(k.backgroundColor,"rgba")||D(k.backgroundColor,"hsla")},r.multiplebgs=function(){A("background:url(//:),url(//:),red url(//:)");return(new RegExp("(url\\s*\\(.*?){3}")).test(k.background)},r.backgroundsize=function(){return F("backgroundSize")},r.borderimage=function(){return F("borderImage")},r.borderradius=function(){return F("borderRadius","",function(a){return D(a,"orderRadius")})},r.boxshadow=function(){return F("boxShadow")},r.textshadow=function(){return b.createElement("div").style.textShadow===""},r.opacity=function(){B("opacity:.55");return/^0.55$/.test(k.opacity)},r.cssanimations=function(){return F("animationName")},r.csscolumns=function(){return F("columnCount")},r.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";A((a+o.join(b+a)+o.join(c+a)).slice(0,-a.length));return D(k.backgroundImage,"gradient")},r.cssreflections=function(){return F("boxReflect")},r.csstransforms=function(){return!!E(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])},r.csstransforms3d=function(){var a=!!E(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);a&&"webkitPerspective"in g.style&&(a=w("@media ("+o.join("transform-3d),(")+"modernizr)"));return a},r.csstransitions=function(){return F("transitionProperty")},r.fontface=function(){var a,c,d=h||g,e=b.createElement("style"),f=b.implementation||{hasFeature:function(){return!1}};e.type="text/css",d.insertBefore(e,d.firstChild),a=e.sheet||e.styleSheet;var i=f.hasFeature("CSS2","")?function(b){if(!a||!b)return!1;var c=!1;try{a.insertRule(b,0),c=/src/i.test(a.cssRules[0].cssText),a.deleteRule(a.cssRules.length-1)}catch(d){}return c}:function(b){if(!a||!b)return!1;a.cssText=b;return a.cssText.length!==0&&/src/i.test(a.cssText)&&a.cssText.replace(/\r+|\n+/g,"").indexOf(b.split(" ")[0])===0};c=i('@font-face { font-family: "font"; src: url(data:,); }'),d.removeChild(e);return c},r.video=function(){var a=b.createElement("video"),c=!!a.canPlayType;if(c){c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"');var d='video/mp4; codecs="avc1.42E01E';c.h264=a.canPlayType(d+'"')||a.canPlayType(d+', mp4a.40.2"'),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}return c},r.audio=function(){var a=b.createElement("audio"),c=!!a.canPlayType;c&&(c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"'),c.mp3=a.canPlayType("audio/mpeg;"),c.wav=a.canPlayType('audio/wav; codecs="1"'),c.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;"));return c},r.localstorage=function(){try{return!!localStorage.getItem}catch(a){return!1}},r.sessionstorage=function(){try{return!!sessionStorage.getItem}catch(a){return!1}},r.webWorkers=function(){return!!a.Worker},r.applicationcache=function(){return!!a.applicationCache},r.svg=function(){return!!b.createElementNS&&!!b.createElementNS(q.svg,"svg").createSVGRect},r.inlinesvg=function(){var a=b.createElement("div");a.innerHTML="";return(a.firstChild&&a.firstChild.namespaceURI)==q.svg},r.smil=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"animate")))},r.svgclippaths=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"clipPath")))};for(var H in r)z(r,H)&&(v=H.toLowerCase(),e[v]=r[H](),u.push((e[v]?"":"no-")+v));e.input||G(),e.crosswindowmessaging=e.postmessage,e.historymanagement=e.history,e.addTest=function(a,b){a=a.toLowerCase();if(!e[a]){b=!!b(),g.className+=" "+(b?"":"no-")+a,e[a]=b;return e}},A(""),j=l=null,f&&a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML="";return a.childNodes.length!==1}()&&function(a,b){function p(a,b){var c=-1,d=a.length,e,f=[];while(++cspan").text("" + geo.coordinates); + } + } ); + + $("input[value='UtahBaseMap-Lite']").prop("checked", true); + + $("#pnlSearch form").submit(function (e) { + e.preventDefault(); + + var address = $(this).find("input").val().replace(/,\s*UT/i, ""), + addressParts = address.split(","); + + if (addressParts.length >= 2) { + address = address.replace(addressParts[addressParts.length - 1], "").replace(",", ""); + $.ajax({ + url: "http://mapserv.utah.gov/wsut/Geocode.svc/appgeo/street(" + $.trim(address) + ")zone(" + $.trim(addressParts[addressParts.length - 1]) + ")", + dataType: "jsonp", + success: function (result) { + $("#map").geomap("option", { + center: [result.UTM_X, result.UTM_Y], + zoom: 13 + }); + }, + error: function (xhr) { + displayMessage(xhr.statusText); + } + }); + } else { + displayMessage("Please enter both a street address and either a city or zip separated by a comma"); + } + + return false; + }); + + $("#pnlSearch input").watermark("street addres, city or zip"); + + $.geo.proj = null; + $("#map").geomap(options); + + function displayMessage(msg) { + $("#infoBar").html(msg).fadeTo(0, 1.0).delay(5000).fadeOut("slow"); + } + + function makeService(name, tileSize) { + return { + services: [ + { + type: "tiled", + src: "http://mapserv.utah.gov/ArcGIS/rest/services/" + name + "/MapServer/tile/{{=zoom}}/{{=tile.row}}/{{=tile.column}}", + attr: "© AGRC" + } + ], + tilingScheme: { + tileWidth: tileSize, + tileHeight: tileSize, + pixelSizes: [ + 4891.96999883583, + 2445.98499994708, + 1222.99250010583, + 611.496250052917, + 305.748124894166, + 152.8740625, + 76.4370312632292, + 38.2185156316146, + 19.1092578131615, + 9.55462890525781, + 4.77731445262891, + 2.38865722657904, + 1.19432861315723, + 0.597164306578613, + 0.298582153289307 + ], + origin: [-5120900, 9998100] + } + } + } +}); diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/voting.html b/libs/js/jquery-geo-1.0a4/docs/examples/voting.html new file mode 100755 index 0000000..4ee3966 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/voting.html @@ -0,0 +1,224 @@ + + + + Voting districts example + + + + + + + + + +
          +
          +
          +
          + +
          +
          + basemap transparency +
          +
          +
          + demographic color +
          +
          +
          +
          +
          +
          +
          +
          +

          Voting Districts by %

          +
          + + + + + +
          +

          +
          +

          Once the data has loaded (which may take a while, even on broadband connections), you can dynamically change the demographic display color. You can also click a voting district to zoom in and see details.

          +
          +
          +
          + + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/wkt.html b/libs/js/jquery-geo-1.0a4/docs/examples/wkt.html new file mode 100755 index 0000000..20200b7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/wkt.html @@ -0,0 +1,76 @@ + + + + WKT parse/stringify example + + + + + + + + + +
          +
          +
          +
          + < docs +

          + WKT parse & stringify

          +

          + This example uses $.geo.WKT.stringify to turn your drawn GeoJSON objects into WKT. The Parse button uses $.geo.WKT.parse to read valid WKT from the text box and add shapes to the map.

          + + + +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/zoom.html b/libs/js/jquery-geo-1.0a4/docs/examples/zoom.html new file mode 100755 index 0000000..78e71e7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/examples/zoom.html @@ -0,0 +1,63 @@ + + + + zoom example + + + + + + + + + +
          +
          +
          +
          + < docs +

          + zoom

          +

          + This example uses the zoom method (as opposed to the zoom option) to change the zoom by relative amounts. Input a number of levels by which to change and click zoom. Negative values zoom out.

          + +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/area.html b/libs/js/jquery-geo-1.0a4/docs/geo/area.html new file mode 100755 index 0000000..3ef9e70 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/area.html @@ -0,0 +1,60 @@ + + + + + + + area | $.geo + + + + + + + + + + + +
          +
          +

          area

          +
          + +
          + + + + + + + + + + + + + +
          return typeNumber
          syntax$.geo.area( Object shape ( GeoJSON object ) )
          usage
          var area = $.geo.area( {
          +      type: "Polygon",
          +      coordinates: [[
          +        [-75, 39.7],
          +        [-74.8, 39.3],
          +        [-75.2, 39.3],
          +        [-75, 39.7]
          +      ]]
          +} )
          +

          The area method calculates the area of a basic GeoJSON geometry object and returns it in non-geodetic units. The basic shapes are Point, LineString and Polygon. If you are using geomap with its default map service, the area is in square meters because the default projection is web mercator meters.

          +

          While you can pass any basic geometry, this function returns the area of Polygon objects and 0 for objects of other shape types.

          +

          If the argument is not a basic GeoJSON geometry object, this function returns undefined.

          +

          This function is similar to Geometry.getArea in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/bbox.html b/libs/js/jquery-geo-1.0a4/docs/geo/bbox.html new file mode 100755 index 0000000..83d2544 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/bbox.html @@ -0,0 +1,70 @@ + + + + + + + bbox | $.geo + + + + + + + + + + + +
          +
          +

          bbox

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray ( GeoJSON bounding box )
          syntax$.geo.bbox( Object shape ( GeoJSON object ) )
          usage
          var bbox = $.geo.bbox( {
          +  type: "LineString", coordinates: [
          +    [ -71, 40 ], [ -70.5, 41 ]
          +  ]
          +} )
          +

          The bbox method calculates the smallest box that will contain all the positions in the passed-in shape. The shape can be any GeoJSON geometry object from Point to GeometryCollection.

          +

          The GeoJSON spec allows for each geometry type to have a bbox property. The $.geo.bbox method will honor that property and assume it is accurate. It will return the value of that property before attempting to calculate the bbox itself. If you wish to force $.geo.bbox to calculate the bbox, you will have to manually delete the bbox property from the geometry object.

          +
          var shape = {
          +  type: "LineString", coordinates: [
          +    [ -71, 40 ], [ -70.5, 41 ]
          +  ],
          +  bbox: [ -71, 40, -70.5, 41 ]
          +};
          +var bboxFromProperty = $.geo.bbox(shape);
          +delete shape.bbox;
          +var calculatedBbox = $.geo.bbox(shape);
          +
          +

          If the argument is not a basic GeoJSON geometry object, this function returns undefined.

          + +

          This function is similar to Geometry.getEnvelope in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/center.html b/libs/js/jquery-geo-1.0a4/docs/geo/center.html new file mode 100755 index 0000000..dd2eea0 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/center.html @@ -0,0 +1,51 @@ + + + + + + + center | $.geo + + + + + + + + + + + +
          +
          +

          center

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray ( GeoJSON position )
          syntax$.geo.center( Array bbox ( GeoJSON bounding box ) )
          usage
          var bboxCenter = $.geo.center( bbox )
          +

          The center method calculates the center of a bbox and returns it as a GeoJSON position.

          +

          It operates on bounding boxes and should not be confused with the centroid function, which operates on GeoJSON geometry objects.

          +

          This function is called Envelope.centre in JTS (I assume because JTS is built in British Columbia).

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/centroid.html b/libs/js/jquery-geo-1.0a4/docs/geo/centroid.html new file mode 100755 index 0000000..a328817 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/centroid.html @@ -0,0 +1,61 @@ + + + + + + + centroid | $.geo + + + + + + + + + + + +
          +
          +

          centroid

          +
          + +
          + + + + + + + + + + + + + +
          return typeObject ( GeoJSON Point )
          syntax$.geo.centroid( Object shape ( GeoJSON object ) )
          usage
          var centroid = $.geo.centroid( {
          +      type: "Polygon",
          +      coordinates: [[
          +        [-75, 39.7],
          +        [-74.8, 39.3],
          +        [-75.2, 39.3],
          +        [-75, 39.7]
          +      ]]
          +} )
          +

          The centroid method calculates the center of mass for the passed-in basic GeoJSON geometry object. The basic geometry types are Point, LineString and Polygon.

          +

          Technically, only Polygons can be considered to have mass. However, a centroid can be calculated for other geometry types. This method operates on LineStrings as if they were closed polygons and the centroid will likely not lie along the line. The centroid of a Point is a clone of the Point.

          + +

          If the argument is not a basic GeoJSON geometry object, this function returns undefined.

          +

          This function is similar to Geometry.getCentroid in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/contains.html b/libs/js/jquery-geo-1.0a4/docs/geo/contains.html new file mode 100755 index 0000000..b35b1d8 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/contains.html @@ -0,0 +1,62 @@ + + + + + + + contains | $.geo + + + + + + + + + + + +
          +
          +

          contains

          +
          + +
          + + + + + + + + + + + + + +
          return typeBoolean
          syntax$.geo.contains( Object shape1 ( GeoJSON object ), Object shape2 ( GeoJSON object ) )
          usage
          var contains = $.geo.contains(
          +  {
          +    type: "Polygon", coordinates: [[
          +      [-71.06, 42.3425],
          +      [-71.06, 42.3475],
          +      [-71.04, 42.3475],
          +      [-71.04, 42.3425],
          +      [-71.06, 42.3425]
          +    ]]
          +  },
          +  { type: "Point", "coordinates": [ -71, 40 ] }
          +)
          +

          The contains method determines if the first basic GeoJSON geometry completely contains a second one. The basic shapes are Point, LineString and Polygon however Point and LineString geometries cannot contain other geometries so the only situation that has a possibility of returning true is when the first argument is a Polygon.

          +

          If either argument is not a basic GeoJSON geometry object, this function returns undefined.

          +

          This function is similar to Geometry.contains in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/distance.html b/libs/js/jquery-geo-1.0a4/docs/geo/distance.html new file mode 100755 index 0000000..f1252df --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/distance.html @@ -0,0 +1,54 @@ + + + + + + + distance | $.geo + + + + + + + + + + + +
          +
          +

          distance

          +
          + +
          + + + + + + + + + + + + + +
          return typeNumber
          syntax$.geo.distance( Object shape1 ( GeoJSON object ), Object shape2 ( GeoJSON object ) )
          usage
          var distanceBetween = $.geo.distance(
          +  { type: "Point", "coordinates": [ -71, 40 ] },
          +  { type: "Point", "coordinates": [ -70.5, 41 ] }
          +)
          +

          The distance method calculates the distance between two basic GeoJSON geometry objects and returns it in non-geodetic units. The basic shapes are Point, LineString and Polygon. If you are using geomap with its default map service, the distance is in meters because the default projection is web mercator meters.

          +

          If either argument is not a basic GeoJSON geometry object, this function returns undefined.

          +

          This function is similar to Geometry.distance in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/expandBy.html b/libs/js/jquery-geo-1.0a4/docs/geo/expandBy.html new file mode 100755 index 0000000..0cb50cb --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/expandBy.html @@ -0,0 +1,52 @@ + + + + + + + expandBy | $.geo + + + + + + + + + + + +
          +
          +

          expandBy

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray ( GeoJSON bounding box )
          syntax$.geo.expandBy( Array bbox ( GeoJSON bounding box ), Number dx, Number dy )
          usage
          var largerBbox = $.geo.expandBy( bbox, 20, 20 )
          +

          The expandBy method creates a new bbox with the same center as the original but having a width and height that is modified by the dx and dy arguments respectively.

          +

          The dx and dy arguments are non-geodetic map units. If you are using geomap with its default map service, these are in meters because the default projection is web mercator meters. If, for example, you are working in a different projection such as NAD83 / New Jersey feet, this function will expand or contract the bbox by feet.

          +

          The dx and dy arguments can be positive, negative or zero and will modify the width or height of the bbox accordingly.

          +

          This function is similar to Envelope.expandBy in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/height.html b/libs/js/jquery-geo-1.0a4/docs/geo/height.html new file mode 100755 index 0000000..af5fad8 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/height.html @@ -0,0 +1,50 @@ + + + + + + + height | $.geo + + + + + + + + + + + +
          +
          +

          height

          +
          + +
          + + + + + + + + + + + + + +
          return typeNumber
          syntax$.geo.height( Array bbox ( GeoJSON bounding box )
          usage
          var height = $.geo.height( [ -71.1, 42.3, -71.0, 42.4 ] )
          +

          The height method returns the true height of a bbox in non-geodetic map units. If you are using geomap with its default map service, the height is in meters because the default projection is web mercator meters.

          +

          This function is similar to Envelope.getHeight in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/index.html b/libs/js/jquery-geo-1.0a4/docs/geo/index.html new file mode 100755 index 0000000..62fbc4c --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/index.html @@ -0,0 +1,75 @@ + + + + + + + geo namespace | $.geo + + + + + + + + + + + +
          +
          +

          geo namespace

          +
          + +
          +

          The $.geo namespace contains all geometry functions implemented in the plugin and an object having the plugin's four projection functions.

          +

          projection

          +

          The $.geo namespace has a property named proj which is a JavaScript object having four functions: fromGeodetic, fromGeodeticPos, toGeodetic, and toGeodeticPos. These four functions allow all $.geo static bbox/geometry functions, geomap widget properties, geomap widget events & geomap widget methods (collectively referred to as plugin functions from now on) to work in geodetic (lon, lat) coordinates.

          + +

          geometry operations

          +

          Geometry isn't much fun if you can't do anything with it. These functions help you analyze and manipulate bounding boxes and GeoJSON geometry objects. You call them directly from the $.geo namespace:

          +
          $.geo.distance( point1, point2 )
          + +

          Except for a few name changes and switching from an object-oriented API to a function-based one, jQuery Geo attempts to follow the names and behavior of the Java Topology Suite (JTS), which is the de-facto standard for geometry library APIs. JTS itself is an implementation of the OGC Simple Features specification but has made design decisions that improve the API for developers. The most notable of which is having Envelope (called bbox in jQuery Geo and GeoJSON) be its own class type.

          +

          bbox functions

          +

          These functions operate on GeoJSON bounding box array, i.e., a JavaScript array having four values:

          +
            +
          • minimum x/longitude
          • +
          • minimum y/latitude
          • +
          • maximum x/longitude
          • +
          • maximum y/latitude
          • +
          + +

          geometry object functions

          +

          These functions operate on GeoJSON geometry objects: Point, LineString, Polygon, MultiPoint, MultiLineString, MultiPolygon, and GeometryCollection. They do not operate on Feature or FeatureCollection objects, you have to call these functions on the geometry properties of Feature objects.

          +

          The geometry functions allow you to analyze relationships between geometries such as their distance apart as well as obtain information about them such as bounding box and center point, called the centroid. This section will eventually expand to cover all of the important spatial operations available in the Java Topology Suite.

          + +
          +
          + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/length.html b/libs/js/jquery-geo-1.0a4/docs/geo/length.html new file mode 100755 index 0000000..cb1a022 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/length.html @@ -0,0 +1,59 @@ + + + + + + + length | $.geo + + + + + + + + + + + +
          +
          +

          length

          +
          + +
          + + + + + + + + + + + + + +
          return typeNumber
          syntax$.geo.length( Object shape ( GeoJSON object ) )
          usage
          var length = $.geo.length( {
          +      type: "LineString",
          +      coordinates: [[
          +        [-75, 39.7],
          +        [-74.8, 39.3],
          +        [-75.2, 39.3]
          +      ]]
          +} )
          +

          The length method calculates the length of a basic GeoJSON geometry object and returns it in non-geodetic units. The basic shapes are Point, LineString and Polygon. If you are using geomap with its default map service, the length is in meters because the default projection is web mercator meters.

          +

          This function returns 0 for Point objects, the length of LineString objects and the perimeter of Polygon objects.

          +

          If the argument is not a basic GeoJSON geometry object, this function returns undefined.

          +

          This function is similar to Geometry.getLength in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/pointAlong.html b/libs/js/jquery-geo-1.0a4/docs/geo/pointAlong.html new file mode 100755 index 0000000..0f792b3 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/pointAlong.html @@ -0,0 +1,59 @@ + + + + + + + pointAlong | $.geo + + + + + + + + + + + +
          +
          +

          pointAlong

          +
          + +
          + + + + + + + + + + + + + +
          return typeObject ( GeoJSON Point )
          syntax$.geo.pointAlong( Object shape ( GeoJSON object ), Number percentage )
          usage
          var pointAlong = $.geo.pointAlong( {
          +      type: "LineString",
          +      coordinates: [[
          +        [-75, 39.7],
          +        [-74.8, 39.3],
          +        [-75.2, 39.3]
          +      ]]
          +}, .5 )
          +

          The pointAlong method calculates a Point that lies a given fraction along the passed-in basic GeoJSON geometry object. The basic geometry types are Point, LineString and Polygon. A percentage of 0.0 returns the first Point; a percentage of 1.0 returns the last.

          +

          Technically, only LineStrings can be used properly in this calculation. However, pointAlong can be calculated for other geometry types. With Point objects, pointAlong will always return a copy of the original Point. For Polygon objects, pointAlong operates on the Polygon's perimeter (outer ring), i.e., myPolygon.coordinates[0]. For Polygons, percentage values of 0.0 and 1.0 will return the same Point.

          +

          If the argument is not a basic GeoJSON geometry object, this function returns undefined.

          +

          This function is similar to LineSegment.pointAlong in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/proj.html b/libs/js/jquery-geo-1.0a4/docs/geo/proj.html new file mode 100755 index 0000000..551b7c5 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/proj.html @@ -0,0 +1,114 @@ + + + + + + + $.geo.proj object | jQuery Geo + + + + + + + + + + + +
          +
          +

          $.geo.proj object

          +
          + +
          +

          The $.geo namespace has a property named proj which is a JavaScript object having four functions: fromGeodetic, fromGeodeticPos, toGeodetic, and toGeodeticPos. These four functions allow all $.geo static bbox/geometry functions, geomap widget properties, geomap widget events & geomap widget methods (collectively referred to as plugin functions from now on) to work in geodetic (lon, lat) coordinates.

          +

          Consider the following example:

          +
            +
          • assume you are using the default map service
          • +
          • you call $.geo.distance passing two geodetic Point objects, i.e., the GeoJSON position in each point is an array where coordinates[0] is the longitude and coordinates[1] is latitude
          • +
          +

          jQuery Geo will first convert the points to map units, a process called projection. jQuery Geo needs projected coordinates to properly calculate some relationships between shapes. After converting the points, $.geo.distance can then calculate the distance between them. This distance will be in meters because the default map service is web mercator meters.

          +

          In order to work directly in map units, you used to have to set $.geo.proj to null. While still valid, you no longer have to do this. You can leave $.geo.proj set to, e.g., web mercator meters and send either projected web mercator GeoJSON geometry objects or geodetic (lon, lat) objects to $.geo functions. The return value will depend on the type of arguments passed.

          +

          The geomap widget keeps track of how you set options. For example, if you set the map's center using geodetic coordinates, geodetic coordinates will then be returned when you ask for the center later. They will also be used when the geomap widget triggers events such as bboxchange or shape.

          +

          The default $.geo.proj object comes pre-built with functions that quickly convert between geodetic coordinates and web mercator meters so you can start using lon, lat right away with the default OpenStreetMap tiles. If your map service uses a different projection you can roll your own $.geo.proj object and continue to have the option to use geodetic coordinates. Read Other projections below for information on how to do that.

          + +

          Usage

          +

          The two base functions, fromGeodetic and toGeodetic, can take and return: a single bounding box, a single GeoJSON position (Point.coordinates), an array of GeoJSON positions (MultiPoint.coordinates or LineString.coordinates), an array of arrays of positions (MultiLineString.coordinates or Polygon.coordinates) or an array of arrays of arrays of positions (MultiPolygon.coordinates). In other words, the $.geo.proj functions convert the coordinates property of any of the GeoJSON geometry types. For example, you can use the following to convert the position contained in a GeoJSON point object:

          +
          var geodeticPoint = {
          +  type: "Point",
          +  coordinates: [ -73.5100, 41.3500 ]
          +};
          +
          +var projectedCoords = $.geo.proj.fromGeodetic( geodeticPoint.coordinates );
          + +

          However, a LineString's coordinates property is an array of positions which you can also pass to the fromGeodetic method to get an array converted positions

          + +
          var projectedLineStringCoords = $.geo.proj.fromGeodetic( geodeticLineString.coordinates );
          + +

          To convert a set of projected GeoJSON positions back to web mercator, call toGeodetic.

          + +
          var geodeticLineString = {
          +  type: "LineString",
          +  coordinates: $.geo.proj.toGeodetic( projectedLineStringCoords  )
          +};
          + +

          Other projections

          + +

          The $.geo.proj object allows you to use geodetic coordinates with whichever coordinate system or projection you want in any plugin function. If you pass a geodetic Polygon to $.geo.bbox, the returned bounding box will be in geodetic coordinates.

          + +

          If you are working in a projection other than the default web mercator meters but still wish to use geodetic coordinates, you will have to update the $.geo.proj object so that it can convert between geodetic coordinates and ones in your projection.

          + +

          However, if you don't need to work in longitude, latitude at all, you can ignore $.geo.proj and use projected coordinates throughout your project. You also still have the option to set $.geo.proj to null for completeness and remind yourself that you are limited to projected coordinates. If you are working in Massachusetts Mainland State Plane meters for example, you can pass a Polygon of that projection to any plugin function and you will get results in that projection. This includes all $.geo functions and geomap options & methods.

          + +
          $.geo.proj = null; // not required but reminds us that jQuery Geo can't use lon, lat in this project
          +
          +$('map').geomap( {
          +  tilingScheme: null,
          +  bboxMax: [ 31790, 790195, 337250, 961865 ],
          +  bbox: [ 235644, 894775, 237775, 898523 ],
          +  services: [ /* service object that supports MA State Plane */ ]
          +} );
          + +

          jQuery Geo uses the four $.geo.proj functions throughout to convert between geodetic and projected coordinates. However, fromGeodeticPos and toGeodeticPos handle the conversion of individual GeoJSON positions and are used by fromGeodetic and toGeodetic. You can extend $.geo.proj with your own implementations of fromGeodeticPos and toGeodeticPos to change the internal projection used by all plugin functions and still use geodetic (lon, lat) coordinates as arguments and return values.

          + +

          Please note that you must extend $.geo.proj with new functionality instead of replacing it wholesale with a new object. You need to keep the original fromGeodetic and toGeodetic functions intact.

          + +
          $.extend($.geo.proj, {
          +  fromGeodeticPos: function( coordinate ) {
          +    var converted = [];
          +    // convert the GeoJSON lon/lat position to MA State Plane
          +    return converted;
          +  },
          +
          +  toGeodeticPos: function( coordinate ) {
          +    var converted = [];
          +    // convert the GeoJSON MA State Plane position to lon/lat
          +    return converted;
          +  }
          +});
          +
          +$('map').geomap( {
          +  tilingScheme: null,
          +
          +  // notice that with a custom $.geo.proj object,
          +  // these properties can be in geodetic coordinates
          +  bboxMax: [ -73.5100, 41.3500, -69.8600, 42.8900 ],
          +  bbox: [ -71.098709, 42.330322, -71.072617, 42.351608 ],
          +
          +  // the services option must still be in map coordinates
          +  // see geomap's services property docs for more info
          +  services: [ /* service object that supports MA State Plane */ ]
          +} );
          +

          Implementing custom from/to GeodeticPos functions is currently beyond the scope of this documentation but reading up on Proj4js is a good start.

          +
          +
          + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/reaspect.html b/libs/js/jquery-geo-1.0a4/docs/geo/reaspect.html new file mode 100755 index 0000000..a2e3cff --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/reaspect.html @@ -0,0 +1,51 @@ + + + + + + + reaspect | $.geo + + + + + + + + + + + +
          +
          +

          reaspect

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray ( GeoJSON bounding box )
          syntax$.geo.reaspect( Array bbox ( GeoJSON bounding box ), Number ratio )
          usage
          var widescreenBbox = $.geo.reaspect( bbox, 16 / 9 )
          +

          The reaspect method creates a new bbox with the same center as the original but forcing the ratio of width to height to a specific value.

          +

          If the original width is greater than the original height (think a landscape printout) then the width of the new bbox will be the same as the original but the new height will change to fit the ratio. If the original height is greater than the original width (think a portrait printout) then the new bbox height will remain unchanged but the width will to fit the ratio.

          +

          This function is not defined in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/recenter.html b/libs/js/jquery-geo-1.0a4/docs/geo/recenter.html new file mode 100755 index 0000000..46d2ee0 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/recenter.html @@ -0,0 +1,52 @@ + + + + + + + recenter | $.geo + + + + + + + + + + + +
          +
          +

          recenter

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray ( GeoJSON bounding box )
          syntax$.geo.recenter( Array bbox ( GeoJSON bounding box ), Array (GeoJSON position) )
          usage
          var moved = $.geo.recenter( bbox, [ -70, 42 ] )
          + +

          The recenter method creates a new bbox with the same width and height as the original but moving the center to a new location.

          + +

          This function is not defined in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/scaleBy.html b/libs/js/jquery-geo-1.0a4/docs/geo/scaleBy.html new file mode 100755 index 0000000..591ee5d --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/scaleBy.html @@ -0,0 +1,52 @@ + + + + + + + scaleBy | $.geo + + + + + + + + + + + +
          +
          +

          scaleBy

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray ( GeoJSON bounding box )
          syntax$.geo.scaleBy( Array bbox ( GeoJSON bounding box ), Number scale )
          usage
          var twiceAsBig = $.geo.scaleBy( bbox, 2 )
          +

          The scaleBy method creates a new bbox with the same center as the original but having a width and height that are both multiplied by the scale argument.

          +

          The scale argument is a percentage increase or decrease. This means that supplying 2 will increase the size of the bbox by 200%, which if thinking in terms of a map's view, would zoom out. Supplying .5 will decrease the size of the bbox to half its original size.

          +

          The scale argument must be greater than zero.

          +

          This function is not defined in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geo/width.html b/libs/js/jquery-geo-1.0a4/docs/geo/width.html new file mode 100755 index 0000000..0dd0e0f --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geo/width.html @@ -0,0 +1,50 @@ + + + + + + + width | $.geo + + + + + + + + + + + +
          +
          +

          width

          +
          + +
          + + + + + + + + + + + + + +
          return typeNumber
          syntax$.geo.width( Array bbox ( GeoJSON bounding box )
          usage
          var width = $.geo.width( [ -71.1, 42.3, -71.0, 42.4 ] )
          +

          The width method returns the true width of a bbox in non-geodetic units. If you are using geomap with its default map service, the width is in meters because the default projection is web mercator meters.

          +

          This function is similar to Envelope.getWidth in JTS.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geographics/index.html b/libs/js/jquery-geo-1.0a4/docs/geographics/index.html new file mode 100755 index 0000000..70a31ec --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geographics/index.html @@ -0,0 +1,44 @@ + + + + + + + + geographics | $.geo + + + + + + +
          +
          +

          geographics widget

          +
          + +
          +

          The geographics widget in $.geo handles all shape drawing. The geomap widget uses it internally and you can use it outside of geomap to draw GeoJSON geometry that has already been converted to pixel coordinates onto any element.

          +
          .geographics( options )
          +

          options

          +

          The options argument is a JavaScript object that configures the graphics widget during the first instantiation on a div. No options are required. By default the graphics widget will draw all shapes with a dark red outline and mostly transparent red fill.

          + +

          methods

          +

          The geographics widget provides methods to draw various GeoJSON geometries on the canvas. Remember that the geometries must have either already been converted to pixel coordinates or created initially with a pixel coordinate system in mind.

          + +
          +
          + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/append.html b/libs/js/jquery-geo-1.0a4/docs/geomap/append.html new file mode 100755 index 0000000..e471b07 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/append.html @@ -0,0 +1,177 @@ + + + + + + + append | geomap + + + + + + + + + + + +
          +
          +

          append

          +
          + +
          + + + + + + + + + + + + + +
          return typejQuery collection
          syntax.geomap( "append" , Object shape ( GeoJSON object ) [ , Object style ( geomap style ) ] [ , String label ] [ , Boolean refresh ] )
          usage
          $(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] } )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, false )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, { stroke: "#11117f", strokeWidth: "3px" } )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, { stroke: "#11117f", strokeWidth: "3px" }, false )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, "My Point" )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, "My Point", false )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, { color: "#00f" }, "Blue Point" )
          +
          +$(map or service selector).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, { color: "#00f" }, '<span style="color: #44f;">Blue Point</span>', false )
          +

          The append method adds a shape to the map. In this documentation the word shape means a GeoJSON geometry object, GeoJSON feature or GeoJSON feature collection. Each feature in a FeatureCollection's features property is added as a separate shape whereas the other collection geometry types, e.g., MultiPoint, are added as a single shape. This is important distinction when considering the find method in that find can potentially return only one shape of a FeatureCollection but will return all shapes in a MultiPoint (as a reference to the original MultiPoint object supplied to append) even if only one intersects the find position.

          +

          The geomap widget maintains a reference to your shape. It will not change the object in any way. You can use the same object in calls to remove in order to remove the shape from the map at any time.

          +

          The jQuery UI widget factory returns the original jQuery collection to maintain call chaining.

          + +

          styling

          + +

          The optional style argument modifies how geomap draws the specific geometry or feature you are adding. Properties supplied in this style will override ones of the same name in geomap's base shapeStyle. Properties not referenced are inheritied from the base style and can change with future changes to the shapeStyle option. Please see the shapeStyle method documentation for information about what properties are valid for this object.

          + +

          labeling

          + +

          The optional label argument will display a label near the shape. Labels are a powerful way to add text, pixel-based graphics, or other HTML and CSS effects to the map. The label string can be any text or HTML. For example, consider the following:

          + +
            +
          • + you append a Point shape setting its style to have zero for width and height: +
            { width: "0px", height: "0px" }
            +
          • + +
          • + you also supply a label of nothing more than a div element with a class: +
            '<div class="marker"></div>'
            +
          • + +
          • + in a CSS style sheet, you give the marker class a width, height, background image and negative relative position: +
            .marker
            +{
            +  width: 8px;
            +  height: 8px;
            +  background: url(../img/marker.png);
            +  position: relative;
            +  left: -4px;
            +  top: -4px;
            +}
            +
          • +
          + +

          In the above example, marker.png will be centered on every point added with a similar label. The regular shape style will not show because the point style has no size.

          + +

          For Point shapes, the top-left of the label is positioned at the Point's only coordinate. For LineString shapes, the label is usually positioned 50% along the shape but will be forced into view if its usual position is out of the map's current bbox. For Polygon shapes, the label is usually positioned at the centroid but will be forced into view if its usual position is out of the map's current bbox. All other non-basic shape types use the shape's centroid.

          + +

          The geomap widget uses a div to position the labels. The div exists inside a container for the service. The div has the CSS class: geo-label. You can use this design to apply regular CSS style to all labels or all labels within a service. The following snippets show examples of using this, assuming the main map div has the id "map" and the default map service (which has the CSS class "osm") has not been changed.

          + +

          JavaScript

          + +
          /* add a point to the map itself */
          +$( "#map" ).geomap( "append", { type: "Point", coordinates: [ -71, 40 ] }, "map point" );
          +
          +/* add a point to the default map service */
          +$( "#map .osm" ).geomap( "append", { type: "Point", coordinates: [ -70, 40 ] }, "service point" );
          +
          + +

          CSS

          + +
          /* turn the color of all labels blue */
          +#map .geo-label { color: blue; }
          +
          +/* make labels on the default basemap service bold */
          +#map .osm .geo-label { font-weight: bold; }
          + +

          One caveat is that, to keep performance high, jQuery Geo will not create the .geo-label container if you do not at least pass an empty string as the label. So, if you want to do something similar to the marker example above, but using the already provided .geo-label div, you will need to pass an empty string as the label.

          + +

          Each .geo-label div is absolutely positioned to the correct location in the map view. Please keep that in mind because changing the position, left or top CSS properties on the .geo-label class may affect your labels drastically.

          + +

          delaying refresh

          + +

          The optional refresh argument determines if geomap refreshes the map graphics after this call to append. It defaults to true. If you pass false, geomap will add the shape internally but not immediately redraw the graphics. The changes will display if the user moves the map or you call geomap's refresh method.

          +

          service-level shapes

          +

          The geomap widget allows you to append a shape to a specific service. You do this by targeting a service inside a map instead of the map itself for your call to geomap's append method. For example, the default map service has the CSS class: osm. We can append a shape to that service specifically by using jQuery to target the service:

          +
          $( "#map .osm" ).geomap( "append", shape );
          +

          Some of the important advantages with this syntax are:

          +
            +
          • you can show or hide shapes as you toggle a service because shapes attached to a service are only visible if the service is visible
          • +
          • service-level shapes draw in the order of their service in the services option which gives you finer control over how they look
          • +
          • shapes on the map itself always draw above service-level shapes
          • +
          • you can style shapes differently depending on their service using a service-level shapeStyle option
          • +
          +

          duplicate shapes

          +

          You can add the same GeoJSON object to more than one service, which allows you to give the same object two different styles at the same time. To do this, call append twice with the same object. Once on one service (or the map itself) and a second time on a different service.

          +

          You can also do this at the same time by using the comma selector in one call to append:

          +
          // set the basemap service's shapeStyle option to a white halo effect
          +$( "#map .osm" ).geomap( "option", "shapeStyle", { strokeWidth: "8px", color: "#dedede" } );
          +
          +// append the shape to both the map widget and basemap service
          +$( "#map,#map .osm" ).geomap( "append", shape );
          +

          updating

          +

          If you attempt to add a shape to the map or a service where it already exists, the shape will remain but you will update (or remove) the shape's style or label.

          +
          // add the shape with a green color
          +$( "#map" ).append( shape, { color: "green" } );
          +
          +// change the color to blue (shape is the same object as before in this case)
          +$( "#map" ).append( shape, { color: "blue" } );
          +

          Changing the type of geometry, e.g., from Point to LineString, or coordinates of a shape you have appended is not recommended and geomap's behavior is currently undefined. If you wish to do either of these, you should first call remove on the original object and append on a new one.

          + + +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/axisLayout.html b/libs/js/jquery-geo-1.0a4/docs/geomap/axisLayout.html new file mode 100755 index 0000000..908c734 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/axisLayout.html @@ -0,0 +1,60 @@ + + + + + + + axisLayout | geomap + + + + + + + + + + + +
          +
          +

          axisLayout

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeString
          default"map"
          init
          $( selector ).geomap( { axisLayout: "map" } );
          get
          var axisLayout = $( selector ).geomap( "option", "axisLayout" );
          set
          $( selector ).geomap( "option", "axisLayout", "image" );
          +

          The axisLayout option determines direction of the coordinate system axes. It can be "map" or "image".

          +

          Maps have a traditional mathematical coordinate system where the ordinate-axis (y-axis) points up. However, graphical images flip the y-axis so that moving down increases in value, which is appropriate in graphic contexts. This is important when you are connecting to a service supplying non-georeferenced (computer graphic) images and want your map control to match that coordinate system layout.

          +

          You will rarely have to change this unless you are using an graphic image server such as LizardTech Image Server or you just want to use the geomap widget to draw pixel-oriented graphics.

          +

          This option will affect pixel-to-map coordinate calculation for all service types, i.e., tiled & shingled services.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/bbox.html b/libs/js/jquery-geo-1.0a4/docs/geomap/bbox.html new file mode 100755 index 0000000..2731c79 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/bbox.html @@ -0,0 +1,63 @@ + + + + + + + bbox | geomap + + + + + + + + + + + +
          +
          +

          bbox

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeArray ( GeoJSON bounding box )
          default[ -180, -85, 180, 85 ]
          init
          $( selector ).geomap( { bbox: [ -71, 40, -69, 44 ] } );
          get
          var bbox = $( selector ).geomap( "option", "bbox" );
          set
          $( selector ).geomap( "option", "bbox", [ -122, 42, -118, 46 ] );
          +

          The bbox property calculates or modifies the bounding box of the map view the user currently sees. The geomap widget creates the bounding box based on the current center point, map zoom and size of the map view.

          +

          When you set a new bbox, the center and zoom properties are set as close as they can be based on the services you've added and the size of the map view.

          +

          For example, if you have a cached service with specific zoom levels, the map widget will have to pick a zoom level even though it may result in a bbox that is quite different from the one passed. When your services are fully dynamic, i.e., they allow arbitrary zoom levels, the final bbox will not likely match the one passed either due to ratio differences between the requested bbox and the map view's size. The map will attempt to pick a bounding box that best fits the one you request.

          +

          This property is a JavaScript array consisting of four values which can be thought of as: minx, miny, maxx and maxy of the current map view in map units and in that order. By default the values are in geodetic coordinates, e.g., bbox[0] is the longitude of the left of the current map view, bbox[1] is the latitude of the bottom, bbox[2] is the longitude of the right and bbox[3] is the latitude of the top. You can change the default when you initialize the widget by passing projected coordinates as the bbox option.

          +

          Setting a new bbox will refresh the map services.

          +

          If you attempt to initialize both center and bbox at the same time when creating a geomap widget, center will override bbox.

          +

          If you attempt to initialize both zoom and bbox at the same time when creating a geomap widget, bbox will be applied and zoom will modify the final bbox.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/bboxMax.html b/libs/js/jquery-geo-1.0a4/docs/geomap/bboxMax.html new file mode 100755 index 0000000..da61d27 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/bboxMax.html @@ -0,0 +1,60 @@ + + + + + + + bboxMax | geomap + + + + + + + + + + + +
          +
          +

          bboxMax

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeArray ( GeoJSON bounding box )
          default[ -180, -85, 180, 85 ]
          init
          $( selector ).geomap( { bboxMax: [ -71, 40, -69, 44 ] } );
          get
          var bboxMax = $( selector ).geomap( "option", "bboxMax" );
          set
          $( selector ).geomap( "option", "bboxMax", [ -75.696, 38.804, -73.696, 41.287 ] );
          +

          The bboxMax property calculates or modifies a bounding box that surrounds all of the data you wish to show in the map. Users can pan the map once they reach bboxMax but cannot zoom out further.

          +

          This property is a JavaScript array consisting of four values which can be thought of as: minx, miny, maxx and maxy of the maximum map view you wish to allow in map units and in that order.

          +

          Setting a new bboxMax will not refresh the map services.

          +

          A bboxMax property must be set properly for shinged (dynamic) services if you wish to use the zoom property since the value of the map's zoom is based on a ratio between the current bbox and bboxMax. If you have a fully dynamic map by setting tilingScheme to null, you should explicitly set bboxMax.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/center.html b/libs/js/jquery-geo-1.0a4/docs/geomap/center.html new file mode 100755 index 0000000..cd5a292 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/center.html @@ -0,0 +1,59 @@ + + + + + + + center | geomap + + + + + + + + + + + +
          +
          +

          center

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeArray (GeoJSON position)
          default[ 0, 0 ]
          init
          $( selector ).geomap( { center: [ 0, 0 ] } );
          get
          var center = $( selector ).geomap( "option", "center" );
          set
          $( selector ).geomap( "option", "center", [ -71.037598, 42.363281 ] );
          +

          The center property gets or sets the center point of the map. By default the value is in geodetic coordinates, e.g., longitude, latitude. You can change the default when you initialize the widget by passing projected coordinates as the center option.

          +

          Setting a new center point will refresh the map services.

          +

          If you attempt to initialize both center and bbox at the same time when creating a geomap widget, center will override bbox.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/cursors.html b/libs/js/jquery-geo-1.0a4/docs/geomap/cursors.html new file mode 100755 index 0000000..e99251e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/cursors.html @@ -0,0 +1,68 @@ + + + + + + + cursors | geomap + + + + + + + + + + + +
          +
          +

          cursors

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeObject (map of geomap mode to CSS cursor)
          default
          {
          +  static: "default",
          +  pan: "move",
          +  zoom: "crosshair",
          +  drawPoint: "crosshair",
          +  drawLineString: "crosshair",
          +  drawPolygon: "crosshair",
          +  measureLength: "crosshair",
          +  measureArea: "crosshair"
          +}
          init
          $( selector ).geomap( { cursors: { pan: "move" } } );
          get
          var cursors = $( selector ).geomap( "option", "cursors" );
          set
          $( selector ).geomap( "option", "cursors", { pan: "pointer" } );
          +

          The cursors property controls which cursors appear when users move the mouse over the geomap div in any given mode.

          +

          The developer may change each geomap mode's cursor separately during both initialization of the widget or any time after.

          +

          Sometimes the geomap widget will override the selected mode's cursor, e.g., when a user starts panning in other modes the cursor will switch to the pan mode cursor temporarily.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/destroy.html b/libs/js/jquery-geo-1.0a4/docs/geomap/destroy.html new file mode 100755 index 0000000..d29db07 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/destroy.html @@ -0,0 +1,50 @@ + + + + + + + destroy | geomap + + + + + + + + + + + +
          +
          +

          destroy

          +
          + +
          + + + + + + + + + + + + + +
          return typeundefined
          syntax.geomap( "destroy" )
          usage
          $("#map").geomap( "destroy" )
          +

          + Every good widget will clean up after itself. Call destroy to turn your interactive map back to a boring old div. Any content inside the div before you initialized geomap will remain intact.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/drawStyle.html b/libs/js/jquery-geo-1.0a4/docs/geomap/drawStyle.html new file mode 100755 index 0000000..ebc6df7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/drawStyle.html @@ -0,0 +1,71 @@ + + + + + + + drawStyle | geomap + + + + + + + + + + + +
          +
          +

          drawStyle

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeObject ( geomap style )
          default
          {
          +  borderRadius: "8px",
          +  color: "#7f0000",
          +  fillOpacity: .2,
          +  height: "8px",
          +  opacity: 1,
          +  strokeOpacity: 1,
          +  strokeWidth: "2px",
          +  visibility: "visible",
          +  width: "8px"
          +}
          +
          init
          $( map selector ).geomap( { drawStyle: { color: "green" } } );
          get
          var drawStyle = $( map selector ).geomap( "option", "drawStyle" );
          set
          $( map selector ).geomap( "option", "drawStyle", { strokeWidth: "4px" } );
          +

          The drawStyle option retrieves or updates the style of incomplete lines and polygons as they are being drawn. This differs from the shapeStyle option which updates the style of shapes that you've appended to the map.

          +

          This option affects both the draw modes (drawPoint, drawLineString, and drawPolygon) and the measure modes (measureLength, and measureArea).

          +

          This option changes specific properties of the internal style object. If you init or set an incomplete style object, only the style properties you reference are updated.

          +

          Please see the style section at the bottom of the geomap widget page for more information about the style object.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/empty.html b/libs/js/jquery-geo-1.0a4/docs/geomap/empty.html new file mode 100755 index 0000000..95eb7bb --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/empty.html @@ -0,0 +1,61 @@ + + + + + + + empty | geomap + + + + + + + + + + + +
          +
          +

          empty

          +
          + +
          + + + + + + + + + + + + + +
          return typejQuery collection
          syntax.geomap( "empty" [ , Boolean refresh ] )
          usage
          $( map or service selector ).geomap( "empty" )
          +$( map or service selector ).geomap( "empty", false )
          +

          The empty method removes all shapes previously added with the append method.

          +

          The jQuery UI widget factory returns the original jQuery collection to maintain call chaining.

          +

          delaying refresh

          +

          The optional refresh argument determines if geomap refreshes the map graphics after this call to empty. It defaults to true. If you pass false, geomap will remove all shapes internally but not immediately redraw the graphics. The changes will display if the user moves the map or you call geomap's refresh method.

          +

          service-level shapes

          +

          Similar to how you can remove shapes from specific services, you can empty specific services of all shapes as well.

          +

          You do this by targeting a service inside a map instead of the map itself for your call to geomap's empty method. For example, the default map service has the CSS class: osm. We can remove all shapes from that service specifically by using jQuery to target the service:

          +
          $( "#map .osm" ).geomap( "empty" );
          +

          Calling empty on the map widget will not remove shapes that have been appended to services.

          +

          To remove all shapes from the map and all services, you can use the comma selector and the built-in geo-service CSS class:

          +
          // empty the map widget and any services
          +$( "#map,#map .geo-service" ).geomap( "empty" );
          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/find.html b/libs/js/jquery-geo-1.0a4/docs/geomap/find.html new file mode 100755 index 0000000..2d4a761 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/find.html @@ -0,0 +1,112 @@ + + + + + + + find | geomap + + + + + + + + + + + +
          +
          +

          find

          +
          + +
          + + + + + + + + + + + + + + + + + +
          return typeArray<Object> ( GeoJSON objects )
          syntax.geomap( "find", Object point (GeoJSON Point), Number pixelTolerance )
          .geomap( "find", shape selector )
          usage
          var existingShape = $( map or service selector ).geomap( "find", { type: "Point", coordinates: [ -71.098709, 42.330322 ] }, 8 )
          +
          +var allShapes = $( map or service selector ).geomap( "find", "*" )
          +

          The find method allows you to search for shapes appended to the map and/or services. There are two distinct ways to call this method.

          +

          geometry search

          + +

          The find method can take a single GeoJSON map point and return all shapes within a pixel radius of the given location that have been added with append. If there are no shapes at the location, this method returns an empty array.

          + +

          The pixelTolerance argument is always in pixels. This allows for pixel-based searches regardless of the map's current zoom. A high-zoom search is finer than a low-zoom one because at lower zoom levels, i.e., the map is zoomed out more, the Earth-size of a pixel is greater causing this search to reach out farther from the supplied position.

          + +

          Duplicate shape references are included in the return value. For example, if you have appended the same GeoJSON object to both the map and a specific service, and then call find at that location, the returned array will contain two, identical shape references.

          + +

          selector search

          + +

          The find method can also take a single string. The string is in CSS selector syntax but currently only one selector is supported: *. Use the * selector to return an array of all shapes that have been appended to the map or service. If there are no shapes on the map or service, this method returns an empty array. Searching for all shapes at the map level will return all shapes that have been appended to the map or any service.

          + +

          Duplicate shape references are included in the return value. For example, if you have appended the same GeoJSON object to both the map and a specific service, and then call find( "*" ) at the map level, the returned array will contain two, identical shape references.

          + +

          The shape selector cannot include service ids or classes. To search for shapes within a specific service, see below.

          + +

          service-level shapes

          + +

          Similar to how you can append shapes to specific services, you can find shapes in specific services as well.

          + +

          You do this by targeting a service inside a map instead of the map itself for your call to geomap's find method. For example, the default map service has the CSS class: osm. We can find a shape from that service specifically by using jQuery to target the service:

          + +
          var osmShapes = $( "#map .osm" ).geomap( "find", [ -71, 42 ], 8 );
          + +

          However, unlike the other three shape methods, shapes appended to a specific service will be returned by calling find on the map itself. In this way, calling find on the map is a deep search for shapes on all services. For example, after this sequence the shapes variable will contain the shape even though it was appended to a service specifically:

          + +

          var point = {
          +      type: "Point",
          +      coordinates: [ -71, 42 ]
          +    };
          +
          +// add the shape to the osm service
          +$( "#map .osm" ).geomap( "append", point );
          +
          +// use the original point to search for shapes on the map widget
          +var shapes = $( "#map" ).geomap( "find", point, 3 );
          + +

          Another difference between the find method and the append, remove, and empty methods, is that the find method cannot currently be used on multiple targets simultaneously. For example, the return value of the following is undefined:

          + +
          // attempt to search the osm service and a second service at the same time
          +var shapes = $( "#map .osm,#map .massgis" ).geomap( "find", point, 8 );
          + +

          To find shapes in two specific services without searching all services you should use two find calls:

          + +
          // find shapes on the default service and a second service
          +var osmShapes = $( "#map .osm" ).geomap( "find", point, 8 ),
          +    massgisShapes = $( "#map .massgis" ).geomap( "find", point, 8 );
          + +

          The selector-based version also follows this requirement. You cannot target more than one element with the initial selector and you cannot use the shape selector to search services. A multi-service selector-based search would be the same as above but with "*" instead of: point, 8.

          + +
          // the following are invalid and their return value is undefined
          +var multiTarget = $( "#map .massgis,#map .osm" ).geomap( "find", "*" );
          +var shapeSubSelector = $( "#map" ).geomap( "find", ".massgis *" );
          +
          +// proper way to get all shapes from multiple services
          +var osmShapes = $( "#map .osm" ).geomap( "find", "*" ),
          +    massgisShapes = $( "#map .massgis" ).geomap( "find", "*" );
          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/geomapbbox.html b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapbbox.html new file mode 100755 index 0000000..0a9aeb3 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapbbox.html @@ -0,0 +1,53 @@ + + + + + + + bboxchange | geomap + + + + + + + + + + + +
          +
          +

          bboxchange

          +
          + +
          + + + + + + + + + + + + + +
          typebboxchange
          init
          $( selector ).geomap( {
          +  bboxchange: function( e, geo ) { }
          +} );
          bind
          $( selector ).bind( "geomapbboxchange", function( e, geo ) { } );
          +} );
          +

          The bboxchange event triggers any time user interaction causes a change in the current bbox of the map widget. This includes pan, wheel zoom, double-click zoom, etc. The geomap does not trigger this event when you update the bbox programmatically.

          +

          The geo argument is an object containing a bbox property which the new bbox.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/geomapclick.html b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapclick.html new file mode 100755 index 0000000..5495ff1 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapclick.html @@ -0,0 +1,53 @@ + + + + + + + click | geomap + + + + + + + + + + + +
          +
          +

          click

          +
          + +
          + + + + + + + + + + + + + +
          typeposition
          init
          $( selector ).geomap( {
          +  click: function( e, geo ) { }
          +} );
          bind
          $( selector ).bind( "geomapclick", function( e, geo ) { } );
          +} );
          +

          The click event triggers when the user clicks or taps a point on the map and then lets go at the same point within a short time threashold. However, it only triggers if the user is not currently performing some other action which might be handled internally by the widget.

          +

          The geo argument is a GeoJSON Point object of the clicked location in map coordinates.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/geomapdblclick.html b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapdblclick.html new file mode 100755 index 0000000..159af89 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapdblclick.html @@ -0,0 +1,57 @@ + + + + + + + dblclick | geomap + + + + + + + + + + + +
          +
          +

          dblclick

          +
          + +
          + + + + + + + + + + + + + +
          typeposition
          init
          $( selector ).geomap( {
          +  dblclick: function( e, geo ) { }
          +} );
          bind
          $( selector ).bind( "geomapdblclick", function( e, geo ) { } );
          +} );
          +

          The dblclick event triggers when the user double-clicks or double-taps a point on the map. However, it only triggers if the user is not currently performing some other action which might be handled internally by the widget.

          +

          The geo argument is a GeoJSON Point object of the clicked location in map coordinates.

          +

          The default action for a double-click/tap is to zoom the map in one level. However, as a developer you can override this by calling e.preventDefault() in your callback.

          +
          $( "#map" ).geomap( {
          +  dblclick: function( e, geo ) { e.preventDefault(); }
          +} );
          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/geomapmove.html b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapmove.html new file mode 100755 index 0000000..781c062 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapmove.html @@ -0,0 +1,53 @@ + + + + + + + move | geomap + + + + + + + + + + + +
          +
          +

          move

          +
          + +
          + + + + + + + + + + + + + +
          typeposition
          init
          $( selector ).geomap( {
          +  move: function( e, geo ) { }
          +} );
          bind
          $( selector ).bind( "geomapmove", function( e, geo ) { } );
          +} );
          +

          The move event triggers when the user moves the mouse cursor while the cursor is over the map. However, it only triggers if the user is not currently performing some other action such as panning.

          +

          The geo argument is a GeoJSON Point object of the location under the mouse cursor in map coordinates.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/geomapshape.html b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapshape.html new file mode 100755 index 0000000..e878912 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/geomapshape.html @@ -0,0 +1,56 @@ + + + + + + + shape | jQuery Geo + + + + + + + + + + + +
          +
          +

          shape

          +
          + +
          + + + + + + + + + + + + + +
          typeshape
          init
          $( selector ).geomap( {
          +  shape: function( e, geo ) { }
          +} );
          bind
          $( selector ).bind( "geomapshape", function( e, geo ) { } );
          +} );
          +

          The shape event triggers when the user draws a point, line or polygon. He or she does this by tapping the map in specific ways while the geomap mode property is set to: drawPoint, drawLineString or drawPolygon.

          +

          When mode is drawPoint, a single tap of the map triggers this event passing a GeoJSON Point object of the tapped location in map coordinates.

          +

          When mode is drawLineString, the first single tap begins a line. Subsequent single taps add points to the line. A double-tap on the map adds a final point and triggers this event passing a GeoJSON LineString object of the sketched line in map coordinates.

          +

          When mode is drawPolygon, the first single tap begins a polygon. Subsequent single taps add points to the polygon. A double-tap on the map adds a final point and triggers this event passing a GeoJSON Polygon object of the sketched polygon in map coordinates.

          +

          While drawing a shape, the user can pan the map by dragging or zoom the map with the mouse wheel. This will not interrupt their drawing of the current shape.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/images/map.png b/libs/js/jquery-geo-1.0a4/docs/geomap/images/map.png new file mode 100755 index 0000000..d41dc4d Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/geomap/images/map.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/index.html b/libs/js/jquery-geo-1.0a4/docs/geomap/index.html new file mode 100755 index 0000000..ba03ee7 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/index.html @@ -0,0 +1,252 @@ + + + + + + + geomap | jQuery Geo + + + + + + + + + + + +
          +
          +

          geomap widget

          +
          + +
          +

          Once you have an HTML element to target, you can call the geographic map widget's function.

          + +
          .geomap( options )
          + +

          overview

          + +

          The widget creates an interactive map. Users can pan and zoom on desktop and mobile browsers against many different cached tile sets or dynamic map servers. Developers can handle events triggered by user action.

          + +
          + +

          options

          + +

          The options argument is a JavaScript object that configures the map widget during the first instantiation on a div. No options are required. By default the map will show the whole world using the OpenStreetMap tile set.

          + +

          After initializing a map with your first geomap call, you can get or set most of these options using the following syntax:

          + +
          // get the current value of a single option
          +var optionValue = $( map selector ).geomap( "option", optionName );
          +
          +// set a new value for a single option
          +$( map selector ).geomap( "option", optionName, newValue );
          +
          +// set new values for multiple options at the same time
          +$( map selector ).geomap( "option", {
          +  optionName: newValue,
          +  optionName: newValue
          +} );
          + +

          One exception is pixelSize, which is read-only.

          + +

          The map view refreshes when you change these options: bbox, center, services, tilingScheme & zoom.

          + + +

          projection

          +

          The geomap widget will match how you use projection with map units. The map unit type (projected or geodetic) you used when you last set either the bbox or the center option will be used as output for options and as values for arguments. If you never set the bbox or center options, the geomap widget will return geodetic coordinates.

          +

          For example, if you set the map's center option using geodetic coordinates (a longitude, latitude array), future requests for the value of the map's center or bbox options will be returned in geodetic coordinates. However, if you later set the bbox option using web mercator, future requests for the center or bbox options will be returned in that projection.

          +

          Changing bbox or center will affect all options and arguments that use map units. The options and arguments involved are:

          +
            +
          • bbox option
          • +
          • bboxMax option
          • +
          • center option
          • +
          • bbox property of the services object's src argument
          • +
          • GeoJSON objects passed as the geo argument in all events
          • +
          • return value of the toMap method
          • +
          +

          To avoid confusion, it is recommended to stick to one map unit type for any single map widget.

          +

          The geomap widget will use $.geo.proj when needed to convert between geodetic and projected coordinates.

          +

          events

          +

          All event callbacks receive two arguments: the original browser event and an object specific to the map action.

          +

          The map unit type (projected or geodetic) of the map event arguments depends on the way you initialize the map widget. If you have set the center or bbox option using geodetic coordinates, the event arguments will also be in geodetic coordinates.

          +

          Like jQuery UI widgets, geomap triggers events directly on the original map div.

          +

          Programatic changes to options do not trigger events.

          +

          The dblclick event is special in that you can prevent the default action, + zoom-in one level, by calling e.preventDefault() in your callback. This is currently the only geomap event that you can prevent the default action. Calling preventDefault in the callback of any other geomap event has undefined results.

          +

          There are three geomap event types. The type of event determines what is sent to your event handler as the second argument, geo.

          +

          position events

          +

          With position events the geo argument to your callback is a GeoJSON Point object having two properties: type & coordinates. The coordinates property is a single GeoJSON position, i.e., an array containing the x/longitude and y/latitude value.

          +

          The geo argument to your callback is a true GeoJSON object and you can pass this object directly to the append method. You can also send it directly to a database for storage knowing that there are no non-GeoJSON properties wasting space.

          + +

          bbox events

          +

          With bbox events the geo argument to your callback is an object with single property, bbox, which is a GeoJSON bounding box.

          + +

          shape events

          +

          With shape events, the geo argument to your callback is a GeoJSON geometry object having two properties: type & coordinates. The object type will be either Point, LineString or Polygon depending on the current geomap mode: drawPoint, drawLineString, or drawPolygon.

          +

          The geo argument to your callback is a true GeoJSON object and you can pass this object directly to the append method. You can also send it directly to a database for storage knowing that there are no non-GeoJSON properties wasting space.

          + +

          methods

          +

          The geomap widget provides some methods to help make interacting map data a little easier.

          +

          unit conversion

          +

          Convert positions between pixel and map coordinates.

          + +

          map methods

          +

          These methods update the map widget as a whole.

          + +

          service modification

          +

          Methods that help update objects in the services array.

          + +

          shapes

          +

          These methods manage geometry or features drawn on the geomap widget itself or on individual servies within the map.

          + +

          The find method allows you to search for shapes appended to the map. Its syntax and service-level operation is slightly different than the other three shape methods so the link is visually broken out from the rest.

          + +

          style

          +

          A geomap style is an object whose properties follow a subset of SVG styling properties. The specific styles that geomap recognizes and to which geometry they apply are listed below.

          +

          Use the drawStyle option of the geomap widget to define the style used on incomplete lines and polygons as they are being drawn when mode is drawLineString or drawPolygon.

          +

          Use the shapeStyle option to define the style of shapes drawn after being appended to the map via the append method.

          +

          Please note that in drawPoint mode, the shape event is triggered immediately and so no shape will appear until you append a point to the map at which time the shapeStyle will be used.

          +

          geomap style properties

          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          propertydefaultdescription
          borderRadius"8px"The radii of a quarter ellipse that defines the shape of the corner of the outer border of a box drawn around Point shapes, which means it turns your boxes into curved rectangles. If the width, height and borderRadius properties of a style are the same (the default), the point is drawn as a circle.
          color#7f0000An indirect, fallback value for the fill and stroke properties if they are not set.
          fillundefinedColor to use when drawing the interior of a shape. The area to be drawn consists of any areas inside the outline of the shape. By default, fill will use the value of the color property.
          fillOpacity.2Specifies the opacity of the drawing operation used to draw the interior of a shape. The final fill opacity also depends on the value of the opacity property.
          height"8px"The height of a box drawn around Point shapes. Currently only pixel values are allowed. If either width or height are zero, no shape is drawn for the Point.
          opacity1The object opacity of the entire shape. This is a multiplicative operation when determining the final fillOpacity and strokeOpacity where any fill or stroke operation is made even more translucent if this value is below 1.0.
          strokeundefinedColor to use when drawing along the outline of a shape. By default, stroke will use the value of the color property.
          strokeOpacity1Specifies the opacity of the drawing operation used to draw the outline of a shape. The final stroke opacity also depends on the value of the opacity property.
          strokeWidth"2px"The width of the stroke of a shape. A zero value causes no stroke to be drawn. Currently only pixel values are allowed.
          visibility"visible"Determines if the shape is drawn ("visible") or not drawn ("hidden") on the map. Shapes that are hidden can still be returned by the find method.
          width"8px"The width of a rounded rectangle drawn around Point shapes. Currently only pixel values are allowed. If either width or height are zero, no shape is drawn for the Point.
          +

          All properties apply to Point shapes which means that you can adjust the stroke and fill of the box surrounding the point location.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/measureLabels.html b/libs/js/jquery-geo-1.0a4/docs/geomap/measureLabels.html new file mode 100755 index 0000000..4a3d60b --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/measureLabels.html @@ -0,0 +1,62 @@ + + + + + + + measureLabels | geomap + + + + + + + + + + + +
          +
          +

          measureLabels

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeObject
          default
          {
          +  length: "{{=length}} m",
          +  area: "{{=area}} sq m"
          +}
          init
          $( selector ).geomap( { measureLabels: { length: "{{=length}} meters" } } );
          get
          var measureLabels = $( selector ).geomap( "option", "measureLabels" );
          set
          $( selector ).geomap( "option", "measureLabels", { area: "{{=area}} square meters" } );
          +

          The measureLabels option controls how the length or area text is formatted when displayed on the map during measuring.

          +

          In the label strings, the {{= }} syntax is used as a placeholder for the current length or area. All other text is displayed verbatim.

          +

          The developer may change each measureLabels property separately during both initialization of the widget or any time after.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/mode.html b/libs/js/jquery-geo-1.0a4/docs/geomap/mode.html new file mode 100755 index 0000000..d1327ef --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/mode.html @@ -0,0 +1,298 @@ + + + + + + + mode | geomap + + + + + + + + + + + +
          +
          +

          mode

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeString
          default"pan"
          init
          $( selector ).geomap( { mode: "pan" } );
          get
          var mode = $( selector ).geomap( "option", "mode" );
          set
          $( selector ).geomap( "option", "mode", "drawPoint" );
          +

          The mode option determines how the map responds to user interaction and which events the developer receives.

          + +

          The current list of built-in modes is:

          +
            +
          • static
          • +
          • pan
          • +
          • zoom
          • +
          • drawPoint
          • +
          • drawLineString
          • +
          • drawPolygon
          • +
          • measureLength
          • +
          • measureArea
          • +
          + +

          You are free to set mode to any other string, this is called custom modes in jQuery Geo and described at the end of this page.

          + +

          options

          +

          Each mode has a matching property on the cursors option. For example, to change the cursor for drawPoint mode to an I-beam, you can initialize the geomap widget like this:

          +
          $( selector ).geomap( { cursors: { drawPoint: "text" } } )
          + +

          The drawStyle option determines how shapes look while being drawn in all of the draw modes and all of the measure modes.

          + +

          The measureLabels option determines how the text is formatted while using the measure modes.

          + +

          You can remove a user's ability to pan the map by setting the panning option to false. Yes, you can disable panning even when mode is set to "pan".

          + +

          You can shut off mouse wheel scroll in any mode by setting the scroll option to "off".

          + +

          However, when mode is static, setting panning to true or scroll to "zoom" will not enable panning or mouse wheel zoom. In static mode, the geomap widget ignores the panning and scroll options.

          + +

          style

          +

          The label containing the measure length or area text has the geo-measure-label CSS class. To change how the measure text looks, you can update properties in that rule:

          + +
          .geo-measure-label { font-size: 1.5em; }
          + +

          static

          + +

          user experience

          +

          The default cursor is the default arrow pointer.

          +

          The map widget displays tiles and map images as normal but the user cannot interact with them, e.g., the user can't pan or zoom in any way, even if the pannable option is set to true.

          + +

          As a developer, you can still call geomap methods and set options in order to change the static map's appearance. Events are not triggered when you change the map programmatically.

          + +

          events

          +

          All regular browser events bubble up to parent controls and eventually the document. No widget-specific events trigger.

          + +

          pan

          +

          user experience

          +

          The default cursor is an open hand in browsers that support data URIs and a four point arrow otherwise.

          + +

          The user can drag the map to pan. The map will continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. They can also double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          + +

          events

          +

          In pan mode, the geomap widget triggers the following events on the original map div.

          +
            +
          • move – when the user moves the mouse above the map but is not actively panning
          • +
          • click – when the user clicks or taps a point on the map without initiating a pan, i.e., they let go of the map at the same point and within a short time threshold
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map
          • +
          • bboxchange – when the user changes the bbox by panning or zooming
          • +
          + +

          zoom

          + +

          user experience

          +

          The default cursor is a crosshair.

          + +

          In this mode the user can perform a marquee zoom by clicking and holding one point and dragging the mouse cursor. A box will form. When the user lets go of the mouse, the map will zoom to the closest approximation of the bbox of the drawn shape.

          +

          Shingled (dynamic) services are only limited by the ratio between the size of the drawn shape and the map div's current size. Cached services are limited to those as well but also specific map zoom levels so the final bbox will not be as close.

          +

          The user can also zoom in or out with the scroll wheel as well as double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          +

          This is not a very useful mode for mobile applications but provides a more exact method of zooming into an area for desktop users who want it.

          + +

          events

          +

          In zoom mode the geomap widget triggers the following events on the original map div.

          +
            +
          • move – when the user moves the mouse above the map but is not actively performing a marquee zoom
          • +
          • click – when the user clicks or taps a point on the map without initiating a marquee zoom, i.e., they let go of the map at the same point and within a short time threshold
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map
          • +
          • bboxchange – when the user changes the bbox by zooming
          • +
          + +

          drawPoint

          + +

          user experience

          +

          The default cursor is a crosshair.

          + +

          In this mode the user can digitize a Point shape by single-clicking or tapping the map. Apart from the default cursor, this mode is similar to pan in that the user can drag the map to pan. However, to allow a user more accuracy during digitization, the map will not continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. They can also double-click or double-tap to zoom in one level.

          + +

          A visual point will appear temporarily until they either let go to draw the point or begin panning.

          + +

          Similar to pan mode, the user can drag the map to pan. However, to allow a user more accuracy during digitization, the map will not continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. They can also double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          + +

          events

          +

          In drawPoint mode, the geomap widget triggers the following events on the original map div. Note that the shape event replaces the click event.

          +
            +
          • move – when the user moves the mouse above the map but is not actively panning
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map
          • +
          • bboxchange – when the user changes the bbox by panning or zooming
          • +
          • shape – when the user clicks or taps a point on the map, this action will send a GeoJSON Point object to the developer
          • +
          + +

          drawLineString

          + +

          user experience

          +

          The default cursor is a crosshair.

          + +

          In this mode the user can digitize a LineString shape. The first single-click or tap on the map will begin the shape drawing. Once initialized, subsequent single-clicks will add points to the LineString. Finally, a double-click or tap will end the digitization and trigger the shape event.

          + +

          On a non-touch device a visual line will follow the mouse cursor from the last point to show the user the next segment of the line they will draw. On all devices, the next segment becomes visible when the user confirms the next point location by clicking or tapping. At any point, the user can hit the escape key to remove one point or, if there is only one point, stop drawing the shape alltogether.

          + +

          Similar to pan mode, the user can drag the map to pan, even while drawing a shape. However, to allow a user more accuracy during digitization, the map will not continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. While not drawing, they can also double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          + +

          events

          +

          In drawLineString mode, the geomap widget triggers the following events on the original map div.

          +
            +
          • move – when the user moves the mouse above the map but is not actively panning, this event triggers even while drawing a shape
          • +
          • click – when the user clicks or taps a point on the map without initiating a pan, this event triggers even while drawing a shape
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map but is not actively drawing
          • +
          • bboxchange – when the user changes the bbox by panning or zooming
          • +
          • shape – when the user double-clicks or taps a point on the map after beginning a drawing operation with a single click, this action will send a GeoJSON LineString object to the developer
          • +
          + +

          drawPolygon

          + +

          user experience

          +

          The default cursor is a crosshair.

          + +

          In this mode the user can digitize a Polygon shape. The first single-click or tap on the map will begin the shape drawing. Once initialized, subsequent single-clicks will add points to the Polygon. Finally, a double-click or tap will end the digitization and trigger the shape event.

          + +

          On a non-touch device two visual lines will follow the mouse cursor. One from the last point to show the user the next segment of the Polygon they will draw, the other from the first point to show the user an extra segment that will complete the Polygon. On all devices, the next segment becomes visible when the user confirms the next point location by clicking or tapping. At any point, the user can hit the escape key to remove one point or, if there is only one point, stop drawing the shape alltogether.

          + +

          Similar to pan mode, the user can drag the map to pan, even while drawing a shape. However, to allow a user more accuracy during digitization, the map will not continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. While not drawing, they can also double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          + +

          events

          +

          In drawPolygon mode, the geomap widget triggers the following events on the original map div.

          +
            +
          • move – when the user moves the mouse above the map but is not actively panning, this event triggers even while drawing a shape
          • +
          • click – when the user clicks or taps a point on the map without initiating a pan, this event triggers even while drawing a shape
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map but is not actively drawing
          • +
          • bboxchange – when the user changes the bbox by panning or zooming
          • +
          • shape – when the user double-clicks or taps a point on the map after beginning a drawing operation with a single click, this action will send a GeoJSON Polygon object to the developer
          • +
          + +

          measureLength

          + +

          user experience

          +

          The default cursor is a crosshair.

          + +

          In this mode the user can visually measure the length of lines on the map. The first single-click or tap on the map will begin the measurement. Once initialized, subsequent single-clicks or taps will add points to a LineString being measured. Whenever the mouse moves, a label follows the cursor which displays the total length so far. Touch devices will only see an updated measurment when they add a new point. A double-click or tap will end the measurement and remove all graphics and labels.

          + +

          On a non-touch device a visual line will follow the mouse cursor from the last point to show the user the next segment of the line they are measuring and update the measurement. On all devices, the next segment becomes visible when the user confirms the next point location by clicking or tapping. At any point, the user can hit the escape key to remove one point or, if there is only one point, stop measuring alltogether.

          + +

          Similar to pan mode, the user can drag the map to pan, even while measuring. The map will continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. While not measuring, they can also double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          + +

          By default the unit of measurment is meters because the default projection is web mercator meters. If you change the tilingScheme (on tiled services) or switch to a shingled service, the unit of measurment will be based on your new service's units.

          +

          events

          +

          In measureLength mode, the geomap widget triggers the following events on the original map div.

          +
            +
          • move – when the user moves the mouse above the map but is not actively panning, this event triggers even while measuring
          • +
          • click – when the user clicks or taps a point on the map without initiating a pan, this event triggers even while measuring
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map but is not actively measuring
          • +
          • bboxchange – when the user changes the bbox by panning or zooming
          • +
          + +

          measureArea

          + +

          user experience

          +

          The default cursor is a crosshair.

          + +

          In this mode the user can visually measure an area on the map. The first single-click or tap on the map will begin the measurement. Once initialized, subsequent single-clicks or taps will add points to a Polygon being measured. Whenever the mouse moves, a label follows the center of the polygon that displays the total area so far. Touch devices will only see an updated measurment when they add a new point. A double-click or tap will end the measurement and remove all graphics and labels.

          + +

          On a non-touch device two visual lines will follow the mouse cursor. One from the last point to show the user the next segment of the Polygon they will draw, the other from the first point to show the user an extra segment that will complete the Polygon we need to calculate area. On all devices, the next segment becomes visible when the user confirms the next point location by clicking or tapping. At any point, the user can hit the escape key to remove one point or, if there is only one point, stop measuring alltogether.

          + +

          Similar to pan mode, the user can drag the map to pan, even while measuring. The map will continue panning a little after the user lets go. They can zoom in or out with the scroll wheel. While not measuring, they can also double-click or double-tap to zoom in one level. On some multitouch devices, users can use two fingers to "pinch zoom" (currently not available on Android).

          + +

          By default the unit of measurment is meters because the default projection is web mercator meters. If you change the tilingScheme (on tiled services) or switch to a shingled service, the unit of measurment will be based on your new service's units.

          + +

          events

          +

          In measureArea mode, the geomap widget triggers the following events on the original map div.

          +
            +
          • move – when the user moves the mouse above the map but is not actively panning, this event triggers even while measuring
          • +
          • click – when the user clicks or taps a point on the map without initiating a pan, this event triggers even while measuring
          • +
          • dblclick – when the user double-clicks or double-taps a point on the map but is not actively measuring
          • +
          • bboxchange – when the user changes the bbox by panning or zooming
          • +
          + +

          custom modes

          + +

          As mentioned above, you can also set mode to any other string. It will behave exactly like pan mode. However, you can set a different cursor:

          + +
          var map = $( "#map" ).geomap( {
          +  mode: "click",
          +  cursors: { click: "crosshair" }
          +} );
          + +

          The above example creates a new custom mode, click, and sets the geomap widget to that mode during initialization. When the widget is in this mode, it will behave exactly like pan, but have a crosshair. This means you will get all the same events as pan: move, click, dblclick & bboxchange. A mode like this is useful if you want to give users more accuracy when clicking the map.

          + +

          Custom modes will still allow panning. While panning, the cursor will temporarily switch to the pan cursor. You can disable panning for your mode by setting the widget's panning option to false whenever you change the mode option.

          + +
          function setMode( mode ) {
          +  map.geomap( "option", {
          +    mode: mode,
          +    panning: mode !== "click"
          +  } );
          +}
          + +

          In this last example, we create a new map with two modes, find and remove. They both trigger the click event so we can check our current mode and behave differently depending on which one is set, or do nothing if we're not in find or remove mode.

          + +
          var map = $( "#map" ).geomap( {
          +  mode: "drawPoint",
          +  cursors: {
          +    find: "crosshair",
          +    remove: "crosshair"
          +  },
          +  shape: function( e, geo ) {
          +    // only the draw modes trigger this event
          +    map.geomap( "append", geo );
          +  },
          +  click: function( e, geo ) {
          +    switch( map.geomap( "option", "mode" ) ) {
          +      case "find":
          +        // search for shapes but just alert the user
          +        var shapes = map.geomap( "find", geo, 3 );
          +        if ( shapes.length > 0 ) {
          +          alert( "Found " + shapes.length + " shape(s) !" );
          +        }
          +        break;
          +
          +      case "remove":
          +        // search for shapes and remove one of them
          +        var shapes = map.geomap( "find", geo, 3 );
          +        if ( shapes.length > 0 ) {
          +          map.geomap( "remove", shapes[ 0 ] );
          +        }
          +        break;
          +
          +      default:
          +        // ignore the click event for all other modes: pan, zoom, etc.
          +        break;
          +    }
          +  }
          +} );
          + +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/opacity.html b/libs/js/jquery-geo-1.0a4/docs/geomap/opacity.html new file mode 100755 index 0000000..104284f --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/opacity.html @@ -0,0 +1,88 @@ + + + + + + + opacity | geomap + + + + + + + + + + + +
          +
          +

          opacity

          +
          + +
          + + + + + + + + + + + + + +
          return typeundefined
          syntax$( map or service selector ).geomap( "opacity", Number opacity )
          usage
          $("#map").geomap( "opacity", .5 )
          +$("#map .osm").geomap( "opacity", .7 )
          +
          +

          This method sets the value of the opacity property of service objects in the services array.

          +

          It will also update the opacity of all images already requested by the service.

          +

          If you call opacity directly on geomap's div element, it will apply to all services. You can target individual services using a CSS selector based on the map div id and the class supplied for the service in its service object or just the id of the service if supplied in its service object.

          +
          // for example, given the following as the map div
          +<div id="map"></div>
          +
          +// and initializing geomap with the following services
          +$("#map").geomap({
          +  services: [
          +    {
          +      id: "water",
          +      class: "mass-gis",
          +      type: "shingled",
          +      src: function ( view ) { return null; }
          +    },
          +    {
          +      id: "towns",
          +      class: "mass-gis",
          +      type: "shingled",
          +      src: function ( view ) { return null; }
          +    },
          +    {
          +      id: "harbor-cruise",
          +      type: "shingled",
          +      src: function ( view ) { return null; }
          +    }
          +  ]
          +});
          +
          +// you can later change the opacity of all services
          +$("#map").geomap("opacity", .8);
          +
          +// all mass-gis services
          +$("#map .mass-gis").geomap("opacity", .5);
          +
          +// or a specific service
          +$("#harbor-cruise").geomap("opacity", 1.0);
          +

          This is much faster than changing a service object's opacity value yourself and updating geomap's services property.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/pannable.html b/libs/js/jquery-geo-1.0a4/docs/geomap/pannable.html new file mode 100755 index 0000000..c05b5ca --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/pannable.html @@ -0,0 +1,62 @@ + + + + + + + pannable | geomap + + + + + + + + + + + +
          +
          +

          pannable

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeBoolean
          defaulttrue
          init
          $( map selector ).geomap( { pannable: true } );
          get
          var pannable = $( map selector ).geomap( "option", "pannable" );
          set
          $( map selector ).geomap( "option", "pannable", false );
          + +

          The pannable option determines whether or not a user can pan the map.

          + +

          When true, the default, users can drag the map image or tiles to change the bbox in any mode except for "static". For example, they can pan the map in the middle of drawing a polygon with the drawPolygon mode.

          + +

          When false, a user's dragging of the map image will not cause it to move regardless of what mode the widget is in. Developers can still make programatic changes to the bbox, such as setting options and calling methods.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/pixelSize.html b/libs/js/jquery-geo-1.0a4/docs/geomap/pixelSize.html new file mode 100755 index 0000000..3219e7c --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/pixelSize.html @@ -0,0 +1,60 @@ + + + + + + + pixelSize | geomap + + + + + + + + + + + +
          +
          +

          pixelSize

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeNumber
          default156543.03392799936
          initcannot be initialized
          get
          var pixelSize = $( selector ).geomap( "option", "pixelSize" );
          setread only
          +

          The pixel size is the number of map units a single pixel occupies in the current view. A more interesting way to think of it is the Earth-size of the pixel.

          +

          Because the default internal projection is web mercator meters, the default return value for pixelSize is in meters even if you set other map values in geodetic coordinates, e.g., lon/lat. The unit type will always match the type you set on tilingScheme for tiled maps or bboxMax for shingled (dynamic) maps. For more information on how the plugin handles projections, please read the geo section of this documentation.

          +

          The map's pixel size is read-only. To change it you will need to use one of the mutable properties such as bbox, center or zoom.

          +

          pixelSize is calculated based on tilingScheme & zoom for tiled maps. It is based on the bbox/bboxMax ratio for shingled maps.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/refresh.html b/libs/js/jquery-geo-1.0a4/docs/geomap/refresh.html new file mode 100755 index 0000000..768c76e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/refresh.html @@ -0,0 +1,51 @@ + + + + + + + refresh | geomap + + + + + + + + + + + +
          +
          +

          refresh

          +
          + +
          + + + + + + + + + + + + + +
          return typeundefined
          syntax.geomap( "refresh" )
          usage
          $("#map").geomap( "refresh" )
          +

          + This method refreshes + all services and graphics in the map. Usually, changing geomap properties or calling methods automatically refreshes the map appropriately. However, you can call this after you have added or removed shapes to geomap by passing false as the refresh argument to the append, remove, or empty methods.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/remove.html b/libs/js/jquery-geo-1.0a4/docs/geomap/remove.html new file mode 100755 index 0000000..3e00bec --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/remove.html @@ -0,0 +1,64 @@ + + + + + + + remove | geomap + + + + + + + + + + + +
          +
          +

          remove

          +
          + +
          + + + + + + + + + + + + + +
          return typejQuery collection
          syntax.geomap( "remove", Object shape [ , Boolean refresh ] )
          usage
          $( map or service selector ).geomap( "remove", existingShape )
          +$( map or service selector ).geomap( "remove", existingShape, false )
          +

          The remove method removes a shape you have previously added with the append method. The existing shape can be an object reference used in a call to append that you have held on to or one that you retrieved by using the find method.

          +

          The jQuery UI widget factory returns the original jQuery collection to maintain call chaining.

          +

          delaying refresh

          +

          The optional refresh argument determines if geomap refreshes the map graphics after this call to remove. It defaults to true. If you pass false, geomap will remove the shape internally but not immediately redraw the graphics. The changes will display if the user moves the map or you call geomap's refresh method.

          +

          If the shape is not found on the specified service, the map is not changed and will not be refreshed even if you pass true for the refresh argument.

          +

          service-level shapes

          +

          Similar to how you can append shapes to specific services, you can remove shapes from specific services as well.

          +

          You do this by targeting a service inside a map instead of the map itself for your call to geomap's remove method. For example, the default map service has the CSS class: osm. We can remove a shape from that service specifically by using jQuery to target the service:

          +
          $( "#map .osm" ).geomap( "remove", shape );
          +

          Shapes appended to a specific service will not be removed by calling remove on the map itself. For example, the shape will remain after this sequence:

          +

          $( "#map .osm" ).geomap( "append", shape );
          +$( "#map" ).geomap( "remove", shape );
          +

          To remove all references to a shape from the map and all services, you can use the comma selector and the built-in geo-service CSS class:

          +
          // remove the shape from both the map widget and any services
          +$( "#map,#map .geo-service" ).geomap( "remove", shape );
          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/resize.html b/libs/js/jquery-geo-1.0a4/docs/geomap/resize.html new file mode 100755 index 0000000..73303cf --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/resize.html @@ -0,0 +1,54 @@ + + + + + + + resize | geomap + + + + + + + + + + + +
          +
          +

          resize

          +
          + +
          + + + + + + + + + + + + + +
          return typeundefined
          syntax.geomap( "resize" )
          usage
          $("#map").geomap( "resize" )
          +

          + This method tells the geomap widget to recalculate its frame and adjust its bbox to fit a new size. The map will maintain its center point and pixel size and expand or contract to fill the new surroundings.

          +

          + The geomap widget watches the browser window for you. If your map widget's div position is related to the window in some way, geomap will automatically resize to fit when the window size changes. If the map widget's div is not related to the window and you manually change its size, you need to call resize so that the map can adjust.

          +

          + This method refreshes the map.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/scroll.html b/libs/js/jquery-geo-1.0a4/docs/geomap/scroll.html new file mode 100755 index 0000000..dd28b15 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/scroll.html @@ -0,0 +1,62 @@ + + + + + + + scroll | geomap + + + + + + + + + + + +
          +
          +

          scroll

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeString
          default"default"
          init
          $( map selector ).geomap( { scroll: "default" } );
          get
          var scroll = $( map selector ).geomap( "option", "scroll" );
          set
          $( map selector ).geomap( "option", "scroll", "off" );
          + +

          The scroll option determines what the map widget does when the user rotates a mouse wheel. There are currently three values: default, zoom, and off. However, default is currently the same as zoom.

          + +

          When scroll is default or zoom, users can use a mouse wheel to zoom the map in or out.

          + +

          When set to off, mouse wheel scrolling is ignored. This is useful when the document itself or a section that contains the map requires scrolling due to content. A desktop user will expect to be able to use the mouse wheel to scroll the document and you don't want the map to interfere. For example, if the user's mouse cursor is over a map that's part of a long document, there's a greater chance they will want the mouse wheel to scroll document instead of zooming the map. Set the scroll property to "off" to ensure the wheel will work as expected.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/services.html b/libs/js/jquery-geo-1.0a4/docs/geomap/services.html new file mode 100755 index 0000000..77edce6 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/services.html @@ -0,0 +1,167 @@ + + + + + + + services | geomap + + + + + + + + + + + +
          +
          +

          services

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          typeArray
          default
          [ {
          +  "class": "osm",
          +  type: "tiled",
          +  src: function( view ) {
          +    return "http://tile.openstreetmap.org/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png";
          +  },
          +  attr: "&copy; OpenStreetMap &amp; contributors, CC-BY-SA"
          +} ]
          init
          $( selector ).geomap( { services: [ {
          +  "class": "osm",
          +  type: "tiled",
          +  src: function( view ) {
          +    return "http://tile.openstreetmap.org/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png";
          +  },
          +  attr: "&copy; OpenStreetMap &amp; contributors, CC-BY-SA",
          +  style: {
          +    visibility: "visible",
          +    opacity: 1.0
          +  }
          +} ] } );
          get
          var services = $( selector ).geomap( "option", "services" );
          set
          $( selector ).geomap( "option", "services", [ {
          +  id: "mapquest-open",
          +  "class": "basemap",
          +  type: "tiled",
          +  src: function( view ) {
          +    return "http://otile" + ((view.index % 4) + 1) + ".mqcdn.com/tiles/1.0.0/osm/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png";
          +  },
          +  attr: "<p>Tiles Courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'></p>"
          +} ] );
          + +

          The services option is an array of service objects. The service objects are JavaScript objects that control how the geomap widget displays map images.

          + +

          By default, geomap will display OpenStreetMap tiles. You can change all services at once by setting this option with an entirely new array of service objects. You can set a specific part of of a specific service by getting the current array, modifying, adding, or deleting one of the service objects and then re-setting the services option with the modified array.

          + +
          // get the current services array
          +var services = map.geomap( "option", "services" );
          +
          +// add a service
          +services.push( {
          +  id: "Ortho_MapQuest",
          +  type: "tiled",
          +  src: function (view) {
          +    return "http://oatile" + ((view.index % 4) + 1) + ".mqcdn.com/naip/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png";
          +  },
          +  attr: "<p>Tiles Courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest<a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'><p>"
          +} );
          +
          +// re-set the services option
          +map.geomap( "option", "services", services );
          + +

          service object

          + +

          A service object has six properties, two of which are required. The id and class properties are optional but at least one is recommended so you can target specific services with the toggle and opacity methods.

          +

          id

          +

          Each service can have an id that distinguishes it from other service objects in the array. The id is a string and must be follow the HTML element id naming conditions. If present, the id must be unique across all services in all maps as well as unique from any other HTML element on the page. The default service object of a geomap widget does not have an id.

          +

          class

          +

          Each service can have a class as well. The class is a string and must be follow the CSS class naming conditions. You can consider this as the class of images the service will supply and usually name it after the service, such as osm, mass-gis, etc. The default service object of a geomap widget has the class: osm.

          +

          All services also get the class geo-service whether you supply a class to the service object or not. Therefore, the default service is both .osm (as part of its service object) and .geo-service (as added by the widget).

          +

          Unfortunately, class is a reserved word in JavaScript. When you specify class in your service object, you must quote the word class. This is exactly how it's done in jQuery itself when applying attributes to an element based on an object. To quote the jQuery API:

          +
          The name "class" must be quoted since it is a JavaScript reserved word, and "className" cannot be used since it is not the correct attribute name.
          +

          type

          +

          A service object has a type property which is either "tiled" or "shingled". Tiled servies will get one image request per tile needed to fill a given view when the map refreshes. The tile request's bbox will only be the size of the given tile. Shingled services will get only one image request each time the map refreshes and the bbox will be the extent of the whole map view.

          +

          src

          +

          The src property of a service object can be one of the following three options:

          +
            +
          • a function that accepts an object specifying information about the current image request which returns a URL to an image or null to indicate that no image is available or required
          • +
          • a function that accepts an object specifying information about the current image request which returns a jQuery Promise object and, later, calls either resolve passing a URL to an image or reject to indicate that no image is available
          • +
          • a template string that the geomap widget can use to build a URL itself
          • +
          +

          For tiled services, the image is placed at the tile location specified. For shingled services, the image will fill the whole map view.

          +

          If the browser's request of the image results in a 404 status the map will not show that tile or image.

          +

          When src is a function, the argument to that function has the following properties:

          + + + + + + + + + + + + + + + + + + + +
          bbox (Array)A GeoJSON bounding box of the current tile or image in map units. The map unit type (projected or geodetic) depends on how you last set the bbox or center options on the geomap widget.
          width (Number)The width of the tile or image in pixels.
          height (Number)The height of the tile or image in pixels.
          zoom (Number)The current zoom level of the map during this request.
          tile (Object)If the service is tiled, this object has column and row properties specifying the location of the tile of this request in the current zoom, otherwise it is null.
          index (Number)A whole number which is usually incremented between requests that you can use to cycle image URLs to different index, e.g., if there are four servers hosting the same tile images named tile0, tile1, tile2 and tile3 you can target them in your src function with the string: "tile" + (view.index % 4).
          +

          You can use the properties of this argument to build and return a URL (or initiate an AJAX request and return a Promise).

          +

          For more infomration about returning a jQuery Promise, please read the section on Deferred Objects in the jQuery API documentation. It might useful to know that, as of jQuery 1.5, the $.ajax method returns a Promise object. If your ajax call returns a URL to an image, your src function can look something like this:

          +
          src: function ( view ) { return $.ajax( { ... } ); }
          +

          When src is a string, those same properties can be used in the template by surrounding each property with: {{=propertyName}}.

          +

          The default value for src is a function because it is slightly faster than rendering a template. However, as an example, we can rewrite the default src function as a template string:

          +
          src: "http://tile.openstreetmap.org/{{=zoom}}/{{=tile.column}}/{{=tile.row}}.png"
          +

          A couple advantages of using a string are that it is more concise and, unlike a function, can be stored as JSON.

          +

          You do not have to have template parameters in the string, so if you want a static map image, you can set src to a static URL.

          +

          attr

          +

          The attr property is optional. It stands for attribution and is a way to give credit to the source of your map imagery. It defaults to an empty string if not specified in a service object. When present, the map widget displays the HTML provided on the bottom-left corner of the map when the service is visible. Users can click links but cannot interact with all other text or images.

          +

          style

          +

          The style property is optional. It contains presentation options for the service.

          + +

          The visibility property defaults to "visible". It determines whether or not the map will show images from this service while refreshing. You can change the visibility of a service either by changing the visibility property of the service object to "visible" or "hidden" and then setting geomap's services option or by using the toggle method of the geomap widget. The latter is recommended because it is a lot faster and does not cause services to be recreated.

          + +

          The opacity defaults to 1.0. It determines how transparent a service is when it is visible. Valid values are floating point numbers between 0 and 1 inclusive. Services with an opacity of 0 will not show on the map even if visible is true. You can change the opacity of a service either by changing the opacity property of the service object and then setting geomap's services option or by using the opacity method of the geomap widget. The latter is recommended because it is a lot faster and does not cause services to be recreated.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/shapeStyle.html b/libs/js/jquery-geo-1.0a4/docs/geomap/shapeStyle.html new file mode 100755 index 0000000..692626b --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/shapeStyle.html @@ -0,0 +1,115 @@ + + + + + + + shapeStyle | geomap + + + + + + + + + + + +
          +
          +

          shapeStyle

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeObject ( geomap style )
          default
          {
          +  borderRadius: "8px",
          +  color: "#7f0000",
          +  fillOpacity: .2,
          +  height: "8px",
          +  opacity: 1,
          +  strokeOpacity: 1,
          +  strokeWidth: "2px",
          +  visibility: "visible",
          +  width: "8px"
          +}
          +
          init
          $( map or service selector ).geomap( { shapeStyle: { color: "green" } } );
          get
          var shapeStyle = $( map or service selector ).geomap( "option", "shapeStyle" );
          set
          $( map or service selector ).geomap( "option", "shapeStyle", { strokeWidth: "4px" } );
          +

          The shapeStyle option retrieves or updates the base style of shapes appended to the map.

          +

          This differs from the drawStyle option which defines the style of incomplete lines and polygons as they are being drawn.

          +

          Two extra color properties, stroke and fill, are not defined by default and use the value of the color property until they are defined individually.

          +

          This option changes specific properties of the internal base style. If you send an incomplete style object, only the style properties you reference are updated.

          +

          Similar to CSS, you can override this style on a per-shape basis by passing a different style to the append method.

          +

          Changing this base style will update how geomap draws existing shapes that do not have their own style. For shapes that do have their own style, changing the base shapeStyle will update any style properties not referenced in the shape-specific style. For example, assume the following:

          +
            +
          1. + the base shapeStyle starts with its initial style having a red stroke color and strokeWidth of 2px +
            $( "#map" ).geomap( );
            +
          2. +
          3. + you call append with a style that increases the stroke width to 4px but does not supply a stroke color +
            $( "#map" ).geomap(
            +  "append",
            +  { type: "Point", coordinates: [ -71, 42 ] },
            +  { strokeWidth: "4px" }
            +);
            +
          4. +
          5. + you later change the base shapeStyle's stroke color to blue +
            $( "#map" ).geomap( "option", "shapeStyle", { stroke: "#00f" } );
            +
          6. +
          +

          The shape described in the above example will draw with a blue stroke color and a strokeWidth of 4px.

          +

          You can also set a base style for a specific service. These are called service-level styles and apply only to service-level shapes. To do this, target a service inside a map instead of the map itself for your call to geomap's shapeStyle option. To expand upon the above example, consider the following additional steps:

          +
            +
          1. + you change the shapeStyle option of the default service specifically so that points are twice as long as usual; the default service has the CSS class: osm +
            $( "#map .osm" ).geomap( "option", "shapeStyle", { width: "16px" } )
            +
          2. +
          3. + you append a second point directly to the default .osm service +
            $( "#map .osm" ).geomap( 
            +  "append",
            +  { type: "Point", coordinates: [ -70.5, 42.5 ] }
            +);
            +
          4. +
          +

          This second point will:

          +
            +
          • have a blue stroke color because it cascades from the base shapeStyle for the map as a whole (which you set with your first call to shapeStyle)
          • +
          • have a strokeWidth of only 2px because it is unaffected by the style applied to the first shape during the first append call
          • +
          • have a width of 16px which it gets from the shapeStyle of the service where it was appended
          • +
          +

          This is the only option that can be applied to services. All other options require a reference to the original map element.

          +

          When called with a second argument to set the shapeStyle, the jQuery UI widget factory returns the original jQuery collection to maintain call chaining.

          +

          Please see the style section at the bottom of the geomap widget page for more information about the style object.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/tilingScheme.html b/libs/js/jquery-geo-1.0a4/docs/geomap/tilingScheme.html new file mode 100755 index 0000000..50e1ad8 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/tilingScheme.html @@ -0,0 +1,85 @@ + + + + + + + tilingScheme | geomap + + + + + + + + + + + +
          +
          +

          tilingScheme

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeObject
          default
          {
          +  tileWidth: 256,
          +  tileHeight: 256,
          +  levels: 18,
          +  basePixelSize: 156543.03392799936,
          +  pixelSizes: null,
          +  origin: [ -20037508.342787, 20037508.342787 ]
          +}
          init
          $( selector ).geomap( { tilingScheme: {
          +  tileWidth: 256,
          +  tileHeight: 256,
          +  levels: 18,
          +  basePixelSize: 156543.03392799936,
          +  pixelSizes: null,
          +  origin: [ -20037508.342787, 20037508.342787 ]
          +} } );
          get
          var tilingScheme = $( selector ).geomap( "option", "tilingScheme" );
          set
          $( selector ).geomap( "option", "tilingScheme", null );
          +

          The tilingScheme property defines a grid that the geomap widget can use to build a map view as adjacent tiles instead of a single, full image each time.

          +

          Only tiled services will get a non-null tile property as an argument to their src method or template. Shingled services, even when layered on top of a tiled map will only get bbox data.

          +

          When a tilingScheme is set, the geomap widget will limit the user to specific zoom levels defined by the tiling scheme.

          +

          You can set the map widget to be fully dynamic and allow any arbitrary zoom level by setting the tilingScheme to null. This is only useful if all of your services are backed by live spatial data and can produce map images at any scale.

          +

          This is one of the few places where you must use non-geodetic (i.e., non-lon/lat) units even if you are using longitude & latitude for properties such as center or bbox. You must use projected units when defining a tiling scheme. The default map tiles use web mercator meters.

          +

          + All tilingScheme objects have the first three of the following properties. Apart from those, a tilingScheme object must have either just the pixelSizes property or both basePixelSize & levels.

          + + + + + + + +
          tileWidth (Number)the width in pixels of a single tile
          tileHeight (Number)the height in pixels of a single tile
          origin (Array<Number>)a GeoJSON position for the top-left corner of the map tiles in map units, this is used to correctly position tiles into the map view
          pixelSizes (Array<Number>)an array of all pixel sizes (called resolutions on Esri's products) hosted by the map service, each one represents a zoom level therefore the total number of zoom levels equals the length of the pixelSizes array
          basePixelSize (Number)the pixelSize represented by the tiles on zoom level 0, used when each pixelSize is a power of two smaller than the previous one
          levels (Number)the total number of pixelSizes allowed, used in conjuction with basePixelSize to determine how far a user is allowed to zoom
          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/toMap.html b/libs/js/jquery-geo-1.0a4/docs/geomap/toMap.html new file mode 100755 index 0000000..ce3f516 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/toMap.html @@ -0,0 +1,51 @@ + + + + + + + toMap | geomap + + + + + + + + + + + +
          +
          +

          toMap

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray (GeoJSON positions)
          syntax.geomap( "toMap", Array pixelPositions )
          usage
          var mapPos = $("#map").geomap( "toMap", [ 120, 240 ] )
          +var mapPositions = $("#map").geomap( "toMap", [ [ 120, 240 ], [ 192, 48 ] ] )
          +

          The toMap method takes a single pixel position (which is an array of two values: the left and top of the pixel), an array of pixel positions, an array of arrays of pixel positions, or an array of arrays of arrays of pixel positions. In other words, it accepts the pixel representation of the coordinates of any geometry up to MultiPolygon. It returns the map coordinates for all of the pixel positions.

          +

          The return coordinates are in projected map units if you have previously set the bbox or center options using projected coordinates. Otherwise, they are in geodetic (lon, lat) coordinates.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/toPixel.html b/libs/js/jquery-geo-1.0a4/docs/geomap/toPixel.html new file mode 100755 index 0000000..be26d30 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/toPixel.html @@ -0,0 +1,51 @@ + + + + + + + toPixel | geomap + + + + + + + + + + + +
          +
          +

          toPixel

          +
          + +
          + + + + + + + + + + + + + +
          return typeArray (GeoJSON positions)
          syntax.geomap( "toPixel", Array mapPositions )
          usage
          var pixelPos = $("#map").geomap( "toPixel", [ -71.098709, 42.330322 ] )
          +var pixelPositions = $("#map").geomap( "toPixel", [ [ -71.098709, 42.330322 ], [ -71.072617, 42.351608 ] ] )
          +

          The toPixel method takes a single GeoJSON position (Point.coordinates), an array of GeoJSON positions (MultiPoint.coordinates or LineString.coordinates), an array of arrays of positions (MultiLineString.coordinates or Polygon.coordinates) or an array of arrays of arrays of positions (MultiPolygon.coordinates). It returns the pixel coordinates for all of the map positions.

          +

          You can pass geodetic (lon, lat) or projected coordinates regardless of how you last set the bbox or center options.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/toggle.html b/libs/js/jquery-geo-1.0a4/docs/geomap/toggle.html new file mode 100755 index 0000000..32396d8 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/toggle.html @@ -0,0 +1,88 @@ + + + + + + + toggle | geomap + + + + + + + + + + + +
          +
          +

          toggle

          +
          + +
          + + + + + + + + + + + + + +
          return typeundefined
          syntax$( map or service selector ).geomap( "toggle" [ , Boolean show_or_hide ] )
          usage
          $("#map").geomap( "toggle" )
          +$("#map .osm").geomap( "toggle", false )
          +
          +

          This method toggles or sets the visibility property of service objects in the services array.

          +

          If you call toggle directly on geomap's div element, it will apply to all services. You can target individual services using a CSS selector based on the map div id and the class supplied for the service in its service object or just the id of the service if supplied in its service object.

          +
          // for example, given the following as the map div
          +<div id="map"></div>
          +
          +// and initializing geomap with the following services
          +$("#map").geomap({
          +  services: [
          +    {
          +      id: "water",
          +      class: "mass-gis",
          +      type: "shingled",
          +      src: function ( view ) { return null; }
          +    },
          +    {
          +      id: "towns",
          +      class: "mass-gis",
          +      type: "shingled",
          +      src: function ( view ) { return null; }
          +    },
          +    {
          +      id: "harbor-cruise",
          +      type: "shingled",
          +      src: function ( view ) { return null; }
          +    }
          +  ]
          +});
          +
          +// you can later hide all services
          +$("#map").geomap("toggle", false);
          +
          +// all mass-gis services
          +$("#map .mass-gis").geomap("toggle", false);
          +
          +// or a specific service
          +$("#harbor-cruise").geomap("toggle", false);
          +

          If the optional boolean value is not supplied, the visibility of the services will be toggled.

          +

          The change will happen immediately and you do not need to call refresh. This is recommended over manually changing the visibility property of the service object as it does not cause other services to refresh.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/zoom.html b/libs/js/jquery-geo-1.0a4/docs/geomap/zoom.html new file mode 100755 index 0000000..ca7b550 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/zoom.html @@ -0,0 +1,61 @@ + + + + + + + zoom | geomap + + + + + + + + + + + +
          +
          +

          zoom

          +
          + +
          + + + + + + + + + + + + + + + + + + + + + +
          typeNumber
          default0
          init
          $( selector ).geomap( { zoom: 0 } );
          get
          var zoom = $( selector ).geomap( "option", "zoom" );
          set
          $( selector ).geomap( "option", "zoom", 7 );
          +

          The zoom property gets or sets the current zoom of the map view.

          +

          For tiled services the zoom property's range is zero to the current geomap tilingScheme's levels property minus one.

          +

          For shingled services, the zoom property is based on the ratio between sizes of the bbox and bboxMax properties. If they are equal, the zoom property is 0. Smaller bbox areas will have larger zoom values.

          +

          If you attempt to initialize both zoom and bbox at the same time when creating a geomap widget, bbox will be applied and zoom will modify the final bbox.

          +

          Apart from setting the zoom property directly, you can use the zoom method to change the zoom by relative amounts.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/geomap/zoommethod.html b/libs/js/jquery-geo-1.0a4/docs/geomap/zoommethod.html new file mode 100755 index 0000000..cbf3738 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/geomap/zoommethod.html @@ -0,0 +1,60 @@ + + + + + + + zoom | geomap + + + + + + + + + + + +
          +
          +

          zoom

          +
          + +
          + + + + + + + + + + + + + +
          return typeundefined
          syntax.geomap( "zoom", Number numberOfLevels )
          usage
          $("#map").geomap( "zoom", 1 )
          +$("#map").geomap( "zoom", -2 )
          +

          The zoom method can zoom the map in or out by a given number of zoom levels. Positive values zoom the map in, negative values zoom the map out.

          +

          This method will not zoom out beyond zoom level 0. If you are using a tiling scheme, this method will not zoom in past the maximum number of zoom levels defined in the tilingScheme property.

          +

          This method accepts values relative to the map's current zoom level. This is different than the zoom property, which is the map's current zoom level. + It might be useful to add an explicit plus sign when using this zoom method.

          +
          // set the map to zoom level 2
          +$("#map").geomap( "option", "zoom", 2 );
          +
          +// zoom the map in 2 levels from its current zoom
          +$("#map").geomap( "zoom", +2 );
          +

          This method does not trigger events, not even bboxchange.

          +

          There is no default value. Passing null or undefined will not change the map's zoom.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/html/index.html b/libs/js/jquery-geo-1.0a4/docs/html/index.html new file mode 100755 index 0000000..91b7e58 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/html/index.html @@ -0,0 +1,92 @@ + + + + + + + html | jQuery Geo + + + + + + + + + + + +
          +
          +

          html

          +
          + +
          +

          Our geospatial plugin's only widget is a geographic map that you can create on any div with a computable width and height.

          +
          <div style="width: 640px; height: 480px;"></div>
          +

          If the div is not already in relative, absolute or fixed position, the widget will force relative positioning.

          +

          fullscreen

          +

          The div size does not have to be so specific.

          +
          <div style="position: fixed; top: 0; right: 0; bottom: 0; left: 0;"></div>
          +

          As in the above example, you can have the map fill the window by setting position to either absolute or fixed and the top, right, bottom and left properties to all zero. The map will follow the size of the window and recenter when the size of the window changes.

          +

          Fixed position is preferred because it will not create scroll bars when making the window smaller. However, keep in mind that fixed position is not supported by IE6 and can be odd on some mobile browsers. If you do use absolute position, you can set the overflow style property on the body element to hidden and avoid scroll bars.

          +
          <body style="overflow: hidden;">
          +  <div style="position: absolute; top: 0; right: 0; bottom: 0; left: 0;"></div>
          +</body>
          +

          box model

          +

          The map supports divs that have padding, borders and margins. The plugin will create the map where text would normally go in such a situation, i.e., the map content will be inset from the border by the padding amount.

          +
          <style>
          +  #map {
          +    width: 90%;
          +    max-width: 640px;
          +    height: 480px;
          +    padding: 8px;
          +    border: solid 3px #444;
          +    margin: .5em;
          +    background: #ddf;
          +  }
          +</style>
          +<div id="map">O HAI</div>
          +
          O HAI
          +

          inner elements

          +

          Any elements inside the map div can be absolutely positioned and will not interfere with map operation. Map images will appear beneath them. This is useful if you want to layout a scale bar for example.

          +
          <style>
          +  #bar {
          +    position: absolute;
          +    top: 10px;
          +    right: 10px;
          +    padding: 16px;
          +    background: #ccc;
          +    opacity: .8;
          +    border-radius: 8px;
          +    text-align: center;
          +    font-size: 10px;
          +  }
          +  #bar div {
          +    width: 96px;
          +    height: 2px;
          +    margin-bottom: 8px;
          +    background: #444;
          +    color: #444;
          +  }
          +</style>
          +<div id="map"><div id="bar"><div></div><span>1134 meters</span></div></div>
          +
          1134 meters
          +

          This rather large scale bar will not interfere with a user trying to pan the map.

          +

          mobile

          +

          The geomap widget works on modern mobile browsers without any additional JavaScript development. However, some web design is necessary. For starters, as with any mobile development you should add a viewport meta tag into your head element. This should appear above most other tags so the mobile browser can get ready for a mobile page before doing any other work.

          +
          <meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
          +

          If you have done any other mobile web developement, you're probably frowning at my decision to disable the default zoom capability of the device's web browser. If you haven't done much with mobile, I am disabling double-tap to zoom into a page by setting the min and max scale to 1.

          +

          In almost all other cases, I would agree that disabling browser zoom is a bad user experience, however for this example I am considering a full-screen mapping application. With that in mind, double-tap has a whole new meaning and users expect it to zoom the map itself, not the page. It is in this case only that I suggest you disable browser page zoom. If you are targeting modern mobile browsers such as iOS, Android, Windows Phone 7 or Opera Mobile, you can used fixed positioning and the HTML for the full screen mobile app would look like the first fullscreen example:

          +
          <div style="position: fixed; top: 0; right: 0; bottom: 0; left: 0;"></div>
          +

          Other mobile browsers are currently untested.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo-large.png b/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo-large.png new file mode 100755 index 0000000..db2ecf1 Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo-large.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo-small.png b/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo-small.png new file mode 100755 index 0000000..1a9ad85 Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo-small.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo.png b/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo.png new file mode 100755 index 0000000..983402e Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/images/$.geo-logo.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/images/bostonbuilt.png b/libs/js/jquery-geo-1.0a4/docs/images/bostonbuilt.png new file mode 100755 index 0000000..aa18993 Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/images/bostonbuilt.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/images/map.png b/libs/js/jquery-geo-1.0a4/docs/images/map.png new file mode 100755 index 0000000..d41dc4d Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/docs/images/map.png differ diff --git a/libs/js/jquery-geo-1.0a4/docs/index.html b/libs/js/jquery-geo-1.0a4/docs/index.html new file mode 100755 index 0000000..7418079 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/index.html @@ -0,0 +1,147 @@ + + + + + + + jQuery Geo docs + + + + + + + + + + + +
          +
          +

          jQuery Geo docs

          +
          + +
          +

          Welcome!

          + +

          jQuery Geo is an open-source, geospatial mapping jQuery plugin from Applied Geographics developed with the intention of making spatial web mapping significantly simpler than it may initially seem. We would like to point out the term "open-source" to explictly state that Google, Bing, MapQuest, Yahoo! & Esri are generally free but not open.

          + + + +

          Please read the following sections for more information and examples, and thank you for considering us! If you have any questions feel free to ask the lead developer on Twitter.

          + + + +

          docs

          + + + +

          This project takes pride in having easy-to-use, up-to-date documentation. Before any code is committed, these docs are updated with any public API changes and sometimes internal design decisions. The side effect is that the documenation may be ahead of the code at times. Also, any undocumented features you find in the source should be ignored or asked about.

          + +

          examples

          + +

          Now that that's out of the way, here are some code examples! Use these as a suppliment to reading the above sections but above all, have fun!

          + +

          "everything" examples

          + +

          These first two examples attempt to let you test as many of jQuery Geo's features as possible on one page. The first link is a tiled map, i.e., it has a tilingScheme, set-in-stone zoom levels, and uses at least one tiled map service object. The second link is a dynamic map, i.e., it does not have a tilingScheme, displays fully dynamic data from MassGIS, and uses all shingled map service objects. The second type of map usually redraws slower but allows for more accurate zooming.

          + + + +

          You can find isolated examples of individual jQuery Geo features in the component examples section at the bottom of this page.

          + +

          demos

          + +

          The examples in this second set of use the features of jQuery Geo in a more interesting way. They attempt to show & test how you can use different parts jQuery Geo together to build apps and how we can integrate with external data and libraries.

          + + + +

          showcase

          + +

          This third set are more complete examples using jQuery Geo. These try to implement slimmed-down versions of an existing applications and test how jQuery Geo can be used in real-world situations.

          + + + +

          component examples

          + +

          This last set of examples attempts to test various components of jQuery Geo in an insolated way.

          + + + +

          internals

          + +

          Lastly, short of looking through the source code you can read a bit about the internal design decisions we made in the following section.

          + + + + Boston Built badge +
          +
          + + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/internals/index.html b/libs/js/jquery-geo-1.0a4/docs/internals/index.html new file mode 100755 index 0000000..6e9a300 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/internals/index.html @@ -0,0 +1,85 @@ + + + + + + + + internals | jQuery Geo + + + + + + + + + + + +
          +
          +

          internals

          +
          + +
          +

          We keep some plugin design decisions here.

          +

          jQuery UI widget factory

          +

          The geomap widget uses the same widget factory that all other jQuery UI and jQuery Mobile widgets use. Like jQuery Mobile, we include a copy of jquery.ui.widget.js in the project. While this adds 3k to the final compressed build it allows us to easilly follow the patterns designed by UI and better integrate into the jQuery plugin community.

          +
          $.widget( "geo.geomap", { } );
          +

          Virtual state

          +

          The public properties bbox, bboxMax and center do not always match the internal state of the map widget. In fact internally, geomap only tracks center and pixelSize. The bbox and bboxMax properties are calculated based on the current or max center and pixelSize. In the code, you will see two properties each for each of these. One is public, the other is private. For center, the internal position (_center) is always in internal map units (web mercator meters by default) even if the developer sets the public bbox or center by longitude & latitude.

          +

          Initialization options

          +

          You may notice that we override jQuery UI's _createWidget function in order to capture the options passed in by the user. Let us know if there's a better way to do that. At the end of _create, we iterate over the passed options and set certain internal state values before creating services and refreshing the map. This insures that we handle supplied bbox or center properly. Since bbox and center can potentially conflict, only supply one. If both are supplied the behavior is technically undefined but currently center will override bbox.

          +

          bbox cache

          +

          When you append a shape to the map, the geomap widget will cache the shape's bounding box (in non-geodetic + coordinates) for faster searches when you call find. When you remove a shape from the map, the cache will be cleared. When you use the $.geo.bbox method on a shape after it has been appended to the map, the cached bounding box will be returned.

          +
          // the bbox of an appended shape is cached while it is on the map
          +var calculatedBbox = $.geo.bbox(shape);
          +$("#map").geomap("append", shape);
          +var cachedBbox = $.geo.bbox(shape);
          +$("#map").geomap("remove", shape);
          +var calculatedAgain = $.geo.bbox(shape);
          +

          jQuery Geo caches the bbox using jQuery's data function under the name geoBbox. Though I can't think of a reason to do so, you can remove this cache by calling removeData directly on the shape object:

          +
          $.removeData(shape, "geoBbox");
          +

          jQuery Geo's caching will not alter your geometry object so you don't have to worry about unintentionally storing or sending extra data to a server.

          +

          External libraries

          +

          Apart from the jQuery UI widget factory, geomap includes a couple external libraries.

          +

          Mouse wheel extension 3.0.2

          + http://plugins.jquery.com/node/7146 +

          We've found this to be a very stable mousewheel special event plugin and are using it to handle mouse wheel interaction. This plugin's license comment and source are included intact in the minified releases of jQuery Geo.

          +

          Google excanvas

          +

          We include parts of Google's excanvas library to support graphic drawing in IE6-8. Only functions required to support jQuery Geo's feature list are included. This library's license comment and source are included intact in the non-minified releases of jQuery Geo. The license comment and partial source are included intact in the minified releases of jQuery Geo.

          +

          jsRender

          + https://github.com/BorisMoore/jsrender +

          jQuery Geo includes a snapshot of jsRender, the next-generation templating engine from the jQuery team. This is used for measure text templates and src string templates.

          +

          Service types

          +

          Developers can set the services array used by the geomap widget. When it comes time to draw map images, the geomap widget uses an internal _serviceTypes object. The object contains one property for each service type geomap supports, e.g., tiled and shingled. The type property on each service object determines which serviceType object geomap uses to refresh the service. The following code snippet is a simplification of the relationship.

          +
          options: {
          +  services: [
          +    {
          +      "class": "osm",
          +      type: "tiled"
          +      /* ,... */
          +    }
          +  ]
          +},
          +
          +_serviceTypes: {
          +  tiled: {
          +    refresh: function (map, service) {
          +    }
          +    /* ,... */
          +  }
          +}
          +

          In the future the _serviceTypes property will be public and developers can extend the service types geomap supports.

          +
          +
          + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a3.js b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a3.js new file mode 100755 index 0000000..3552d4c --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a3.js @@ -0,0 +1,4826 @@ +// excanvas +// Copyright 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/* + * AppGeo/geo + * (c) 2007-2011, Applied Geographics, Inc. All rights reserved. + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + */ + + +// Copyright 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +// Known Issues: +// +// * Patterns only support repeat. +// * Radial gradient are not implemented. The VML version of these look very +// different from the canvas one. +// * Clipping paths are not implemented. +// * Coordsize. The width and height attribute have higher priority than the +// width and height style values which isn't correct. +// * Painting mode isn't implemented. +// * Canvas width/height should is using content-box by default. IE in +// Quirks mode will draw the canvas using border-box. Either change your +// doctype to HTML5 +// (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype) +// or use Box Sizing Behavior from WebFX +// (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html) +// * Non uniform scaling does not correctly scale strokes. +// * Optimize. There is always room for speed improvements. + +// Only add this code if we do not already have a canvas implementation +if (!document.createElement('canvas').getContext) { + + (function () { + + // alias some functions to make (compiled) code shorter + var m = Math; + var mr = m.round; + var ms = m.sin; + var mc = m.cos; + var abs = m.abs; + var sqrt = m.sqrt; + + // this is used for sub pixel precision + var Z = 10; + var Z2 = Z / 2; + + var IE_VERSION = +navigator.userAgent.match(/MSIE ([\d.]+)?/)[1]; + + /** + * This funtion is assigned to the elements as element.getContext(). + * @this {HTMLElement} + * @return {CanvasRenderingContext2D_} + */ + function getContext() { + return this.context_ || + (this.context_ = new CanvasRenderingContext2D_(this)); + } + + var slice = Array.prototype.slice; + + /** + * Binds a function to an object. The returned function will always use the + * passed in {@code obj} as {@code this}. + * + * Example: + * + * g = bind(f, obj, a, b) + * g(c, d) // will do f.call(obj, a, b, c, d) + * + * @param {Function} f The function to bind the object to + * @param {Object} obj The object that should act as this when the function + * is called + * @param {*} var_args Rest arguments that will be used as the initial + * arguments when the function is called + * @return {Function} A new function that has bound this + */ + function bind(f, obj, var_args) { + var a = slice.call(arguments, 2); + return function () { + return f.apply(obj, a.concat(slice.call(arguments))); + }; + } + + function encodeHtmlAttribute(s) { + return String(s).replace(/&/g, '&').replace(/"/g, '"'); + } + + function addNamespace(doc, prefix, urn) { + if (!doc.namespaces[prefix]) { + doc.namespaces.add(prefix, urn, '#default#VML'); + } + } + + function addNamespacesAndStylesheet(doc) { + addNamespace(doc, 'g_vml_', 'urn:schemas-microsoft-com:vml'); + addNamespace(doc, 'g_o_', 'urn:schemas-microsoft-com:office:office'); + + // Setup default CSS. Only add one style sheet per document + if (!doc.styleSheets['ex_canvas_']) { + var ss = doc.createStyleSheet(); + ss.owningElement.id = 'ex_canvas_'; + ss.cssText = 'canvas{display:inline-block;overflow:hidden;' + + // default size is 300x150 in Gecko and Opera + 'text-align:left;width:300px;height:150px}'; + } + } + + // Add namespaces and stylesheet at startup. + addNamespacesAndStylesheet(document); + + var G_vmlCanvasManager_ = { + init: function (opt_doc) { + var doc = opt_doc || document; + // Create a dummy element so that IE will allow canvas elements to be + // recognized. + doc.createElement('canvas'); + doc.attachEvent('onreadystatechange', bind(this.init_, this, doc)); + }, + + init_: function (doc) { + // find all canvas elements + var els = doc.getElementsByTagName('canvas'); + for (var i = 0; i < els.length; i++) { + this.initElement(els[i]); + } + }, + + /** + * Public initializes a canvas element so that it can be used as canvas + * element from now on. This is called automatically before the page is + * loaded but if you are creating elements using createElement you need to + * make sure this is called on the element. + * @param {HTMLElement} el The canvas element to initialize. + * @return {HTMLElement} the element that was created. + */ + initElement: function (el) { + if (!el.getContext) { + el.getContext = getContext; + + // Add namespaces and stylesheet to document of the element. + addNamespacesAndStylesheet(el.ownerDocument); + + // Remove fallback content. There is no way to hide text nodes so we + // just remove all childNodes. We could hide all elements and remove + // text nodes but who really cares about the fallback content. + el.innerHTML = ''; + + // do not use inline function because that will leak memory + el.attachEvent('onpropertychange', onPropertyChange); + el.attachEvent('onresize', onResize); + + var attrs = el.attributes; + if (attrs.width && attrs.width.specified) { + // TODO: use runtimeStyle and coordsize + // el.getContext().setWidth_(attrs.width.nodeValue); + el.style.width = attrs.width.nodeValue + 'px'; + } else { + el.width = el.clientWidth; + } + if (attrs.height && attrs.height.specified) { + // TODO: use runtimeStyle and coordsize + // el.getContext().setHeight_(attrs.height.nodeValue); + el.style.height = attrs.height.nodeValue + 'px'; + } else { + el.height = el.clientHeight; + } + //el.getContext().setCoordsize_() + } + return el; + } + }; + + function onPropertyChange(e) { + var el = e.srcElement; + + switch (e.propertyName) { + case 'width': + el.getContext().clearRect(); + el.style.width = el.attributes.width.nodeValue + 'px'; + // In IE8 this does not trigger onresize. + el.firstChild.style.width = el.clientWidth + 'px'; + break; + case 'height': + el.getContext().clearRect(); + el.style.height = el.attributes.height.nodeValue + 'px'; + el.firstChild.style.height = el.clientHeight + 'px'; + break; + } + } + + function onResize(e) { + var el = e.srcElement; + if (el.firstChild) { + el.firstChild.style.width = el.clientWidth + 'px'; + el.firstChild.style.height = el.clientHeight + 'px'; + } + } + + G_vmlCanvasManager_.init(); + + // precompute "00" to "FF" + var decToHex = []; + for (var i = 0; i < 16; i++) { + for (var j = 0; j < 16; j++) { + decToHex[i * 16 + j] = i.toString(16) + j.toString(16); + } + } + + function createMatrixIdentity() { + return [ + [1, 0, 0], + [0, 1, 0], + [0, 0, 1] + ]; + } + + function matrixMultiply(m1, m2) { + var result = createMatrixIdentity(); + + for (var x = 0; x < 3; x++) { + for (var y = 0; y < 3; y++) { + var sum = 0; + + for (var z = 0; z < 3; z++) { + sum += m1[x][z] * m2[z][y]; + } + + result[x][y] = sum; + } + } + return result; + } + + function copyState(o1, o2) { + o2.fillStyle = o1.fillStyle; + o2.lineCap = o1.lineCap; + o2.lineJoin = o1.lineJoin; + o2.lineWidth = o1.lineWidth; + o2.miterLimit = o1.miterLimit; + o2.shadowBlur = o1.shadowBlur; + o2.shadowColor = o1.shadowColor; + o2.shadowOffsetX = o1.shadowOffsetX; + o2.shadowOffsetY = o1.shadowOffsetY; + o2.strokeStyle = o1.strokeStyle; + o2.globalAlpha = o1.globalAlpha; + o2.font = o1.font; + o2.textAlign = o1.textAlign; + o2.textBaseline = o1.textBaseline; + o2.arcScaleX_ = o1.arcScaleX_; + o2.arcScaleY_ = o1.arcScaleY_; + o2.lineScale_ = o1.lineScale_; + } + + // var colorData = { + // aliceblue: '#F0F8FF', + // antiquewhite: '#FAEBD7', + // aquamarine: '#7FFFD4', + // azure: '#F0FFFF', + // beige: '#F5F5DC', + // bisque: '#FFE4C4', + // black: '#000000', + // blanchedalmond: '#FFEBCD', + // blueviolet: '#8A2BE2', + // brown: '#A52A2A', + // burlywood: '#DEB887', + // cadetblue: '#5F9EA0', + // chartreuse: '#7FFF00', + // chocolate: '#D2691E', + // coral: '#FF7F50', + // cornflowerblue: '#6495ED', + // cornsilk: '#FFF8DC', + // crimson: '#DC143C', + // cyan: '#00FFFF', + // darkblue: '#00008B', + // darkcyan: '#008B8B', + // darkgoldenrod: '#B8860B', + // darkgray: '#A9A9A9', + // darkgreen: '#006400', + // darkgrey: '#A9A9A9', + // darkkhaki: '#BDB76B', + // darkmagenta: '#8B008B', + // darkolivegreen: '#556B2F', + // darkorange: '#FF8C00', + // darkorchid: '#9932CC', + // darkred: '#8B0000', + // darksalmon: '#E9967A', + // darkseagreen: '#8FBC8F', + // darkslateblue: '#483D8B', + // darkslategray: '#2F4F4F', + // darkslategrey: '#2F4F4F', + // darkturquoise: '#00CED1', + // darkviolet: '#9400D3', + // deeppink: '#FF1493', + // deepskyblue: '#00BFFF', + // dimgray: '#696969', + // dimgrey: '#696969', + // dodgerblue: '#1E90FF', + // firebrick: '#B22222', + // floralwhite: '#FFFAF0', + // forestgreen: '#228B22', + // gainsboro: '#DCDCDC', + // ghostwhite: '#F8F8FF', + // gold: '#FFD700', + // goldenrod: '#DAA520', + // grey: '#808080', + // greenyellow: '#ADFF2F', + // honeydew: '#F0FFF0', + // hotpink: '#FF69B4', + // indianred: '#CD5C5C', + // indigo: '#4B0082', + // ivory: '#FFFFF0', + // khaki: '#F0E68C', + // lavender: '#E6E6FA', + // lavenderblush: '#FFF0F5', + // lawngreen: '#7CFC00', + // lemonchiffon: '#FFFACD', + // lightblue: '#ADD8E6', + // lightcoral: '#F08080', + // lightcyan: '#E0FFFF', + // lightgoldenrodyellow: '#FAFAD2', + // lightgreen: '#90EE90', + // lightgrey: '#D3D3D3', + // lightpink: '#FFB6C1', + // lightsalmon: '#FFA07A', + // lightseagreen: '#20B2AA', + // lightskyblue: '#87CEFA', + // lightslategray: '#778899', + // lightslategrey: '#778899', + // lightsteelblue: '#B0C4DE', + // lightyellow: '#FFFFE0', + // limegreen: '#32CD32', + // linen: '#FAF0E6', + // magenta: '#FF00FF', + // mediumaquamarine: '#66CDAA', + // mediumblue: '#0000CD', + // mediumorchid: '#BA55D3', + // mediumpurple: '#9370DB', + // mediumseagreen: '#3CB371', + // mediumslateblue: '#7B68EE', + // mediumspringgreen: '#00FA9A', + // mediumturquoise: '#48D1CC', + // mediumvioletred: '#C71585', + // midnightblue: '#191970', + // mintcream: '#F5FFFA', + // mistyrose: '#FFE4E1', + // moccasin: '#FFE4B5', + // navajowhite: '#FFDEAD', + // oldlace: '#FDF5E6', + // olivedrab: '#6B8E23', + // orange: '#FFA500', + // orangered: '#FF4500', + // orchid: '#DA70D6', + // palegoldenrod: '#EEE8AA', + // palegreen: '#98FB98', + // paleturquoise: '#AFEEEE', + // palevioletred: '#DB7093', + // papayawhip: '#FFEFD5', + // peachpuff: '#FFDAB9', + // peru: '#CD853F', + // pink: '#FFC0CB', + // plum: '#DDA0DD', + // powderblue: '#B0E0E6', + // rosybrown: '#BC8F8F', + // royalblue: '#4169E1', + // saddlebrown: '#8B4513', + // salmon: '#FA8072', + // sandybrown: '#F4A460', + // seagreen: '#2E8B57', + // seashell: '#FFF5EE', + // sienna: '#A0522D', + // skyblue: '#87CEEB', + // slateblue: '#6A5ACD', + // slategray: '#708090', + // slategrey: '#708090', + // snow: '#FFFAFA', + // springgreen: '#00FF7F', + // steelblue: '#4682B4', + // tan: '#D2B48C', + // thistle: '#D8BFD8', + // tomato: '#FF6347', + // turquoise: '#40E0D0', + // violet: '#EE82EE', + // wheat: '#F5DEB3', + // whitesmoke: '#F5F5F5', + // yellowgreen: '#9ACD32' + // }; + + + function getRgbHslContent(styleString) { + var start = styleString.indexOf('(', 3); + var end = styleString.indexOf(')', start + 1); + var parts = styleString.substring(start + 1, end).split(','); + // add alpha if needed + if (parts.length != 4 || styleString.charAt(3) != 'a') { + parts[3] = 1; + } + return parts; + } + + function percent(s) { + return parseFloat(s) / 100; + } + + function clamp(v, min, max) { + return Math.min(max, Math.max(min, v)); + } + + function hslToRgb(parts) { + var r, g, b, h, s, l; + h = parseFloat(parts[0]) / 360 % 360; + if (h < 0) + h++; + s = clamp(percent(parts[1]), 0, 1); + l = clamp(percent(parts[2]), 0, 1); + if (s == 0) { + r = g = b = l; // achromatic + } else { + var q = l < 0.5 ? l * (1 + s) : l + s - l * s; + var p = 2 * l - q; + r = hueToRgb(p, q, h + 1 / 3); + g = hueToRgb(p, q, h); + b = hueToRgb(p, q, h - 1 / 3); + } + + return '#' + decToHex[Math.floor(r * 255)] + + decToHex[Math.floor(g * 255)] + + decToHex[Math.floor(b * 255)]; + } + + function hueToRgb(m1, m2, h) { + if (h < 0) + h++; + if (h > 1) + h--; + + if (6 * h < 1) + return m1 + (m2 - m1) * 6 * h; + else if (2 * h < 1) + return m2; + else if (3 * h < 2) + return m1 + (m2 - m1) * (2 / 3 - h) * 6; + else + return m1; + } + + var processStyleCache = {}; + + function processStyle(styleString) { + if (styleString in processStyleCache) { + return processStyleCache[styleString]; + } + + var str, alpha = 1; + + styleString = String(styleString); + if (styleString.charAt(0) == '#') { + str = styleString; + } else if (/^rgb/.test(styleString)) { + var parts = getRgbHslContent(styleString); + var str = '#', n; + for (var i = 0; i < 3; i++) { + if (parts[i].indexOf('%') != -1) { + n = Math.floor(percent(parts[i]) * 255); + } else { + n = +parts[i]; + } + str += decToHex[clamp(n, 0, 255)]; + } + alpha = +parts[3]; + } else if (/^hsl/.test(styleString)) { + var parts = getRgbHslContent(styleString); + str = hslToRgb(parts); + alpha = parts[3]; + } else { + str = /*colorData[styleString] ||*/styleString; + } + return processStyleCache[styleString] = { color: str, alpha: alpha }; + } + + var DEFAULT_STYLE = { + style: 'normal', + variant: 'normal', + weight: 'normal', + size: 10, + family: 'sans-serif' + }; + + // Internal text style cache + // var fontStyleCache = {}; + + // function processFontStyle(styleString) { + // if (fontStyleCache[styleString]) { + // return fontStyleCache[styleString]; + // } + + // var el = document.createElement('div'); + // var style = el.style; + // try { + // style.font = styleString; + // } catch (ex) { + // // Ignore failures to set to invalid font. + // } + + // return fontStyleCache[styleString] = { + // style: style.fontStyle || DEFAULT_STYLE.style, + // variant: style.fontVariant || DEFAULT_STYLE.variant, + // weight: style.fontWeight || DEFAULT_STYLE.weight, + // size: style.fontSize || DEFAULT_STYLE.size, + // family: style.fontFamily || DEFAULT_STYLE.family + // }; + // } + + // function getComputedStyle(style, element) { + // var computedStyle = {}; + + // for (var p in style) { + // computedStyle[p] = style[p]; + // } + + // // Compute the size + // var canvasFontSize = parseFloat(element.currentStyle.fontSize), + // fontSize = parseFloat(style.size); + + // if (typeof style.size == 'number') { + // computedStyle.size = style.size; + // } else if (style.size.indexOf('px') != -1) { + // computedStyle.size = fontSize; + // } else if (style.size.indexOf('em') != -1) { + // computedStyle.size = canvasFontSize * fontSize; + // } else if(style.size.indexOf('%') != -1) { + // computedStyle.size = (canvasFontSize / 100) * fontSize; + // } else if (style.size.indexOf('pt') != -1) { + // computedStyle.size = fontSize / .75; + // } else { + // computedStyle.size = canvasFontSize; + // } + + // // Different scaling between normal text and VML text. This was found using + // // trial and error to get the same size as non VML text. + // computedStyle.size *= 0.981; + + // return computedStyle; + // } + + // function buildStyle(style) { + // return style.style + ' ' + style.variant + ' ' + style.weight + ' ' + + // style.size + 'px ' + style.family; + // } + + var lineCapMap = { + 'butt': 'flat', + 'round': 'round' + }; + + function processLineCap(lineCap) { + return lineCapMap[lineCap] || 'square'; + } + + /** + * This class implements CanvasRenderingContext2D interface as described by + * the WHATWG. + * @param {HTMLElement} canvasElement The element that the 2D context should + * be associated with + */ + function CanvasRenderingContext2D_(canvasElement) { + this.m_ = createMatrixIdentity(); + + this.mStack_ = []; + this.aStack_ = []; + this.currentPath_ = []; + + // Canvas context properties + this.strokeStyle = '#000'; + this.fillStyle = '#000'; + + this.lineWidth = 1; + this.lineJoin = 'miter'; + this.lineCap = 'butt'; + this.miterLimit = Z * 1; + this.globalAlpha = 1; + //this.font = '10px sans-serif'; + //this.textAlign = 'left'; + //this.textBaseline = 'alphabetic'; + this.canvas = canvasElement; + + var cssText = 'width:' + canvasElement.clientWidth + 'px;height:' + + canvasElement.clientHeight + 'px;overflow:hidden;position:absolute'; + var el = canvasElement.ownerDocument.createElement('div'); + el.style.cssText = cssText; + canvasElement.appendChild(el); + + var overlayEl = el.cloneNode(false); + // Use a non transparent background. + overlayEl.style.backgroundColor = 'red'; + overlayEl.style.filter = 'alpha(opacity=0)'; + canvasElement.appendChild(overlayEl); + + this.element_ = el; + this.arcScaleX_ = 1; + this.arcScaleY_ = 1; + this.lineScale_ = 1; + } + + var contextPrototype = CanvasRenderingContext2D_.prototype; + contextPrototype.clearRect = function () { + if (this.textMeasureEl_) { + this.textMeasureEl_.removeNode(true); + this.textMeasureEl_ = null; + } + this.element_.innerHTML = ''; + }; + + contextPrototype.beginPath = function () { + // TODO: Branch current matrix so that save/restore has no effect + // as per safari docs. + this.currentPath_ = []; + }; + + contextPrototype.moveTo = function (aX, aY) { + var p = getCoords(this, aX, aY); + this.currentPath_.push({ type: 'moveTo', x: p.x, y: p.y }); + this.currentX_ = p.x; + this.currentY_ = p.y; + }; + + contextPrototype.lineTo = function (aX, aY) { + var p = getCoords(this, aX, aY); + this.currentPath_.push({ type: 'lineTo', x: p.x, y: p.y }); + + this.currentX_ = p.x; + this.currentY_ = p.y; + }; + + contextPrototype.bezierCurveTo = function(aCP1x, aCP1y, + aCP2x, aCP2y, + aX, aY) { + var p = getCoords(this, aX, aY); + var cp1 = getCoords(this, aCP1x, aCP1y); + var cp2 = getCoords(this, aCP2x, aCP2y); + bezierCurveTo(this, cp1, cp2, p); + }; + + // Helper function that takes the already fixed cordinates. + function bezierCurveTo(self, cp1, cp2, p) { + self.currentPath_.push({ + type: 'bezierCurveTo', + cp1x: cp1.x, + cp1y: cp1.y, + cp2x: cp2.x, + cp2y: cp2.y, + x: p.x, + y: p.y + }); + self.currentX_ = p.x; + self.currentY_ = p.y; + } + + contextPrototype.quadraticCurveTo = function(aCPx, aCPy, aX, aY) { + // the following is lifted almost directly from + // http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes + + var cp = getCoords(this, aCPx, aCPy); + var p = getCoords(this, aX, aY); + + var cp1 = { + x: this.currentX_ + 2.0 / 3.0 * (cp.x - this.currentX_), + y: this.currentY_ + 2.0 / 3.0 * (cp.y - this.currentY_) + }; + var cp2 = { + x: cp1.x + (p.x - this.currentX_) / 3.0, + y: cp1.y + (p.y - this.currentY_) / 3.0 + }; + + bezierCurveTo(this, cp1, cp2, p); + }; + + contextPrototype.arc = function (aX, aY, aRadius, + aStartAngle, aEndAngle, aClockwise) { + aRadius *= Z; + var arcType = aClockwise ? 'at' : 'wa'; + + var xStart = aX + mc(aStartAngle) * aRadius - Z2; + var yStart = aY + ms(aStartAngle) * aRadius - Z2; + + var xEnd = aX + mc(aEndAngle) * aRadius - Z2; + var yEnd = aY + ms(aEndAngle) * aRadius - Z2; + + // IE won't render arches drawn counter clockwise if xStart == xEnd. + if (xStart == xEnd && !aClockwise) { + xStart += 0.125; // Offset xStart by 1/80 of a pixel. Use something + // that can be represented in binary + } + + var p = getCoords(this, aX, aY); + var pStart = getCoords(this, xStart, yStart); + var pEnd = getCoords(this, xEnd, yEnd); + + this.currentPath_.push({ type: arcType, + x: p.x, + y: p.y, + radius: aRadius, + xStart: pStart.x, + yStart: pStart.y, + xEnd: pEnd.x, + yEnd: pEnd.y + }); + + }; + + // contextPrototype.rect = function(aX, aY, aWidth, aHeight) { + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // }; + + // contextPrototype.strokeRect = function(aX, aY, aWidth, aHeight) { + // var oldPath = this.currentPath_; + // this.beginPath(); + + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // this.stroke(); + + // this.currentPath_ = oldPath; + // }; + + // contextPrototype.fillRect = function(aX, aY, aWidth, aHeight) { + // var oldPath = this.currentPath_; + // this.beginPath(); + + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // this.fill(); + + // this.currentPath_ = oldPath; + // }; + + // contextPrototype.createLinearGradient = function(aX0, aY0, aX1, aY1) { + // var gradient = new CanvasGradient_('gradient'); + // gradient.x0_ = aX0; + // gradient.y0_ = aY0; + // gradient.x1_ = aX1; + // gradient.y1_ = aY1; + // return gradient; + // }; + + // contextPrototype.createRadialGradient = function(aX0, aY0, aR0, + // aX1, aY1, aR1) { + // var gradient = new CanvasGradient_('gradientradial'); + // gradient.x0_ = aX0; + // gradient.y0_ = aY0; + // gradient.r0_ = aR0; + // gradient.x1_ = aX1; + // gradient.y1_ = aY1; + // gradient.r1_ = aR1; + // return gradient; + // }; + + // contextPrototype.drawImage = function(image, var_args) { + // var dx, dy, dw, dh, sx, sy, sw, sh; + + // // to find the original width we overide the width and height + // var oldRuntimeWidth = image.runtimeStyle.width; + // var oldRuntimeHeight = image.runtimeStyle.height; + // image.runtimeStyle.width = 'auto'; + // image.runtimeStyle.height = 'auto'; + + // // get the original size + // var w = image.width; + // var h = image.height; + + // // and remove overides + // image.runtimeStyle.width = oldRuntimeWidth; + // image.runtimeStyle.height = oldRuntimeHeight; + + // if (arguments.length == 3) { + // dx = arguments[1]; + // dy = arguments[2]; + // sx = sy = 0; + // sw = dw = w; + // sh = dh = h; + // } else if (arguments.length == 5) { + // dx = arguments[1]; + // dy = arguments[2]; + // dw = arguments[3]; + // dh = arguments[4]; + // sx = sy = 0; + // sw = w; + // sh = h; + // } else if (arguments.length == 9) { + // sx = arguments[1]; + // sy = arguments[2]; + // sw = arguments[3]; + // sh = arguments[4]; + // dx = arguments[5]; + // dy = arguments[6]; + // dw = arguments[7]; + // dh = arguments[8]; + // } else { + // throw Error('Invalid number of arguments'); + // } + + // var d = getCoords(this, dx, dy); + + // var w2 = sw / 2; + // var h2 = sh / 2; + + // var vmlStr = []; + + // var W = 10; + // var H = 10; + + // // For some reason that I've now forgotten, using divs didn't work + // vmlStr.push(' ' , + // '', + // ''); + + // this.element_.insertAdjacentHTML('BeforeEnd', vmlStr.join('')); + // }; + + contextPrototype.stroke = function (aFill) { + var lineStr = []; + var lineOpen = false; + + var W = 10; + var H = 10; + + lineStr.push(''); + + if (!aFill) { + appendStroke(this, lineStr); + } else { + appendFill(this, lineStr, min, max); + } + + lineStr.push(''); + + this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); + }; + + function appendStroke(ctx, lineStr) { + var a = processStyle(ctx.strokeStyle); + var color = a.color; + var opacity = a.alpha * ctx.globalAlpha; + var lineWidth = ctx.lineScale_ * ctx.lineWidth; + + // VML cannot correctly render a line if the width is less than 1px. + // In that case, we dilute the color to make the line look thinner. + if (lineWidth < 1) { + opacity *= lineWidth; + } + + lineStr.push( + '' + ); + } + + function appendFill(ctx, lineStr, min, max) { + var fillStyle = ctx.fillStyle; + var arcScaleX = ctx.arcScaleX_; + var arcScaleY = ctx.arcScaleY_; + var width = max.x - min.x; + var height = max.y - min.y; + // if (fillStyle instanceof CanvasGradient_) { + // // TODO: Gradients transformed with the transformation matrix. + // var angle = 0; + // var focus = {x: 0, y: 0}; + + // // additional offset + // var shift = 0; + // // scale factor for offset + // var expansion = 1; + + // if (fillStyle.type_ == 'gradient') { + // var x0 = fillStyle.x0_ / arcScaleX; + // var y0 = fillStyle.y0_ / arcScaleY; + // var x1 = fillStyle.x1_ / arcScaleX; + // var y1 = fillStyle.y1_ / arcScaleY; + // var p0 = getCoords(ctx, x0, y0); + // var p1 = getCoords(ctx, x1, y1); + // var dx = p1.x - p0.x; + // var dy = p1.y - p0.y; + // angle = Math.atan2(dx, dy) * 180 / Math.PI; + + // // The angle should be a non-negative number. + // if (angle < 0) { + // angle += 360; + // } + + // // Very small angles produce an unexpected result because they are + // // converted to a scientific notation string. + // if (angle < 1e-6) { + // angle = 0; + // } + // } else { + // var p0 = getCoords(ctx, fillStyle.x0_, fillStyle.y0_); + // focus = { + // x: (p0.x - min.x) / width, + // y: (p0.y - min.y) / height + // }; + + // width /= arcScaleX * Z; + // height /= arcScaleY * Z; + // var dimension = m.max(width, height); + // shift = 2 * fillStyle.r0_ / dimension; + // expansion = 2 * fillStyle.r1_ / dimension - shift; + // } + + // // We need to sort the color stops in ascending order by offset, + // // otherwise IE won't interpret it correctly. + // var stops = fillStyle.colors_; + // stops.sort(function(cs1, cs2) { + // return cs1.offset - cs2.offset; + // }); + + // var length = stops.length; + // var color1 = stops[0].color; + // var color2 = stops[length - 1].color; + // var opacity1 = stops[0].alpha * ctx.globalAlpha; + // var opacity2 = stops[length - 1].alpha * ctx.globalAlpha; + + // var colors = []; + // for (var i = 0; i < length; i++) { + // var stop = stops[i]; + // colors.push(stop.offset * expansion + shift + ' ' + stop.color); + // } + + // // When colors attribute is used, the meanings of opacity and o:opacity2 + // // are reversed. + // lineStr.push(''); + // } else if (fillStyle instanceof CanvasPattern_) { + // if (width && height) { + // var deltaLeft = -min.x; + // var deltaTop = -min.y; + // lineStr.push(''); + // } + // } else { + var a = processStyle(ctx.fillStyle); + var color = a.color; + var opacity = a.alpha * ctx.globalAlpha; + lineStr.push(''); + // } + } + + contextPrototype.fill = function () { + this.stroke(true); + }; + + contextPrototype.closePath = function () { + this.currentPath_.push({ type: 'close' }); + }; + + function getCoords(ctx, aX, aY) { + var m = ctx.m_; + return { + x: Z * (aX * m[0][0] + aY * m[1][0] + m[2][0]) - Z2, + y: Z * (aX * m[0][1] + aY * m[1][1] + m[2][1]) - Z2 + }; + }; + + contextPrototype.save = function () { + var o = {}; + copyState(this, o); + this.aStack_.push(o); + this.mStack_.push(this.m_); + this.m_ = matrixMultiply(createMatrixIdentity(), this.m_); + }; + + contextPrototype.restore = function () { + if (this.aStack_.length) { + copyState(this.aStack_.pop(), this); + this.m_ = this.mStack_.pop(); + } + }; + + function matrixIsFinite(m) { + return isFinite(m[0][0]) && isFinite(m[0][1]) && + isFinite(m[1][0]) && isFinite(m[1][1]) && + isFinite(m[2][0]) && isFinite(m[2][1]); + } + + function setM(ctx, m, updateLineScale) { + if (!matrixIsFinite(m)) { + return; + } + ctx.m_ = m; + + if (updateLineScale) { + // Get the line scale. + // Determinant of this.m_ means how much the area is enlarged by the + // transformation. So its square root can be used as a scale factor + // for width. + var det = m[0][0] * m[1][1] - m[0][1] * m[1][0]; + ctx.lineScale_ = sqrt(abs(det)); + } + } + + contextPrototype.translate = function (aX, aY) { + var m1 = [ + [1, 0, 0], + [0, 1, 0], + [aX, aY, 1] + ]; + + setM(this, matrixMultiply(m1, this.m_), false); + }; + + // contextPrototype.rotate = function(aRot) { + // var c = mc(aRot); + // var s = ms(aRot); + + // var m1 = [ + // [c, s, 0], + // [-s, c, 0], + // [0, 0, 1] + // ]; + + // setM(this, matrixMultiply(m1, this.m_), false); + // }; + + contextPrototype.scale = function (aX, aY) { + this.arcScaleX_ *= aX; + this.arcScaleY_ *= aY; + var m1 = [ + [aX, 0, 0], + [0, aY, 0], + [0, 0, 1] + ]; + + setM(this, matrixMultiply(m1, this.m_), true); + }; + + // contextPrototype.transform = function(m11, m12, m21, m22, dx, dy) { + // var m1 = [ + // [m11, m12, 0], + // [m21, m22, 0], + // [dx, dy, 1] + // ]; + + // setM(this, matrixMultiply(m1, this.m_), true); + // }; + + // contextPrototype.setTransform = function(m11, m12, m21, m22, dx, dy) { + // var m = [ + // [m11, m12, 0], + // [m21, m22, 0], + // [dx, dy, 1] + // ]; + + // setM(this, m, true); + // }; + + /** + * The text drawing function. + * The maxWidth argument isn't taken in account, since no browser supports + * it yet. + */ + // contextPrototype.drawText_ = function(text, x, y, maxWidth, stroke) { + // var m = this.m_, + // delta = 1000, + // left = 0, + // right = delta, + // offset = {x: 0, y: 0}, + // lineStr = []; + + // var fontStyle = getComputedStyle(processFontStyle(this.font), + // this.element_); + + // var fontStyleString = buildStyle(fontStyle); + + // var elementStyle = this.element_.currentStyle; + // var textAlign = this.textAlign.toLowerCase(); + // switch (textAlign) { + // case 'left': + // case 'center': + // case 'right': + // break; + // case 'end': + // textAlign = elementStyle.direction == 'ltr' ? 'right' : 'left'; + // break; + // case 'start': + // textAlign = elementStyle.direction == 'rtl' ? 'right' : 'left'; + // break; + // default: + // textAlign = 'left'; + // } + + // // 1.75 is an arbitrary number, as there is no info about the text baseline + // switch (this.textBaseline) { + // case 'hanging': + // case 'top': + // offset.y = fontStyle.size / 1.75; + // break; + // case 'middle': + // break; + // default: + // case null: + // case 'alphabetic': + // case 'ideographic': + // case 'bottom': + // offset.y = -fontStyle.size / 2.25; + // break; + // } + + // switch(textAlign) { + // case 'right': + // left = delta; + // right = 0.05; + // break; + // case 'center': + // left = right = delta / 2; + // break; + // } + + // var d = getCoords(this, x + offset.x, y + offset.y); + + // lineStr.push(''); + + // if (stroke) { + // appendStroke(this, lineStr); + // } else { + // // TODO: Fix the min and max params. + // appendFill(this, lineStr, {x: -left, y: 0}, + // {x: right, y: fontStyle.size}); + // } + + // var skewM = m[0][0].toFixed(3) + ',' + m[1][0].toFixed(3) + ',' + + // m[0][1].toFixed(3) + ',' + m[1][1].toFixed(3) + ',0,0'; + + // var skewOffset = mr(d.x / Z) + ',' + mr(d.y / Z); + + // lineStr.push('', + // '', + // ''); + + // this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); + // }; + + // contextPrototype.fillText = function(text, x, y, maxWidth) { + // this.drawText_(text, x, y, maxWidth, false); + // }; + + // contextPrototype.strokeText = function(text, x, y, maxWidth) { + // this.drawText_(text, x, y, maxWidth, true); + // }; + + // contextPrototype.measureText = function(text) { + // if (!this.textMeasureEl_) { + // var s = ''; + // this.element_.insertAdjacentHTML('beforeEnd', s); + // this.textMeasureEl_ = this.element_.lastChild; + // } + // var doc = this.element_.ownerDocument; + // this.textMeasureEl_.innerHTML = ''; + // this.textMeasureEl_.style.font = this.font; + // // Don't use innerHTML or innerText because they allow markup/whitespace. + // this.textMeasureEl_.appendChild(doc.createTextNode(text)); + // return {width: this.textMeasureEl_.offsetWidth}; + // }; + + /******** STUBS ********/ + // contextPrototype.clip = function() { + // // TODO: Implement + // }; + + // contextPrototype.arcTo = function() { + // // TODO: Implement + // }; + + // contextPrototype.createPattern = function(image, repetition) { + // return new CanvasPattern_(image, repetition); + // }; + + // // Gradient / Pattern Stubs + // function CanvasGradient_(aType) { + // this.type_ = aType; + // this.x0_ = 0; + // this.y0_ = 0; + // this.r0_ = 0; + // this.x1_ = 0; + // this.y1_ = 0; + // this.r1_ = 0; + // this.colors_ = []; + // } + + // CanvasGradient_.prototype.addColorStop = function(aOffset, aColor) { + // aColor = processStyle(aColor); + // this.colors_.push({offset: aOffset, + // color: aColor.color, + // alpha: aColor.alpha}); + // }; + + // function CanvasPattern_(image, repetition) { + // assertImageIsValid(image); + // switch (repetition) { + // case 'repeat': + // case null: + // case '': + // this.repetition_ = 'repeat'; + // break + // case 'repeat-x': + // case 'repeat-y': + // case 'no-repeat': + // this.repetition_ = repetition; + // break; + // default: + // throwException('SYNTAX_ERR'); + // } + + // this.src_ = image.src; + // this.width_ = image.width; + // this.height_ = image.height; + // } + + function throwException(s) { + throw new DOMException_(s); + } + + // function assertImageIsValid(img) { + // if (!img || img.nodeType != 1 || img.tagName != 'IMG') { + // throwException('TYPE_MISMATCH_ERR'); + // } + // if (img.readyState != 'complete') { + // throwException('INVALID_STATE_ERR'); + // } + // } + + function DOMException_(s) { + this.code = this[s]; + this.message = s + ': DOM Exception ' + this.code; + } + var p = DOMException_.prototype = new Error; + p.INDEX_SIZE_ERR = 1; + p.DOMSTRING_SIZE_ERR = 2; + p.HIERARCHY_REQUEST_ERR = 3; + p.WRONG_DOCUMENT_ERR = 4; + p.INVALID_CHARACTER_ERR = 5; + p.NO_DATA_ALLOWED_ERR = 6; + p.NO_MODIFICATION_ALLOWED_ERR = 7; + p.NOT_FOUND_ERR = 8; + p.NOT_SUPPORTED_ERR = 9; + p.INUSE_ATTRIBUTE_ERR = 10; + p.INVALID_STATE_ERR = 11; + p.SYNTAX_ERR = 12; + p.INVALID_MODIFICATION_ERR = 13; + p.NAMESPACE_ERR = 14; + p.INVALID_ACCESS_ERR = 15; + p.VALIDATION_ERR = 16; + p.TYPE_MISMATCH_ERR = 17; + + // set up externs + G_vmlCanvasManager = G_vmlCanvasManager_; + CanvasRenderingContext2D = CanvasRenderingContext2D_; + //CanvasGradient = CanvasGradient_; + //CanvasPattern = CanvasPattern_; + DOMException = DOMException_; + })(); + +} // if +/* Copyright (c) 2009 Brandon Aaron (http://brandonaaron.net) + * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) + * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * + * Version: 3.0.2 + * + * Requires: 1.2.2+ + */ +(function(c){var a=["DOMMouseScroll","mousewheel"];c.event.special.mousewheel={setup:function(){if(this.addEventListener){for(var d=a.length;d;){this.addEventListener(a[--d],b,false)}}else{this.onmousewheel=b}},teardown:function(){if(this.removeEventListener){for(var d=a.length;d;){this.removeEventListener(a[--d],b,false)}}else{this.onmousewheel=null}}};c.fn.extend({mousewheel:function(d){return d?this.bind("mousewheel",d):this.trigger("mousewheel")},unmousewheel:function(d){return this.unbind("mousewheel",d)}});function b(f){var d=[].slice.call(arguments,1),g=0,e=true;f=c.event.fix(f||window.event);f.type="mousewheel";if(f.wheelDelta){g=f.wheelDelta/120}if(f.detail){g=-f.detail/3}d.unshift(f,g);return c.event.handle.apply(this,d)}})(jQuery); + +/*! + * jQuery UI Widget @VERSION + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ +if (!$.widget) { +(function( $, undefined ) { + +var slice = Array.prototype.slice; + +var _cleanData = $.cleanData; +$.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + $( elem ).triggerHandler( "remove" ); + } + _cleanData( elems ); +}; + +$.widget = function( name, base, prototype ) { + var namespace = name.split( "." )[ 0 ], + fullName; + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName ] = function( elem ) { + return !!$.data( elem, name ); + }; + + $[ namespace ] = $[ namespace ] || {}; + // create the constructor using $.extend() so we can carry over any + // static properties stored on the existing constructor (if there is one) + $[ namespace ][ name ] = $.extend( function( options, element ) { + // allow instantiation without "new" keyword + if ( !this._createWidget ) { + return new $[ namespace ][ name ]( options, element ); + } + + // allow instantiation without initializing for simple inheritance + // must use "new" keyword (the code above always passes args) + if ( arguments.length ) { + this._createWidget( options, element ); + } + }, $[ namespace ][ name ] ); + + var basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from + basePrototype.options = $.extend( true, {}, basePrototype.options ); + $.each( prototype, function( prop, value ) { + if ( $.isFunction( value ) ) { + prototype[ prop ] = (function() { + var _super = function( method ) { + return base.prototype[ method ].apply( this, slice.call( arguments, 1 ) ); + }; + var _superApply = function( method, args ) { + return base.prototype[ method ].apply( this, args ); + }; + return function() { + var __super = this._super, + __superApply = this._superApply, + returnValue; + + this._super = _super; + this._superApply = _superApply; + + returnValue = value.apply( this, arguments ); + + this._super = __super; + this._superApply = __superApply; + + return returnValue; + }; + }()); + } + }); + $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { + namespace: namespace, + widgetName: name, + widgetEventPrefix: name, + widgetBaseClass: fullName + }, prototype ); + + $.widget.bridge( name, $[ namespace ][ name ] ); +}; + +$.widget.bridge = function( name, object ) { + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.extend.apply( null, [ true, options ].concat(args) ) : + options; + + if ( isMethodCall ) { + this.each(function() { + var instance = $.data( this, name ); + if ( !instance ) { + return $.error( "cannot call methods on " + name + " prior to initialization; " + + "attempted to call method '" + options + "'" ); + } + if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { + return $.error( "no such method '" + options + "' for " + name + " widget instance" ); + } + var methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, name ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + object( options, this ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( options, element ) { + // allow instantiation without "new" keyword + if ( !this._createWidget ) { + return new $[ namespace ][ name ]( options, element ); + } + + // allow instantiation without initializing for simple inheritance + // must use "new" keyword (the code above always passes args) + if ( arguments.length ) { + this._createWidget( options, element ); + } +}; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + defaultElement: "
          ", + options: { + disabled: false + }, + _createWidget: function( options, element ) { + element = $( element || this.defaultElement || this )[ 0 ]; + this.element = $( element ); + this.options = $.extend( true, {}, + this.options, + this._getCreateOptions(), + options ); + + this.bindings = $(); + this.hoverable = $(); + this.focusable = $(); + + if ( element !== this ) { + $.data( element, this.widgetName, this ); + this._bind({ remove: "destroy" }); + } + + this._create(); + this._trigger( "create" ); + this._init(); + }, + _getCreateOptions: function() { + return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; + }, + _create: $.noop, + _init: $.noop, + + destroy: function() { + this._destroy(); + // we can probably remove the unbind calls in 2.0 + // all event bindings should go through this._bind() + this.element + .unbind( "." + this.widgetName ) + .removeData( this.widgetName ); + this.widget() + .unbind( "." + this.widgetName ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetBaseClass + "-disabled " + + "ui-state-disabled" ); + + // clean up events and states + this.bindings.unbind( "." + this.widgetName ); + this.hoverable.removeClass( "ui-state-hover" ); + this.focusable.removeClass( "ui-state-focus" ); + }, + _destroy: $.noop, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.extend( {}, this.options ); + } + + if (typeof key === "string" ) { + if ( value === undefined ) { + return this.options[ key ]; + } + options = {}; + options[ key ] = value; + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var self = this; + $.each( options, function( key, value ) { + self._setOption( key, value ); + }); + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + .toggleClass( this.widgetBaseClass + "-disabled ui-state-disabled", !!value ) + .attr( "aria-disabled", value ); + this.hoverable.removeClass( "ui-state-hover" ); + this.focusable.removeClass( "ui-state-focus" ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _bind: function( element, handlers ) { + // no element argument, shuffle and use this.element + if ( !handlers ) { + handlers = element; + element = this.element; + } else { + // accept selectors, DOM elements + element = $( element ); + this.bindings = this.bindings.add( element ); + } + var instance = this; + $.each( handlers, function( event, handler ) { + element.bind( event + "." + instance.widgetName, function() { + // allow widgets to customize the disabled handling + // - disabled as an array instead of boolean + // - disabled class as method for disabling individual parts + if ( instance.options.disabled === true || + $( this ).hasClass( "ui-state-disabled" ) ) { + return; + } + return ( typeof handler === "string" ? instance[ handler ] : handler ) + .apply( instance, arguments ); + }); + }); + }, + + _hoverable: function( element ) { + this.hoverable = this.hoverable.add( element ); + this._bind( element, { + mouseenter: function( event ) { + $( event.currentTarget ).addClass( "ui-state-hover" ); + }, + mouseleave: function( event ) { + $( event.currentTarget ).removeClass( "ui-state-hover" ); + } + }); + }, + + _focusable: function( element ) { + this.focusable = this.focusable.add( element ); + this._bind( element, { + focusin: function( event ) { + $( event.currentTarget ).addClass( "ui-state-focus" ); + }, + focusout: function( event ) { + $( event.currentTarget ).removeClass( "ui-state-focus" ); + } + }); + }, + + _trigger: function( type, event, data ) { + var callback = this.options[ type ], + args; + + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + data = data || {}; + + // copy original event properties over to the new event + // this would happen if we could call $.event.fix instead of $.Event + // but we don't have a way to force an event to be fixed multiple times + if ( event.originalEvent ) { + for ( var i = $.event.props.length, prop; i; ) { + prop = $.event.props[ --i ]; + event[ prop ] = event.originalEvent[ prop ]; + } + } + + this.element.trigger( event, data ); + + args = $.isArray( data ) ? + [ event ].concat( data ) : + [ event, data ]; + + return !( $.isFunction( callback ) && + callback.apply( this.element[0], args ) === false || + event.isDefaultPrevented() ); + } +}; + +})( jQuery ); +}(function ($, window, undefined) { + var pos_oo = Number.POSITIVE_INFINITY, + neg_oo = Number.NEGATIVE_INFINITY; + + $.geo = { + // + // utility functions + // + + _allCoordinates: function (geom) { + // return array of all positions in all geometries of geom + // not in JTS + var geometries = this._flatten(geom), + curGeom = 0, + result = []; + + for (; curGeom < geometries.length; curGeom++) { + var coordinates = geometries[curGeom].coordinates, + isArray = coordinates && $.isArray(coordinates[0]), + isDblArray = isArray && $.isArray(coordinates[0][0]), + isTriArray = isDblArray && $.isArray(coordinates[0][0][0]), + i, j, k; + + if (!isTriArray) { + if (!isDblArray) { + if (!isArray) { + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + for (k = 0; k < coordinates[i][j].length; k++) { + result.push(coordinates[i][j][k]); + } + } + } + } + return result; + }, + + // + // bbox functions + // + + center: function (bbox, _ignoreGeo /* Internal Use Only */) { + // Envelope.centre in JTS + // bbox only, use centroid for geom + if (!_ignoreGeo && $.geo.proj) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + var center = [(bbox[0] + bbox[2]) / 2, (bbox[1] + bbox[3]) / 2]; + return !_ignoreGeo && $.geo.proj ? $.geo.proj.toGeodetic(center) : center; + }, + + expandBy: function (bbox, dx, dy) { + if ($.geo.proj) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + bbox = [bbox[0] - dx, bbox[1] - dy, bbox[2] + dx, bbox[3] + dy]; + return $.geo.proj ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + height: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if (!_ignoreGeo && $.geo.proj) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + return bbox[3] - bbox[1]; + }, + + _in: function(bbox1, bbox2) { + return bbox1[0] <= bbox2[0] && + bbox1[1] <= bbox2[1] && + bbox1[2] >= bbox2[2] && + bbox1[3] >= bbox2[3]; + }, + + _bboxDisjoint: function( bbox1, bbox2 ) { + return bbox2[ 0 ] > bbox1[ 2 ] || + bbox2[ 2 ] < bbox1[ 0 ] || + bbox2[ 1 ] > bbox1[ 3 ] || + bbox2[ 3 ] < bbox1[ 1 ]; + }, + + reaspect: function (bbox, ratio, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + if (!_ignoreGeo && $.geo.proj) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + var width = this.width(bbox, true), + height = this.height(bbox, true), + center = this.center(bbox, true), + dx, dy; + + if (width != 0 && height != 0 && ratio > 0) { + if (width / height > ratio) { + dx = width / 2; + dy = dx / ratio; + } else { + dy = height / 2; + dx = dy * ratio; + } + + bbox = [center[0] - dx, center[1] - dy, center[0] + dx, center[1] + dy]; + } + return $.geo.proj ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + scaleBy: function ( bbox, scale, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + if (!_ignoreGeo && $.geo.proj) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + var c = this.center(bbox, true), + dx = (bbox[2] - bbox[0]) * scale / 2, + dy = (bbox[3] - bbox[1]) * scale / 2; + bbox = [c[0] - dx, c[1] - dy, c[0] + dx, c[1] + dy]; + return !_ignoreGeo && $.geo.proj ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + width: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if (!_ignoreGeo && $.geo.proj) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + return bbox[2] - bbox[0]; + }, + + // + // geometry functions + // + + // bbox (Geometry.getEnvelope in JTS) + + bbox: function ( geom, _ignoreGeo /* Internal Use Only */ ) { + if ( !geom ) { + return undefined; + } else if ( geom.bbox ) { + result = !_ignoreGeo && $.geo.proj ? $.geo.proj.fromGeodetic( geom.bbox ) : geom.bbox; + } else { + result = [ pos_oo, pos_oo, neg_oo, neg_oo ]; + + var coordinates = this._allCoordinates( geom ), + curCoord = 0; + + if ( coordinates.length == 0 ) { + return undefined; + } + + if ( $.geo.proj ) { + coordinates = $.geo.proj.fromGeodetic( coordinates ); + } + + for ( ; curCoord < coordinates.length; curCoord++ ) { + result[0] = Math.min(coordinates[curCoord][0], result[0]); + result[1] = Math.min(coordinates[curCoord][1], result[1]); + result[2] = Math.max(coordinates[curCoord][0], result[2]); + result[3] = Math.max(coordinates[curCoord][1], result[3]); + } + } + + return $.geo.proj ? $.geo.proj.toGeodetic(result) : result; + }, + + // centroid + + centroid: function( geom, _ignoreGeo /* Internal Use Only */ ) { + switch (geom.type) { + case "Point": + return $.extend({}, geom); + + case "LineString": + case "Polygon": + var a = 0, + c = [0, 0], + coords = $.merge( [ ], geom.type == "Polygon" ? geom.coordinates[0] : geom.coordinates ), + i = 1, j, n; + + if ( !_ignoreGeo && $.geo.proj ) { + coords = $.geo.proj.fromGeodetic(coords); + } + + //if (coords[0][0] != coords[coords.length - 1][0] || coords[0][1] != coords[coords.length - 1][1]) { + // coords.push(coords[0]); + //} + + for (; i <= coords.length; i++) { + j = i % coords.length; + n = (coords[i - 1][0] * coords[j][1]) - (coords[j][0] * coords[i - 1][1]); + a += n; + c[0] += (coords[i - 1][0] + coords[j][0]) * n; + c[1] += (coords[i - 1][1] + coords[j][1]) * n; + } + + if (a == 0) { + if (coords.length > 0) { + c[0] = coords[0][0]; + c[1] = coords[0][1]; + return { type: "Point", coordinates: !_ignoreGeo && $.geo.proj ? $.geo.proj.toGeodetic(c) : c }; + } else { + return undefined; + } + } + + a *= 3; + c[0] /= a; + c[1] /= a; + + return { type: "Point", coordinates: !_ignoreGeo && $.geo.proj ? $.geo.proj.toGeodetic(c) : c }; + } + return undefined; + }, + + // contains + + contains: function (geom1, geom2) { + if (geom1.type != "Polygon") { + return false; + } + + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1.coordinates, geom2.coordinates); + + case "LineString": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates); + + case "Polygon": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates[0]); + + default: + return false; + } + }, + + _containsPolygonPoint: function (polygonCoordinates, pointCoordinate) { + if (polygonCoordinates.length == 0 || polygonCoordinates[0].length < 4) { + return false; + } + + var rayCross = 0, + a = polygonCoordinates[0][0], + i = 1, + b, + x; + + for (; i < polygonCoordinates[0].length; i++) { + b = polygonCoordinates[0][i]; + + if ((a[1] <= pointCoordinate[1] && pointCoordinate[1] < b[1]) || (b[1] <= pointCoordinate[1] && pointCoordinate[1] < a[1]) && (pointCoordinate[0] < a[0] || pointCoordinate[0] < b[0])) { + x = a[0] + (b[0] - a[0]) * (pointCoordinate[1] - a[1]) / (b[1] - a[1]); + + if (x > pointCoordinate[0]) { + rayCross++; + } + } + + a = b; + } + + return rayCross % 2 == 1; + }, + + _containsPolygonLineString: function (polygonCoordinates, lineStringCoordinates) { + for (var i = 0; i < lineStringCoordinates.length; i++) { + if (!this._containsPolygonPoint(polygonCoordinates, lineStringCoordinates[i])) { + return false; + } + } + return true; + }, + + // distance + + distance: function ( geom1, geom2, _ignoreGeo /* Internal Use Only */ ) { + var geom1CoordinatesProjected = !_ignoreGeo && $.geo.proj ? $.geo.proj.fromGeodetic(geom1.coordinates) : geom1.coordinates, + geom2CoordinatesProjected = !_ignoreGeo && $.geo.proj ? $.geo.proj.fromGeodetic(geom2.coordinates) : geom2.coordinates; + + switch (geom1.type) { + case "Point": + switch (geom2.type) { + case "Point": + return this._distancePointPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "LineString": + return this._distanceLineStringPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "Polygon": + return this._containsPolygonPoint(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "LineString": + switch (geom2.type) { + case "Point": + return this._distanceLineStringPoint(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "LineString": + return this._distanceLineStringLineString(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "Polygon": + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "LineString": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected[0]) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected[0]); + default: + return undefined; + } + break; + } + }, + + _distancePointPoint: function (coordinate1, coordinate2) { + var dx = coordinate2[0] - coordinate1[0], + dy = coordinate2[1] - coordinate1[1]; + return Math.sqrt((dx * dx) + (dy * dy)); + }, + + _distanceLineStringPoint: function (lineStringCoordinates, pointCoordinate) { + var minDist = pos_oo; + + if (lineStringCoordinates.length > 0) { + var a = lineStringCoordinates[0], + + apx = pointCoordinate[0] - a[0], + apy = pointCoordinate[1] - a[1]; + + if (lineStringCoordinates.length == 1) { + return Math.sqrt(apx * apx + apy * apy); + } else { + for (var i = 1; i < lineStringCoordinates.length; i++) { + var b = lineStringCoordinates[i], + + abx = b[0] - a[0], + aby = b[1] - a[1], + bpx = pointCoordinate[0] - b[0], + bpy = pointCoordinate[1] - b[1], + + d = this._distanceSegmentPoint(abx, aby, apx, apy, bpx, bpy); + + if (d == 0) { + return 0; + } + + if (d < minDist) { + minDist = d; + } + + a = b; + apx = bpx; + apy = bpy; + } + } + } + + return Math.sqrt(minDist); + }, + + _distanceSegmentPoint: function (abx, aby, apx, apy, bpx, bpy) { + var dot1 = abx * apx + aby * apy; + + if (dot1 <= 0) { + return apx * apx + apy * apy; + } + + var dot2 = abx * abx + aby * aby; + + if (dot1 >= dot2) { + return bpx * bpx + bpy * bpy; + } + + return apx * apx + apy * apy - dot1 * dot1 / dot2; + }, + + _distanceLineStringLineString: function (lineStringCoordinates1, lineStringCoordinates2) { + var minDist = pos_oo; + for (var i = 0; i < lineStringCoordinates2.length; i++) { + minDist = Math.min(minDist, this._distanceLineStringPoint(lineStringCoordinates1, lineStringCoordinates2[i])); + } + return minDist; + }, + + // + // feature + // + + _flatten: function (geom) { + // return an array of all basic geometries + // not in JTS + var geometries = [], + curGeom = 0; + switch (geom.type) { + case "Feature": + $.merge(geometries, this._flatten(geom.geometry)); + break; + + case "FeatureCollection": + for (; curGeom < geom.features.length; curGeom++) { + $.merge(geometries, this._flatten(geom.features[curGeom].geometry)); + } + break; + + case "GeometryCollection": + for (; curGeom < geom.geometries.length; curGeom++) { + $.merge(geometries, this._flatten(geom.geometries[curGeom])); + } + break; + + default: + geometries[0] = geom; + break; + } + return geometries; + }, + + // + // WKT functions + // + + _WKT: (function () { + function pointToString(value) { + return "POINT " + pointToUntaggedString(value.coordinates); + } + + function pointToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + return "(" + coordinates.join(" ") + ")"; + } + } + + function lineStringToString(value) { + return "LINESTRING " + lineStringToUntaggedString(value.coordinates); + } + + function lineStringToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var points = [] + + for (var i = 0; i < coordinates.length; i++) { + points.push(coordinates[i].join(" ")); + } + + return "(" + points + ")"; + } + } + + function polygonToString(value) { + return "POLYGON " + polygonToUntaggedString(value.coordinates); + } + + function polygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMTPY"; + } else { + var lineStrings = []; + + for (var i = 0; i < coordinates.length; i++) { + lineStrings.push(lineStringToUntaggedString(coordinates[i])); + } + + return "(" + lineStrings + ")"; + } + } + + function multiPointToString(value) { + return "MULTIPOINT " + lineStringToUntaggedString(value.coordinates); + } + + function multiLineStringToString(value) { + return "MULTILINSTRING " + polygonToUntaggedString(value.coordinates); + } + + function multiPolygonToString(value) { + return "MULTIPOLYGON " + multiPolygonToUntaggedString(value.coordinates); + } + + function multiPolygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var polygons = []; + for (var i = 0; i < coordinates.length; i++) { + polygons.push(polygonToUntaggedString(coordinates[i])); + } + return "(" + polygons + ")"; + } + } + + function geometryCollectionToString(value) { + return "GEOMETRYCOLLECTION " + geometryCollectionToUntaggedString(value.geometries); + } + + function geometryCollectionToUntaggedString(geometries) { + if (!(geometries && geometries.length)) { + return "EMPTY"; + } else { + var geometryText = []; + for (var i = 0; i < geometries.length; i++) { + geometryText.push(stringify(geometries[i])); + } + return "(" + geometries + ")"; + } + } + + function stringify(value) { + if (!(value && value.type)) { + return ""; + } else { + switch (value.type) { + case "Point": + return pointToString(value); + + case "LineString": + return lineStringToString(value); + + case "Polygon": + return polygonToString(value); + + case "MultiPoint": + return multiPointToString(value); + + case "MultiLineString": + return multiLineStringToString(value); + + case "MultiPolygon": + return multiPolygonToString(value); + + case "GeometryCollection": + return geometryCollectionToString(value); + + default: + return ""; + } + } + } + + function pointParseUntagged(wkt) { + var pointString = wkt.match(/\(\s*([\d\.-]+)\s+([\d\.-]+)\s*\)/); + return pointString && pointString.length >= 2 ? { + type: "Point", + coordinates: [ + parseFloat(pointString[1]), + parseFloat(pointString[2]) + ] + } : null; + } + + function parse(wkt) { + wkt = $.trim(wkt); + + var typeIndex = wkt.indexOf(" "); + + switch (wkt.substr(0, typeIndex).toUpperCase()) { + case "POINT": + return pointParseUntagged(wkt.substr(typeIndex + 1)); + } + } + + return { + stringify: stringify, + + parse: parse + }; + })(), + + // + // projection functions + // + + proj: (function () { + var halfPi = 1.5707963267948966192, + quarterPi = 0.7853981633974483096, + radiansPerDegree = 0.0174532925199432958, + degreesPerRadian = 57.295779513082320877, + semiMajorAxis = 6378137; + + return { + fromGeodeticPos: function (coordinate) { + if (!coordinate) { + debugger; + } + return [ + semiMajorAxis * coordinate[ 0 ] * radiansPerDegree, + semiMajorAxis * Math.log(Math.tan(quarterPi + coordinate[ 1 ] * radiansPerDegree / 2)) + ]; + }, + + fromGeodetic: function (coordinates) { + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + fromGeodeticPos = this.fromGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = fromGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = fromGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ], + i, j, k; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = fromGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + }, + + toGeodeticPos: function (coordinate) { + return [ + (coordinate[ 0 ] / semiMajorAxis) * degreesPerRadian, + (halfPi - 2 * Math.atan(1 / Math.exp(coordinate[ 1 ] / semiMajorAxis))) * degreesPerRadian + ]; + }, + + toGeodetic: function (coordinates) { + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + toGeodeticPos = this.toGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = toGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = toGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ]; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = toGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + } + } + })(), + + // + // service types (defined in other files) + // + + _serviceTypes: {} + } +})(jQuery, this); +(function ($, undefined) { + + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()); + + $.widget("geo.geographics", { + _$elem: undefined, + _options: {}, + _trueCanvas: true, + + _width: 0, + _height: 0, + + _$canvas: undefined, + _context: undefined, + + options: { + style: { + borderRadius: "8px", + color: "#7f0000", + //fill: undefined, + fillOpacity: .2, + height: "8px", + opacity: 1, + //stroke: undefined, + strokeOpacity: 1, + strokeWidth: "2px", + visibility: "visible", + width: "8px" + } + }, + + _create: function () { + this._$elem = this.element; + this._options = this.options; + + this._$elem.css({ display: "inline-block", overflow: "hidden", textAlign: "left" }); + + if (this._$elem.css("position") == "static") { + this._$elem.css("position", "relative"); + } + + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + if (document.createElement('canvas').getContext) { + this._$elem.append(''); + this._$canvas = this._$elem.children(':last'); + this._context = this._$canvas[0].getContext("2d"); + } else if (_ieVersion <= 8) { + this._trueCanvas = false; + this._$elem.append('
          '); + this._$canvas = this._$elem.children(':last'); + + G_vmlCanvasManager.initElement(this._$canvas[0]); + this._context = this._$canvas[0].getContext("2d"); + this._$canvas.children().css({ backgroundColor: "transparent", width: this._width, height: this._height }); + } + }, + + _setOption: function (key, value) { + if (key == "style") { + value = $.extend({}, this._options.style, value); + } + $.Widget.prototype._setOption.apply(this, arguments); + }, + + destroy: function () { + $.Widget.prototype.destroy.apply(this, arguments); + this._$elem.html(""); + }, + + clear: function () { + this._context.clearRect(0, 0, this._width, this._height); + }, + + drawArc: function (coordinates, startAngle, sweepAngle, style) { + style = this._getGraphicStyle(style); + + if (style.visibility != "hidden" && style.opacity > 0 && style.widthValue > 0 && style.heightValue > 0) { + var r = Math.min(style.widthValue, style.heightValue) / 2; + + startAngle = (startAngle * Math.PI / 180); + sweepAngle = (sweepAngle * Math.PI / 180); + + this._context.save(); + this._context.translate(coordinates[0], coordinates[1]); + if (style.widthValue > style.heightValue) { + this._context.scale(style.widthValue / style.heightValue, 1); + } else { + this._context.scale(1, style.heightValue / style.widthValue); + } + + this._context.beginPath(); + this._context.arc(0, 0, r, startAngle, sweepAngle, false); + + if (this._trueCanvas) { + this._context.restore(); + } + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + + if (!this._trueCanvas) { + this._context.restore(); + } + } + }, + + drawPoint: function (coordinates, style) { + var style = this._getGraphicStyle(style); + if (style.widthValue == style.heightValue && style.heightValue == style.borderRadiusValue) { + this.drawArc(coordinates, 0, 360, style); + } else if (style.visibility != "hidden" && style.opacity > 0) { + style.borderRadiusValue = Math.min(Math.min(style.widthValue, style.heightValue) / 2, style.borderRadiusValue); + coordinates[0] -= style.widthValue / 2; + coordinates[1] -= style.heightValue / 2; + this._context.beginPath(); + this._context.moveTo(coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.lineTo(coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1]); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1], coordinates[0] + style.widthValue, coordinates[1] + style.borderRadiusValue); + this._context.lineTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue, coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.lineTo(coordinates[0] + style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1] + style.heightValue, coordinates[0], coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.lineTo(coordinates[0], coordinates[1] + style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1], coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.closePath(); + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + + this._context.stroke(); + } + } + }, + + drawLineString: function (coordinates, style) { + this._drawLines([coordinates], false, style); + }, + + drawPolygon: function (coordinates, style) { + this._drawLines(coordinates, true, style); + }, + + drawBbox: function (bbox, style) { + this._drawLines([[ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ]], true, style); + }, + + _getGraphicStyle: function (style) { + function safeParse(value) { + value = parseInt(value); + return (+value + '') === value ? +value : value; + } + + style = $.extend({}, this._options.style, style); + style.borderRadiusValue = safeParse(style.borderRadius); + style.fill = style.fill || style.color; + style.doFill = style.fill && style.fillOpacity > 0; + style.stroke = style.stroke || style.color; + style.strokeWidthValue = safeParse(style.strokeWidth); + style.doStroke = style.stroke && style.strokeOpacity > 0 && style.strokeWidthValue > 0; + style.widthValue = safeParse(style.width); + style.heightValue = safeParse(style.height); + return style; + }, + + _drawLines: function (coordinates, close, style) { + if (!coordinates || !coordinates.length || coordinates[0].length < 2) { + return; + } + + var style = this._getGraphicStyle(style), + i, j; + + if (style.visibility != "hidden" && style.opacity > 0) { + this._context.beginPath(); + this._context.moveTo(coordinates[0][0][0], coordinates[0][0][1]); + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + this._context.lineTo(coordinates[i][j][0], coordinates[i][j][1]); + } + } + + if (close) { + this._context.closePath(); + } + + if (close && style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineCap = this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + } + } + }); + + +})(jQuery); + +(function ($, undefined) { + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()), + + _defaultOptions = { + bbox: [-180, -85, 180, 85], + bboxMax: [-180, -85, 180, 85], + center: [0, 0], + cursors: { + pan: "move", + zoom: "crosshair", + drawPoint: "crosshair", + drawLineString: "crosshair", + drawPolygon: "crosshair" + }, + drawStyle: {}, + shapeStyle: {}, + mode: "pan", + services: [ + { + "class": "osm", + type: "tiled", + getUrl: function (view) { + return "http://tile.openstreetmap.org/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png"; + }, + attr: "© OpenStreetMap & contributors, CC-BY-SA" + } + ], + tilingScheme: { + tileWidth: 256, + tileHeight: 256, + levels: 18, + basePixelSize: 156543.03392799936, + origin: [-20037508.342787, 20037508.342787] + }, + zoom: 0, + pixelSize: 0 + }; + + $.widget("geo.geomap", { + // private widget members + _$elem: undefined, + _created: false, + + _contentBounds: {}, + + _$contentFrame: undefined, + _$existingChildren: undefined, + _$servicesContainer: undefined, + _$drawContainer: undefined, + _$shapesContainer: undefined, + _$textContainer: undefined, + _$textContent: undefined, + _$eventTarget: undefined, + + _dpi: 96, + + _currentServices: [], //< internal copy + + _center: undefined, + _pixelSize: undefined, + _centerMax: undefined, + _pixelSizeMax: undefined, + + _wheelZoomFactor: 1.18920711500273, + _wheelTimeout: null, + _wheelLevel: 0, + + _zoomFactor: 2, + + _mouseDown: undefined, + _inOp: undefined, + _toolPan: undefined, + _shiftZoom: undefined, + _anchor: undefined, + _current: undefined, + _downDate: undefined, + _moveDate: undefined, + _clickDate: undefined, + _lastMove: undefined, + _lastDrag: undefined, + + _windowHandler: null, + _resizeTimeout: null, + + _panning: undefined, + _velocity: undefined, + _friction: undefined, + + _supportTouch: undefined, + _softDblClick: undefined, + _isTap: undefined, + _isDbltap: undefined, + + _drawTimeout: null, //< used in drawPoint mode so we don't send two shape events on dbltap + _drawPixels: [], //< an array of coordinate arrays for drawing lines & polygons, in pixel coordinates + _drawCoords: [], + + _graphicShapes: [], //< an array of objects containing style object refs & GeoJSON object refs + + _initOptions: {}, + + _options: {}, + + options: $.extend({}, _defaultOptions), + + _createWidget: function (options, element) { + this._$elem = $(element); + + if (this._$elem.is("[data-geo-service]")) { + $.Widget.prototype._createWidget.apply(this, arguments); + return; + } + + this._$elem.attr("data-geo-map", "data-geo-map"); + + this._graphicShapes = []; + + this._initOptions = options || {}; + + this._forcePosition(this._$elem); + + this._$elem.css("text-align", "left"); + + var size = this._findMapSize(); + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._createChildren(); + + this._center = this._centerMax = [0, 0]; + + this.options["pixelSize"] = this._pixelSize = this._pixelSizeMax = 156543.03392799936; + + this._mouseDown = + this._inOp = + this._toolPan = + this._shiftZoom = + this._panning = + this._isTap = + this._isDbltap = false; + + this._anchor = + this._current = + this._lastMove = + this._lastDrag = + this._velocity = [0, 0]; + + this._friction = [.8, .8]; + + this._downDate = + this._moveDate = + this._clickDate = 0; + + $.Widget.prototype._createWidget.apply(this, arguments); + }, + + _create: function () { + if (this._$elem.is("[data-geo-service]")) { + return; + } + + this._options = this.options; + + this._supportTouch = "ontouchend" in document; + this._softDblClick = this._supportTouch || _ieVersion == 7; + + var touchStartEvent = this._supportTouch ? "touchstart" : "mousedown", + touchStopEvent = this._supportTouch ? "touchend touchcancel" : "mouseup", + touchMoveEvent = this._supportTouch ? "touchmove" : "mousemove"; + + $(document).keydown($.proxy(this._document_keydown, this)); + + this._$eventTarget.dblclick($.proxy(this._eventTarget_dblclick, this)); + + this._$eventTarget.bind(touchStartEvent, $.proxy(this._eventTarget_touchstart, this)); + + var dragTarget = (this._$eventTarget[0].setCapture) ? this._$eventTarget : $(document); + dragTarget.bind(touchMoveEvent, $.proxy(this._dragTarget_touchmove, this)); + dragTarget.bind(touchStopEvent, $.proxy(this._dragTarget_touchstop, this)); + + this._$eventTarget.mousewheel($.proxy(this._eventTarget_mousewheel, this)); + + var geomap = this; + this._windowHandler = function () { + if (geomap._resizeTimeout) { + clearTimeout(geomap._resizeTimeout); + } + this._resizeTimeout = setTimeout(function () { + if (geomap._created) { + geomap._$elem.geomap("resize"); + } + }, 500); + }; + + $(window).resize(this._windowHandler); + + this._$drawContainer.geographics({ style: this._initOptions.drawStyle || {} }); + this._options["drawStyle"] = this._$drawContainer.geographics("option", "style"); + + this._$shapesContainer.geographics( { style: this._initOptions.shapeStyle || { } } ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + + if (this._initOptions) { + if (this._initOptions.bbox) { + this._setOption("bbox", this._initOptions.bbox, false); + } + if (this._initOptions.center) { + this._setOption("center", this._initOptions.center, false); + } + if (this._initOptions.zoom) { + this._setZoom(this._initOptions.zoom, false, false); + } + } + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._createServices(); + + this._refresh(); + + this._created = true; + }, + + _setOption: function (key, value, refresh) { + if ( this._$elem.is( "[data-geo-service]" ) || key == "pixelSize" ) { + return; + } + + refresh = (refresh === undefined || refresh); + + switch (key) { + case "bbox": + if ($.geo.proj) { + value = $.geo.proj.fromGeodetic([[value[0], value[1]], [value[2], value[3]]]); + value = [value[0][0], value[0][1], value[1][0], value[1][1]]; + } + + this._setBbox(value, false, refresh); + value = this._getBbox(); + + if ($.geo.proj) { + value = $.geo.proj.toGeodetic([[value[0], value[1]], [value[2], value[3]]]); + value = [value[0][0], value[0][1], value[1][0], value[1][1]]; + } + break; + + case "center": + this._setCenterAndSize($.geo.proj ? $.geo.proj.fromGeodetic([[value[0], value[1]]])[0] : value, this._pixelSize, false, refresh); + break; + + case "drawStyle": + if (this._$drawContainer) { + this._$drawContainer.geographics("option", "style", value); + value = this._$drawContainer.geographics("option", "style"); + } + break; + + case "shapeStyle": + if (this._$shapesContainer) { + this._$shapesContainer.geographics("option", "style", value); + value = this._$shapesContainer.geographics("option", "style"); + } + break; + + case "mode": + this._$drawContainer.geographics("clear"); + this._$eventTarget.css("cursor", this._options["cursors"][value]); + break; + + case "zoom": + this._setZoom(value, false, refresh); + break; + } + + $.Widget.prototype._setOption.apply(this, arguments); + + switch (key) { + case "services": + this._createServices(); + if (refresh) { + this._refresh(); + } + break; + + case "shapeStyle": + if ( refresh ) { + this._$shapesContainer.geographics("clear"); + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes ); + } + break; + } + }, + + destroy: function () { + if (this._$elem.is("[data-geo-map]")) { + this._created = false; + + $(window).unbind("resize", this._windowHandler); + + for ( var i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[i].serviceContainer.geomap("destroy"); + $.geo["_serviceTypes"][this._currentServices[i].type].destroy(this, this._$servicesContainer, this._currentServices[i]); + } + + this._$shapesContainer.geographics("destroy"); + this._$drawContainer.geographics("destroy"); + + this._$existingChildren.detach(); + this._$elem.html(""); + this._$elem.append(this._$existingChildren); + this._$elem.removeAttr("data-geo-map"); + } + $.Widget.prototype.destroy.apply(this, arguments); + }, + + toMap: function (p) { + p = this._toMap(p); + return $.geo.proj ? $.geo.proj.toGeodetic(p) : p; + }, + + toPixel: function ( p, _center /* Internal Use Only */, _pixelSize /* Internal Use Only */ ) { + p = $.geo.proj ? $.geo.proj.fromGeodetic(p) : p; + return this._toPixel(p, _center, _pixelSize); + }, + + opacity: function (value, _serviceContainer) { + if (this._$elem.is("[data-geo-service]")) { + this._$elem.closest("[data-geo-map]").geomap("opacity", value, this._$elem); + } else { + if (value >= 0 || value <= 1) { + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[i]; + if ( !_serviceContainer || service.serviceContainer[0] == _serviceContainer[0] ) { + this._options["services"][i].opacity = service.opacity = value; + $.geo["_serviceTypes"][service.type].opacity(this, service); + } + } + } + } + }, + + toggle: function (value, _serviceContainer) { + if (this._$elem.is("[data-geo-service]")) { + this._$elem.closest("[data-geo-map]").geomap("toggle", value, this._$elem); + } else { + for (var i = 0; i < this._currentServices.length; i++) { + var service = this._currentServices[i]; + if (!_serviceContainer || service.serviceContainer[0] == _serviceContainer[0]) { + if (value === undefined) { + value = (service.visibility === undefined || service.visibility === "visible" ? false : true); + } + + this._options["services"][i].visibility = service.visibility = ( value ? "visible" : "hidden" ); + $.geo["_serviceTypes"][service.type].toggle(this, service); + + if (value) { + $.geo["_serviceTypes"][service.type].refresh(this, service); + } + } + } + } + }, + + zoom: function (numberOfLevels) { + if (numberOfLevels != null) { + this._setZoom(this._options["zoom"] + numberOfLevels, false, true); + } + }, + + refresh: function () { + this._refresh(); + }, + + resize: function () { + var size = this._findMapSize(), + dx = size["width"]/2 - this._contentBounds.width/2, + dy = size["height"]/2 - this._contentBounds.height/2, + i; + + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._$contentFrame.css({ + width: size["width"], + height: size["height"] + }); + + this._$servicesContainer.css({ + width: size["width"], + height: size["height"] + }); + + this._$eventTarget.css({ + width: size["width"], + height: size["height"] + }); + + var shapeStyle = this._$shapesContainer.geographics("option", "style"); + + this._$shapesContainer.geographics("destroy"); + this._$drawContainer.geographics("destroy"); + + for (i = 0; i < this._currentServices.length; i++) { + $.geo["_serviceTypes"][this._currentServices[i].type].resize(this, this._currentServices[i]); + } + + + this._$drawContainer.css({ + width: size.width, + height: size.height + }); + this._$drawContainer.geographics(); + + this._$shapesContainer.css({ + width: size.width, + height: size.height + }); + this._$shapesContainer.geographics( { style: shapeStyle } ); + + for (i = 0; i < this._drawPixels.length; i++) { + this._drawPixels[i][0] += dx; + this._drawPixels[i][1] += dy; + } + + this._setCenterAndSize(this._center, this._pixelSize, false, true); + }, + + append: function ( shape, style, refresh ) { + if ( shape ) { + var shapes, i = 0; + if ( shape.type == "FeatureCollection" ) { + shapes = shape.features; + } else { + shapes = $.isArray( shape ) ? shape : [ shape ]; + } + + if ( typeof style === "boolean" ) { + refresh = style; + style = null; + } + + for ( ; i < shapes.length; i++ ) { + if ( shapes[ i ].type != "Point" ) { + var bbox = $.geo.bbox( shapes[ i ] ); + if ( $.geo.proj ) { + bbox = $.geo.proj.fromGeodetic( bbox ); + } + $.data( shapes[ i ], "geoBbox", bbox ); + } + + this._graphicShapes.push( { + shape: shapes[ i ], + style: style + } ); + } + + if ( refresh === undefined || refresh ) { + this._refresh( ); + } + } + }, + + empty: function ( refresh ) { + $.each( this._graphicShapes, function( ) { + $.removeData( this, "geoBbox" ); + } ); + this._graphicShapes = []; + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + find: function (point, pixelTolerance) { + var searchPixel = this.toPixel( point.coordinates ), + mapTol = this._pixelSize * pixelTolerance, + result = [], + curGeom; + + $.each( this._graphicShapes, function ( i ) { + if ( this.shape.type == "Point" ) { + if ( $.geo.distance(this.shape, point) <= mapTol ) { + result.push( this.shape ); + } + } else { + var bbox = $.data( this.shape, "geoBbox" ), + bboxPolygon = { + type: "Polygon", + coordinates: [ [ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ] ] + }, + projectedPoint = { + type: "Point", + coordinates: $.geo.proj ? $.geo.proj.fromGeodetic( point.coordinates ) : point.coordinates + }; + + if ( $.geo.distance( bboxPolygon, projectedPoint, true ) <= mapTol ) { + var geometries = $.geo._flatten( this.shape ); + for ( curGeom = 0; curGeom < geometries.length; curGeom++ ) { + if ( $.geo.distance( geometries[curGeom], point ) <= mapTol ) { + result.push( this.shape ); + break; + } + } + } + } + }); + + return result; + }, + + remove: function ( shape, refresh ) { + var geomap = this; + $.each( this._graphicShapes, function ( i ) { + if ( this.shape == shape ) { + $.removeData( shape, "geoBbox" ); + var rest = geomap._graphicShapes.slice( i + 1 ); + geomap._graphicShapes.length = i; + geomap._graphicShapes.push.apply(geomap._graphicShapes, rest); + return false; + } + }); + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + _getBbox: function (center, pixelSize) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + // calculate the internal bbox + var halfWidth = this._contentBounds["width"] / 2 * pixelSize, + halfHeight = this._contentBounds["height"] / 2 * pixelSize; + return [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight]; + }, + + _setBbox: function (value, trigger, refresh) { + var center = [value[0] + (value[2] - value[0]) / 2, value[1] + (value[3] - value[1]) / 2], + pixelSize = Math.max($.geo.width(value, true) / this._contentBounds.width, $.geo.height(value, true) / this._contentBounds.height); + + if (this._options["tilingScheme"]) { + var zoom = this._getTiledZoom(pixelSize); + pixelSize = this._getTiledPixelSize(zoom); + } + this._setCenterAndSize(center, pixelSize, trigger, refresh); + }, + + _getBboxMax: function () { + // calculate the internal bboxMax + var halfWidth = this._contentBounds["width"] / 2 * this._pixelSizeMax, + halfHeight = this._contentBounds["height"] / 2 * this._pixelSizeMax; + return [this._centerMax[0] - halfWidth, this._centerMax[1] - halfHeight, this._centerMax[0] + halfWidth, this._centerMax[1] + halfHeight]; + }, + + _getCenter: function () { + return this._center; + }, + + _getContentBounds: function () { + return this._contentBounds; + }, + + _getServicesContainer: function () { + return this._$servicesContainer; + }, + + _getZoom: function () { + // calculate the internal zoom level, vs. public zoom property + if (this._options["tilingScheme"]) { + return this._getTiledZoom(this._pixelSize); + } else { + var ratio = this._contentBounds["width"] / this._contentBounds["height"], + bbox = $.geo.reaspect(this._getBbox(), ratio, true), + bboxMax = $.geo.reaspect(this._getBboxMax(), ratio, true); + + return Math.log($.geo.width(bboxMax, true) / $.geo.width(bbox, true)) / Math.log(this._zoomFactor); + } + }, + + _setZoom: function (value, trigger, refresh) { + value = Math.max(value, 0); + + if (this._options["tilingScheme"]) { + this._setCenterAndSize(this._center, this._getTiledPixelSize(value), trigger, refresh); + } else { + var bbox = $.geo.scaleBy(this._getBboxMax(), 1 / Math.pow(this._zoomFactor, value), true), + pixelSize = Math.max($.geo.width(bbox, true) / this._contentBounds.width, $.geo.height(bbox, true) / this._contentBounds.height); + this._setCenterAndSize(this._center, pixelSize, trigger, refresh); + } + }, + + _createChildren: function () { + this._$existingChildren = this._$elem.children().detach(); + + this._forcePosition(this._$existingChildren); + + this._$existingChildren.css("-moz-user-select", "none"); + + this._$elem.prepend("
          "); + this._$eventTarget = this._$contentFrame = this._$elem.children(':first'); + + this._$contentFrame.append('
          '); + this._$servicesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
          '); + this._$shapesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
          '); + this._$drawContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append(''); + this._$textContainer = this._$contentFrame.children(':last'); + this._$textContent = this._$textContainer.children(); + + this._$contentFrame.append(this._$existingChildren); + }, + + _createServices: function () { + var i; + + for (i = 0; i < this._currentServices.length; i++) { + this._currentServices[i].serviceContainer.geomap("destroy"); + $.geo["_serviceTypes"][this._currentServices[i].type].destroy(this, this._$servicesContainer, this._currentServices[i]); + } + + this._currentServices = []; + for (i = 0; i < this._options["services"].length; i++) { + this._currentServices[i] = this._options["services"][i]; + this._currentServices[i].serviceContainer = $.geo["_serviceTypes"][this._currentServices[i].type].create(this, this._$servicesContainer, this._currentServices[i], i).geomap(); + } + }, + + _refreshDrawing: function () { + this._$drawContainer.geographics("clear"); + + if ( this._drawPixels.length > 0 ) { + var mode = this._options[ "mode" ], + coords = this._drawPixels; + + if ( mode == "drawPolygon" ) { + coords = [ coords ]; + } + + this._$drawContainer.geographics( mode, coords ); + } + }, + + _resetDrawing: function () { + //this._$textContainer.hide(); + this._drawPixels = []; + this._drawCoords = []; + this._$drawContainer.geographics("clear"); + }, + + _refreshShapes: function (geographics, shapes, styles, center, pixelSize) { + var i, + mgi, + shape, + shapeBbox, + style, + pixelPositions, + bbox = this._getBbox(center, pixelSize), + geomap = this; + + for (i = 0; i < shapes.length; i++) { + shape = shapes[i].shape || shapes[i]; + shape = shape.geometry || shape; + shapeBbox = $.data(shape, "geoBbox"); + + if ( shapeBbox && $.geo._bboxDisjoint( bbox, shapeBbox ) ) { + continue; + } + + style = $.isArray(styles) ? styles[i].style : styles; + + switch (shape.type) { + case "Point": + this._$shapesContainer.geographics("drawPoint", this.toPixel(shape.coordinates, center, pixelSize), style); + break; + case "LineString": + this._$shapesContainer.geographics("drawLineString", this.toPixel(shape.coordinates, center, pixelSize), style); + break; + case "Polygon": + pixelPositions = []; + $.each(shape.coordinates, function (i) { + pixelPositions[i] = geomap.toPixel(this, center, pixelSize); + }); + this._$shapesContainer.geographics("drawPolygon", pixelPositions, style); + break; + case "MultiPoint": + for (mgi = 0; mgi < shape.coordinates; mgi++) { + this._$shapesContainer.geographics("drawPoint", this.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + break; + case "MultiLineString": + for (mgi = 0; mgi < shape.coordinates; mgi++) { + this._$shapesContainer.geographics("drawLineString", this.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + break; + case "MultiPolygon": + for (mgi = 0; mgi < shape.coordinates; mgi++) { + pixelPositions = []; + $.each(shape.coordinates[mgi], function (i) { + pixelPositions[i] = geomap.toPixel(this, center, pixelSize); + }); + this._$shapesContainer.geographics("drawPolygon", pixelPositions, style); + } + break; + + case "GeometryCollection": + geomap._refreshShapes(geographics, shape.geometries, style, center, pixelSize); + break; + } + } + }, + + _findMapSize: function () { + // really, really attempt to find a size for this thing + // even if it's hidden (look at parents) + var size = { width: 0, height: 0 }, + sizeContainer = this._$elem; + + while (sizeContainer.size() && !(size["width"] > 0 && size["height"] > 0)) { + size = { width: sizeContainer.width(), height: sizeContainer.height() }; + if (size["width"] <= 0 || size["height"] <= 0) { + size = { width: parseInt(sizeContainer.css("width")), height: parseInt(sizeContainer.css("height")) }; + } + sizeContainer = sizeContainer.parent(); + } + return size; + }, + + _forcePosition: function (elem) { + var cssPosition = elem.css("position"); + if (cssPosition != "relative" && cssPosition != "absolute" && cssPosition != "fixed") { + elem.css("position", "relative"); + } + }, + + _getTiledPixelSize: function (zoom) { + var tilingScheme = this._options["tilingScheme"]; + if (tilingScheme != null) { + if (zoom === 0) { + return tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes[0] : tilingScheme.basePixelSize; + } + + zoom = Math.round(zoom); + zoom = Math.max(zoom, 0); + var levels = tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes.length : tilingScheme.levels; + zoom = Math.min(zoom, levels - 1); + + if (tilingScheme.pixelSizes != null) { + return tilingScheme.pixelSizes[zoom]; + } else { + return tilingScheme.basePixelSize / Math.pow(2, zoom); + } + } else { + return NaN; + } + }, + + _getTiledZoom: function (pixelSize) { + var tilingScheme = this._options["tilingScheme"]; + if (tilingScheme.pixelSizes != null) { + var roundedPixelSize = Math.floor(pixelSize * 1000), + levels = tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes.length : tilingScheme.levels; + for (var i = levels - 1; i >= 0; i--) { + if (Math.floor(tilingScheme.pixelSizes[i] * 1000) >= roundedPixelSize) { + return i; + } + } + return 0; + } else { + return Math.max(Math.round(Math.log(tilingScheme.basePixelSize / pixelSize) / Math.log(2)), 0); + } + }, + + _getZoomCenterAndSize: function (anchor, zoomDelta, zoomFactor) { + var pixelSize, zoomLevel, scale; + if (this._options["tilingScheme"]) { + zoomLevel = this._getTiledZoom(this._pixelSize) + zoomDelta; + pixelSize = this._getTiledPixelSize(zoomLevel); + } else { + scale = Math.pow(zoomFactor, -zoomDelta); + pixelSize = this._pixelSize * scale; + } + + var + ratio = pixelSize / this._pixelSize, + anchorMapCoord = this._toMap(anchor), + centerDelta = [(this._center[0] - anchorMapCoord[0]) * ratio, (this._center[1] - anchorMapCoord[1]) * ratio], + scaleCenter = [anchorMapCoord[0] + centerDelta[0], anchorMapCoord[1] + centerDelta[1]]; + + return { pixelSize: pixelSize, center: scaleCenter }; + }, + + _mouseWheelFinish: function () { + this._wheelTimeout = null; + + if (this._wheelLevel != 0) { + var wheelCenterAndSize = this._getZoomCenterAndSize(this._anchor, this._wheelLevel, this._wheelZoomFactor); + + this._setCenterAndSize(wheelCenterAndSize.center, wheelCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + } else { + this._refresh(); + } + }, + + _panEnd: function () { + this._velocity = [ + (this._velocity[0] > 0 ? Math.floor(this._velocity[0] * this._friction[0]) : Math.ceil(this._velocity[0] * this._friction[0])), + (this._velocity[1] > 0 ? Math.floor(this._velocity[1] * this._friction[1]) : Math.ceil(this._velocity[1] * this._friction[1])) + ]; + + if (Math.abs(this._velocity[0]) < 4 && Math.abs(this._velocity[1]) < 4) { + this._panFinalize(); + } else { + this._current = [ + this._current[0] + this._velocity[0], + this._current[1] + this._velocity[1] + ]; + + this._panMove(); + setTimeout($.proxy(this._panEnd, this), 30); + } + }, + + _panFinalize: function () { + if (this._panning) { + this._velocity = [0, 0]; + + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + dxMap = -dx * this._pixelSize, + dyMap = dy * this._pixelSize; + + this._$shapesContainer.css({ left: 0, top: 0 }); + + this._setCenterAndSize([this._center[0] + dxMap, this._center[1] + dyMap], this._pixelSize, true, true); + + this._inOp = false; + this._anchor = this._current; + this._toolPan = this._panning = false; + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + } + }, + + _panMove: function () { + var dx = this._current[0] - this._lastDrag[0], + dy = this._current[1] - this._lastDrag[1], + i = 0, + service; + + if (this._toolPan || dx > 3 || dx < -3 || dy > 3 || dy < -3) { + if (!this._toolPan) { + this._toolPan = true; + this._$eventTarget.css("cursor", this._options["cursors"]["pan"]); + } + + if (this._mouseDown) { + this._velocity = [dx, dy]; + } + + if (dx != 0 || dy != 0) { + this._panning = true; + this._lastDrag = this._current; + + for (i = 0; i < this._options["services"].length; i++) { + service = this._options["services"][i]; + $.geo["_serviceTypes"][service.type].interactivePan(this, service, dx, dy); + } + + this._$shapesContainer.css({ + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + }); + + for (i = 0; i < this._drawPixels.length; i++) { + this._drawPixels[i][0] += dx; + this._drawPixels[i][1] += dy; + } + + this._refreshDrawing(); + } + } + }, + + _refresh: function () { + for (var i = 0; i < this._options["services"].length; i++) { + var service = this._options["services"][i]; + if (!this._mouseDown && $.geo["_serviceTypes"][service.type] != null) { + $.geo["_serviceTypes"][service.type].refresh(this, service); + } + } + + if (this._$shapesContainer) { + this._$shapesContainer.geographics("clear"); + if (this._graphicShapes.length > 0) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes); + } + } + }, + + _setCenterAndSize: function (center, pixelSize, trigger, refresh) { + // the final call during any extent change + if (this._pixelSize != pixelSize) { + this._$shapesContainer.geographics("clear"); + for (var i = 0; i < this._options["services"].length; i++) { + var service = this._options["services"][i]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, center, pixelSize); + } + } + + this._center = center; + this.options["pixelSize"] = this._pixelSize = pixelSize; + + if ($.geo.proj) { + var bbox = this._getBbox(); + bbox = $.geo.proj.toGeodetic([[bbox[0], bbox[1]], [bbox[2], bbox[3]]]); + bbox = [bbox[0][0], bbox[0][1], bbox[1][0], bbox[1][1]]; + this._options["bbox"] = bbox; + + this._options["center"] = $.geo.proj.toGeodetic([[this._center[0], this._center[1]]])[0]; + } else { + this._options["bbox"] = this._getBbox(); + + this._options["center"] = this._center; + } + + this._options["zoom"] = this._getZoom(); + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords); + } + + if (trigger) { + this._trigger("bboxchange", window.event, { bbox: this._options["bbox"] }); + } + + if (refresh) { + this._refresh(); + this._refreshDrawing(); + } + }, + + _toMap: function (p, center, pixelSize) { + // ignores $.geo.proj + var isArray = $.isArray(p[0]); + if (!isArray) { + p = [p]; + } + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + xRatio = $.geo.width(bbox, true) / width, + yRatio = $.geo.height(bbox, true) / height, + result = []; + + $.each(p, function (i) { + var yOffset = (this[1] * yRatio); + result[i] = [bbox[0] + (this[0] * xRatio), bbox[3] - yOffset]; + }); + + return isArray ? result : result[0]; + }, + + _toPixel: function (p, center, pixelSize) { + // ignores $.geo.proj + var isArray = $.isArray(p[0]); + if (!isArray) { + p = [p]; + } + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + bboxWidth = $.geo.width(bbox, true), + bboxHeight = $.geo.height(bbox, true), + result = []; + + $.each(p, function (i) { + result[i] = [ + Math.round((this[0] - bbox[0]) * width / bboxWidth), + Math.round((bbox[3] - this[1]) * height / bboxHeight) + ]; + }); + + return isArray ? result : result[0]; + }, + + _zoomTo: function (coord, zoom, trigger, refresh) { + zoom = zoom < 0 ? 0 : zoom; + + var tiledPixelSize = this._getTiledPixelSize(zoom); + + if (!isNaN(tiledPixelSize)) { + this._setCenterAndSize(coord, tiledPixelSize, trigger, refresh); + } else { + var bboxMax = $.geo._scaleBy(this._getBboxMax(), 1 / Math.pow(this._zoomFactor, zoom), true), + pixelSize = Math.max($.geo.width(bboxMax, true) / this._contentBounds["width"], $.geo.height(bboxMax, true) / this._contentBounds["height"]); + + this._setCenterAndSize(coord, pixelSize, trigger, refresh); + } + }, + + _document_keydown: function (e) { + var len = this._drawCoords.length; + if (len > 0 && e.which == 27) { + if (len <= 2) { + this._resetDrawing(); + this._inOp = false; + } else { + this._drawCoords[len - 2] = $.merge( [], this._drawCoords[ len - 1 ] ); + this._drawPixels[len - 2] = $.merge( [], this._drawPixels[ len - 1 ] ); + + this._drawCoords.length--; + this._drawPixels.length--; + + this._refreshDrawing(); + } + } + }, + + _eventTarget_dblclick_zoom: function(e) { + this._trigger("dblclick", e, { type: "Point", coordinates: this.toMap(this._current) }); + if (!e.isDefaultPrevented()) { + var centerAndSize = this._getZoomCenterAndSize(this._current, 1, this._zoomFactor); + this._setCenterAndSize(centerAndSize.center, centerAndSize.pixelSize, true, true); + } + }, + + _eventTarget_dblclick: function (e) { + this._panFinalize(); + + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + var offset = $(e.currentTarget).offset(); + + switch (this._options["mode"]) { + case "pan": + case "drawPoint": + this._eventTarget_dblclick_zoom(e); + break; + + case "drawLineString": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + this._drawCoords.length--; + this._trigger( "shape", e, { + type: "LineString", + coordinates: $.geo.proj ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords + } ); + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "drawPolygon": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + var endIndex = this._drawCoords.length - 1; + if (endIndex > 2) { + this._drawCoords[endIndex] = $.merge( [], this._drawCoords[0] ); + this._trigger( "shape", e, { + type: "Polygon", + coordinates: [ $.geo.proj ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords ] + } ); + } + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + } + + this._inOp = false; + }, + + _eventTarget_touchstart: function (e) { + if (!this._supportTouch && e.which != 1) { + return; + } + + this._panFinalize(); + this._mouseWheelFinish(); + + var offset = $(e.currentTarget).offset(); + + if (this._supportTouch) { + this._current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } else { + this._current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + var downDate = $.now(); + if (downDate - this._downDate < 750) { + if (this._isTap) { + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance > 10) { + this._isTap = false; + } else { + this._current = this._anchor; + } + } + + if (this._isDbltap) { + this._isDbltap = false; + } else { + this._isDbltap = this._isTap; + } + } else { + this._isDbltap = false; + } + this._isTap = true; + this._downDate = downDate; + } + + + this._mouseDown = true; + this._anchor = this._current; + + if (!this._inOp && e.shiftKey) { + this._shiftZoom = true; + this._$eventTarget.css("cursor", this._options["cursors"]["zoom"]); + } else { + this._inOp = true; + + switch (this._options["mode"]) { + case "pan": + case "drawPoint": + case "drawLineString": + case "drawPolygon": + this._lastDrag = this._current; + + if (e.currentTarget.setCapture) { + e.currentTarget.setCapture(); + } + + break; + } + } + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _dragTarget_touchmove: function (e) { + var offset = this._$eventTarget.offset(), + drawCoordsLen = this._drawCoords.length, + current; + + if (this._supportTouch) { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (current[0] === this._lastMove[0] && current[1] === this._lastMove[1]) { + if ( this._inOp ) { + e.preventDefault(); + return false; + } + } + + if (this._softDblClick) { + this._isDbltap = this._isTap = false; + } + + if (this._mouseDown) { + this._current = current; + this._moveDate = $.now(); + } + + var mode = this._shiftZoom ? "zoom" : this._options["mode"]; + + switch (mode) { + case "zoom": + if ( this._mouseDown ) { + this._$drawContainer.geographics( "clear" ); + this._$drawContainer.geographics( "drawBbox", [ + this._anchor[ 0 ], + this._anchor[ 1 ], + current[ 0 ], + current[ 1 ] + ] ); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + case "pan": + case "drawPoint": + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + case "drawLineString": + case "drawPolygon": + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + if (drawCoordsLen > 0) { + this._drawCoords[drawCoordsLen - 1] = this._toMap(current); + this._drawPixels[drawCoordsLen - 1] = current; + + this._refreshDrawing(); + } + + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + } + + this._lastMove = current; + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _dragTarget_touchstop: function (e) { + if (!this._mouseDown && _ieVersion == 7) { + // ie7 doesn't appear to trigger dblclick on this._$eventTarget, + // we fake regular click here to cause soft dblclick + this._eventTarget_touchstart(e); + } + + var mouseWasDown = this._mouseDown, + wasToolPan = this._toolPan, + offset = this._$eventTarget.offset(), + mode = this._shiftZoom ? "zoom" : this._options["mode"], + current, i, clickDate, + dx, dy; + + if (this._supportTouch) { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + dx = current[0] - this._anchor[0]; + dy = current[1] - this._anchor[1]; + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._shiftZoom = this._mouseDown = this._toolPan = false; + + if (document.releaseCapture) { + document.releaseCapture(); + } + + if (mouseWasDown) { + clickDate = $.now(); + this._current = current; + + switch (mode) { + case "zoom": + if ( dx > 0 || dy > 0 ) { + var minSize = this._pixelSize * 6, + bboxCoords = this._toMap( [ [ + Math.min( this._anchor[ 0 ], current[ 0 ] ), + Math.max( this._anchor[ 1 ], current[ 1 ] ) + ], [ + Math.max( this._anchor[ 0 ], current[ 0 ] ), + Math.min( this._anchor[ 1 ], current[ 1 ] ) + ] + ] ), + bbox = [ + bboxCoords[0][0], + bboxCoords[0][1], + bboxCoords[1][0], + bboxCoords[1][1] + ]; + + if ( ( bbox[2] - bbox[0] ) < minSize && ( bbox[3] - bbox[1] ) < minSize ) { + bbox = $.geo.scaleBy( this._getBbox( $.geo.center( bbox, true ) ), .5, true ); + } + + this._setBbox(bbox, true, true); + } + + this._resetDrawing(); + break; + + case "pan": + if (wasToolPan) { + this._panEnd(); + } else { + if (clickDate - this._clickDate > 100) { + this._trigger("click", e, { type: "Point", coordinates: this.toMap(current) }); + this._inOp = false; + } + } + break; + + case "drawPoint": + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + if (wasToolPan) { + this._panFinalize(); + } else { + if (clickDate - this._clickDate > 100) { + var geomap = this; + this._drawTimeout = setTimeout(function () { + if (geomap._drawTimeout) { + geomap._trigger("shape", e, { type: "Point", coordinates: geomap.toMap(current) }); + geomap._inOp = false; + geomap._drawTimeout = false; + } + }, 250); + } + } + break; + + case "drawLineString": + case "drawPolygon": + if (wasToolPan) { + this._panFinalize(); + } else { + i = (this._drawCoords.length == 0 ? 0 : this._drawCoords.length - 1); + + this._drawCoords[i] = this._toMap(current); + this._drawPixels[i] = current; + + if (i < 2 || !(this._drawCoords[i][0] == this._drawCoords[i-1][0] && + this._drawCoords[i][1] == this._drawCoords[i-1][1])) { + this._drawCoords[i + 1] = this._toMap(current); + this._drawPixels[i + 1] = current; + } + + this._refreshDrawing(); + } + break; + } + + this._clickDate = clickDate; + + if (this._softDblClick && this._isDbltap) { + this._isDbltap = this._isTap = false; + this._$eventTarget.trigger("dblclick", e); + } + } + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _eventTarget_mousewheel: function (e, delta) { + e.preventDefault(); + + this._panFinalize(); + + if (this._mouseDown) { + return false; + } + + if (delta != 0) { + if (this._wheelTimeout) { + window.clearTimeout(this._wheelTimeout); + this._wheelTimeout = null; + } else { + var offset = $(e.currentTarget).offset(); + this._anchor = [e.pageX - offset.left, e.pageY - offset.top]; + } + + this._wheelLevel += delta; + + var wheelCenterAndSize = this._getZoomCenterAndSize(this._anchor, this._wheelLevel, this._wheelZoomFactor); + + this._$shapesContainer.geographics("clear"); + + for (i = 0; i < this._options["services"].length; i++) { + var service = this._options["services"][i]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + this._$shapesContainer.geographics("clear"); + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + var geomap = this; + this._wheelTimeout = window.setTimeout(function () { + geomap._mouseWheelFinish(); + }, 1000); + } + + return false; + } + } + ); +})(jQuery); + +(function ($, undefined) { + $.geo._serviceTypes.tiled = (function () { + return { + create: function (map, servicesContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0, + reloadTiles: false + }; + + var idString = service.id ? ' id="' + service.id + '"' : "", + classString = service["class"] ? ' class="' + service["class"] + '"' : "", + scHtml = '
          '; + + servicesContainer.append(scHtml); + + serviceState.serviceContainer = servicesContainer.children(":last"); + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, servicesContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function ( map, service, dx, dy ) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState ) { + this._cancelUnloaded( map, service ); + + serviceState.serviceContainer.children( ).css( { + left: function ( index, value ) { + return parseInt( value ) + dx; + }, + top: function ( index, value ) { + return parseInt( value ) + dy; + } + }); + + if ( service && ( service.visibility === undefined || service.visibility === "visible" ) ) { + var pixelSize = map._pixelSize, + + serviceContainer = serviceState.serviceContainer, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + + /* same as refresh 1 */ + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + /* end same as refresh 1 */ + + halfWidth = mapWidth / 2 * pixelSize, + halfHeight = mapHeight / 2 * pixelSize, + + currentPosition = scaleContainer.position(), + scaleOriginParts = scaleContainer.data("scaleOrigin").split(","), + totalDx = parseInt(scaleOriginParts[0]) - currentPosition.left, + totalDy = parseInt(scaleOriginParts[1]) - currentPosition.top, + + mapCenterOriginal = map._getCenter(), + mapCenter = [mapCenterOriginal[0] + totalDx * pixelSize, mapCenterOriginal[1] - totalDy * pixelSize], + + /* same as refresh 2 */ + tileX = Math.floor(((mapCenter[0] - halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.floor((tilingScheme.origin[1] - (mapCenter[1] + halfHeight)) / (pixelSize * tileHeight)), + tileX2 = Math.ceil(((mapCenter[0] + halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil((tilingScheme.origin[1] - (mapCenter[1] - halfHeight)) / (pixelSize * tileHeight)), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getTiledPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] - bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMaxY = tilingScheme.origin[1] - (fullYAtScale * tileHeight) * pixelSize, + /* end same as refresh 2 */ + + serviceLeft = Math.round((fullXMinX - (mapCenterOriginal[0] - halfWidth)) / pixelSize), + serviceTop = Math.round(((mapCenterOriginal[1] + halfHeight) - fullYMaxY) / pixelSize), + + opacity = (service.opacity === undefined ? 1 : service.opacity), + + x, y; + + for ( x = tileX; x < tileX2; x++ ) { + for ( y = tileY; y < tileY2; y++ ) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ( $img.size( ) === 0 ) { + /* same as refresh 3 */ + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] - (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] - ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + imageUrl = service.getUrl( { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + } ); + /* end same as refresh 3 */ + + serviceState.loadCount++; + //this._map._requestQueued(); + + if ( serviceState.reloadTiles && $img.size() > 0 ) { + $img.attr( "src", imageUrl ); + } else { + /* same as refresh 4 */ + var imgMarkup = ""; + + scaleContainer.append( imgMarkup ); + $img = scaleContainer.children(":last"); + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", imageUrl); + /* end same as refresh 4 */ + } + } + } + } + } + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState && service && ( service.visibility === undefined || service.visibility === "visible" ) ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight; + + + serviceContainer.children( ).each( function ( i ) { + var $scaleContainer = $(this), + scaleRatio = $scaleContainer.attr("data-pixelSize") / pixelSize; + + scaleRatio = Math.round(scaleRatio * 1000) / 1000; + + var scaleOriginParts = $scaleContainer.data("scaleOrigin").split(","), + oldMapCoord = map._toMap([scaleOriginParts[0], scaleOriginParts[1]]), + newPixelPoint = map._toPixel(oldMapCoord, center, pixelSize); + + $scaleContainer.css( { + left: Math.round(newPixelPoint[0]) + "px", + top: Math.round(newPixelPoint[1]) + "px", + width: tileWidth * scaleRatio, + height: tileHeight * scaleRatio + } ); + + if ( $("body")[0].filters !== undefined ) { + $scaleContainer.children().each( function ( i ) { + $( this ).css( "filter", "progid:DXImageTransform.Microsoft.Matrix(FilterType=bilinear,M11=" + scaleRatio + ",M22=" + scaleRatio + ",sizingmethod='auto expand')" ); + } ); + } + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState && service && ( service.visibility === undefined || service.visibility === "visible" ) ) { + this._cancelUnloaded(map, service); + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + $serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + + tileX = Math.floor((bbox[0] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.floor((tilingScheme.origin[1] - bbox[3]) / (pixelSize * tileHeight)), + tileX2 = Math.ceil((bbox[2] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil((tilingScheme.origin[1] - bbox[1]) / (pixelSize * tileHeight)), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getTiledPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] - bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMaxY = tilingScheme.origin[1] - (fullYAtScale * tileHeight) * pixelSize, + + serviceLeft = Math.round((fullXMinX - bbox[0]) / pixelSize), + serviceTop = Math.round((bbox[3] - fullYMaxY) / pixelSize), + + scaleContainers = $serviceContainer.children().show(), + scaleContainer = scaleContainers.filter("[data-pixelSize='" + pixelSize + "']").appendTo($serviceContainer), + + opacity = (service.opacity === undefined ? 1 : service.opacity), + + x, y; + + if (serviceState.reloadTiles) { + scaleContainers.find("img").attr("data-dirty", "true"); + } + + if (!scaleContainer.size()) { + $serviceContainer.append("
          "); + scaleContainer = $serviceContainer.children(":last").data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + } else { + scaleContainer.css({ + left: (serviceLeft % tileWidth) + "px", + top: (serviceTop % tileHeight) + "px" + }).data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + + scaleContainer.children().each(function (i) { + var + $img = $(this), + tile = $img.attr("data-tile").split(","); + + $img.css({ + left: Math.round(((parseInt(tile[0]) - fullXAtScale) * 100) + (serviceLeft - (serviceLeft % tileWidth)) / tileWidth * 100) + "%", + top: Math.round(((parseInt(tile[1]) - fullYAtScale) * 100) + (serviceTop - (serviceTop % tileHeight)) / tileHeight * 100) + "%" + }); + + if (opacity < 1) { + $img.fadeTo(0, opacity); + } + }); + } + + for (x = tileX; x < tileX2; x++) { + for (y = tileY; y < tileY2; y++) { + var + tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ($img.size() === 0 || serviceState.reloadTiles) { + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] - (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] - ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + imageUrl = service.getUrl({ + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }); + + serviceState.loadCount++; + //this._map._requestQueued(); + + if (serviceState.reloadTiles && $img.size() > 0) { + $img.attr("src", imageUrl); + } else { + var imgMarkup = ""; + + scaleContainer.append(imgMarkup); + $img = scaleContainer.children(":last"); + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + $serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + $serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", imageUrl); + } + } + } + } + + scaleContainers.find("[data-dirty]").remove(); + serviceState.reloadTiles = false; + } + }, + + resize: function (map, service) { + }, + + opacity: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find("img").stop(true).fadeTo("fast", service.opacity); + }, + + toggle: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.css("display", service.visibility === "visible" ? "block" : "none"); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + } + }; + })(); +})(jQuery); +(function ($, undefined) { + $.geo._serviceTypes.shingled = (function () { + return { + create: function (map, servicesContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0 + }; + + var idString = service.id ? ' id="' + service.id + '"' : "", + classString = service["class"] ? ' class="' + service["class"] + '"' : "", + scHtml = '
          '; + + servicesContainer.append(scHtml); + + serviceState.serviceContainer = servicesContainer.children(":last"); + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, servicesContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function (map, service, dx, dy) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + pixelSize = map._pixelSize, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + panContainer = scaleContainer.children("div"); + + if ( !panContainer.length ) { + scaleContainer.children("img").wrap('
          '); + panContainer = scaleContainer.children("div"); + } + + panContainer.css( { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + } ); + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight]; + + serviceContainer.children().each(function (i) { + var $scaleContainer = $(this), + scalePixelSize = $scaleContainer.attr("data-pixelSize"), + ratio = scalePixelSize / pixelSize; + + $scaleContainer.css({ width: mapWidth * ratio, height: mapHeight * ratio }).children("img").each(function (i) { + var $img = $(this), + imgCenter = $img.data("center"), + x = (Math.round((imgCenter[0] - center[0]) / scalePixelSize) - halfWidth) * ratio, + y = (Math.round((center[1] - imgCenter[1]) / scalePixelSize) - halfHeight) * ratio; + + $img.css({ left: x + "px", top: y + "px" }); + }); + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if (serviceState && service && (service.visibility === undefined || service.visibility === "visible")) { + this._cancelUnloaded(map, service); + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children('[data-pixelSize="' + pixelSize + '"]'), + + opacity = (service.opacity === undefined ? 1 : service.opacity), + + $img; + + if ( !scaleContainer.size() ) { + serviceContainer.append('
          '); + scaleContainer = serviceContainer.children(":last"); + } + + scaleContainer.children("img").each(function (i) { + var $thisimg = $(this), + imgCenter = $thisimg.data("center"), + center = map._getCenter(), + x = Math.round((imgCenter[0] - center[0]) / pixelSize) - halfWidth, + y = Math.round((center[1] - imgCenter[1]) / pixelSize) - halfHeight; + + $thisimg.css({ left: x + "px", top: y + "px" }); + }); + + if (opacity < 1) { + serviceContainer.find("img").attr("data-keepAlive", "0"); + } + + var imageUrl = service.getUrl({ + bbox: bbox, + width: mapWidth, + height: mapHeight, + zoom: map._getZoom(), + tile: null, + index: 0 + }); + + serviceState.loadCount++; + //this._map._requestQueued(); + + scaleContainer.append(''); + $img = scaleContainer.children(":last").data("center", map._getCenter()); + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(':not([data-pixelSize="' + pixelSize + '"])').remove(); + + var panContainer = serviceContainer.find('[data-pixelSize="' + pixelSize + '"]>div'); + if (panContainer.size() > 0) { + var panContainerPos = panContainer.position(); + + panContainer.children("img").each(function (i) { + var $thisimg = $(this), + x = panContainerPos.left + parseInt($thisimg.css("left")), + y = panContainerPos.top + parseInt($thisimg.css("top")); + + $thisimg.css({ left: x + "px", top: y + "px" }); + }).unwrap(); + + panContainer.remove(); + } + + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", imageUrl); + } + }, + + resize: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState && service && (service.visibility === undefined || service.visibility === "visible")) { + this._cancelUnloaded(map, service); + + var serviceState = shingledServicesState[service.id], + serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children(); + + scaleContainer.attr("data-pixelSize", "0"); + scaleContainer.css({ + left: halfWidth + 'px', + top: halfHeight + 'px' + }); + } + }, + + opacity: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + serviceState.serviceContainer.find("img").stop(true).fadeTo("fast", service.opacity); + }, + + toggle: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + serviceState.serviceContainer.css("display", service.visibility === "visible" ? "block" : "none"); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + } + } + })(); +})(jQuery); diff --git a/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a3.min.js b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a3.min.js new file mode 100755 index 0000000..c7bf3b2 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a3.min.js @@ -0,0 +1,128 @@ +document.createElement("canvas").getContext||function(){function e(){return this.context_||(this.context_=new s(this))}function r(h,n){var q=K.call(arguments,2);return function(){return h.apply(n,q.concat(K.call(arguments)))}}function p(h){h.namespaces.g_vml_||h.namespaces.add("g_vml_","urn:schemas-microsoft-com:vml","#default#VML");h.namespaces.g_o_||h.namespaces.add("g_o_","urn:schemas-microsoft-com:office:office","#default#VML");if(!h.styleSheets.ex_canvas_){h=h.createStyleSheet();h.owningElement.id= +"ex_canvas_";h.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}function a(h){var n=h.srcElement;switch(h.propertyName){case "width":n.getContext().clearRect();n.style.width=n.attributes.width.nodeValue+"px";n.firstChild.style.width=n.clientWidth+"px";break;case "height":n.getContext().clearRect();n.style.height=n.attributes.height.nodeValue+"px";n.firstChild.style.height=n.clientHeight+"px"}}function c(h){h=h.srcElement;if(h.firstChild){h.firstChild.style.width= +h.clientWidth+"px";h.firstChild.style.height=h.clientHeight+"px"}}function b(){return[[1,0,0],[0,1,0],[0,0,1]]}function d(h,n){for(var q=b(),u=0;u<3;u++)for(var z=0;z<3;z++){for(var v=0,L=0;L<3;L++)v+=h[u][L]*n[L][z];q[u][z]=v}return q}function g(h,n){n.fillStyle=h.fillStyle;n.lineCap=h.lineCap;n.lineJoin=h.lineJoin;n.lineWidth=h.lineWidth;n.miterLimit=h.miterLimit;n.shadowBlur=h.shadowBlur;n.shadowColor=h.shadowColor;n.shadowOffsetX=h.shadowOffsetX;n.shadowOffsetY=h.shadowOffsetY;n.strokeStyle=h.strokeStyle; +n.globalAlpha=h.globalAlpha;n.font=h.font;n.textAlign=h.textAlign;n.textBaseline=h.textBaseline;n.arcScaleX_=h.arcScaleX_;n.arcScaleY_=h.arcScaleY_;n.lineScale_=h.lineScale_}function f(h){var n=h.indexOf("(",3),q=h.indexOf(")",n+1);n=h.substring(n+1,q).split(",");if(n.length!=4||h.charAt(3)!="a")n[3]=1;return n}function m(h,n,q){return Math.min(q,Math.max(n,h))}function l(h,n,q){q<0&&q++;q>1&&q--;return 6*q<1?h+(n-h)*6*q:2*q<1?n:3*q<2?h+(n-h)*(2/3-q)*6:h}function o(h){if(h in O)return O[h];var n, +q=1;h=String(h);if(h.charAt(0)=="#")n=h;else if(/^rgb/.test(h)){q=f(h);n="#";for(var u,z=0;z<3;z++){u=q[z].indexOf("%")!=-1?Math.floor(parseFloat(q[z])/100*255):+q[z];n+=F[m(u,0,255)]}q=+q[3]}else if(/^hsl/.test(h)){z=q=f(h);n=parseFloat(z[0])/360%360;n<0&&n++;u=m(parseFloat(z[1])/100,0,1);z=m(parseFloat(z[2])/100,0,1);if(u==0)u=z=n=z;else{var v=z<0.5?z*(1+u):z+u-z*u,L=2*z-v;u=l(L,v,n+1/3);z=l(L,v,n);n=l(L,v,n-1/3)}n="#"+F[Math.floor(u*255)]+F[Math.floor(z*255)]+F[Math.floor(n*255)];q=q[3]}else n= +h;return O[h]={color:n,alpha:q}}function s(h){this.m_=b();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.fillStyle=this.strokeStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=D*1;this.globalAlpha=1;this.canvas=h;var n="width:"+h.clientWidth+"px;height:"+h.clientHeight+"px;overflow:hidden;position:absolute",q=h.ownerDocument.createElement("div");q.style.cssText=n;h.appendChild(q);n=q.cloneNode(false);n.style.backgroundColor="red";n.style.filter="alpha(opacity=0)"; +h.appendChild(n);this.element_=q;this.lineScale_=this.arcScaleY_=this.arcScaleX_=1}function x(h,n,q,u){h.currentPath_.push({type:"bezierCurveTo",cp1x:n.x,cp1y:n.y,cp2x:q.x,cp2y:q.y,x:u.x,y:u.y});h.currentX_=u.x;h.currentY_=u.y}function t(h,n,q){h=h.m_;return{x:D*(n*h[0][0]+q*h[1][0]+h[2][0])-J,y:D*(n*h[0][1]+q*h[1][1]+h[2][1])-J}}function A(h,n,q){if(isFinite(n[0][0])&&isFinite(n[0][1])&&isFinite(n[1][0])&&isFinite(n[1][1])&&isFinite(n[2][0])&&isFinite(n[2][1])){h.m_=n;if(q)h.lineScale_=E(G(n[0][0]* +n[1][1]-n[0][1]*n[1][0]))}}function B(h){this.code=this[h];this.message=h+": DOM Exception "+this.code}var C=Math,y=C.round,H=C.sin,I=C.cos,G=C.abs,E=C.sqrt,D=10,J=D/2;navigator.userAgent.match(/MSIE ([\d.]+)?/);var K=Array.prototype.slice;p(document);C={init:function(h){h=h||document;h.createElement("canvas");h.attachEvent("onreadystatechange",r(this.init_,this,h))},init_:function(h){h=h.getElementsByTagName("canvas");for(var n=0;nu.x)u.x=v.x;if(q.y==null||v.yu.y)u.y=v.y}}n.push(' ">');if(h){h=o(this.fillStyle);n.push('')}else{q=o(this.strokeStyle);h=q.color;q=q.alpha*this.globalAlpha;u=this.lineScale_*this.lineWidth;if(u<1)q*=u;n.push("')}n.push("");this.element_.insertAdjacentHTML("beforeEnd",n.join(""))};w.fill=function(){this.stroke(true)};w.closePath=function(){this.currentPath_.push({type:"close"})};w.save= +function(){var h={};g(this,h);this.aStack_.push(h);this.mStack_.push(this.m_);this.m_=d(b(),this.m_)};w.restore=function(){if(this.aStack_.length){g(this.aStack_.pop(),this);this.m_=this.mStack_.pop()}};w.translate=function(h,n){A(this,d([[1,0,0],[0,1,0],[h,n,1]],this.m_),false)};w.scale=function(h,n){this.arcScaleX_*=h;this.arcScaleY_*=n;A(this,d([[h,0,0],[0,n,0],[0,0,1]],this.m_),true)};w=B.prototype=Error();w.INDEX_SIZE_ERR=1;w.DOMSTRING_SIZE_ERR=2;w.HIERARCHY_REQUEST_ERR=3;w.WRONG_DOCUMENT_ERR= +4;w.INVALID_CHARACTER_ERR=5;w.NO_DATA_ALLOWED_ERR=6;w.NO_MODIFICATION_ALLOWED_ERR=7;w.NOT_FOUND_ERR=8;w.NOT_SUPPORTED_ERR=9;w.INUSE_ATTRIBUTE_ERR=10;w.INVALID_STATE_ERR=11;w.SYNTAX_ERR=12;w.INVALID_MODIFICATION_ERR=13;w.NAMESPACE_ERR=14;w.INVALID_ACCESS_ERR=15;w.VALIDATION_ERR=16;w.TYPE_MISMATCH_ERR=17;G_vmlCanvasManager=C;CanvasRenderingContext2D=s;DOMException=B}(); +(function(e){function r(a){var c=[].slice.call(arguments,1),b=0;a=e.event.fix(a||window.event);a.type="mousewheel";if(a.wheelDelta)b=a.wheelDelta/120;if(a.detail)b=-a.detail/3;c.unshift(a,b);return e.event.handle.apply(this,c)}var p=["DOMMouseScroll","mousewheel"];e.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=p.length;a;)this.addEventListener(p[--a],r,false);else this.onmousewheel=r},teardown:function(){if(this.removeEventListener)for(var a=p.length;a;)this.removeEventListener(p[--a], +r,false);else this.onmousewheel=null}};e.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery); +$.widget||function(e,r){var p=Array.prototype.slice,a=e.cleanData;e.cleanData=function(c){for(var b=0,d;(d=c[b])!=null;b++)e(d).triggerHandler("remove");a(c)};e.widget=function(c,b,d){var g=c.split(".")[0],f;c=c.split(".")[1];f=g+"-"+c;if(!d){d=b;b=e.Widget}e.expr[":"][f]=function(l){return!!e.data(l,c)};e[g]=e[g]||{};e[g][c]=e.extend(function(l,o){if(!this._createWidget)return new e[g][c](l,o);arguments.length&&this._createWidget(l,o)},e[g][c]);var m=new b;m.options=e.extend(true,{},m.options);e.each(d, +function(l,o){if(e.isFunction(o))d[l]=function(){var s=function(t){return b.prototype[t].apply(this,p.call(arguments,1))},x=function(t,A){return b.prototype[t].apply(this,A)};return function(){var t=this._super,A=this._superApply,B;this._super=s;this._superApply=x;B=o.apply(this,arguments);this._super=t;this._superApply=A;return B}}()});e[g][c].prototype=e.extend(true,m,{namespace:g,widgetName:c,widgetEventPrefix:c,widgetBaseClass:f},d);e.widget.bridge(c,e[g][c])};e.widget.bridge=function(c,b){e.fn[c]= +function(d){var g=typeof d==="string",f=p.call(arguments,1),m=this;d=!g&&f.length?e.extend.apply(null,[true,d].concat(f)):d;g?this.each(function(){var l=e.data(this,c);if(!l)return e.error("cannot call methods on "+c+" prior to initialization; attempted to call method '"+d+"'");if(!e.isFunction(l[d])||d.charAt(0)==="_")return e.error("no such method '"+d+"' for "+c+" widget instance");var o=l[d].apply(l,f);if(o!==l&&o!==r){m=o;return false}}):this.each(function(){var l=e.data(this,c);l?l.option(d|| +{})._init():b(d,this)});return m}};e.Widget=function(c,b){if(!this._createWidget)return new e[namespace][name](c,b);arguments.length&&this._createWidget(c,b)};e.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
          ",options:{disabled:false},_createWidget:function(c,b){b=e(b||this.defaultElement||this)[0];this.element=e(b);this.options=e.extend(true,{},this.options,this._getCreateOptions(),c);this.bindings=e();this.hoverable=e();this.focusable=e();if(b!==this){e.data(b,this.widgetName, +this);this._bind({remove:"destroy"})}this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return e.metadata&&e.metadata.get(this.element[0])[this.widgetName]},_create:e.noop,_init:e.noop,destroy:function(){this._destroy();this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled");this.bindings.unbind("."+this.widgetName);this.hoverable.removeClass("ui-state-hover"); +this.focusable.removeClass("ui-state-focus")},_destroy:e.noop,widget:function(){return this.element},option:function(c,b){var d=c;if(arguments.length===0)return e.extend({},this.options);if(typeof c==="string"){if(b===r)return this.options[c];d={};d[c]=b}this._setOptions(d);return this},_setOptions:function(c){var b=this;e.each(c,function(d,g){b._setOption(d,g)});return this},_setOption:function(c,b){this.options[c]=b;if(c==="disabled"){this.widget().toggleClass(this.widgetBaseClass+"-disabled ui-state-disabled", +!!b).attr("aria-disabled",b);this.hoverable.removeClass("ui-state-hover");this.focusable.removeClass("ui-state-focus")}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_bind:function(c,b){if(b){c=e(c);this.bindings=this.bindings.add(c)}else{b=c;c=this.element}var d=this;e.each(b,function(g,f){c.bind(g+"."+d.widgetName,function(){if(!(d.options.disabled===true||e(this).hasClass("ui-state-disabled")))return(typeof f=== +"string"?d[f]:f).apply(d,arguments)})})},_hoverable:function(c){this.hoverable=this.hoverable.add(c);this._bind(c,{mouseenter:function(b){e(b.currentTarget).addClass("ui-state-hover")},mouseleave:function(b){e(b.currentTarget).removeClass("ui-state-hover")}})},_focusable:function(c){this.focusable=this.focusable.add(c);this._bind(c,{focusin:function(b){e(b.currentTarget).addClass("ui-state-focus")},focusout:function(b){e(b.currentTarget).removeClass("ui-state-focus")}})},_trigger:function(c,b,d){var g= +this.options[c];b=e.Event(b);b.type=(c===this.widgetEventPrefix?c:this.widgetEventPrefix+c).toLowerCase();d=d||{};if(b.originalEvent){c=e.event.props.length;for(var f;c;){f=e.event.props[--c];b[f]=b.originalEvent[f]}}this.element.trigger(b,d);d=e.isArray(d)?[b].concat(d):[b,d];return!(e.isFunction(g)&&g.apply(this.element[0],d)===false||b.isDefaultPrevented())}}}(jQuery); +(function(e,r,p){var a=Number.POSITIVE_INFINITY,c=Number.NEGATIVE_INFINITY;e.geo={_allCoordinates:function(b){b=this._flatten(b);for(var d=0,g=[];d=d[2]&&b[3]>=d[3]},_bboxDisjoint:function(b,d){return d[0]>b[2]||d[2]b[3]||d[3]0){if(f/m>d){b=f/2;f=b/d}else{f=m/2;b=f*d}b=[g[0]-b,g[1]-f,g[0]+b,g[1]+f]}return e.geo.proj?e.geo.proj.toGeodetic(b):b},scaleBy:function(b,d,g){if(!g&&e.geo.proj)b=e.geo.proj.fromGeodetic(b);var f=this.center(b,true),m=(b[2]-b[0])*d/2;b=(b[3]-b[1])*d/2;b=[f[0]-m,f[1]-b,f[0]+m,f[1]+b];return!g&&e.geo.proj?e.geo.proj.toGeodetic(b):b},width:function(b,d){if(!d&&e.geo.proj)b=e.geo.proj.fromGeodetic(b);return b[2]-b[0]}, +bbox:function(b,d){if(b)if(b.bbox)result=!d&&e.geo.proj?e.geo.proj.fromGeodetic(b.bbox):b.bbox;else{result=[a,a,c,c];var g=this._allCoordinates(b),f=0;if(g.length==0)return p;if(e.geo.proj)g=e.geo.proj.fromGeodetic(g);for(;f0){f[0]=m[0][0];f[1]=m[0][1];return{type:"Point",coordinates:!d&&e.geo.proj?e.geo.proj.toGeodetic(f):f}}else break;g*=3;f[0]/=g;f[1]/=g;return{type:"Point",coordinates:!d&&e.geo.proj? +e.geo.proj.toGeodetic(f):f}}return p},contains:function(b,d){if(b.type!="Polygon")return false;switch(d.type){case "Point":return this._containsPolygonPoint(b.coordinates,d.coordinates);case "LineString":return this._containsPolygonLineString(b.coordinates,d.coordinates);case "Polygon":return this._containsPolygonLineString(b.coordinates,d.coordinates[0]);default:return false}},_containsPolygonPoint:function(b,d){if(b.length==0||b[0].length<4)return false;for(var g=0,f=b[0][0],m=1,l;md[0]&&g++}f=l}return g%2==1},_containsPolygonLineString:function(b,d){for(var g=0;g0){var f=b[0],m=d[0]-f[0],l=d[1]-f[1];if(b.length==1)return Math.sqrt(m*m+ +l*l);else for(var o=1;o=b)return m*m+l*l;return g*g+f*f-o*o/b},_distanceLineStringLineString:function(b,d){for(var g=a,f=0;f=2?{type:"Point",coordinates:[parseFloat(f[1]),parseFloat(f[2])]}:null}}}}(),proj:function(){return{fromGeodeticPos:function(b){if(!b)debugger; +return[6378137*b[0]*0.017453292519943295,6378137*Math.log(Math.tan(0.7853981633974483+b[1]*0.017453292519943295/2))]},fromGeodetic:function(b){var d=e.isArray(b[0]),g=this.fromGeodeticPos;if(!d&&b.length==4){d=g([b[0],b[1]]);b=g([b[2],b[3]]);return[d[0],d[1],b[0],b[1]]}else{var f=d&&e.isArray(b[0][0]),m=f&&e.isArray(b[0][0][0]),l=[],o,s,x;if(!m){if(!f){d||(b=[b]);b=[b]}b=[b]}for(o=0;o
          ",b[0];);return a>6?a:!a}();e.widget("geo.geographics",{_$elem:r,_options:{},_trueCanvas:true,_width:0,_height:0,_$canvas:r,_context:r,options:{style:{borderRadius:"8px",color:"#7f0000",fillOpacity:0.2,height:"8px",opacity:1,strokeOpacity:1,strokeWidth:"2px",visibility:"visible",width:"8px"}},_create:function(){this._$elem=this.element;this._options=this.options; +this._$elem.css({display:"inline-block",overflow:"hidden",textAlign:"left"});this._$elem.css("position")=="static"&&this._$elem.css("position","relative");this._width=this._$elem.width();this._height=this._$elem.height();if(!(this._width&&this._height)){this._width=parseInt(this._$elem.css("width"));this._height=parseInt(this._$elem.css("height"))}if(document.createElement("canvas").getContext){this._$elem.append('');this._$canvas=this._$elem.children(":last");this._context=this._$canvas[0].getContext("2d")}else if(p<=8){this._trueCanvas=false;this._$elem.append('
          ');this._$canvas=this._$elem.children(":last");G_vmlCanvasManager.initElement(this._$canvas[0]);this._context=this._$canvas[0].getContext("2d"); +this._$canvas.children().css({backgroundColor:"transparent",width:this._width,height:this._height})}},_setOption:function(a,c){if(a=="style")c=e.extend({},this._options.style,c);e.Widget.prototype._setOption.apply(this,arguments)},destroy:function(){e.Widget.prototype.destroy.apply(this,arguments);this._$elem.html("")},clear:function(){this._context.clearRect(0,0,this._width,this._height)},drawArc:function(a,c,b,d){d=this._getGraphicStyle(d);if(d.visibility!="hidden"&&d.opacity>0&&d.widthValue>0&& +d.heightValue>0){var g=Math.min(d.widthValue,d.heightValue)/2;c=c*Math.PI/180;b=b*Math.PI/180;this._context.save();this._context.translate(a[0],a[1]);d.widthValue>d.heightValue?this._context.scale(d.widthValue/d.heightValue,1):this._context.scale(1,d.heightValue/d.widthValue);this._context.beginPath();this._context.arc(0,0,g,c,b,false);this._trueCanvas&&this._context.restore();if(d.doFill){this._context.fillStyle=d.fill;this._context.globalAlpha=d.opacity*d.fillOpacity;this._context.fill()}if(d.doStroke){this._context.lineJoin= +"round";this._context.lineWidth=d.strokeWidthValue;this._context.strokeStyle=d.stroke;this._context.globalAlpha=d.opacity*d.strokeOpacity;this._context.stroke()}this._trueCanvas||this._context.restore()}},drawPoint:function(a,c){c=this._getGraphicStyle(c);if(c.widthValue==c.heightValue&&c.heightValue==c.borderRadiusValue)this.drawArc(a,0,360,c);else if(c.visibility!="hidden"&&c.opacity>0){c.borderRadiusValue=Math.min(Math.min(c.widthValue,c.heightValue)/2,c.borderRadiusValue);a[0]-=c.widthValue/2; +a[1]-=c.heightValue/2;this._context.beginPath();this._context.moveTo(a[0]+c.borderRadiusValue,a[1]);this._context.lineTo(a[0]+c.widthValue-c.borderRadiusValue,a[1]);this._context.quadraticCurveTo(a[0]+c.widthValue,a[1],a[0]+c.widthValue,a[1]+c.borderRadiusValue);this._context.lineTo(a[0]+c.widthValue,a[1]+c.heightValue-c.borderRadiusValue);this._context.quadraticCurveTo(a[0]+c.widthValue,a[1]+c.heightValue,a[0]+c.widthValue-c.borderRadiusValue,a[1]+c.heightValue);this._context.lineTo(a[0]+c.borderRadiusValue, +a[1]+c.heightValue);this._context.quadraticCurveTo(a[0],a[1]+c.heightValue,a[0],a[1]+c.heightValue-c.borderRadiusValue);this._context.lineTo(a[0],a[1]+c.borderRadiusValue);this._context.quadraticCurveTo(a[0],a[1],a[0]+c.borderRadiusValue,a[1]);this._context.closePath();if(c.doFill){this._context.fillStyle=c.fill;this._context.globalAlpha=c.opacity*c.fillOpacity;this._context.fill()}if(c.doStroke){this._context.lineJoin="round";this._context.lineWidth=c.strokeWidthValue;this._context.strokeStyle=c.stroke; +this._context.globalAlpha=c.opacity*c.strokeOpacity;this._context.stroke()}}},drawLineString:function(a,c){this._drawLines([a],false,c)},drawPolygon:function(a,c){this._drawLines(a,true,c)},drawBbox:function(a,c){this._drawLines([[[a[0],a[1]],[a[0],a[3]],[a[2],a[3]],[a[2],a[1]],[a[0],a[1]]]],true,c)},_getGraphicStyle:function(a){function c(b){b=parseInt(b);return+b+""===b?+b:b}a=e.extend({},this._options.style,a);a.borderRadiusValue=c(a.borderRadius);a.fill=a.fill||a.color;a.doFill=a.fill&&a.fillOpacity> +0;a.stroke=a.stroke||a.color;a.strokeWidthValue=c(a.strokeWidth);a.doStroke=a.stroke&&a.strokeOpacity>0&&a.strokeWidthValue>0;a.widthValue=c(a.width);a.heightValue=c(a.height);return a},_drawLines:function(a,c,b){if(!(!a||!a.length||a[0].length<2)){b=this._getGraphicStyle(b);var d,g;if(b.visibility!="hidden"&&b.opacity>0){this._context.beginPath();this._context.moveTo(a[0][0][0],a[0][0][1]);for(d=0;d
          ",b[0];);return a>6?a:!a}();e.widget("geo.geomap",{_$elem:r,_created:false,_contentBounds:{},_$contentFrame:r,_$existingChildren:r,_$servicesContainer:r,_$drawContainer:r,_$shapesContainer:r,_$textContainer:r,_$textContent:r,_$eventTarget:r,_dpi:96,_currentServices:[],_center:r,_pixelSize:r,_centerMax:r,_pixelSizeMax:r,_wheelZoomFactor:1.18920711500273,_wheelTimeout:null, +_wheelLevel:0,_zoomFactor:2,_mouseDown:r,_inOp:r,_toolPan:r,_shiftZoom:r,_anchor:r,_current:r,_downDate:r,_moveDate:r,_clickDate:r,_lastMove:r,_lastDrag:r,_windowHandler:null,_resizeTimeout:null,_panning:r,_velocity:r,_friction:r,_supportTouch:r,_softDblClick:r,_isTap:r,_isDbltap:r,_drawTimeout:null,_drawPixels:[],_drawCoords:[],_graphicShapes:[],_initOptions:{},_options:{},options:e.extend({},{bbox:[-180,-85,180,85],bboxMax:[-180,-85,180,85],center:[0,0],cursors:{pan:"move",zoom:"crosshair",drawPoint:"crosshair", +drawLineString:"crosshair",drawPolygon:"crosshair"},drawStyle:{},shapeStyle:{},mode:"pan",services:[{"class":"osm",type:"tiled",getUrl:function(a){return"http://tile.openstreetmap.org/"+a.zoom+"/"+a.tile.column+"/"+a.tile.row+".png"},attr:"© OpenStreetMap & contributors, CC-BY-SA"}],tilingScheme:{tileWidth:256,tileHeight:256,levels:18,basePixelSize:156543.03392799935,origin:[-2.0037508342787E7,2.0037508342787E7]},zoom:0,pixelSize:0}),_createWidget:function(a,c){this._$elem=e(c);if(!this._$elem.is("[data-geo-service]")){this._$elem.attr("data-geo-map", +"data-geo-map");this._graphicShapes=[];this._initOptions=a||{};this._forcePosition(this._$elem);this._$elem.css("text-align","left");var b=this._findMapSize();this._contentBounds={x:parseInt(this._$elem.css("padding-left")),y:parseInt(this._$elem.css("padding-top")),width:b.width,height:b.height};this._createChildren();this._center=this._centerMax=[0,0];this.options.pixelSize=this._pixelSize=this._pixelSizeMax=156543.03392799935;this._mouseDown=this._inOp=this._toolPan=this._shiftZoom=this._panning= +this._isTap=this._isDbltap=false;this._anchor=this._current=this._lastMove=this._lastDrag=this._velocity=[0,0];this._friction=[0.8,0.8];this._downDate=this._moveDate=this._clickDate=0}e.Widget.prototype._createWidget.apply(this,arguments)},_create:function(){if(!this._$elem.is("[data-geo-service]")){this._options=this.options;this._softDblClick=(this._supportTouch="ontouchend"in document)||p==7;var a=this._supportTouch?"touchstart":"mousedown",c=this._supportTouch?"touchend touchcancel":"mouseup", +b=this._supportTouch?"touchmove":"mousemove";e(document).keydown(e.proxy(this._document_keydown,this));this._$eventTarget.dblclick(e.proxy(this._eventTarget_dblclick,this));this._$eventTarget.bind(a,e.proxy(this._eventTarget_touchstart,this));a=this._$eventTarget[0].setCapture?this._$eventTarget:e(document);a.bind(b,e.proxy(this._dragTarget_touchmove,this));a.bind(c,e.proxy(this._dragTarget_touchstop,this));this._$eventTarget.mousewheel(e.proxy(this._eventTarget_mousewheel,this));var d=this;this._windowHandler= +function(){d._resizeTimeout&&clearTimeout(d._resizeTimeout);this._resizeTimeout=setTimeout(function(){d._created&&d._$elem.geomap("resize")},500)};e(window).resize(this._windowHandler);this._$drawContainer.geographics({style:this._initOptions.drawStyle||{}});this._options.drawStyle=this._$drawContainer.geographics("option","style");this._$shapesContainer.geographics({style:this._initOptions.shapeStyle||{}});this._options.shapeStyle=this._$shapesContainer.geographics("option","style");if(this._initOptions){this._initOptions.bbox&& +this._setOption("bbox",this._initOptions.bbox,false);this._initOptions.center&&this._setOption("center",this._initOptions.center,false);this._initOptions.zoom&&this._setZoom(this._initOptions.zoom,false,false)}this._$eventTarget.css("cursor",this._options.cursors[this._options.mode]);this._createServices();this._refresh();this._created=true}},_setOption:function(a,c,b){if(!(this._$elem.is("[data-geo-service]")||a=="pixelSize")){b=b===r||b;switch(a){case "bbox":if(e.geo.proj){c=e.geo.proj.fromGeodetic([[c[0], +c[1]],[c[2],c[3]]]);c=[c[0][0],c[0][1],c[1][0],c[1][1]]}this._setBbox(c,false,b);c=this._getBbox();if(e.geo.proj){c=e.geo.proj.toGeodetic([[c[0],c[1]],[c[2],c[3]]]);c=[c[0][0],c[0][1],c[1][0],c[1][1]]}break;case "center":this._setCenterAndSize(e.geo.proj?e.geo.proj.fromGeodetic([[c[0],c[1]]])[0]:c,this._pixelSize,false,b);break;case "drawStyle":if(this._$drawContainer){this._$drawContainer.geographics("option","style",c);c=this._$drawContainer.geographics("option","style")}break;case "shapeStyle":if(this._$shapesContainer){this._$shapesContainer.geographics("option", +"style",c);c=this._$shapesContainer.geographics("option","style")}break;case "mode":this._$drawContainer.geographics("clear");this._$eventTarget.css("cursor",this._options.cursors[c]);break;case "zoom":this._setZoom(c,false,b)}e.Widget.prototype._setOption.apply(this,arguments);switch(a){case "services":this._createServices();b&&this._refresh();break;case "shapeStyle":if(b){this._$shapesContainer.geographics("clear");this._refreshShapes(this._$shapesContainer,this._graphicShapes,this._graphicShapes)}}}}, +destroy:function(){if(this._$elem.is("[data-geo-map]")){this._created=false;e(window).unbind("resize",this._windowHandler);for(var a=0;a=0||a<=1)for(var b=0;b
          "); +this._$eventTarget=this._$contentFrame=this._$elem.children(":first");this._$contentFrame.append('
          ');this._$servicesContainer=this._$contentFrame.children(":last");this._$contentFrame.append('
          '); +this._$shapesContainer=this._$contentFrame.children(":last");this._$contentFrame.append('
          ');this._$drawContainer=this._$contentFrame.children(":last");this._$contentFrame.append(''); +this._$textContainer=this._$contentFrame.children(":last");this._$textContent=this._$textContainer.children();this._$contentFrame.append(this._$existingChildren)},_createServices:function(){var a;for(a=0;a0){var a=this._options.mode,c=this._drawPixels;if(a=="drawPolygon")c=[c];this._$drawContainer.geographics(a,c)}},_resetDrawing:function(){this._drawPixels=[];this._drawCoords=[];this._$drawContainer.geographics("clear")}, +_refreshShapes:function(a,c,b,d,g){var f,m,l,o,s,x=this._getBbox(d,g),t=this;for(f=0;f0&&a.height>0);){a={width:c.width(),height:c.height()};if(a.width<=0||a.height<=0)a={width:parseInt(c.css("width")),height:parseInt(c.css("height"))};c=c.parent()}return a},_forcePosition:function(a){var c=a.css("position");c!="relative"&&c!="absolute"&&c!="fixed"&&a.css("position","relative")},_getTiledPixelSize:function(a){var c=this._options.tilingScheme; +if(c!=null){if(a===0)return c.pixelSizes!=null?c.pixelSizes[0]:c.basePixelSize;a=Math.round(a);a=Math.max(a,0);a=Math.min(a,(c.pixelSizes!=null?c.pixelSizes.length:c.levels)-1);return c.pixelSizes!=null?c.pixelSizes[a]:c.basePixelSize/Math.pow(2,a)}else return NaN},_getTiledZoom:function(a){var c=this._options.tilingScheme;if(c.pixelSizes!=null){a=Math.floor(a*1E3);for(var b=(c.pixelSizes!=null?c.pixelSizes.length:c.levels)-1;b>=0;b--)if(Math.floor(c.pixelSizes[b]*1E3)>=a)return b;return 0}else return Math.max(Math.round(Math.log(c.basePixelSize/ +a)/Math.log(2)),0)},_getZoomCenterAndSize:function(a,c,b){if(this._options.tilingScheme){c=this._getTiledZoom(this._pixelSize)+c;c=this._getTiledPixelSize(c)}else{c=Math.pow(b,-c);c=this._pixelSize*c}b=c/this._pixelSize;a=this._toMap(a);b=[(this._center[0]-a[0])*b,(this._center[1]-a[1])*b];return{pixelSize:c,center:[a[0]+b[0],a[1]+b[1]]}},_mouseWheelFinish:function(){this._wheelTimeout=null;if(this._wheelLevel!=0){var a=this._getZoomCenterAndSize(this._anchor,this._wheelLevel,this._wheelZoomFactor); +this._setCenterAndSize(a.center,a.pixelSize,true,true);this._wheelLevel=0}else this._refresh()},_panEnd:function(){this._velocity=[this._velocity[0]>0?Math.floor(this._velocity[0]*this._friction[0]):Math.ceil(this._velocity[0]*this._friction[0]),this._velocity[1]>0?Math.floor(this._velocity[1]*this._friction[1]):Math.ceil(this._velocity[1]*this._friction[1])];if(Math.abs(this._velocity[0])<4&&Math.abs(this._velocity[1])<4)this._panFinalize();else{this._current=[this._current[0]+this._velocity[0], +this._current[1]+this._velocity[1]];this._panMove();setTimeout(e.proxy(this._panEnd,this),30)}},_panFinalize:function(){if(this._panning){this._velocity=[0,0];var a=-(this._current[0]-this._anchor[0])*this._pixelSize,c=(this._current[1]-this._anchor[1])*this._pixelSize;this._$shapesContainer.css({left:0,top:0});this._setCenterAndSize([this._center[0]+a,this._center[1]+c],this._pixelSize,true,true);this._inOp=false;this._anchor=this._current;this._toolPan=this._panning=false;this._$eventTarget.css("cursor", +this._options.cursors[this._options.mode])}},_panMove:function(){var a=this._current[0]-this._lastDrag[0],c=this._current[1]-this._lastDrag[1],b=0,d;if(this._toolPan||a>3||a<-3||c>3||c<-3){if(!this._toolPan){this._toolPan=true;this._$eventTarget.css("cursor",this._options.cursors.pan)}if(this._mouseDown)this._velocity=[a,c];if(a!=0||c!=0){this._panning=true;this._lastDrag=this._current;for(b=0;b0&&this._refreshShapes(this._$shapesContainer,this._graphicShapes,this._graphicShapes)}},_setCenterAndSize:function(a,c,b,d){if(this._pixelSize!=c){this._$shapesContainer.geographics("clear");for(var g=0;g0)this._drawPixels=this._toPixel(this._drawCoords);b&&this._trigger("bboxchange",window.event,{bbox:this._options.bbox});if(d){this._refresh();this._refreshDrawing()}},_toMap:function(a,c,b){var d=e.isArray(a[0]);d||(a=[a]);c=c||this._center; +b=b||this._pixelSize;var g=this._contentBounds.width,f=this._contentBounds.height,m=g/2*b;b=f/2*b;var l=[c[0]-m,c[1]-b,c[0]+m,c[1]+b],o=e.geo.width(l,true)/g,s=e.geo.height(l,true)/f,x=[];e.each(a,function(t){x[t]=[l[0]+this[0]*o,l[3]-this[1]*s]});return d?x:x[0]},_toPixel:function(a,c,b){var d=e.isArray(a[0]);d||(a=[a]);c=c||this._center;b=b||this._pixelSize;var g=this._contentBounds.width,f=this._contentBounds.height,m=g/2*b;b=f/2*b;var l=[c[0]-m,c[1]-b,c[0]+m,c[1]+b],o=e.geo.width(l,true),s=e.geo.height(l, +true),x=[];e.each(a,function(t){x[t]=[Math.round((this[0]-l[0])*g/o),Math.round((l[3]-this[1])*f/s)]});return d?x:x[0]},_zoomTo:function(a,c,b,d){c=c<0?0:c;var g=this._getTiledPixelSize(c);if(isNaN(g)){c=e.geo._scaleBy(this._getBboxMax(),1/Math.pow(this._zoomFactor,c),true);c=Math.max(e.geo.width(c,true)/this._contentBounds.width,e.geo.height(c,true)/this._contentBounds.height);this._setCenterAndSize(a,c,b,d)}else this._setCenterAndSize(a,g,b,d)},_document_keydown:function(a){var c=this._drawCoords.length; +if(c>0&&a.which==27)if(c<=2){this._resetDrawing();this._inOp=false}else{this._drawCoords[c-2]=e.merge([],this._drawCoords[c-1]);this._drawPixels[c-2]=e.merge([],this._drawPixels[c-1]);this._drawCoords.length--;this._drawPixels.length--;this._refreshDrawing()}},_eventTarget_dblclick_zoom:function(a){this._trigger("dblclick",a,{type:"Point",coordinates:this.toMap(this._current)});if(!a.isDefaultPrevented()){a=this._getZoomCenterAndSize(this._current,1,this._zoomFactor);this._setCenterAndSize(a.center, +a.pixelSize,true,true)}},_eventTarget_dblclick:function(a){this._panFinalize();if(this._drawTimeout){window.clearTimeout(this._drawTimeout);this._drawTimeout=null}e(a.currentTarget).offset();switch(this._options.mode){case "pan":case "drawPoint":this._eventTarget_dblclick_zoom(a);break;case "drawLineString":if(this._drawCoords.length>1&&!(this._drawCoords[0][0]==this._drawCoords[1][0]&&this._drawCoords[0][1]==this._drawCoords[1][1])){this._drawCoords.length--;this._trigger("shape",a,{type:"LineString", +coordinates:e.geo.proj?e.geo.proj.toGeodetic(this._drawCoords):this._drawCoords})}else this._eventTarget_dblclick_zoom(a);this._resetDrawing();break;case "drawPolygon":if(this._drawCoords.length>1&&!(this._drawCoords[0][0]==this._drawCoords[1][0]&&this._drawCoords[0][1]==this._drawCoords[1][1])){var c=this._drawCoords.length-1;if(c>2){this._drawCoords[c]=e.merge([],this._drawCoords[0]);this._trigger("shape",a,{type:"Polygon",coordinates:[e.geo.proj?e.geo.proj.toGeodetic(this._drawCoords):this._drawCoords]})}}else this._eventTarget_dblclick_zoom(a); +this._resetDrawing()}this._inOp=false},_eventTarget_touchstart:function(a){if(!(!this._supportTouch&&a.which!=1)){this._panFinalize();this._mouseWheelFinish();var c=e(a.currentTarget).offset();this._current=this._supportTouch?[a.originalEvent.changedTouches[0].pageX-c.left,a.originalEvent.changedTouches[0].pageY-c.top]:[a.pageX-c.left,a.pageY-c.top];if(this._softDblClick){c=e.now();if(c-this._downDate<750){if(this._isTap){var b=this._current[0]-this._anchor[0],d=this._current[1]-this._anchor[1];if(Math.sqrt(b* +b+d*d)>10)this._isTap=false;else this._current=this._anchor}this._isDbltap=this._isDbltap?false:this._isTap}else this._isDbltap=false;this._isTap=true;this._downDate=c}this._mouseDown=true;this._anchor=this._current;if(!this._inOp&&a.shiftKey){this._shiftZoom=true;this._$eventTarget.css("cursor",this._options.cursors.zoom)}else{this._inOp=true;switch(this._options.mode){case "pan":case "drawPoint":case "drawLineString":case "drawPolygon":this._lastDrag=this._current;a.currentTarget.setCapture&&a.currentTarget.setCapture()}}if(this._inOp){a.preventDefault(); +return false}}},_dragTarget_touchmove:function(a){var c=this._$eventTarget.offset(),b=this._drawCoords.length;c=this._supportTouch?[a.originalEvent.changedTouches[0].pageX-c.left,a.originalEvent.changedTouches[0].pageY-c.top]:[a.pageX-c.left,a.pageY-c.top];if(c[0]===this._lastMove[0]&&c[1]===this._lastMove[1])if(this._inOp){a.preventDefault();return false}if(this._softDblClick)this._isDbltap=this._isTap=false;if(this._mouseDown){this._current=c;this._moveDate=e.now()}switch(this._shiftZoom?"zoom": +this._options.mode){case "zoom":if(this._mouseDown){this._$drawContainer.geographics("clear");this._$drawContainer.geographics("drawBbox",[this._anchor[0],this._anchor[1],c[0],c[1]])}else this._trigger("move",a,{type:"Point",coordinates:this.toMap(c)});break;case "pan":case "drawPoint":this._mouseDown||this._toolPan?this._panMove():this._trigger("move",a,{type:"Point",coordinates:this.toMap(c)});break;case "drawLineString":case "drawPolygon":if(this._mouseDown||this._toolPan)this._panMove();else{if(b> +0){this._drawCoords[b-1]=this._toMap(c);this._drawPixels[b-1]=c;this._refreshDrawing()}this._trigger("move",a,{type:"Point",coordinates:this.toMap(c)})}}this._lastMove=c;if(this._inOp){a.preventDefault();return false}},_dragTarget_touchstop:function(a){!this._mouseDown&&p==7&&this._eventTarget_touchstart(a);var c=this._mouseDown,b=this._toolPan,d=this._$eventTarget.offset(),g=this._shiftZoom?"zoom":this._options.mode,f,m;f=this._supportTouch?[a.originalEvent.changedTouches[0].pageX-d.left,a.originalEvent.changedTouches[0].pageY- +d.top]:[a.pageX-d.left,a.pageY-d.top];d=f[0]-this._anchor[0];m=f[1]-this._anchor[1];this._$eventTarget.css("cursor",this._options.cursors[this._options.mode]);this._shiftZoom=this._mouseDown=this._toolPan=false;document.releaseCapture&&document.releaseCapture();if(c){c=e.now();this._current=f;switch(g){case "zoom":if(d>0||m>0){b=this._pixelSize*6;g=this._toMap([[Math.min(this._anchor[0],f[0]),Math.max(this._anchor[1],f[1])],[Math.max(this._anchor[0],f[0]),Math.min(this._anchor[1],f[1])]]);g=[g[0][0], +g[0][1],g[1][0],g[1][1]];if(g[2]-g[0]100){this._trigger("click",a,{type:"Point",coordinates:this.toMap(f)});this._inOp=false}break;case "drawPoint":if(this._drawTimeout){window.clearTimeout(this._drawTimeout);this._drawTimeout=null}if(b)this._panFinalize();else if(c-this._clickDate>100){var l=this;this._drawTimeout= +setTimeout(function(){if(l._drawTimeout){l._trigger("shape",a,{type:"Point",coordinates:l.toMap(f)});l._inOp=false;l._drawTimeout=false}},250)}break;case "drawLineString":case "drawPolygon":if(b)this._panFinalize();else{b=this._drawCoords.length==0?0:this._drawCoords.length-1;this._drawCoords[b]=this._toMap(f);this._drawPixels[b]=f;if(b<2||!(this._drawCoords[b][0]==this._drawCoords[b-1][0]&&this._drawCoords[b][1]==this._drawCoords[b-1][1])){this._drawCoords[b+1]=this._toMap(f);this._drawPixels[b+ +1]=f}this._refreshDrawing()}}this._clickDate=c;if(this._softDblClick&&this._isDbltap){this._isDbltap=this._isTap=false;this._$eventTarget.trigger("dblclick",a)}}if(this._inOp){a.preventDefault();return false}},_eventTarget_mousewheel:function(a,c){a.preventDefault();this._panFinalize();if(this._mouseDown)return false;if(c!=0){if(this._wheelTimeout){window.clearTimeout(this._wheelTimeout);this._wheelTimeout=null}else{var b=e(a.currentTarget).offset();this._anchor=[a.pageX-b.left,a.pageY-b.top]}this._wheelLevel+= +c;b=this._getZoomCenterAndSize(this._anchor,this._wheelLevel,this._wheelZoomFactor);this._$shapesContainer.geographics("clear");for(i=0;i0&&this._graphicShapes.length<256&&this._refreshShapes(this._$shapesContainer,this._graphicShapes,this._graphicShapes,b.center,b.pixelSize);if(this._drawCoords.length> +0){this._drawPixels=this._toPixel(this._drawCoords,b.center,b.pixelSize);this._refreshDrawing()}var g=this;this._wheelTimeout=window.setTimeout(function(){g._mouseWheelFinish()},1E3)}return false}})})(jQuery); +(function(e,r){e.geo._serviceTypes.tiled=function(){return{create:function(p,a,c){p=e.data(c,"geoServiceState");if(!p){p={loadCount:0,reloadTiles:false};a.append('
          ');p.serviceContainer=a.children(":last");e.data(c,"geoServiceState",p)}return p.serviceContainer}, +destroy:function(p,a,c){e.data(c,"geoServiceState").serviceContainer.remove();e.removeData(c,"geoServiceState")},interactivePan:function(p,a,c,b){var d=e.data(a,"geoServiceState");if(d){this._cancelUnloaded(p,a);d.serviceContainer.children().css({left:function(w,M){return parseInt(M)+c},top:function(w,M){return parseInt(M)+b}});if(a&&(a.visibility===r||a.visibility==="visible")){var g=p._pixelSize,f=d.serviceContainer,m=f.children("[data-pixelSize='"+g+"']"),l=p._getContentBounds(),o=p.options.tilingScheme, +s=o.tileWidth,x=o.tileHeight,t=l.width/2*g,A=l.height/2*g,B=m.position(),C=m.data("scaleOrigin").split(",");l=parseInt(C[0])-B.left;B=parseInt(C[1])-B.top;var y=p._getCenter();C=[y[0]+l*g,y[1]-B*g];var H=Math.floor((C[0]-t-o.origin[0])/(g*s));l=Math.floor((o.origin[1]-(C[1]+A))/(g*x));B=Math.ceil((C[0]+t-o.origin[0])/(g*s));C=Math.ceil((o.origin[1]-(C[1]-A))/(g*x));var I=p._getBboxMax(),G=p._getTiledPixelSize(0),E=G/g,D=Math.floor((I[0]-o.origin[0])/(G*s))*E;I=Math.floor((o.origin[1]-I[3])/(G*x))* +E;t=Math.round((o.origin[0]+D*s*g-(y[0]-t))/g);A=Math.round((y[1]+A-(o.origin[1]-I*x*g))/g);var J=a.opacity===r?1:a.opacity;for(y=H;y +0)E.attr("src",K);else{E="";m.append(E);E=m.children(":last");E.load(function(w){J<1?e(w.target).fadeTo(0,J):e(w.target).show();d.loadCount--;if(d.loadCount<=0){f.children(":not([data-pixelSize='"+ +g+"'])").remove();d.loadCount=0}}).error(function(w){e(w.target).remove();d.loadCount--;if(d.loadCount<=0){f.children(":not([data-pixelSize='"+g+"'])").remove();d.loadCount=0}}).attr("src",K)}}}}}},interactiveScale:function(p,a,c,b){var d=e.data(a,"geoServiceState");if(d&&a&&(a.visibility===r||a.visibility==="visible")){this._cancelUnloaded(p,a);a=p.options.tilingScheme;var g=a.tileWidth,f=a.tileHeight;d.serviceContainer.children().each(function(){var m=e(this),l=m.attr("data-pixelSize")/b;l=Math.round(l* +1E3)/1E3;var o=m.data("scaleOrigin").split(",");o=p._toMap([o[0],o[1]]);o=p._toPixel(o,c,b);m.css({left:Math.round(o[0])+"px",top:Math.round(o[1])+"px",width:g*l,height:f*l});e("body")[0].filters!==r&&m.children().each(function(){e(this).css("filter","progid:DXImageTransform.Microsoft.Matrix(FilterType=bilinear,M11="+l+",M22="+l+",sizingmethod='auto expand')")})})}},refresh:function(p,a){var c=e.data(a,"geoServiceState");if(c&&a&&(a.visibility===r||a.visibility==="visible")){this._cancelUnloaded(p, +a);var b=p._getBbox(),d=p._pixelSize,g=c.serviceContainer;p._getContentBounds();var f=p.options.tilingScheme,m=f.tileWidth,l=f.tileHeight,o=Math.floor((b[0]-f.origin[0])/(d*m)),s=Math.floor((f.origin[1]-b[3])/(d*l)),x=Math.ceil((b[2]-f.origin[0])/(d*m)),t=Math.ceil((f.origin[1]-b[1])/(d*l)),A=p._getBboxMax(),B=p._getTiledPixelSize(0),C=B/d,y=Math.floor((A[0]-f.origin[0])/(B*m))*C,H=Math.floor((f.origin[1]-A[3])/(B*l))*C,I=Math.round((f.origin[0]+y*m*d-b[0])/d),G=Math.round((b[3]-(f.origin[1]-H*l* +d))/d);b=g.children().show();A=b.filter("[data-pixelSize='"+d+"']").appendTo(g);var E=a.opacity===r?1:a.opacity;c.reloadTiles&&b.find("img").attr("data-dirty","true");if(A.size()){A.css({left:I%m+"px",top:G%l+"px"}).data("scaleOrigin",I%m+","+G%l);A.children().each(function(){var F=e(this),w=F.attr("data-tile").split(",");F.css({left:Math.round((parseInt(w[0])-y)*100+(I-I%m)/m*100)+"%",top:Math.round((parseInt(w[1])-H)*100+(G-G%l)/l*100)+"%"});E<1&&F.fadeTo(0,E)})}else{g.append("
          ");A=g.children(":last").data("scaleOrigin",I%m+","+G%l)}for(o=o;o0)D.attr("src",J);else{D="";A.append(D);D=A.children(":last");D.load(function(F){E<1?e(F.target).fadeTo(0, +E):e(F.target).show();c.loadCount--;if(c.loadCount<=0){g.children(":not([data-pixelSize='"+d+"'])").remove();c.loadCount=0}}).error(function(F){e(F.target).remove();c.loadCount--;if(c.loadCount<=0){g.children(":not([data-pixelSize='"+d+"'])").remove();c.loadCount=0}}).attr("src",J)}}}b.find("[data-dirty]").remove();c.reloadTiles=false}},resize:function(){},opacity:function(p,a){e.data(a,"geoServiceState").serviceContainer.find("img").stop(true).fadeTo("fast",a.opacity)},toggle:function(p,a){e.data(a, +"geoServiceState").serviceContainer.css("display",a.visibility==="visible"?"block":"none")},_cancelUnloaded:function(p,a){var c=e.data(a,"geoServiceState");if(c&&c.loadCount>0)for(c.serviceContainer.find("img:hidden").remove();c.loadCount>0;)c.loadCount--}}}()})(jQuery); +(function(e,r){e.geo._serviceTypes.shingled=function(){return{create:function(p,a,c){p=e.data(c,"geoServiceState");if(!p){p={loadCount:0};a.append('
          ');p.serviceContainer=a.children(":last");e.data(c,"geoServiceState",p)}return p.serviceContainer}, +destroy:function(p,a,c){e.data(c,"geoServiceState").serviceContainer.remove();e.removeData(c,"geoServiceState")},interactivePan:function(p,a,c,b){var d=e.data(a,"geoServiceState");if(d){this._cancelUnloaded(p,a);p=d.serviceContainer.children("[data-pixelSize='"+p._pixelSize+"']");a=p.children("div");if(!a.length){p.children("img").wrap('
          ');a=p.children("div")}a.css({left:function(g,f){return parseInt(f)+c},top:function(g, +f){return parseInt(f)+b}})}},interactiveScale:function(p,a,c,b){var d=e.data(a,"geoServiceState");if(d){this._cancelUnloaded(p,a);a=d.serviceContainer;p=p._getContentBounds();var g=p.width,f=p.height,m=g/2,l=f/2;a.children().each(function(){var o=e(this),s=o.attr("data-pixelSize"),x=s/b;o.css({width:g*x,height:f*x}).children("img").each(function(){var t=e(this),A=t.data("center");t.css({left:(Math.round((A[0]-c[0])/s)-m)*x+"px",top:(Math.round((c[1]-A[1])/s)-l)*x+"px"})})})}},refresh:function(p,a){var c= +e.data(a,"geoServiceState");if(c&&a&&(a.visibility===r||a.visibility==="visible")){this._cancelUnloaded(p,a);var b=p._getBbox(),d=p._pixelSize,g=c.serviceContainer,f=p._getContentBounds(),m=f.width,l=f.height,o=m/2,s=l/2;f=g.children('[data-pixelSize="'+d+'"]');var x=a.opacity===r?1:a.opacity;if(!f.size()){g.append('
          ');f=g.children(":last")}f.children("img").each(function(){var t= +e(this),A=t.data("center"),B=p._getCenter();t.css({left:Math.round((A[0]-B[0])/d)-o+"px",top:Math.round((B[1]-A[1])/d)-s+"px"})});x<1&&g.find("img").attr("data-keepAlive","0");b=a.getUrl({bbox:b,width:m,height:l,zoom:p._getZoom(),tile:null,index:0});c.loadCount++;f.append(''); +f.children(":last").data("center",p._getCenter()).load(function(t){x<1?e(t.target).fadeTo(0,x):e(t.target).show();c.loadCount--;if(c.loadCount<=0){g.children(':not([data-pixelSize="'+d+'"])').remove();t=g.find('[data-pixelSize="'+d+'"]>div');if(t.size()>0){var A=t.position();t.children("img").each(function(){var B=e(this),C=A.left+parseInt(B.css("left")),y=A.top+parseInt(B.css("top"));B.css({left:C+"px",top:y+"px"})}).unwrap();t.remove()}c.loadCount=0}}).error(function(t){e(t.target).remove();c.loadCount--; +if(c.loadCount<=0){g.children(":not([data-pixelSize='"+d+"'])").remove();c.loadCount=0}}).attr("src",b)}},resize:function(p,a){var c=e.data(a,"geoServiceState");if(c&&a&&(a.visibility===r||a.visibility==="visible")){this._cancelUnloaded(p,a);c=shingledServicesState[a.id];var b=c.serviceContainer,d=p._getContentBounds();c=d.width/2;d=d.height/2;b=b.children();b.attr("data-pixelSize","0");b.css({left:c+"px",top:d+"px"})}},opacity:function(p,a){e.data(a,"geoServiceState").serviceContainer.find("img").stop(true).fadeTo("fast", +a.opacity)},toggle:function(p,a){e.data(a,"geoServiceState").serviceContainer.css("display",a.visibility==="visible"?"block":"none")},_cancelUnloaded:function(p,a){var c=e.data(a,"geoServiceState");if(c&&c.loadCount>0)for(c.serviceContainer.find("img:hidden").remove();c.loadCount>0;)c.loadCount--}}}()})(jQuery); diff --git a/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a4.js b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a4.js new file mode 100755 index 0000000..3223253 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a4.js @@ -0,0 +1,6233 @@ +// excanvas +// Copyright 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/* + * AppGeo/geo + * (c) 2007-2011, Applied Geographics, Inc. All rights reserved. + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + */ + + +// Copyright 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +// Known Issues: +// +// * Patterns only support repeat. +// * Radial gradient are not implemented. The VML version of these look very +// different from the canvas one. +// * Clipping paths are not implemented. +// * Coordsize. The width and height attribute have higher priority than the +// width and height style values which isn't correct. +// * Painting mode isn't implemented. +// * Canvas width/height should is using content-box by default. IE in +// Quirks mode will draw the canvas using border-box. Either change your +// doctype to HTML5 +// (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype) +// or use Box Sizing Behavior from WebFX +// (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html) +// * Non uniform scaling does not correctly scale strokes. +// * Optimize. There is always room for speed improvements. + +// Only add this code if we do not already have a canvas implementation +if (!document.createElement('canvas').getContext) { + + (function () { + + // alias some functions to make (compiled) code shorter + var m = Math; + var mr = m.round; + var ms = m.sin; + var mc = m.cos; + var abs = m.abs; + var sqrt = m.sqrt; + + // this is used for sub pixel precision + var Z = 10; + var Z2 = Z / 2; + + var IE_VERSION = +navigator.userAgent.match(/MSIE ([\d.]+)?/)[1]; + + /** + * This funtion is assigned to the elements as element.getContext(). + * @this {HTMLElement} + * @return {CanvasRenderingContext2D_} + */ + function getContext() { + return this.context_ || + (this.context_ = new CanvasRenderingContext2D_(this)); + } + + var slice = Array.prototype.slice; + + /** + * Binds a function to an object. The returned function will always use the + * passed in {@code obj} as {@code this}. + * + * Example: + * + * g = bind(f, obj, a, b) + * g(c, d) // will do f.call(obj, a, b, c, d) + * + * @param {Function} f The function to bind the object to + * @param {Object} obj The object that should act as this when the function + * is called + * @param {*} var_args Rest arguments that will be used as the initial + * arguments when the function is called + * @return {Function} A new function that has bound this + */ + function bind(f, obj, var_args) { + var a = slice.call(arguments, 2); + return function () { + return f.apply(obj, a.concat(slice.call(arguments))); + }; + } + + function encodeHtmlAttribute(s) { + return String(s).replace(/&/g, '&').replace(/"/g, '"'); + } + + function addNamespace(doc, prefix, urn) { + if (!doc.namespaces[prefix]) { + doc.namespaces.add(prefix, urn, '#default#VML'); + } + } + + function addNamespacesAndStylesheet(doc) { + addNamespace(doc, 'g_vml_', 'urn:schemas-microsoft-com:vml'); + addNamespace(doc, 'g_o_', 'urn:schemas-microsoft-com:office:office'); + + // Setup default CSS. Only add one style sheet per document + if (!doc.styleSheets['ex_canvas_']) { + var ss = doc.createStyleSheet(); + ss.owningElement.id = 'ex_canvas_'; + ss.cssText = 'canvas{display:inline-block;overflow:hidden;' + + // default size is 300x150 in Gecko and Opera + 'text-align:left;width:300px;height:150px}'; + } + } + + // Add namespaces and stylesheet at startup. + addNamespacesAndStylesheet(document); + + var G_vmlCanvasManager_ = { + init: function (opt_doc) { + var doc = opt_doc || document; + // Create a dummy element so that IE will allow canvas elements to be + // recognized. + doc.createElement('canvas'); + doc.attachEvent('onreadystatechange', bind(this.init_, this, doc)); + }, + + init_: function (doc) { + // find all canvas elements + var els = doc.getElementsByTagName('canvas'); + for (var i = 0; i < els.length; i++) { + this.initElement(els[i]); + } + }, + + /** + * Public initializes a canvas element so that it can be used as canvas + * element from now on. This is called automatically before the page is + * loaded but if you are creating elements using createElement you need to + * make sure this is called on the element. + * @param {HTMLElement} el The canvas element to initialize. + * @return {HTMLElement} the element that was created. + */ + initElement: function (el) { + if (!el.getContext) { + el.getContext = getContext; + + // Add namespaces and stylesheet to document of the element. + addNamespacesAndStylesheet(el.ownerDocument); + + // Remove fallback content. There is no way to hide text nodes so we + // just remove all childNodes. We could hide all elements and remove + // text nodes but who really cares about the fallback content. + el.innerHTML = ''; + + // do not use inline function because that will leak memory + el.attachEvent('onpropertychange', onPropertyChange); + el.attachEvent('onresize', onResize); + + var attrs = el.attributes; + if (attrs.width && attrs.width.specified) { + // TODO: use runtimeStyle and coordsize + // el.getContext().setWidth_(attrs.width.nodeValue); + el.style.width = attrs.width.nodeValue + 'px'; + } else { + el.width = el.clientWidth; + } + if (attrs.height && attrs.height.specified) { + // TODO: use runtimeStyle and coordsize + // el.getContext().setHeight_(attrs.height.nodeValue); + el.style.height = attrs.height.nodeValue + 'px'; + } else { + el.height = el.clientHeight; + } + //el.getContext().setCoordsize_() + } + return el; + } + }; + + function onPropertyChange(e) { + var el = e.srcElement; + + switch (e.propertyName) { + case 'width': + el.getContext().clearRect(); + el.style.width = el.attributes.width.nodeValue + 'px'; + // In IE8 this does not trigger onresize. + el.firstChild.style.width = el.clientWidth + 'px'; + break; + case 'height': + el.getContext().clearRect(); + el.style.height = el.attributes.height.nodeValue + 'px'; + el.firstChild.style.height = el.clientHeight + 'px'; + break; + } + } + + function onResize(e) { + var el = e.srcElement; + if (el.firstChild) { + el.firstChild.style.width = el.clientWidth + 'px'; + el.firstChild.style.height = el.clientHeight + 'px'; + } + } + + G_vmlCanvasManager_.init(); + + // precompute "00" to "FF" + var decToHex = []; + for (var i = 0; i < 16; i++) { + for (var j = 0; j < 16; j++) { + decToHex[i * 16 + j] = i.toString(16) + j.toString(16); + } + } + + function createMatrixIdentity() { + return [ + [1, 0, 0], + [0, 1, 0], + [0, 0, 1] + ]; + } + + function matrixMultiply(m1, m2) { + var result = createMatrixIdentity(); + + for (var x = 0; x < 3; x++) { + for (var y = 0; y < 3; y++) { + var sum = 0; + + for (var z = 0; z < 3; z++) { + sum += m1[x][z] * m2[z][y]; + } + + result[x][y] = sum; + } + } + return result; + } + + function copyState(o1, o2) { + o2.fillStyle = o1.fillStyle; + o2.lineCap = o1.lineCap; + o2.lineJoin = o1.lineJoin; + o2.lineWidth = o1.lineWidth; + o2.miterLimit = o1.miterLimit; + o2.shadowBlur = o1.shadowBlur; + o2.shadowColor = o1.shadowColor; + o2.shadowOffsetX = o1.shadowOffsetX; + o2.shadowOffsetY = o1.shadowOffsetY; + o2.strokeStyle = o1.strokeStyle; + o2.globalAlpha = o1.globalAlpha; + o2.font = o1.font; + o2.textAlign = o1.textAlign; + o2.textBaseline = o1.textBaseline; + o2.arcScaleX_ = o1.arcScaleX_; + o2.arcScaleY_ = o1.arcScaleY_; + o2.lineScale_ = o1.lineScale_; + } + + // var colorData = { + // aliceblue: '#F0F8FF', + // antiquewhite: '#FAEBD7', + // aquamarine: '#7FFFD4', + // azure: '#F0FFFF', + // beige: '#F5F5DC', + // bisque: '#FFE4C4', + // black: '#000000', + // blanchedalmond: '#FFEBCD', + // blueviolet: '#8A2BE2', + // brown: '#A52A2A', + // burlywood: '#DEB887', + // cadetblue: '#5F9EA0', + // chartreuse: '#7FFF00', + // chocolate: '#D2691E', + // coral: '#FF7F50', + // cornflowerblue: '#6495ED', + // cornsilk: '#FFF8DC', + // crimson: '#DC143C', + // cyan: '#00FFFF', + // darkblue: '#00008B', + // darkcyan: '#008B8B', + // darkgoldenrod: '#B8860B', + // darkgray: '#A9A9A9', + // darkgreen: '#006400', + // darkgrey: '#A9A9A9', + // darkkhaki: '#BDB76B', + // darkmagenta: '#8B008B', + // darkolivegreen: '#556B2F', + // darkorange: '#FF8C00', + // darkorchid: '#9932CC', + // darkred: '#8B0000', + // darksalmon: '#E9967A', + // darkseagreen: '#8FBC8F', + // darkslateblue: '#483D8B', + // darkslategray: '#2F4F4F', + // darkslategrey: '#2F4F4F', + // darkturquoise: '#00CED1', + // darkviolet: '#9400D3', + // deeppink: '#FF1493', + // deepskyblue: '#00BFFF', + // dimgray: '#696969', + // dimgrey: '#696969', + // dodgerblue: '#1E90FF', + // firebrick: '#B22222', + // floralwhite: '#FFFAF0', + // forestgreen: '#228B22', + // gainsboro: '#DCDCDC', + // ghostwhite: '#F8F8FF', + // gold: '#FFD700', + // goldenrod: '#DAA520', + // grey: '#808080', + // greenyellow: '#ADFF2F', + // honeydew: '#F0FFF0', + // hotpink: '#FF69B4', + // indianred: '#CD5C5C', + // indigo: '#4B0082', + // ivory: '#FFFFF0', + // khaki: '#F0E68C', + // lavender: '#E6E6FA', + // lavenderblush: '#FFF0F5', + // lawngreen: '#7CFC00', + // lemonchiffon: '#FFFACD', + // lightblue: '#ADD8E6', + // lightcoral: '#F08080', + // lightcyan: '#E0FFFF', + // lightgoldenrodyellow: '#FAFAD2', + // lightgreen: '#90EE90', + // lightgrey: '#D3D3D3', + // lightpink: '#FFB6C1', + // lightsalmon: '#FFA07A', + // lightseagreen: '#20B2AA', + // lightskyblue: '#87CEFA', + // lightslategray: '#778899', + // lightslategrey: '#778899', + // lightsteelblue: '#B0C4DE', + // lightyellow: '#FFFFE0', + // limegreen: '#32CD32', + // linen: '#FAF0E6', + // magenta: '#FF00FF', + // mediumaquamarine: '#66CDAA', + // mediumblue: '#0000CD', + // mediumorchid: '#BA55D3', + // mediumpurple: '#9370DB', + // mediumseagreen: '#3CB371', + // mediumslateblue: '#7B68EE', + // mediumspringgreen: '#00FA9A', + // mediumturquoise: '#48D1CC', + // mediumvioletred: '#C71585', + // midnightblue: '#191970', + // mintcream: '#F5FFFA', + // mistyrose: '#FFE4E1', + // moccasin: '#FFE4B5', + // navajowhite: '#FFDEAD', + // oldlace: '#FDF5E6', + // olivedrab: '#6B8E23', + // orange: '#FFA500', + // orangered: '#FF4500', + // orchid: '#DA70D6', + // palegoldenrod: '#EEE8AA', + // palegreen: '#98FB98', + // paleturquoise: '#AFEEEE', + // palevioletred: '#DB7093', + // papayawhip: '#FFEFD5', + // peachpuff: '#FFDAB9', + // peru: '#CD853F', + // pink: '#FFC0CB', + // plum: '#DDA0DD', + // powderblue: '#B0E0E6', + // rosybrown: '#BC8F8F', + // royalblue: '#4169E1', + // saddlebrown: '#8B4513', + // salmon: '#FA8072', + // sandybrown: '#F4A460', + // seagreen: '#2E8B57', + // seashell: '#FFF5EE', + // sienna: '#A0522D', + // skyblue: '#87CEEB', + // slateblue: '#6A5ACD', + // slategray: '#708090', + // slategrey: '#708090', + // snow: '#FFFAFA', + // springgreen: '#00FF7F', + // steelblue: '#4682B4', + // tan: '#D2B48C', + // thistle: '#D8BFD8', + // tomato: '#FF6347', + // turquoise: '#40E0D0', + // violet: '#EE82EE', + // wheat: '#F5DEB3', + // whitesmoke: '#F5F5F5', + // yellowgreen: '#9ACD32' + // }; + + + function getRgbHslContent(styleString) { + var start = styleString.indexOf('(', 3); + var end = styleString.indexOf(')', start + 1); + var parts = styleString.substring(start + 1, end).split(','); + // add alpha if needed + if (parts.length != 4 || styleString.charAt(3) != 'a') { + parts[3] = 1; + } + return parts; + } + + function percent(s) { + return parseFloat(s) / 100; + } + + function clamp(v, min, max) { + return Math.min(max, Math.max(min, v)); + } + + function hslToRgb(parts) { + var r, g, b, h, s, l; + h = parseFloat(parts[0]) / 360 % 360; + if (h < 0) + h++; + s = clamp(percent(parts[1]), 0, 1); + l = clamp(percent(parts[2]), 0, 1); + if (s == 0) { + r = g = b = l; // achromatic + } else { + var q = l < 0.5 ? l * (1 + s) : l + s - l * s; + var p = 2 * l - q; + r = hueToRgb(p, q, h + 1 / 3); + g = hueToRgb(p, q, h); + b = hueToRgb(p, q, h - 1 / 3); + } + + return '#' + decToHex[Math.floor(r * 255)] + + decToHex[Math.floor(g * 255)] + + decToHex[Math.floor(b * 255)]; + } + + function hueToRgb(m1, m2, h) { + if (h < 0) + h++; + if (h > 1) + h--; + + if (6 * h < 1) + return m1 + (m2 - m1) * 6 * h; + else if (2 * h < 1) + return m2; + else if (3 * h < 2) + return m1 + (m2 - m1) * (2 / 3 - h) * 6; + else + return m1; + } + + var processStyleCache = {}; + + function processStyle(styleString) { + if (styleString in processStyleCache) { + return processStyleCache[styleString]; + } + + var str, alpha = 1; + + styleString = String(styleString); + if (styleString.charAt(0) == '#') { + str = styleString; + } else if (/^rgb/.test(styleString)) { + var parts = getRgbHslContent(styleString); + var str = '#', n; + for (var i = 0; i < 3; i++) { + if (parts[i].indexOf('%') != -1) { + n = Math.floor(percent(parts[i]) * 255); + } else { + n = +parts[i]; + } + str += decToHex[clamp(n, 0, 255)]; + } + alpha = +parts[3]; + } else if (/^hsl/.test(styleString)) { + var parts = getRgbHslContent(styleString); + str = hslToRgb(parts); + alpha = parts[3]; + } else { + str = /*colorData[styleString] ||*/styleString; + } + return processStyleCache[styleString] = { color: str, alpha: alpha }; + } + + var DEFAULT_STYLE = { + style: 'normal', + variant: 'normal', + weight: 'normal', + size: 10, + family: 'sans-serif' + }; + + // Internal text style cache + // var fontStyleCache = {}; + + // function processFontStyle(styleString) { + // if (fontStyleCache[styleString]) { + // return fontStyleCache[styleString]; + // } + + // var el = document.createElement('div'); + // var style = el.style; + // try { + // style.font = styleString; + // } catch (ex) { + // // Ignore failures to set to invalid font. + // } + + // return fontStyleCache[styleString] = { + // style: style.fontStyle || DEFAULT_STYLE.style, + // variant: style.fontVariant || DEFAULT_STYLE.variant, + // weight: style.fontWeight || DEFAULT_STYLE.weight, + // size: style.fontSize || DEFAULT_STYLE.size, + // family: style.fontFamily || DEFAULT_STYLE.family + // }; + // } + + // function getComputedStyle(style, element) { + // var computedStyle = {}; + + // for (var p in style) { + // computedStyle[p] = style[p]; + // } + + // // Compute the size + // var canvasFontSize = parseFloat(element.currentStyle.fontSize), + // fontSize = parseFloat(style.size); + + // if (typeof style.size == 'number') { + // computedStyle.size = style.size; + // } else if (style.size.indexOf('px') != -1) { + // computedStyle.size = fontSize; + // } else if (style.size.indexOf('em') != -1) { + // computedStyle.size = canvasFontSize * fontSize; + // } else if(style.size.indexOf('%') != -1) { + // computedStyle.size = (canvasFontSize / 100) * fontSize; + // } else if (style.size.indexOf('pt') != -1) { + // computedStyle.size = fontSize / .75; + // } else { + // computedStyle.size = canvasFontSize; + // } + + // // Different scaling between normal text and VML text. This was found using + // // trial and error to get the same size as non VML text. + // computedStyle.size *= 0.981; + + // return computedStyle; + // } + + // function buildStyle(style) { + // return style.style + ' ' + style.variant + ' ' + style.weight + ' ' + + // style.size + 'px ' + style.family; + // } + + var lineCapMap = { + 'butt': 'flat', + 'round': 'round' + }; + + function processLineCap(lineCap) { + return lineCapMap[lineCap] || 'square'; + } + + /** + * This class implements CanvasRenderingContext2D interface as described by + * the WHATWG. + * @param {HTMLElement} canvasElement The element that the 2D context should + * be associated with + */ + function CanvasRenderingContext2D_(canvasElement) { + this.m_ = createMatrixIdentity(); + + this.mStack_ = []; + this.aStack_ = []; + this.currentPath_ = []; + + // Canvas context properties + this.strokeStyle = '#000'; + this.fillStyle = '#000'; + + this.lineWidth = 1; + this.lineJoin = 'miter'; + this.lineCap = 'butt'; + this.miterLimit = Z * 1; + this.globalAlpha = 1; + //this.font = '10px sans-serif'; + //this.textAlign = 'left'; + //this.textBaseline = 'alphabetic'; + this.canvas = canvasElement; + + var cssText = 'width:' + canvasElement.clientWidth + 'px;height:' + + canvasElement.clientHeight + 'px;overflow:hidden;position:absolute'; + var el = canvasElement.ownerDocument.createElement('div'); + el.style.cssText = cssText; + canvasElement.appendChild(el); + + var overlayEl = el.cloneNode(false); + // Use a non transparent background. + overlayEl.style.backgroundColor = 'red'; + overlayEl.style.filter = 'alpha(opacity=0)'; + canvasElement.appendChild(overlayEl); + + this.element_ = el; + this.arcScaleX_ = 1; + this.arcScaleY_ = 1; + this.lineScale_ = 1; + } + + var contextPrototype = CanvasRenderingContext2D_.prototype; + contextPrototype.clearRect = function () { + if (this.textMeasureEl_) { + this.textMeasureEl_.removeNode(true); + this.textMeasureEl_ = null; + } + this.element_.innerHTML = ''; + }; + + contextPrototype.beginPath = function () { + // TODO: Branch current matrix so that save/restore has no effect + // as per safari docs. + this.currentPath_ = []; + }; + + contextPrototype.moveTo = function (aX, aY) { + var p = getCoords(this, aX, aY); + this.currentPath_.push({ type: 'moveTo', x: p.x, y: p.y }); + this.currentX_ = p.x; + this.currentY_ = p.y; + }; + + contextPrototype.lineTo = function (aX, aY) { + var p = getCoords(this, aX, aY); + this.currentPath_.push({ type: 'lineTo', x: p.x, y: p.y }); + + this.currentX_ = p.x; + this.currentY_ = p.y; + }; + + contextPrototype.bezierCurveTo = function(aCP1x, aCP1y, + aCP2x, aCP2y, + aX, aY) { + var p = getCoords(this, aX, aY); + var cp1 = getCoords(this, aCP1x, aCP1y); + var cp2 = getCoords(this, aCP2x, aCP2y); + bezierCurveTo(this, cp1, cp2, p); + }; + + // Helper function that takes the already fixed cordinates. + function bezierCurveTo(self, cp1, cp2, p) { + self.currentPath_.push({ + type: 'bezierCurveTo', + cp1x: cp1.x, + cp1y: cp1.y, + cp2x: cp2.x, + cp2y: cp2.y, + x: p.x, + y: p.y + }); + self.currentX_ = p.x; + self.currentY_ = p.y; + } + + contextPrototype.quadraticCurveTo = function(aCPx, aCPy, aX, aY) { + // the following is lifted almost directly from + // http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes + + var cp = getCoords(this, aCPx, aCPy); + var p = getCoords(this, aX, aY); + + var cp1 = { + x: this.currentX_ + 2.0 / 3.0 * (cp.x - this.currentX_), + y: this.currentY_ + 2.0 / 3.0 * (cp.y - this.currentY_) + }; + var cp2 = { + x: cp1.x + (p.x - this.currentX_) / 3.0, + y: cp1.y + (p.y - this.currentY_) / 3.0 + }; + + bezierCurveTo(this, cp1, cp2, p); + }; + + contextPrototype.arc = function (aX, aY, aRadius, + aStartAngle, aEndAngle, aClockwise) { + aRadius *= Z; + var arcType = aClockwise ? 'at' : 'wa'; + + var xStart = aX + mc(aStartAngle) * aRadius - Z2; + var yStart = aY + ms(aStartAngle) * aRadius - Z2; + + var xEnd = aX + mc(aEndAngle) * aRadius - Z2; + var yEnd = aY + ms(aEndAngle) * aRadius - Z2; + + // IE won't render arches drawn counter clockwise if xStart == xEnd. + if (xStart == xEnd && !aClockwise) { + xStart += 0.125; // Offset xStart by 1/80 of a pixel. Use something + // that can be represented in binary + } + + var p = getCoords(this, aX, aY); + var pStart = getCoords(this, xStart, yStart); + var pEnd = getCoords(this, xEnd, yEnd); + + this.currentPath_.push({ type: arcType, + x: p.x, + y: p.y, + radius: aRadius, + xStart: pStart.x, + yStart: pStart.y, + xEnd: pEnd.x, + yEnd: pEnd.y + }); + + }; + + // contextPrototype.rect = function(aX, aY, aWidth, aHeight) { + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // }; + + // contextPrototype.strokeRect = function(aX, aY, aWidth, aHeight) { + // var oldPath = this.currentPath_; + // this.beginPath(); + + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // this.stroke(); + + // this.currentPath_ = oldPath; + // }; + + // contextPrototype.fillRect = function(aX, aY, aWidth, aHeight) { + // var oldPath = this.currentPath_; + // this.beginPath(); + + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // this.fill(); + + // this.currentPath_ = oldPath; + // }; + + // contextPrototype.createLinearGradient = function(aX0, aY0, aX1, aY1) { + // var gradient = new CanvasGradient_('gradient'); + // gradient.x0_ = aX0; + // gradient.y0_ = aY0; + // gradient.x1_ = aX1; + // gradient.y1_ = aY1; + // return gradient; + // }; + + // contextPrototype.createRadialGradient = function(aX0, aY0, aR0, + // aX1, aY1, aR1) { + // var gradient = new CanvasGradient_('gradientradial'); + // gradient.x0_ = aX0; + // gradient.y0_ = aY0; + // gradient.r0_ = aR0; + // gradient.x1_ = aX1; + // gradient.y1_ = aY1; + // gradient.r1_ = aR1; + // return gradient; + // }; + + // contextPrototype.drawImage = function(image, var_args) { + // var dx, dy, dw, dh, sx, sy, sw, sh; + + // // to find the original width we overide the width and height + // var oldRuntimeWidth = image.runtimeStyle.width; + // var oldRuntimeHeight = image.runtimeStyle.height; + // image.runtimeStyle.width = 'auto'; + // image.runtimeStyle.height = 'auto'; + + // // get the original size + // var w = image.width; + // var h = image.height; + + // // and remove overides + // image.runtimeStyle.width = oldRuntimeWidth; + // image.runtimeStyle.height = oldRuntimeHeight; + + // if (arguments.length == 3) { + // dx = arguments[1]; + // dy = arguments[2]; + // sx = sy = 0; + // sw = dw = w; + // sh = dh = h; + // } else if (arguments.length == 5) { + // dx = arguments[1]; + // dy = arguments[2]; + // dw = arguments[3]; + // dh = arguments[4]; + // sx = sy = 0; + // sw = w; + // sh = h; + // } else if (arguments.length == 9) { + // sx = arguments[1]; + // sy = arguments[2]; + // sw = arguments[3]; + // sh = arguments[4]; + // dx = arguments[5]; + // dy = arguments[6]; + // dw = arguments[7]; + // dh = arguments[8]; + // } else { + // throw Error('Invalid number of arguments'); + // } + + // var d = getCoords(this, dx, dy); + + // var w2 = sw / 2; + // var h2 = sh / 2; + + // var vmlStr = []; + + // var W = 10; + // var H = 10; + + // // For some reason that I've now forgotten, using divs didn't work + // vmlStr.push(' ' , + // '', + // ''); + + // this.element_.insertAdjacentHTML('BeforeEnd', vmlStr.join('')); + // }; + + contextPrototype.stroke = function (aFill) { + var lineStr = []; + var lineOpen = false; + + var W = 10; + var H = 10; + + lineStr.push(''); + + if (!aFill) { + appendStroke(this, lineStr); + } else { + appendFill(this, lineStr, min, max); + } + + lineStr.push(''); + + this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); + }; + + function appendStroke(ctx, lineStr) { + var a = processStyle(ctx.strokeStyle); + var color = a.color; + var opacity = a.alpha * ctx.globalAlpha; + var lineWidth = ctx.lineScale_ * ctx.lineWidth; + + // VML cannot correctly render a line if the width is less than 1px. + // In that case, we dilute the color to make the line look thinner. + if (lineWidth < 1) { + opacity *= lineWidth; + } + + lineStr.push( + '' + ); + } + + function appendFill(ctx, lineStr, min, max) { + var fillStyle = ctx.fillStyle; + var arcScaleX = ctx.arcScaleX_; + var arcScaleY = ctx.arcScaleY_; + var width = max.x - min.x; + var height = max.y - min.y; + // if (fillStyle instanceof CanvasGradient_) { + // // TODO: Gradients transformed with the transformation matrix. + // var angle = 0; + // var focus = {x: 0, y: 0}; + + // // additional offset + // var shift = 0; + // // scale factor for offset + // var expansion = 1; + + // if (fillStyle.type_ == 'gradient') { + // var x0 = fillStyle.x0_ / arcScaleX; + // var y0 = fillStyle.y0_ / arcScaleY; + // var x1 = fillStyle.x1_ / arcScaleX; + // var y1 = fillStyle.y1_ / arcScaleY; + // var p0 = getCoords(ctx, x0, y0); + // var p1 = getCoords(ctx, x1, y1); + // var dx = p1.x - p0.x; + // var dy = p1.y - p0.y; + // angle = Math.atan2(dx, dy) * 180 / Math.PI; + + // // The angle should be a non-negative number. + // if (angle < 0) { + // angle += 360; + // } + + // // Very small angles produce an unexpected result because they are + // // converted to a scientific notation string. + // if (angle < 1e-6) { + // angle = 0; + // } + // } else { + // var p0 = getCoords(ctx, fillStyle.x0_, fillStyle.y0_); + // focus = { + // x: (p0.x - min.x) / width, + // y: (p0.y - min.y) / height + // }; + + // width /= arcScaleX * Z; + // height /= arcScaleY * Z; + // var dimension = m.max(width, height); + // shift = 2 * fillStyle.r0_ / dimension; + // expansion = 2 * fillStyle.r1_ / dimension - shift; + // } + + // // We need to sort the color stops in ascending order by offset, + // // otherwise IE won't interpret it correctly. + // var stops = fillStyle.colors_; + // stops.sort(function(cs1, cs2) { + // return cs1.offset - cs2.offset; + // }); + + // var length = stops.length; + // var color1 = stops[0].color; + // var color2 = stops[length - 1].color; + // var opacity1 = stops[0].alpha * ctx.globalAlpha; + // var opacity2 = stops[length - 1].alpha * ctx.globalAlpha; + + // var colors = []; + // for (var i = 0; i < length; i++) { + // var stop = stops[i]; + // colors.push(stop.offset * expansion + shift + ' ' + stop.color); + // } + + // // When colors attribute is used, the meanings of opacity and o:opacity2 + // // are reversed. + // lineStr.push(''); + // } else if (fillStyle instanceof CanvasPattern_) { + // if (width && height) { + // var deltaLeft = -min.x; + // var deltaTop = -min.y; + // lineStr.push(''); + // } + // } else { + var a = processStyle(ctx.fillStyle); + var color = a.color; + var opacity = a.alpha * ctx.globalAlpha; + lineStr.push(''); + // } + } + + contextPrototype.fill = function () { + this.stroke(true); + }; + + contextPrototype.closePath = function () { + this.currentPath_.push({ type: 'close' }); + }; + + function getCoords(ctx, aX, aY) { + var m = ctx.m_; + return { + x: Z * (aX * m[0][0] + aY * m[1][0] + m[2][0]) - Z2, + y: Z * (aX * m[0][1] + aY * m[1][1] + m[2][1]) - Z2 + }; + }; + + contextPrototype.save = function () { + var o = {}; + copyState(this, o); + this.aStack_.push(o); + this.mStack_.push(this.m_); + this.m_ = matrixMultiply(createMatrixIdentity(), this.m_); + }; + + contextPrototype.restore = function () { + if (this.aStack_.length) { + copyState(this.aStack_.pop(), this); + this.m_ = this.mStack_.pop(); + } + }; + + function matrixIsFinite(m) { + return isFinite(m[0][0]) && isFinite(m[0][1]) && + isFinite(m[1][0]) && isFinite(m[1][1]) && + isFinite(m[2][0]) && isFinite(m[2][1]); + } + + function setM(ctx, m, updateLineScale) { + if (!matrixIsFinite(m)) { + return; + } + ctx.m_ = m; + + if (updateLineScale) { + // Get the line scale. + // Determinant of this.m_ means how much the area is enlarged by the + // transformation. So its square root can be used as a scale factor + // for width. + var det = m[0][0] * m[1][1] - m[0][1] * m[1][0]; + ctx.lineScale_ = sqrt(abs(det)); + } + } + + contextPrototype.translate = function (aX, aY) { + var m1 = [ + [1, 0, 0], + [0, 1, 0], + [aX, aY, 1] + ]; + + setM(this, matrixMultiply(m1, this.m_), false); + }; + + // contextPrototype.rotate = function(aRot) { + // var c = mc(aRot); + // var s = ms(aRot); + + // var m1 = [ + // [c, s, 0], + // [-s, c, 0], + // [0, 0, 1] + // ]; + + // setM(this, matrixMultiply(m1, this.m_), false); + // }; + + contextPrototype.scale = function (aX, aY) { + this.arcScaleX_ *= aX; + this.arcScaleY_ *= aY; + var m1 = [ + [aX, 0, 0], + [0, aY, 0], + [0, 0, 1] + ]; + + setM(this, matrixMultiply(m1, this.m_), true); + }; + + // contextPrototype.transform = function(m11, m12, m21, m22, dx, dy) { + // var m1 = [ + // [m11, m12, 0], + // [m21, m22, 0], + // [dx, dy, 1] + // ]; + + // setM(this, matrixMultiply(m1, this.m_), true); + // }; + + // contextPrototype.setTransform = function(m11, m12, m21, m22, dx, dy) { + // var m = [ + // [m11, m12, 0], + // [m21, m22, 0], + // [dx, dy, 1] + // ]; + + // setM(this, m, true); + // }; + + /** + * The text drawing function. + * The maxWidth argument isn't taken in account, since no browser supports + * it yet. + */ + // contextPrototype.drawText_ = function(text, x, y, maxWidth, stroke) { + // var m = this.m_, + // delta = 1000, + // left = 0, + // right = delta, + // offset = {x: 0, y: 0}, + // lineStr = []; + + // var fontStyle = getComputedStyle(processFontStyle(this.font), + // this.element_); + + // var fontStyleString = buildStyle(fontStyle); + + // var elementStyle = this.element_.currentStyle; + // var textAlign = this.textAlign.toLowerCase(); + // switch (textAlign) { + // case 'left': + // case 'center': + // case 'right': + // break; + // case 'end': + // textAlign = elementStyle.direction == 'ltr' ? 'right' : 'left'; + // break; + // case 'start': + // textAlign = elementStyle.direction == 'rtl' ? 'right' : 'left'; + // break; + // default: + // textAlign = 'left'; + // } + + // // 1.75 is an arbitrary number, as there is no info about the text baseline + // switch (this.textBaseline) { + // case 'hanging': + // case 'top': + // offset.y = fontStyle.size / 1.75; + // break; + // case 'middle': + // break; + // default: + // case null: + // case 'alphabetic': + // case 'ideographic': + // case 'bottom': + // offset.y = -fontStyle.size / 2.25; + // break; + // } + + // switch(textAlign) { + // case 'right': + // left = delta; + // right = 0.05; + // break; + // case 'center': + // left = right = delta / 2; + // break; + // } + + // var d = getCoords(this, x + offset.x, y + offset.y); + + // lineStr.push(''); + + // if (stroke) { + // appendStroke(this, lineStr); + // } else { + // // TODO: Fix the min and max params. + // appendFill(this, lineStr, {x: -left, y: 0}, + // {x: right, y: fontStyle.size}); + // } + + // var skewM = m[0][0].toFixed(3) + ',' + m[1][0].toFixed(3) + ',' + + // m[0][1].toFixed(3) + ',' + m[1][1].toFixed(3) + ',0,0'; + + // var skewOffset = mr(d.x / Z) + ',' + mr(d.y / Z); + + // lineStr.push('', + // '', + // ''); + + // this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); + // }; + + // contextPrototype.fillText = function(text, x, y, maxWidth) { + // this.drawText_(text, x, y, maxWidth, false); + // }; + + // contextPrototype.strokeText = function(text, x, y, maxWidth) { + // this.drawText_(text, x, y, maxWidth, true); + // }; + + // contextPrototype.measureText = function(text) { + // if (!this.textMeasureEl_) { + // var s = ''; + // this.element_.insertAdjacentHTML('beforeEnd', s); + // this.textMeasureEl_ = this.element_.lastChild; + // } + // var doc = this.element_.ownerDocument; + // this.textMeasureEl_.innerHTML = ''; + // this.textMeasureEl_.style.font = this.font; + // // Don't use innerHTML or innerText because they allow markup/whitespace. + // this.textMeasureEl_.appendChild(doc.createTextNode(text)); + // return {width: this.textMeasureEl_.offsetWidth}; + // }; + + /******** STUBS ********/ + // contextPrototype.clip = function() { + // // TODO: Implement + // }; + + // contextPrototype.arcTo = function() { + // // TODO: Implement + // }; + + // contextPrototype.createPattern = function(image, repetition) { + // return new CanvasPattern_(image, repetition); + // }; + + // // Gradient / Pattern Stubs + // function CanvasGradient_(aType) { + // this.type_ = aType; + // this.x0_ = 0; + // this.y0_ = 0; + // this.r0_ = 0; + // this.x1_ = 0; + // this.y1_ = 0; + // this.r1_ = 0; + // this.colors_ = []; + // } + + // CanvasGradient_.prototype.addColorStop = function(aOffset, aColor) { + // aColor = processStyle(aColor); + // this.colors_.push({offset: aOffset, + // color: aColor.color, + // alpha: aColor.alpha}); + // }; + + // function CanvasPattern_(image, repetition) { + // assertImageIsValid(image); + // switch (repetition) { + // case 'repeat': + // case null: + // case '': + // this.repetition_ = 'repeat'; + // break + // case 'repeat-x': + // case 'repeat-y': + // case 'no-repeat': + // this.repetition_ = repetition; + // break; + // default: + // throwException('SYNTAX_ERR'); + // } + + // this.src_ = image.src; + // this.width_ = image.width; + // this.height_ = image.height; + // } + + function throwException(s) { + throw new DOMException_(s); + } + + // function assertImageIsValid(img) { + // if (!img || img.nodeType != 1 || img.tagName != 'IMG') { + // throwException('TYPE_MISMATCH_ERR'); + // } + // if (img.readyState != 'complete') { + // throwException('INVALID_STATE_ERR'); + // } + // } + + function DOMException_(s) { + this.code = this[s]; + this.message = s + ': DOM Exception ' + this.code; + } + var p = DOMException_.prototype = new Error; + p.INDEX_SIZE_ERR = 1; + p.DOMSTRING_SIZE_ERR = 2; + p.HIERARCHY_REQUEST_ERR = 3; + p.WRONG_DOCUMENT_ERR = 4; + p.INVALID_CHARACTER_ERR = 5; + p.NO_DATA_ALLOWED_ERR = 6; + p.NO_MODIFICATION_ALLOWED_ERR = 7; + p.NOT_FOUND_ERR = 8; + p.NOT_SUPPORTED_ERR = 9; + p.INUSE_ATTRIBUTE_ERR = 10; + p.INVALID_STATE_ERR = 11; + p.SYNTAX_ERR = 12; + p.INVALID_MODIFICATION_ERR = 13; + p.NAMESPACE_ERR = 14; + p.INVALID_ACCESS_ERR = 15; + p.VALIDATION_ERR = 16; + p.TYPE_MISMATCH_ERR = 17; + + // set up externs + G_vmlCanvasManager = G_vmlCanvasManager_; + CanvasRenderingContext2D = CanvasRenderingContext2D_; + //CanvasGradient = CanvasGradient_; + //CanvasPattern = CanvasPattern_; + DOMException = DOMException_; + })(); + +} // if +/*! + * jQuery UI Widget @VERSION + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ + +if ( ! $.widget ) { + +(function( $, undefined ) { + +// jQuery 1.4+ +if ( $.cleanData ) { + var _cleanData = $.cleanData; + $.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + try { + $( elem ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + } + _cleanData( elems ); + }; +} else { + var _remove = $.fn.remove; + $.fn.remove = function( selector, keepData ) { + return this.each(function() { + if ( !keepData ) { + if ( !selector || $.filter( selector, [ this ] ).length ) { + $( "*", this ).add( [ this ] ).each(function() { + try { + $( this ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + }); + } + } + return _remove.call( $(this), selector, keepData ); + }); + }; +} + +$.widget = function( name, base, prototype ) { + var namespace = name.split( "." )[ 0 ], + fullName; + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName ] = function( elem ) { + return !!$.data( elem, name ); + }; + + $[ namespace ] = $[ namespace ] || {}; + $[ namespace ][ name ] = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } + }; + + var basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from +// $.each( basePrototype, function( key, val ) { +// if ( $.isPlainObject(val) ) { +// basePrototype[ key ] = $.extend( {}, val ); +// } +// }); + basePrototype.options = $.extend( true, {}, basePrototype.options ); + $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { + namespace: namespace, + widgetName: name, + widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, + widgetBaseClass: fullName + }, prototype ); + + $.widget.bridge( name, $[ namespace ][ name ] ); +}; + +$.widget.bridge = function( name, object ) { + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = Array.prototype.slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.extend.apply( null, [ true, options ].concat(args) ) : + options; + + // prevent calls to internal methods + if ( isMethodCall && options.charAt( 0 ) === "_" ) { + return returnValue; + } + + if ( isMethodCall ) { + this.each(function() { + var instance = $.data( this, name ), + methodValue = instance && $.isFunction( instance[options] ) ? + instance[ options ].apply( instance, args ) : + instance; + // TODO: add this back in 1.9 and use $.error() (see #5972) +// if ( !instance ) { +// throw "cannot call methods on " + name + " prior to initialization; " + +// "attempted to call method '" + options + "'"; +// } +// if ( !$.isFunction( instance[options] ) ) { +// throw "no such method '" + options + "' for " + name + " widget instance"; +// } +// var methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, name ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + $.data( this, name, new object( options, this ) ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } +}; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + options: { + disabled: false + }, + _createWidget: function( options, element ) { + // $.widget.bridge stores the plugin instance, but we do it anyway + // so that it's stored even before the _create function runs + $.data( element, this.widgetName, this ); + this.element = $( element ); + this.options = $.extend( true, {}, + this.options, + this._getCreateOptions(), + options ); + + var self = this; + this.element.bind( "remove." + this.widgetName, function() { + self.destroy(); + }); + + this._create(); + this._trigger( "create" ); + this._init(); + }, + _getCreateOptions: function() { + return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; + }, + _create: function() {}, + _init: function() {}, + + destroy: function() { + this.element + .unbind( "." + this.widgetName ) + .removeData( this.widgetName ); + this.widget() + .unbind( "." + this.widgetName ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetBaseClass + "-disabled " + + "ui-state-disabled" ); + }, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.extend( {}, this.options ); + } + + if (typeof key === "string" ) { + if ( value === undefined ) { + return this.options[ key ]; + } + options = {}; + options[ key ] = value; + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var self = this; + $.each( options, function( key, value ) { + self._setOption( key, value ); + }); + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + [ value ? "addClass" : "removeClass"]( + this.widgetBaseClass + "-disabled" + " " + + "ui-state-disabled" ) + .attr( "aria-disabled", value ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _trigger: function( type, event, data ) { + var prop, orig, + callback = this.options[ type ]; + + data = data || {}; + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[ 0 ]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if ( orig ) { + for ( prop in orig ) { + if ( !( prop in event ) ) { + event[ prop ] = orig[ prop ]; + } + } + } + + this.element.trigger( event, data ); + + return !( $.isFunction(callback) && + callback.call( this.element[0], event, data ) === false || + event.isDefaultPrevented() ); + } +}; + +})( jQuery ); + +} + +/*! JsRender v1.0pre - (jsrender.js version: does not require jQuery): http://github.com/BorisMoore/jsrender */ +/* + * Optimized version of jQuery Templates, fosr rendering to string, using 'codeless' markup. + * + * Copyright 2011, Boris Moore + * Released under the MIT License. + */ +window.JsViews || window.jQuery && jQuery.views || (function( window, undefined ) { + +var $, _$, JsViews, viewsNs, tmplEncode, render, rTag, registerTags, registerHelpers, extend, + FALSE = false, TRUE = true, + jQuery = window.jQuery, document = window.document, + htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /, + rPath = /^(true|false|null|[\d\.]+)|(\w+|\$(view|data|ctx|(\w+)))([\w\.]*)|((['"])(?:\\\1|.)*\7)$/g, + rParams = /(\$?[\w\.\[\]]+)(?:(\()|\s*(===|!==|==|!=|<|>|<=|>=)\s*|\s*(\=)\s*)?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g, + rNewLine = /\r?\n/g, + rUnescapeQuotes = /\\(['"])/g, + rEscapeQuotes = /\\?(['"])/g, + rBuildHash = /\x08([^\x08]+)\x08/g, + autoName = 0, + escapeMapForHtml = { + "&": "&", + "<": "<", + ">": ">" + }, + htmlSpecialChar = /[\x00"&'<>]/g, + slice = Array.prototype.slice; + +if ( jQuery ) { + + //////////////////////////////////////////////////////////////////////////////////////////////// + // jQuery is loaded, so make $ the jQuery object + $ = jQuery; + + $.fn.extend({ + // Use first wrapped element as template markup. + // Return string obtained by rendering the template against data. + render: function( data, context, parentView, path ) { + return render( data, this[0], context, parentView, path ); + }, + + // Consider the first wrapped element as a template declaration, and get the compiled template or store it as a named template. + template: function( name, context ) { + return $.template( name, this[0], context ); + } + }); + +} else { + + //////////////////////////////////////////////////////////////////////////////////////////////// + // jQuery is not loaded. Make $ the JsViews object + + // Map over the $ in case of overwrite + _$ = window.$; + + window.JsViews = JsViews = window.$ = $ = { + extend: function( target, source ) { + var name; + for ( name in source ) { + target[ name ] = source[ name ]; + } + return target; + }, + isArray: Array.isArray || function( obj ) { + return Object.prototype.toString.call( obj ) === "[object Array]"; + }, + noConflict: function() { + if ( window.$ === JsViews ) { + window.$ = _$; + } + return JsViews; + } + }; +} + +extend = $.extend; + +//================= +// View constructor +//================= + +function View( context, path, parentView, data, template ) { + // Returns a view data structure for a new rendered instance of a template. + // The content field is a hierarchical array of strings and nested views. + + parentView = parentView || { viewsCount:0, ctx: viewsNs.helpers }; + + var parentContext = parentView && parentView.ctx; + + return { + jsViews: "v1.0pre", + path: path || "", + // inherit context from parentView, merged with new context. + itemNumber: ++parentView.viewsCount || 1, + viewsCount: 0, + tmpl: template, + data: data || parentView.data || {}, + // Set additional context on this view (which will modify the context inherited from the parent, and be inherited by child views) + ctx : context && context === parentContext + ? parentContext + : (parentContext ? extend( extend( {}, parentContext ), context ) : context||{}), + // If no jQuery, extend does not support chained copies - so limit to two parameters + parent: parentView + }; +} +extend( $, { + views: viewsNs = { + templates: {}, + tags: { + "if": function() { + var ifTag = this, + view = ifTag._view; + view.onElse = function( presenter, args ) { + var i = 0, + l = args.length; + while ( l && !args[ i++ ]) { + // Only render content if args.length === 0 (i.e. this is an else with no condition) or if a condition argument is truey + if ( i === l ) { + return ""; + } + } + view.onElse = undefined; // If condition satisfied, so won't run 'else'. + return render( view.data, presenter.tmpl, view.ctx, view); + }; + return view.onElse( this, arguments ); + }, + "else": function() { + var view = this._view; + return view.onElse ? view.onElse( this, arguments ) : ""; + }, + each: function() { + var i, + self = this, + result = "", + args = arguments, + l = args.length, + content = self.tmpl, + view = self._view; + for ( i = 0; i < l; i++ ) { + result += args[ i ] ? render( args[ i ], content, self.ctx || view.ctx, view, self._path, self._ctor ) : ""; + } + return l ? result + // If no data parameter, use the current $data from view, and render once + : result + render( view.data, content, view.ctx, view, self._path, self.tag ); + }, + "=": function( value ) { + return value; + }, + "*": function( value ) { + return value; + } + }, + helpers: { + not: function( value ) { + return !value; + } + }, + allowCode: FALSE, + debugMode: TRUE, + err: function( e ) { + return viewsNs.debugMode ? ("
          Error: " + (e.message || e) + ". "): '""'; + }, + +//=============== +// setDelimiters +//=============== + + setDelimiters: function( openTag, closeTag ) { + // Set or modify the delimiter characters for tags: "{{" and "}}" + var firstCloseChar = closeTag.charAt( 0 ), + secondCloseChar = closeTag.charAt( 1 ); + openTag = "\\" + openTag.charAt( 0 ) + "\\" + openTag.charAt( 1 ); + closeTag = "\\" + firstCloseChar + "\\" + secondCloseChar; + + // Build regex with new delimiters + // {{ + rTag = openTag + // # tag (followed by space,! or }) or equals or code + + "(?:(?:(\\#)?(\\w+(?=[!\\s\\" + firstCloseChar + "]))" + "|(?:(\\=)|(\\*)))" + // params + + "\\s*((?:[^\\" + firstCloseChar + "]|\\" + firstCloseChar + "(?!\\" + secondCloseChar + "))*?)" + // encoding + + "(!(\\w*))?" + // closeBlock + + "|(?:\\/([\\w\\$\\.\\[\\]]+)))" + // }} + + closeTag; + + // Default rTag: # tag equals code params encoding closeBlock + // /\{\{(?:(?:(\#)?(\w+(?=[\s\}!]))|(?:(\=)|(\*)))((?:[^\}]|\}(?!\}))*?)(!(\w*))?|(?:\/([\w\$\.\[\]]+)))\}\}/g; + + rTag = new RegExp( rTag, "g" ); + }, + + +//=============== +// registerTags +//=============== + + // Register declarative tag. + registerTags: registerTags = function( name, tagFn ) { + var key; + if ( typeof name === "object" ) { + for ( key in name ) { + registerTags( key, name[ key ]); + } + } else { + // Simple single property case. + viewsNs.tags[ name ] = tagFn; + } + return this; + }, + +//=============== +// registerHelpers +//=============== + + // Register helper function for use in markup. + registerHelpers: registerHelpers = function( name, helper ) { + if ( typeof name === "object" ) { + // Object representation where property name is path and property value is value. + // TODO: We've discussed an "objectchange" event to capture all N property updates here. See TODO note above about propertyChanges. + var key; + for ( key in name ) { + registerHelpers( key, name[ key ]); + } + } else { + // Simple single property case. + viewsNs.helpers[ name ] = helper; + } + return this; + }, + +//=============== +// tmpl.encode +//=============== + + encode: function( encoding, text ) { + return text + ? ( tmplEncode[ encoding || "html" ] || tmplEncode.html)( text ) // HTML encoding is the default + : ""; + }, + + encoders: tmplEncode = { + "none": function( text ) { + return text; + }, + "html": function( text ) { + // HTML encoding helper: Replace < > & and ' and " by corresponding entities. + // Implementation, from Mike Samuel + return String( text ).replace( htmlSpecialChar, replacerForHtml ); + } + //TODO add URL encoding, and perhaps other encoding helpers... + }, + +//=============== +// renderTag +//=============== + + renderTag: function( tag, view, encode, content, tagProperties ) { + // This is a tag call, with arguments: "tag", view, encode, content, presenter [, params...] + var ret, ctx, name, + args = arguments, + presenters = viewsNs.presenters; + hash = tagProperties._hash, + tagFn = viewsNs.tags[ tag ]; + + if ( !tagFn ) { + return ""; + } + + content = content && view.tmpl.nested[ content - 1 ]; + tagProperties.tmpl = tagProperties.tmpl || content || undefined; + // Set the tmpl property to the content of the block tag, unless set as an override property on the tag + + if ( presenters && presenters[ tag ]) { + ctx = extend( extend( {}, tagProperties.ctx ), tagProperties ); + delete ctx.ctx; + delete ctx._path; + delete ctx.tmpl; + tagProperties.ctx = ctx; + tagProperties._ctor = tag + (hash ? "=" + hash.slice( 0, -1 ) : ""); + + tagProperties = extend( extend( {}, tagFn ), tagProperties ); + tagFn = viewsNs.tags.each; // Use each to render the layout template against the data + } + + tagProperties._encode = encode; + tagProperties._view = view; + ret = tagFn.apply( tagProperties, args.length > 5 ? slice.call( args, 5 ) : [view.data] ); + return ret || (ret === undefined ? "" : ret.toString()); // (If ret is the value 0 or false or null, will render to string) + } + }, + +//=============== +// render +//=============== + + render: render = function( data, tmpl, context, parentView, path, tagName ) { + // Render template against data as a tree of subviews (nested template), or as a string (top-level template). + // tagName parameter for internal use only. Used for rendering templates registered as tags (which may have associated presenter objects) + var i, l, dataItem, arrayView, content, result = ""; + + if ( arguments.length === 2 && data.jsViews ) { + parentView = data; + context = parentView.ctx; + data = parentView.data; + } + tmpl = $.template( tmpl ); + if ( !tmpl ) { + return ""; // Could throw... + } + + if ( $.isArray( data )) { + // Create a view item for the array, whose child views correspond to each data item. + arrayView = new View( context, path, parentView, data); + l = data.length; + for ( i = 0, l = data.length; i < l; i++ ) { + dataItem = data[ i ]; + content = dataItem ? tmpl( dataItem, new View( context, path, arrayView, dataItem, tmpl, this )) : ""; + result += viewsNs.activeViews ? "" + content + "" : content; + } + } else { + result += tmpl( data, new View( context, path, parentView, data, tmpl )); + } + + return viewsNs.activeViews + // If in activeView mode, include annotations + ? "" + result + "" + // else return just the string result + : result; + }, + +//=============== +// template +//=============== + + template: function( name, tmpl ) { + // Set: + // Use $.template( name, tmpl ) to cache a named template, + // where tmpl is a template string, a script element or a jQuery instance wrapping a script element, etc. + // Use $( "selector" ).template( name ) to provide access by name to a script block template declaration. + + // Get: + // Use $.template( name ) to access a cached template. + // Also $( selectorToScriptBlock ).template(), or $.template( null, templateString ) + // will return the compiled template, without adding a name reference. + // If templateString is not a selector, $.template( templateString ) is equivalent + // to $.template( null, templateString ). To ensure a string is treated as a template, + // include an HTML element, an HTML comment, or a template comment tag. + + if (tmpl) { + // Compile template and associate with name + if ( "" + tmpl === tmpl ) { // type string + // This is an HTML string being passed directly in. + tmpl = compile( tmpl ); + } else if ( jQuery && tmpl instanceof $ ) { + tmpl = tmpl[0]; + } + if ( tmpl ) { + if ( jQuery && tmpl.nodeType ) { + // If this is a template block, use cached copy, or generate tmpl function and cache. + tmpl = $.data( tmpl, "tmpl" ) || $.data( tmpl, "tmpl", compile( tmpl.innerHTML )); + } + viewsNs.templates[ tmpl._name = tmpl._name || name || "_" + autoName++ ] = tmpl; + } + return tmpl; + } + // Return named compiled template + return name + ? "" + name !== name // not type string + ? (name._name + ? name // already compiled + : $.template( null, name )) + : viewsNs.templates[ name ] || + // If not in map, treat as a selector. (If integrated with core, use quickExpr.exec) + $.template( null, htmlExpr.test( name ) ? name : try$( name )) + : null; + } +}); + +viewsNs.setDelimiters( "{{", "}}" ); + +//================= +// compile template +//================= + +// Generate a reusable function that will serve to render a template against data +// (Compile AST then build template function) + +function parsePath( all, comp, object, viewDataCtx, viewProperty, path, string, quot ) { + return object + ? ((viewDataCtx + ? viewProperty + ? ("$view." + viewProperty) + : object + :("$data." + object) + ) + ( path || "" )) + : string || (comp || ""); +} + +function compile( markup ) { + var newNode, + loc = 0, + stack = [], + topNode = [], + content = topNode, + current = [,,topNode]; + + function pushPreceedingContent( shift ) { + shift -= loc; + if ( shift ) { + content.push( markup.substr( loc, shift ).replace( rNewLine,"\\n")); + } + } + + function parseTag( all, isBlock, tagName, equals, code, params, useEncode, encode, closeBlock, index ) { + // rTag : # tagName equals code params encode closeBlock + // /\{\{(?:(?:(\#)?(\w+(?=[\s\}!]))|(?:(\=)|(\*)))((?:[^\}]|\}(?!\}))*?)(!(\w*))?|(?:\/([\w\$\.\[\]]+)))\}\}/g; + + // Build abstract syntax tree: [ tagName, params, content, encode ] + var named, + hash = "", + parenDepth = 0, + quoted = FALSE, // boolean for string content in double qoutes + aposed = FALSE; // or in single qoutes + + function parseParams( all, path, paren, comp, eq, comma, apos, quot, rightParen, space, index ) { + // path paren eq comma apos quot rtPrn space + // /(\$?[\w\.\[\]]+)(?:(\()|(===)|(\=))?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g + + return aposed + // within single-quoted string + ? ( aposed = !apos, (aposed ? all : '"')) + : quoted + // within double-quoted string + ? ( quoted = !quot, (quoted ? all : '"')) + : comp + // comparison + ? ( path.replace( rPath, parsePath ) + comp) + : eq + // named param + ? parenDepth ? "" :( named = TRUE, '\b' + path + ':') + : paren + // function + ? (parenDepth++, path.replace( rPath, parsePath ) + '(') + : rightParen + // function + ? (parenDepth--, ")") + : path + // path + ? path.replace( rPath, parsePath ) + : comma + ? "," + : space + ? (parenDepth + ? "" + : named + ? ( named = FALSE, "\b") + : "," + ) + : (aposed = apos, quoted = quot, '"'); + } + + tagName = tagName || equals; + pushPreceedingContent( index ); + if ( code ) { + if ( viewsNs.allowCode ) { + content.push([ "*", params.replace( rUnescapeQuotes, "$1" )]); + } + } else if ( tagName ) { + if ( tagName === "else" ) { + current = stack.pop(); + content = current[ 2 ]; + isBlock = TRUE; + } + params = (params + ? (params + " ") + .replace( rParams, parseParams ) + .replace( rBuildHash, function( all, keyValue, index ) { + hash += keyValue + ","; + return ""; + }) + : ""); + params = params.slice( 0, -1 ); + newNode = [ + tagName, + useEncode ? encode || "none" : "", + isBlock && [], + "{" + hash + "_hash:'" + hash + "',_path:'" + params + "'}", + params + ]; + + if ( isBlock ) { + stack.push( current ); + current = newNode; + } + content.push( newNode ); + } else if ( closeBlock ) { + current = stack.pop(); + } + loc = index + all.length; // location marker - parsed up to here + if ( !current ) { + throw "Expected block tag"; + } + content = current[ 2 ]; + } + markup = markup.replace( rEscapeQuotes, "\\$1" ); + markup.replace( rTag, parseTag ); + pushPreceedingContent( markup.length ); + return buildTmplFunction( topNode ); +} + +// Build javascript compiled template function, from AST +function buildTmplFunction( nodes ) { + var ret, node, i, + nested = [], + l = nodes.length, + code = "try{var views=" + + (jQuery ? "jQuery" : "JsViews") + + '.views,tag=views.renderTag,enc=views.encode,html=views.encoders.html,$ctx=$view && $view.ctx,result=""+\n\n'; + + for ( i = 0; i < l; i++ ) { + node = nodes[ i ]; + if ( node[ 0 ] === "*" ) { + code = code.slice( 0, i ? -1 : -3 ) + ";" + node[ 1 ] + ( i + 1 < l ? "result+=" : "" ); + } else if ( "" + node === node ) { // type string + code += '"' + node + '"+'; + } else { + var tag = node[ 0 ], + encode = node[ 1 ], + content = node[ 2 ], + obj = node[ 3 ], + params = node[ 4 ], + paramsOrEmptyString = params + '||"")+'; + + if( content ) { + nested.push( buildTmplFunction( content )); + } + code += tag === "=" + ? (!encode || encode === "html" + ? "html(" + paramsOrEmptyString + : encode === "none" + ? ("(" + paramsOrEmptyString) + : ('enc("' + encode + '",' + paramsOrEmptyString) + ) + : 'tag("' + tag + '",$view,"' + ( encode || "" ) + '",' + + (content ? nested.length : '""') // For block tags, pass in the key (nested.length) to the nested content template + + "," + obj + (params ? "," : "") + params + ")+"; + } + } + ret = new Function( "$data, $view", code.slice( 0, -1) + ";return result;\n\n}catch(e){return views.err(e);}" ); + ret.nested = nested; + return ret; +} + +//========================== Private helper functions, used by code above ========================== + +function replacerForHtml( ch ) { + // Original code from Mike Samuel + return escapeMapForHtml[ ch ] + // Intentional assignment that caches the result of encoding ch. + || ( escapeMapForHtml[ ch ] = "&#" + ch.charCodeAt( 0 ) + ";" ); +} + +function try$( selector ) { + // If selector is valid, return jQuery object, otherwise return (invalid) selector string + try { + return $( selector ); + } catch( e) {} + return selector; +} +})( window ); +(function ($, window, undefined) { + var pos_oo = Number.POSITIVE_INFINITY, + neg_oo = Number.NEGATIVE_INFINITY; + + $.geo = { + // + // utility functions + // + + _allCoordinates: function (geom) { + // return array of all positions in all geometries of geom + // not in JTS + var geometries = this._flatten(geom), + curGeom = 0, + result = []; + + for (; curGeom < geometries.length; curGeom++) { + var coordinates = geometries[curGeom].coordinates, + isArray = coordinates && $.isArray(coordinates[0]), + isDblArray = isArray && $.isArray(coordinates[0][0]), + isTriArray = isDblArray && $.isArray(coordinates[0][0][0]), + i, j, k; + + if (!isTriArray) { + if (!isDblArray) { + if (!isArray) { + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + for (k = 0; k < coordinates[i][j].length; k++) { + result.push(coordinates[i][j][k]); + } + } + } + } + return result; + }, + + _isGeodetic: function( coords ) { + // returns true if the first coordinate it can find is geodetic + + while ( $.isArray( coords ) ) { + if ( coords.length > 1 && ! $.isArray( coords[ 0 ] ) ) { + return ( coords[ 0 ] >= -180 && coords[ 0 ] <= 180 && coords[ 1 ] >= -85 && coords[ 1 ] <= 85 ); + } else { + coords = coords[ 0 ]; + } + } + + return false; + }, + + // + // bbox functions + // + + center: function (bbox, _ignoreGeo /* Internal Use Only */) { + // Envelope.centre in JTS + // bbox only, use centroid for geom + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var center = [(bbox[0] + bbox[2]) / 2, (bbox[1] + bbox[3]) / 2]; + return wasGeodetic ? $.geo.proj.toGeodetic(center) : center; + }, + + expandBy: function (bbox, dx, dy, _ignoreGeo /* Internal Use Only */) { + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + bbox = [bbox[0] - dx, bbox[1] - dy, bbox[2] + dx, bbox[3] + dy]; + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + height: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + + return bbox[3] - bbox[1]; + }, + + _in: function(bbox1, bbox2) { + return bbox1[0] <= bbox2[0] && + bbox1[1] <= bbox2[1] && + bbox1[2] >= bbox2[2] && + bbox1[3] >= bbox2[3]; + }, + + _bboxDisjoint: function( bbox1, bbox2 ) { + return bbox2[ 0 ] > bbox1[ 2 ] || + bbox2[ 2 ] < bbox1[ 0 ] || + bbox2[ 1 ] > bbox1[ 3 ] || + bbox2[ 3 ] < bbox1[ 1 ]; + }, + + reaspect: function (bbox, ratio, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var width = this.width(bbox, true), + height = this.height(bbox, true), + center = this.center(bbox, true), + dx, dy; + + if (width != 0 && height != 0 && ratio > 0) { + if (width / height > ratio) { + dx = width / 2; + dy = dx / ratio; + } else { + dy = height / 2; + dx = dy * ratio; + } + + bbox = [center[0] - dx, center[1] - dy, center[0] + dx, center[1] + dy]; + } + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + recenter: function( bbox, center, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj ) { + if ( this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + if ( this._isGeodetic( center ) ) { + center = $.geo.proj.fromGeodetic(center); + } + } + + var halfWidth = ( bbox[ 2 ] - bbox[ 0 ] ) / 2, + halfHeight = ( bbox[ 3 ] - bbox[ 1 ] ) / 2; + + bbox = [ + center[ 0 ] - halfWidth, + center[ 1 ] - halfHeight, + center[ 0 ] + halfWidth, + center[ 1 ] + halfHeight + ]; + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + scaleBy: function ( bbox, scale, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var c = this.center(bbox, true), + dx = (bbox[2] - bbox[0]) * scale / 2, + dy = (bbox[3] - bbox[1]) * scale / 2; + + bbox = [c[0] - dx, c[1] - dy, c[0] + dx, c[1] + dy]; + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + width: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + + return bbox[2] - bbox[0]; + }, + + // + // geometry functions + // + + // bbox (Geometry.getEnvelope in JTS) + + bbox: function ( geom, _ignoreGeo /* Internal Use Only */ ) { + if ( !geom ) { + return undefined; + } else if ( geom.bbox ) { + result = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom.bbox ) ) ? $.geo.proj.fromGeodetic( geom.bbox ) : geom.bbox; + } else { + result = [ pos_oo, pos_oo, neg_oo, neg_oo ]; + + var coordinates = this._allCoordinates( geom ), + curCoord = 0; + + if ( coordinates.length == 0 ) { + return undefined; + } + + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( coordinates ) ) { + wasGeodetic = true; + coordinates = $.geo.proj.fromGeodetic( coordinates ); + } + + for ( ; curCoord < coordinates.length; curCoord++ ) { + result[0] = Math.min(coordinates[curCoord][0], result[0]); + result[1] = Math.min(coordinates[curCoord][1], result[1]); + result[2] = Math.max(coordinates[curCoord][0], result[2]); + result[3] = Math.max(coordinates[curCoord][1], result[3]); + } + } + + return wasGeodetic ? $.geo.proj.toGeodetic(result) : result; + }, + + // centroid + + centroid: function( geom, _ignoreGeo /* Internal Use Only */ ) { + switch (geom.type) { + case "Point": + return $.extend({}, geom); + + case "LineString": + case "Polygon": + var a = 0, + c = [0, 0], + coords = $.merge( [ ], geom.type == "Polygon" ? geom.coordinates[0] : geom.coordinates ), + i = 1, j, n; + + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( coords ) ) { + wasGeodetic = true; + coords = $.geo.proj.fromGeodetic(coords); + } + + //if (coords[0][0] != coords[coords.length - 1][0] || coords[0][1] != coords[coords.length - 1][1]) { + // coords.push(coords[0]); + //} + + for (; i <= coords.length; i++) { + j = i % coords.length; + n = (coords[i - 1][0] * coords[j][1]) - (coords[j][0] * coords[i - 1][1]); + a += n; + c[0] += (coords[i - 1][0] + coords[j][0]) * n; + c[1] += (coords[i - 1][1] + coords[j][1]) * n; + } + + if (a == 0) { + if (coords.length > 0) { + c[0] = coords[0][0]; + c[1] = coords[0][1]; + return { type: "Point", coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c }; + } else { + return undefined; + } + } + + a *= 3; + c[0] /= a; + c[1] /= a; + + return { type: "Point", coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c }; + } + return undefined; + }, + + // contains + + contains: function (geom1, geom2) { + if (geom1.type != "Polygon") { + return false; + } + + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1.coordinates, geom2.coordinates); + + case "LineString": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates); + + case "Polygon": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates[0]); + + default: + return false; + } + }, + + _containsPolygonPoint: function (polygonCoordinates, pointCoordinate) { + if (polygonCoordinates.length == 0 || polygonCoordinates[0].length < 4) { + return false; + } + + var rayCross = 0, + a = polygonCoordinates[0][0], + i = 1, + b, + x; + + for (; i < polygonCoordinates[0].length; i++) { + b = polygonCoordinates[0][i]; + + if ((a[1] <= pointCoordinate[1] && pointCoordinate[1] < b[1]) || (b[1] <= pointCoordinate[1] && pointCoordinate[1] < a[1]) && (pointCoordinate[0] < a[0] || pointCoordinate[0] < b[0])) { + x = a[0] + (b[0] - a[0]) * (pointCoordinate[1] - a[1]) / (b[1] - a[1]); + + if (x > pointCoordinate[0]) { + rayCross++; + } + } + + a = b; + } + + return rayCross % 2 == 1; + }, + + _containsPolygonLineString: function (polygonCoordinates, lineStringCoordinates) { + for (var i = 0; i < lineStringCoordinates.length; i++) { + if (!this._containsPolygonPoint(polygonCoordinates, lineStringCoordinates[i])) { + return false; + } + } + return true; + }, + + // distance + + distance: function ( geom1, geom2, _ignoreGeo /* Internal Use Only */ ) { + var geom1CoordinatesProjected = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom1.coordinates ) ) ? $.geo.proj.fromGeodetic(geom1.coordinates) : geom1.coordinates, + geom2CoordinatesProjected = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom2.coordinates ) ) ? $.geo.proj.fromGeodetic(geom2.coordinates) : geom2.coordinates; + + switch (geom1.type) { + case "Point": + switch (geom2.type) { + case "Point": + return this._distancePointPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "LineString": + return this._distanceLineStringPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "Polygon": + return this._containsPolygonPoint(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "LineString": + switch (geom2.type) { + case "Point": + return this._distanceLineStringPoint(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "LineString": + return this._distanceLineStringLineString(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "Polygon": + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "LineString": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected[0]) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected[0]); + default: + return undefined; + } + break; + } + }, + + _distancePointPoint: function (coordinate1, coordinate2) { + var dx = coordinate2[0] - coordinate1[0], + dy = coordinate2[1] - coordinate1[1]; + return Math.sqrt((dx * dx) + (dy * dy)); + }, + + _distanceLineStringPoint: function (lineStringCoordinates, pointCoordinate) { + var minDist = pos_oo; + + if (lineStringCoordinates.length > 0) { + var a = lineStringCoordinates[0], + + apx = pointCoordinate[0] - a[0], + apy = pointCoordinate[1] - a[1]; + + if (lineStringCoordinates.length == 1) { + return Math.sqrt(apx * apx + apy * apy); + } else { + for (var i = 1; i < lineStringCoordinates.length; i++) { + var b = lineStringCoordinates[i], + + abx = b[0] - a[0], + aby = b[1] - a[1], + bpx = pointCoordinate[0] - b[0], + bpy = pointCoordinate[1] - b[1], + + d = this._distanceSegmentPoint(abx, aby, apx, apy, bpx, bpy); + + if (d == 0) { + return 0; + } + + if (d < minDist) { + minDist = d; + } + + a = b; + apx = bpx; + apy = bpy; + } + } + } + + return Math.sqrt(minDist); + }, + + _distanceSegmentPoint: function (abx, aby, apx, apy, bpx, bpy) { + var dot1 = abx * apx + aby * apy; + + if (dot1 <= 0) { + return apx * apx + apy * apy; + } + + var dot2 = abx * abx + aby * aby; + + if (dot1 >= dot2) { + return bpx * bpx + bpy * bpy; + } + + return apx * apx + apy * apy - dot1 * dot1 / dot2; + }, + + _distanceLineStringLineString: function (lineStringCoordinates1, lineStringCoordinates2) { + var minDist = pos_oo; + for (var i = 0; i < lineStringCoordinates2.length; i++) { + minDist = Math.min(minDist, this._distanceLineStringPoint(lineStringCoordinates1, lineStringCoordinates2[i])); + } + return minDist; + }, + + // buffer + + _buffer: function( geom, distance, _ignoreGeo /* Internal Use Only */ ) { + var wasGeodetic = false, + coords = geom.coordinates; + + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom.coordinates ) ) { + wasGeodetic = true; + coords = $.geo.proj.fromGeodetic( geom.coordinates ); + } + + switch ( geom.type ) { + case "Point": + var resultCoords = [], + slices = 180, + i = 0, + a; + + for ( ; i <= slices; i++ ) { + a = ( i * 360 / slices ) * ( Math.PI / 180 ); + resultCoords.push( [ + coords[ 0 ] + Math.cos( a ) * distance, + coords[ 1 ] + Math.sin( a ) * distance + ] ); + } + + return { + type: "Polygon", + coordinates: [ ( wasGeodetic ? $.geo.proj.toGeodetic( resultCoords ) : resultCoords ) ] + }; + + break; + + default: + return undefined; + } + }, + + + // + // feature + // + + _flatten: function (geom) { + // return an array of all basic geometries + // not in JTS + var geometries = [], + curGeom = 0; + switch (geom.type) { + case "Feature": + $.merge(geometries, this._flatten(geom.geometry)); + break; + + case "FeatureCollection": + for (; curGeom < geom.features.length; curGeom++) { + $.merge(geometries, this._flatten(geom.features[curGeom].geometry)); + } + break; + + case "GeometryCollection": + for (; curGeom < geom.geometries.length; curGeom++) { + $.merge(geometries, this._flatten(geom.geometries[curGeom])); + } + break; + + default: + geometries[0] = geom; + break; + } + return geometries; + }, + + length: function( geom, _ignoreGeo /* Internal Use Only */ ) { + var sum = 0, + lineStringCoordinates, + i = 1, dx, dy; + + switch ( geom.type ) { + case "Point": + return 0; + + case "LineString": + lineStringCoordinates = geom.coordinates; + break; + + case "Polygon": + lineStringCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( lineStringCoordinates ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( lineStringCoordinates ) ) { + lineStringCoordinates = $.geo.proj.fromGeodetic( lineStringCoordinates ); + } + + for ( ; i < lineStringCoordinates.length; i++ ) { + dx = lineStringCoordinates[ i ][0] - lineStringCoordinates[ i - 1 ][0]; + dy = lineStringCoordinates[ i ][1] - lineStringCoordinates[ i - 1 ][1]; + sum += Math.sqrt((dx * dx) + (dy * dy)); + } + + return sum; + } + + // return undefined; + }, + + area: function( geom, _ignoreGeo /* Internal Use Only */ ) { + var sum = 0, + polygonCoordinates, + i = 1, j; + + switch ( geom.type ) { + case "Point": + case "LineString": + return 0; + + case "Polygon": + polygonCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( polygonCoordinates ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( polygonCoordinates ) ) { + polygonCoordinates = $.geo.proj.fromGeodetic( polygonCoordinates ); + } + + for ( ; i <= polygonCoordinates.length; i++) { + j = i % polygonCoordinates.length; + sum += ( polygonCoordinates[ i - 1 ][ 0 ] - polygonCoordinates[ j ][ 0 ] ) * ( polygonCoordinates[ i - 1 ][ 1 ] + polygonCoordinates[ j ][ 1 ] ) / 2; + } + + return Math.abs( sum ); + } + }, + + pointAlong: function( geom, percentage, _ignoreGeo /* Internal Use Only */ ) { + var totalLength = 0, + previousPercentageSum = 0, + percentageSum = 0, + remainderPercentageSum, + len, + lineStringCoordinates, + segmentLengths = [], + i = 1, dx, dy, + c, c0, c1, + wasGeodetic = false; + + switch ( geom.type ) { + case "Point": + return $.extend( { }, geom ); + + case "LineString": + lineStringCoordinates = geom.coordinates; + break; + + case "Polygon": + lineStringCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( lineStringCoordinates ) { + if ( percentage === 0 ) { + return { + type: "Point", + coordinates: [ lineStringCoordinates[ 0 ][ 0 ], lineStringCoordinates[ 0 ][ 1 ] ] + }; + } else if ( percentage === 1 ) { + i = lineStringCoordinates.length - 1; + return { + type: "Point", + coordinates: [ lineStringCoordinates[ i ][ 0 ], lineStringCoordinates[ i ][ 1 ] ] + }; + } else { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( lineStringCoordinates ) ) { + wasGeodetic = true; + lineStringCoordinates = $.geo.proj.fromGeodetic( lineStringCoordinates ); + } + + for ( ; i < lineStringCoordinates.length; i++ ) { + dx = lineStringCoordinates[ i ][ 0 ] - lineStringCoordinates[ i - 1 ][ 0 ]; + dy = lineStringCoordinates[ i ][ 1 ] - lineStringCoordinates[ i - 1 ][ 1 ]; + len = Math.sqrt((dx * dx) + (dy * dy)); + segmentLengths.push( len ); + totalLength += len; + } + + for ( i = 0; i < segmentLengths.length && percentageSum < percentage; i++ ) { + previousPercentageSum = percentageSum; + percentageSum += ( segmentLengths[ i ] / totalLength ); + } + + remainderPercentageSum = percentage - previousPercentageSum; + + c0 = lineStringCoordinates[ i - 1 ]; + c1 = lineStringCoordinates[ i ]; + + c = [ + c0[ 0 ] + ( remainderPercentageSum * ( c1[ 0 ] - c0[ 0 ] ) ), + c0[ 1 ] + ( remainderPercentageSum * ( c1[ 1 ] - c0[ 1 ] ) ) + ]; + + return { + type: "Point", + coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c + }; + } + } + }, + + // + // WKT functions + // + + _WKT: (function () { + function pointToString(value) { + return "POINT " + pointToUntaggedString(value.coordinates); + } + + function pointToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + return "(" + coordinates.join(" ") + ")"; + } + } + + function lineStringToString(value) { + return "LINESTRING " + lineStringToUntaggedString(value.coordinates); + } + + function lineStringToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var points = [] + + for (var i = 0; i < coordinates.length; i++) { + points.push(coordinates[i].join(" ")); + } + + return "(" + points + ")"; + } + } + + function polygonToString(value) { + return "POLYGON " + polygonToUntaggedString(value.coordinates); + } + + function polygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMTPY"; + } else { + var lineStrings = []; + + for (var i = 0; i < coordinates.length; i++) { + lineStrings.push(lineStringToUntaggedString(coordinates[i])); + } + + return "(" + lineStrings + ")"; + } + } + + function multiPointToString(value) { + return "MULTIPOINT " + lineStringToUntaggedString(value.coordinates); + } + + function multiLineStringToString(value) { + return "MULTILINSTRING " + polygonToUntaggedString(value.coordinates); + } + + function multiPolygonToString(value) { + return "MULTIPOLYGON " + multiPolygonToUntaggedString(value.coordinates); + } + + function multiPolygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var polygons = []; + for (var i = 0; i < coordinates.length; i++) { + polygons.push(polygonToUntaggedString(coordinates[i])); + } + return "(" + polygons + ")"; + } + } + + function geometryCollectionToString(value) { + return "GEOMETRYCOLLECTION " + geometryCollectionToUntaggedString(value.geometries); + } + + function geometryCollectionToUntaggedString(geometries) { + if (!(geometries && geometries.length)) { + return "EMPTY"; + } else { + var geometryText = []; + for (var i = 0; i < geometries.length; i++) { + geometryText.push(stringify(geometries[i])); + } + return "(" + geometries + ")"; + } + } + + function stringify(value) { + if (!(value && value.type)) { + return ""; + } else { + switch (value.type) { + case "Point": + return pointToString(value); + + case "LineString": + return lineStringToString(value); + + case "Polygon": + return polygonToString(value); + + case "MultiPoint": + return multiPointToString(value); + + case "MultiLineString": + return multiLineStringToString(value); + + case "MultiPolygon": + return multiPolygonToString(value); + + case "GeometryCollection": + return geometryCollectionToString(value); + + default: + return ""; + } + } + } + + function pointParseUntagged(wkt) { + var pointString = wkt.match( /\(\s*([\d\.-]+)\s+([\d\.-]+)\s*\)/ ); + return pointString && pointString.length > 2 ? { + type: "Point", + coordinates: [ + parseFloat(pointString[1]), + parseFloat(pointString[2]) + ] + } : null; + } + + function lineStringParseUntagged(wkt) { + var lineString = wkt.match( /\s*\((.*)\)/ ), + coords = [], + pointStrings, + pointParts, + i = 0; + + if ( lineString.length > 1 ) { + pointStrings = lineString[ 1 ].match( /[\d\.-]+\s+[\d\.-]+/g ); + + for ( ; i < pointStrings.length; i++ ) { + pointParts = pointStrings[ i ].match( /\s*([\d\.-]+)\s+([\d\.-]+)\s*/ ); + coords[ i ] = [ parseFloat( pointParts[ 1 ] ), parseFloat( pointParts[ 2 ] ) ]; + } + + return { + type: "LineString", + coordinates: coords + }; + } else { + return null + } + } + + function polygonParseUntagged(wkt) { + var polygon = wkt.match( /\s*\(\s*\((.*)\)\s*\)/ ), + coords = [], + pointStrings, + pointParts, + i = 0; + + if ( polygon.length > 1 ) { + pointStrings = polygon[ 1 ].match( /[\d\.-]+\s+[\d\.-]+/g ); + + for ( ; i < pointStrings.length; i++ ) { + pointParts = pointStrings[ i ].match( /\s*([\d\.-]+)\s+([\d\.-]+)\s*/ ); + coords[ i ] = [ parseFloat( pointParts[ 1 ] ), parseFloat( pointParts[ 2 ] ) ]; + } + + return { + type: "Polygon", + coordinates: [ coords ] + }; + } else { + return null; + } + } + + function parse(wkt) { + wkt = $.trim(wkt); + + var typeIndex = wkt.indexOf( " " ), + untagged = wkt.substr( typeIndex + 1 ); + + switch (wkt.substr(0, typeIndex).toUpperCase()) { + case "POINT": + return pointParseUntagged( untagged ); + + case "LINESTRING": + return lineStringParseUntagged( untagged ); + + case "POLYGON": + return polygonParseUntagged( untagged ); + + default: + return null; + } + } + + return { + stringify: stringify, + + parse: parse + }; + })(), + + // + // projection functions + // + + proj: (function () { + var halfPi = 1.5707963267948966192, + quarterPi = 0.7853981633974483096, + radiansPerDegree = 0.0174532925199432958, + degreesPerRadian = 57.295779513082320877, + semiMajorAxis = 6378137; + + return { + fromGeodeticPos: function (coordinate) { + if (!coordinate) { + debugger; + } + return [ + semiMajorAxis * coordinate[ 0 ] * radiansPerDegree, + semiMajorAxis * Math.log(Math.tan(quarterPi + coordinate[ 1 ] * radiansPerDegree / 2)) + ]; + }, + + fromGeodetic: function ( coordinates ) { + if ( ! $.geo._isGeodetic( coordinates ) ) { + return coordinates; + } + + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + fromGeodeticPos = this.fromGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = fromGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = fromGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ], + i, j, k; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = fromGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + }, + + toGeodeticPos: function (coordinate) { + return [ + (coordinate[ 0 ] / semiMajorAxis) * degreesPerRadian, + (halfPi - 2 * Math.atan(1 / Math.exp(coordinate[ 1 ] / semiMajorAxis))) * degreesPerRadian + ]; + }, + + toGeodetic: function (coordinates) { + if ( $.geo._isGeodetic( coordinates ) ) { + return coordinates; + } + + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + toGeodeticPos = this.toGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = toGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = toGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ]; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = toGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + } + } + })(), + + // + // service types (defined in other files) + // + + _serviceTypes: {} + } +})(jQuery, this); +(function ($, undefined) { + + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()); + + $.widget("geo.geographics", { + _$elem: undefined, + _options: {}, + _trueCanvas: true, + + _width: 0, + _height: 0, + + _$canvas: undefined, + _context: undefined, + _$labelsContainer: undefined, + + options: { + style: { + borderRadius: "8px", + color: "#7f0000", + //fill: undefined, + fillOpacity: .2, + height: "8px", + opacity: 1, + //stroke: undefined, + strokeOpacity: 1, + strokeWidth: "2px", + visibility: "visible", + width: "8px" + } + }, + + _create: function () { + this._$elem = this.element; + this._options = this.options; + + this._$elem.css({ display: "inline-block", overflow: "hidden", textAlign: "left" }); + + if (this._$elem.css("position") == "static") { + this._$elem.css("position", "relative"); + } + + this._$elem.addClass( "geo-graphics" ); + + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + var posCss = 'position:absolute;left:0;top:0;margin:0;padding:0;', + sizeCss = 'width:' + this._width + 'px;height:' + this._height + 'px;', + sizeAttr = 'width="' + this._width + '" height="' + this._height + '"'; + + if (document.createElement('canvas').getContext) { + this._$elem.append(''); + this._$canvas = this._$elem.children(':last'); + this._context = this._$canvas[0].getContext("2d"); + } else if (_ieVersion <= 8) { + this._trueCanvas = false; + this._$elem.append( '
          '); + this._$canvas = this._$elem.children(':last'); + + G_vmlCanvasManager.initElement(this._$canvas[0]); + this._context = this._$canvas[0].getContext("2d"); + this._$canvas.children().css({ backgroundColor: "transparent", width: this._width, height: this._height }); + } + + this._$elem.append('
          '); + this._$labelsContainer = this._$elem.children(':last'); + }, + + _setOption: function (key, value) { + if (key == "style") { + value = $.extend({}, this._options.style, value); + } + $.Widget.prototype._setOption.apply(this, arguments); + }, + + destroy: function () { + $.Widget.prototype.destroy.apply(this, arguments); + this._$elem.html(""); + this._$elem.removeClass( "geo-graphics" ); + }, + + clear: function () { + this._context.clearRect(0, 0, this._width, this._height); + this._$labelsContainer.html(""); + }, + + drawArc: function (coordinates, startAngle, sweepAngle, style) { + style = this._getGraphicStyle(style); + + if (style.visibility != "hidden" && style.opacity > 0 && style.widthValue > 0 && style.heightValue > 0) { + var r = Math.min(style.widthValue, style.heightValue) / 2; + + startAngle = (startAngle * Math.PI / 180); + sweepAngle = (sweepAngle * Math.PI / 180); + + this._context.save(); + this._context.translate(coordinates[0], coordinates[1]); + if (style.widthValue > style.heightValue) { + this._context.scale(style.widthValue / style.heightValue, 1); + } else { + this._context.scale(1, style.heightValue / style.widthValue); + } + + this._context.beginPath(); + this._context.arc(0, 0, r, startAngle, sweepAngle, false); + + if (this._trueCanvas) { + this._context.restore(); + } + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + + if (!this._trueCanvas) { + this._context.restore(); + } + } + }, + + drawPoint: function (coordinates, style) { + var style = this._getGraphicStyle(style); + if (style.widthValue == style.heightValue && style.heightValue == style.borderRadiusValue) { + this.drawArc(coordinates, 0, 360, style); + } else if (style.visibility != "hidden" && style.opacity > 0) { + style.borderRadiusValue = Math.min(Math.min(style.widthValue, style.heightValue) / 2, style.borderRadiusValue); + coordinates[0] -= style.widthValue / 2; + coordinates[1] -= style.heightValue / 2; + this._context.beginPath(); + this._context.moveTo(coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.lineTo(coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1]); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1], coordinates[0] + style.widthValue, coordinates[1] + style.borderRadiusValue); + this._context.lineTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue, coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.lineTo(coordinates[0] + style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1] + style.heightValue, coordinates[0], coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.lineTo(coordinates[0], coordinates[1] + style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1], coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.closePath(); + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + + this._context.stroke(); + } + } + }, + + drawLineString: function (coordinates, style) { + this._drawLines([coordinates], false, style); + }, + + drawPolygon: function (coordinates, style) { + this._drawLines(coordinates, true, style); + }, + + drawBbox: function (bbox, style) { + this._drawLines([[ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ]], true, style); + }, + + drawLabel: function( coordinates, label ) { + this._$labelsContainer.append( '
          ' + label + '
          '); + }, + + resize: function( ) { + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + if ( this._trueCanvas ) { + this._$canvas[0].width = this._width; + this._$canvas[0].height = this._height; + } else { + } + + this._$labelsContainer.css( { + width: this._width, + height: this._height + } ); + }, + + _getGraphicStyle: function (style) { + function safeParse(value) { + value = parseInt(value); + return (+value + '') === value ? +value : value; + } + + style = $.extend({}, this._options.style, style); + style.borderRadiusValue = safeParse(style.borderRadius); + style.fill = style.fill || style.color; + style.doFill = style.fill && style.fillOpacity > 0; + style.stroke = style.stroke || style.color; + style.strokeWidthValue = safeParse(style.strokeWidth); + style.doStroke = style.stroke && style.strokeOpacity > 0 && style.strokeWidthValue > 0; + style.widthValue = safeParse(style.width); + style.heightValue = safeParse(style.height); + return style; + }, + + _drawLines: function (coordinates, close, style) { + if (!coordinates || !coordinates.length || coordinates[0].length < 2) { + return; + } + + var style = this._getGraphicStyle(style), + i, j; + + if (style.visibility != "hidden" && style.opacity > 0) { + this._context.beginPath(); + this._context.moveTo(coordinates[0][0][0], coordinates[0][0][1]); + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + this._context.lineTo(coordinates[i][j][0], coordinates[i][j][1]); + } + } + + if (close) { + this._context.closePath(); + } + + if (close && style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineCap = this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + } + } + }); + + +})(jQuery); + +(function ($, undefined) { + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()), + + _defaultOptions = { + bbox: [-180, -85, 180, 85], + bboxMax: [-180, -85, 180, 85], + center: [0, 0], + cursors: { + "static": "default", + pan: "url(data:image/vnd.microsoft.icon;base64,AAACAAEAICACAAgACAAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8=), move", + zoom: "crosshair", + drawPoint: "crosshair", + drawLineString: "crosshair", + drawPolygon: "crosshair", + measureLength: "crosshair", + measureArea: "crosshair" + }, + measureLabels: { + length: "{{=length.toFixed( 2 )}} m", + area: "{{=area.toFixed( 2 )}} sq m" + }, + drawStyle: {}, + shapeStyle: {}, + mode: "pan", + pannable: true, + scroll: "default", + services: [ + { + "class": "osm", + type: "tiled", + src: function (view) { + return "http://tile.openstreetmap.org/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png"; + }, + attr: "© OpenStreetMap & contributors, CC-BY-SA" + } + ], + tilingScheme: { + tileWidth: 256, + tileHeight: 256, + levels: 18, + basePixelSize: 156543.03392799936, + origin: [-20037508.342787, 20037508.342787] + }, + axisLayout: "map", + zoom: 0, + pixelSize: 0 + }; + + $.widget("geo.geomap", { + // private widget members + _$elem: undefined, //< map div for maps, service div for services + _map: undefined, //< only defined in services + _created: false, + + _contentBounds: {}, + + _$resizeContainer: undefined, //< all elements that should match _contentBounds' size + + _$eventTarget: undefined, + _$contentFrame: undefined, + _$existingChildren: undefined, + _$attrList: undefined, + _$servicesContainer: undefined, + + _$panContainer: undefined, //< all non-service elements that move while panning + _$shapesContainer: undefined, + _$drawContainer: undefined, + _$measureContainer: undefined, + _$measureLabel: undefined, + + _dpi: 96, + + _currentServices: [], //< internal copy + + _center: undefined, + _pixelSize: undefined, + _centerMax: undefined, + _pixelSizeMax: undefined, + + _userGeodetic: true, + + _wheelTimeout: null, + _wheelLevel: 0, + + _zoomFactor: 2, //< determines what a zoom level means + + _fullZoomFactor: 2, //< interactiveScale factor needed to zoom a whole level + _partialZoomFactor: 1.18920711500273, //< interactiveScale factor needed to zoom a fraction of a level (the fourth root of 2) + + _mouseDown: undefined, + _inOp: undefined, + _toolPan: undefined, + _shiftZoom: undefined, + _anchor: undefined, + _current: undefined, + _downDate: undefined, + _moveDate: undefined, + _clickDate: undefined, + _lastMove: undefined, + _lastDrag: undefined, + + _windowHandler: null, + _resizeTimeout: null, + + _panning: undefined, + _velocity: undefined, + _friction: undefined, + + _supportTouch: undefined, + _softDblClick: undefined, + _isTap: undefined, + _isDbltap: undefined, + + _isMultiTouch: undefined, + _multiTouchAnchor: undefined, //< TouchList + _multiTouchAnchorBbox: undefined, //< bbox + _multiTouchCurrentBbox: undefined, //< bbox + + _drawTimeout: null, //< used in drawPoint mode so we don't send two shape events on dbltap + _drawPixels: [], //< an array of coordinate arrays for drawing lines & polygons, in pixel coordinates + _drawCoords: [], + + _graphicShapes: [], //< an array of objects containing style object refs & GeoJSON object refs + + _initOptions: {}, + + _options: {}, + + options: $.extend({}, _defaultOptions), + + _createWidget: function (options, element) { + this._$elem = $(element); + + if (this._$elem.is(".geo-service")) { + var $contentFrame = this._$elem.closest( ".geo-content-frame" ); + this._$elem.append('
          '); + this._$shapesContainer = this._$elem.children(':last'); + this._graphicShapes = []; + $.Widget.prototype._createWidget.apply(this, arguments); + return; + } + + this._$elem.addClass("geo-map"); + + this._initOptions = options || {}; + + this._forcePosition(this._$elem); + + this._$elem.css("text-align", "left"); + + var size = this._findMapSize(); + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._createChildren(); + + this._center = this._centerMax = [0, 0]; + + this.options["pixelSize"] = this._pixelSize = this._pixelSizeMax = 156543.03392799936; + + this._mouseDown = + this._inOp = + this._toolPan = + this._shiftZoom = + this._panning = + this._isTap = + this._isDbltap = false; + + this._anchor = [ 0, 0 ]; + this._current = [ 0, 0 ]; + this._lastMove = [ 0, 0 ]; + this._lastDrag = [ 0, 0 ]; + this._velocity = [ 0, 0 ]; + + this._friction = [.8, .8]; + + this._downDate = + this._moveDate = + this._clickDate = 0; + + this._drawPixels = []; + this._drawCoords = []; + this._graphicShapes = []; + + + $.Widget.prototype._createWidget.apply(this, arguments); + }, + + _create: function () { + this._options = this.options; + + if (this._$elem.is(".geo-service")) { + this._map = this._$elem.data( "geoMap" ); + this._$shapesContainer.geographics( ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + return; + } + + this._map = this; + + this._supportTouch = "ontouchend" in document; + this._softDblClick = this._supportTouch || _ieVersion == 7; + + var geomap = this, + touchStartEvent = this._supportTouch ? "touchstart" : "mousedown", + touchStopEvent = this._supportTouch ? "touchend touchcancel" : "mouseup", + touchMoveEvent = this._supportTouch ? "touchmove" : "mousemove"; + + $(document).keydown($.proxy(this._document_keydown, this)); + + this._$eventTarget.dblclick($.proxy(this._eventTarget_dblclick, this)); + + this._$eventTarget.bind(touchStartEvent, $.proxy(this._eventTarget_touchstart, this)); + + var dragTarget = (this._$eventTarget[0].setCapture) ? this._$eventTarget : $(document); + dragTarget.bind(touchMoveEvent, $.proxy(this._dragTarget_touchmove, this)); + dragTarget.bind(touchStopEvent, $.proxy(this._dragTarget_touchstop, this)); + + this._$eventTarget.mousewheel($.proxy(this._eventTarget_mousewheel, this)); + + this._windowHandler = function () { + if (geomap._resizeTimeout) { + clearTimeout(geomap._resizeTimeout); + } + geomap._resizeTimeout = setTimeout(function () { + if (geomap._created) { + geomap._$elem.geomap("resize"); + } + }, 500); + }; + + $(window).resize(this._windowHandler); + + this._$drawContainer.geographics({ style: this._initOptions.drawStyle || {} }); + this._options["drawStyle"] = this._$drawContainer.geographics("option", "style"); + + this._$shapesContainer.geographics( { style: this._initOptions.shapeStyle || { } } ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + + if (this._initOptions) { + if (this._initOptions.tilingScheme) { + this._setOption("tilingScheme", this._initOptions.tilingScheme, false); + } + if ( this._initOptions.services ) { + // jQuery UI Widget Factory merges user services with our default, we want to clobber the default + this._options[ "services" ] = $.merge( [ ], this._initOptions.services ); + } + if (this._initOptions.bbox) { + this._setOption("bbox", this._initOptions.bbox, false); + } + if (this._initOptions.center) { + this._setOption("center", this._initOptions.center, false); + } + if (this._initOptions.zoom !== undefined) { + this._setZoom(this._initOptions.zoom, false, false); + } + } + + $.template( "geoMeasureLength", this._options[ "measureLabels" ].length ); + $.template( "geoMeasureArea", this._options[ "measureLabels" ].area ); + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._createServices(); + this._refresh(); + + this._created = true; + }, + + _setOption: function (key, value, refresh) { + if ( key == "pixelSize" ) { + return; + } + + refresh = (refresh === undefined || refresh); + + if ( this._$elem.is( ".geo-map" ) ) { + this._panFinalize(); + } + + switch (key) { + case "bbox": + this._userGeodetic = $.geo.proj && $.geo._isGeodetic( value ); + if ( this._userGeodetic ) { + value = $.geo.proj.fromGeodetic( value ); + } + + this._setBbox(value, false, refresh); + value = this._getBbox(); + break; + + case "center": + this._userGeodetic = $.geo.proj && $.geo._isGeodetic( value ); + if ( this._userGeodetic ) { + value = $.geo.proj.fromGeodetic( value ); + } + + this._setCenterAndSize( value, this._pixelSize, false, refresh ); + break; + + case "measureLabels": + value = $.extend( this._options[ "measureLabels" ], value ); + $.template( "geoMeasureLength", value.length ); + $.template( "geoMeasureArea", value.area ); + break; + + case "drawStyle": + if (this._$drawContainer) { + this._$drawContainer.geographics("option", "style", value); + value = this._$drawContainer.geographics("option", "style"); + } + break; + + case "shapeStyle": + if (this._$shapesContainer) { + this._$shapesContainer.geographics("option", "style", value); + value = this._$shapesContainer.geographics("option", "style"); + } + break; + + case "mode": + this._resetDrawing( ); + this._$eventTarget.css("cursor", this._options["cursors"][value]); + break; + + case "zoom": + this._setZoom(value, false, refresh); + break; + } + + $.Widget.prototype._setOption.apply(this, arguments); + + switch ( key ) { + case "bbox": + case "center": + if ( this._userGeodetic ) { + this._options[ "bbox" ] = $.geo.proj.toGeodetic( this._options[ "bbox" ] ); + this._options[ "center" ] = $.geo.proj.toGeodetic( this._center ); + } + break; + + case "tilingScheme": + if ( value != null ) { + this._pixelSizeMax = this._getPixelSize( 0 ); + this._centerMax = [ + value.origin[ 0 ] + this._pixelSizeMax * value.tileWidth / 2, + value.origin[ 1 ] + this._pixelSizeMax * value.tileHeight / 2 + ]; + } + break; + + case "bboxMax": + this._pixelSizeMax = this._getPixelSize( 0 ); + + if ( $.geo.proj && $.geo._isGeodetic( value ) ) { + this._centerMax = $.geo.center( $.geo.proj.fromGeodetic( value ) ); + } else { + this._centerMax = $.geo.center( value ); + } + break; + + case "services": + this._createServices(); + if (refresh) { + this._refresh(); + } + break; + + case "shapeStyle": + if ( refresh ) { + this._$shapesContainer.geographics("clear"); + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes ); + } + break; + } + }, + + destroy: function () { + if ( this._$elem.is(".geo-service") ) { + this._$shapesContainer.geographics("destroy"); + this._$shapesContainer = undefined; + } else { + this._created = false; + + $(window).unbind("resize", this._windowHandler); + + for ( var i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[ i ].serviceContainer.geomap("destroy"); + $.geo["_serviceTypes"][this._currentServices[i].type].destroy(this, this._$servicesContainer, this._currentServices[i]); + } + + this._$shapesContainer.geographics("destroy"); + this._$shapesContainer = undefined; + this._$drawContainer.geographics("destroy"); + this._$drawContainer = undefined; + + this._$existingChildren.detach(); + this._$elem.html(""); + this._$elem.append(this._$existingChildren); + this._$elem.removeClass("geo-map"); + } + + $.Widget.prototype.destroy.apply(this, arguments); + }, + + toMap: function (p) { + p = this._toMap(p); + return this._userGeodetic ? $.geo.proj.toGeodetic(p) : p; + }, + + toPixel: function ( p, _center /* Internal Use Only */, _pixelSize /* Internal Use Only */ ) { + return this._toPixel( $.geo.proj ? $.geo.proj.fromGeodetic( p ) : p, _center, _pixelSize ); + }, + + opacity: function ( value, _serviceContainer ) { + if ( this._$elem.is( ".geo-service" ) ) { + this._$elem.closest( ".geo-map" ).geomap( "opacity", value, this._$elem ); + } else { + if ( value >= 0 || value <= 1 ) { + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[ i ]; + if ( !_serviceContainer || service.serviceContainer[ 0 ] == _serviceContainer[ 0 ] ) { + service.style.opacity = value; + $.geo[ "_serviceTypes" ][ service.type ].opacity( this, service ); + } + } + } + } + }, + + toggle: function ( value, _serviceContainer ) { + if ( this._$elem.is( ".geo-service" ) ) { + this._$elem.closest( ".geo-map" ).geomap( "toggle", value, this._$elem ); + } else { + + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[ i ]; + + if ( !_serviceContainer || service.serviceContainer[ 0 ] == _serviceContainer[ 0 ] ) { + if ( value === undefined ) { + // toggle visibility + value = ( service.style.visibility !== "visible" ); + } + + service.style.visibility = ( value ? "visible" : "hidden" ); + + service.serviceContainer.toggle( value ); + + if ( value ) { + $.geo[ "_serviceTypes" ][ service.type ].refresh( this, service ); + } + } + } + } + }, + + zoom: function (numberOfLevels) { + if (numberOfLevels != null) { + this._setZoom(this._options["zoom"] + numberOfLevels, false, true); + } + }, + + refresh: function () { + this._refresh(); + }, + + resize: function () { + var size = this._findMapSize(), + dx = size["width"]/2 - this._contentBounds.width/2, + dy = size["height"]/2 - this._contentBounds.height/2, + i; + + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._$resizeContainer.css( { + width: size["width"], + height: size["height"] + } ); + + for (i = 0; i < this._currentServices.length; i++) { + $.geo["_serviceTypes"][this._currentServices[i].type].resize(this, this._currentServices[i]); + } + + this._$elem.find( ".geo-graphics" ).css( { + width: size["width"], + height: size["height"] + }).geographics( "resize" ); + + for (i = 0; i < this._drawPixels.length; i++) { + this._drawPixels[i][0] += dx; + this._drawPixels[i][1] += dy; + } + + this._setCenterAndSize(this._center, this._pixelSize, false, true); + }, + + append: function ( shape, style, label, refresh ) { + if ( shape && $.isPlainObject( shape ) ) { + var shapes, arg, i, realStyle, realLabel, realRefresh; + + if ( shape.type == "FeatureCollection" ) { + shapes = shape.features; + } else { + shapes = $.isArray( shape ) ? shape : [ shape ]; + } + + for ( i = 1; i < arguments.length; i++ ) { + arg = arguments[ i ]; + + if ( typeof arg === "object" ) { + realStyle = arg; + } else if ( typeof arg === "number" || typeof arg === "string" ) { + realLabel = arg; + } else if ( typeof arg === "boolean" ) { + realRefresh = arg; + } + } + + for ( i = 0; i < shapes.length; i++ ) { + if ( shapes[ i ].type != "Point" ) { + var bbox = $.geo.bbox( shapes[ i ] ); + if ( $.geo.proj && $.geo._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic( bbox ); + } + $.data( shapes[ i ], "geoBbox", bbox ); + } + + this._graphicShapes.push( { + shape: shapes[ i ], + style: realStyle, + label: realLabel + } ); + } + + if ( realRefresh === undefined || realRefresh ) { + this._refresh( ); + } + } + }, + + empty: function ( refresh ) { + for ( var i = 0; i < this._graphicShapes.length; i++ ) { + $.removeData( this._graphicShapes[ i ].shape, "geoBbox" ); + } + + this._graphicShapes = []; + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + find: function ( selector, pixelTolerance ) { + var isPoint = $.isPlainObject( selector ), + searchPixel = isPoint ? this._map.toPixel( selector.coordinates ) : undefined, + mapTol = this._map._pixelSize * pixelTolerance, + result = [], + graphicShape, + geometries, + curGeom, + i = 0; + + for ( ; i < this._graphicShapes.length; i++ ) { + graphicShape = this._graphicShapes[ i ]; + + if ( isPoint ) { + if ( graphicShape.shape.type == "Point" ) { + if ( $.geo.distance( graphicShape.shape, selector ) <= mapTol ) { + result.push( graphicShape.shape ); + } + } else { + var bbox = $.data( graphicShape.shape, "geoBbox" ), + bboxPolygon = { + type: "Polygon", + coordinates: [ [ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ] ] + }, + projectedPoint = { + type: "Point", + coordinates: $.geo.proj && $.geo._isGeodetic( selector.coordinates ) ? $.geo.proj.fromGeodetic( selector.coordinates ) : selector.coordinates + }; + + if ( $.geo.distance( bboxPolygon, projectedPoint, true ) <= mapTol ) { + geometries = $.geo._flatten( graphicShape.shape ); + for ( curGeom = 0; curGeom < geometries.length; curGeom++ ) { + if ( $.geo.distance( geometries[ curGeom ], selector ) <= mapTol ) { + result.push( graphicShape.shape ); + break; + } + } + } + } + } else { + result.push( graphicShape.shape ); + } + } + + if ( this._$elem.is( ".geo-map" ) ) { + this._$elem.find( ".geo-service" ).each( function( ) { + result = $.merge( result, $( this ).geomap( "find", selector, pixelTolerance ) ); + } ); + } + + return result; + }, + + remove: function ( shape, refresh ) { + for ( var i = 0; i < this._graphicShapes.length; i++ ) { + if ( this._graphicShapes[ i ].shape == shape ) { + $.removeData( shape, "geoBbox" ); + var rest = this._graphicShapes.slice( i + 1 ); + this._graphicShapes.length = i; + this._graphicShapes.push.apply( this._graphicShapes, rest ); + break; + } + } + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + _getBbox: function (center, pixelSize) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + // calculate the internal bbox + var halfWidth = this._contentBounds[ "width" ] / 2 * pixelSize, + halfHeight = this._contentBounds[ "height" ] / 2 * pixelSize; + return [ center[ 0 ] - halfWidth, center[ 1 ] - halfHeight, center[ 0 ] + halfWidth, center[ 1 ] + halfHeight ]; + }, + + _setBbox: function (value, trigger, refresh) { + var center = [value[0] + (value[2] - value[0]) / 2, value[1] + (value[3] - value[1]) / 2], + pixelSize = Math.max($.geo.width(value, true) / this._contentBounds.width, $.geo.height(value, true) / this._contentBounds.height); + + if (this._options["tilingScheme"]) { + var zoom = this._getZoom( center, pixelSize ); + pixelSize = this._getPixelSize( zoom ); + } else { + if ( this._getZoom( center, pixelSize ) < 0 ) { + pixelSize = this._pixelSizeMax; + } + } + + this._setCenterAndSize(center, pixelSize, trigger, refresh); + }, + + _getBboxMax: function () { + // calculate the internal bboxMax + var halfWidth = this._contentBounds["width"] / 2 * this._pixelSizeMax, + halfHeight = this._contentBounds["height"] / 2 * this._pixelSizeMax; + return [this._centerMax[0] - halfWidth, this._centerMax[1] - halfHeight, this._centerMax[0] + halfWidth, this._centerMax[1] + halfHeight]; + }, + + _getCenter: function () { + return this._center; + }, + + _getContentBounds: function () { + return this._contentBounds; + }, + + _getServicesContainer: function () { + return this._$servicesContainer; + }, + + _getZoom: function ( center, pixelSize ) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + // calculate the internal zoom level, vs. public zoom property + var tilingScheme = this._options["tilingScheme"]; + if ( tilingScheme ) { + if ( tilingScheme.pixelSizes != null ) { + var roundedPixelSize = Math.floor(pixelSize * 1000), + levels = tilingScheme.pixelSizes.length, + i = levels - 1; + + for ( ; i >= 0; i-- ) { + if ( Math.floor( tilingScheme.pixelSizes[ i ] * 1000 ) >= roundedPixelSize ) { + return i; + } + } + + return 0; + } else { + return Math.max( Math.round( Math.log( tilingScheme.basePixelSize / pixelSize) / Math.log( 2 ) ), 0 ); + } + } else { + var ratio = this._contentBounds["width"] / this._contentBounds["height"], + bbox = $.geo.reaspect( this._getBbox( center, pixelSize ), ratio, true ), + bboxMax = $.geo.reaspect(this._getBboxMax(), ratio, true); + + return Math.max( Math.round( Math.log($.geo.width(bboxMax, true) / $.geo.width(bbox, true)) / Math.log(this._zoomFactor) ), 0 ); + } + }, + + _setZoom: function ( value, trigger, refresh ) { + value = Math.max( value, 0 ); + + this._setCenterAndSize( this._center, this._getPixelSize( value ), trigger, refresh ); + }, + + _createChildren: function () { + this._$existingChildren = this._$elem.children().detach(); + + this._forcePosition(this._$existingChildren); + + this._$existingChildren.css("-moz-user-select", "none"); + + var contentSizeCss = "width:" + this._contentBounds["width"] + "px; height:" + this._contentBounds["height"] + "px; margin:0; padding:0;", + contentPosCss = "position:absolute; left:0; top:0;"; + + this._$elem.prepend('
          '); + this._$eventTarget = this._$contentFrame = this._$elem.children(':first'); + + this._$contentFrame.append('
          '); + this._$servicesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
          '); + this._$shapesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append( '
            ' ); + this._$attrList = this._$contentFrame.children( ":last" ); + + this._$contentFrame.append('
            '); + this._$drawContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
            '); + this._$measureContainer = this._$contentFrame.children(':last'); + this._$measureLabel = this._$measureContainer.children(); + + this._$panContainer = $( [ this._$shapesContainer[ 0 ], this._$drawContainer[ 0 ], this._$measureContainer[ 0 ] ] ); + + this._$resizeContainer = $( [ this._$contentFrame[ 0 ], this._$servicesContainer[ 0 ], this._$eventTarget[ 0 ], this._$measureContainer[ 0 ] ] ); + + this._$contentFrame.append(this._$existingChildren); + + if ( ! $("#geo-measure-style").length ) { + $("head").prepend( '' ); + } + }, + + _createServices: function () { + var service, i; + + for ( i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[ i ].serviceContainer.geomap( "destroy" ); + $.geo[ "_serviceTypes" ][ this._currentServices[ i ].type ].destroy( this, this._$servicesContainer, this._currentServices[ i ] ); + } + + this._currentServices = [ ]; + this._$servicesContainer.html( "" ); + this._$attrList.html( "" ); + + for ( i = 0; i < this._options[ "services" ].length; i++ ) { + service = this._currentServices[ i ] = $.extend( { }, this._options[ "services" ][ i ] ); + + // default the service style property on our copy + service.style = $.extend( { + visibility: "visible", + opacity: 1 + }, service.style ); + + var idString = service.id ? ' id="' + service.id + '"' : "", + classString = 'class="geo-service ' + ( service["class"] ? service["class"] : '' ) + '"', + scHtml = '
            ', + servicesContainer; + + this._$servicesContainer.append( scHtml ); + serviceContainer = this._$servicesContainer.children( ":last" ); + this._currentServices[ i ].serviceContainer = serviceContainer; + + $.geo[ "_serviceTypes" ][ service.type ].create( this, serviceContainer, service, i ); + + serviceContainer.data( "geoMap", this ).geomap(); + + if ( service.attr ) { + this._$attrList.append( '
          • ' + service.attr + '
          • ' ); + } + } + + this._$attrList.find( "a" ).css( { + position: "relative", + zIndex: 100 + } ); + }, + + _refreshDrawing: function ( ) { + this._$drawContainer.geographics("clear"); + + if ( this._drawPixels.length > 0 ) { + var mode = this._options[ "mode" ], + pixels = this._drawPixels, + coords = this._drawCoords, + label, + labelShape, + labelPixel, + widthOver, + heightOver; + + switch ( mode ) { + case "measureLength": + mode = "drawLineString"; + labelShape = { + type: "LineString", + coordinates: coords + }; + label = $.render( { length: $.geo.length( labelShape, true ) }, "geoMeasureLength" ); + labelPixel = $.merge( [], pixels[ pixels.length - 1 ] ); + break; + + case "measureArea": + mode = "drawPolygon"; + + labelShape = { + type: "Polygon", + coordinates: [ $.merge( [ ], coords ) ] + }; + labelShape.coordinates[ 0 ].push( coords[ 0 ] ); + + label = $.render( { area: $.geo.area( labelShape, true ) }, "geoMeasureArea" ); + labelPixel = $.merge( [], pixels[ pixels.length - 1 ] ); + pixels = [ pixels ]; + break; + + case "drawPolygon": + pixels = [ pixels ]; + break; + } + + this._$drawContainer.geographics( mode, pixels ); + + if ( label ) { + this._$measureLabel.html( label ); + + widthOver = this._contentBounds.width - ( this._$measureLabel.outerWidth( true ) + labelPixel[ 0 ] ); + heightOver = this._contentBounds.height - ( this._$measureLabel.outerHeight( true ) + labelPixel[ 1 ] ); + + if ( widthOver < 0 ) { + labelPixel[ 0 ] += widthOver; + } + + if ( heightOver < 0 ) { + labelPixel[ 1 ] += heightOver; + } + + this._$measureLabel.css( { + left: labelPixel[ 0 ], + top: labelPixel[ 1 ] + } ).show(); + } + } + }, + + _resetDrawing: function () { + this._drawPixels = []; + this._drawCoords = []; + this._$drawContainer.geographics("clear"); + this._$measureLabel.hide(); + }, + + _refreshShapes: function (geographics, shapes, styles, labels, center, pixelSize) { + var i, mgi, + shape, + shapeBbox, + style, + label, + hasLabel, + labelPixel, + bbox = this._map._getBbox(center, pixelSize); + + for (i = 0; i < shapes.length; i++) { + shape = shapes[i].shape || shapes[i]; + shape = shape.geometry || shape; + shapeBbox = $.data(shape, "geoBbox"); + + if ( shapeBbox && $.geo._bboxDisjoint( bbox, shapeBbox ) ) { + continue; + } + + style = $.isArray(styles) ? styles[i].style : styles; + label = $.isArray(labels) ? labels[i].label : labels; + hasLabel = ( label !== undefined ); + labelPixel = undefined; + + switch (shape.type) { + case "Point": + labelPixel = this._map.toPixel( shape.coordinates, center, pixelSize ); + this._$shapesContainer.geographics("drawPoint", labelPixel, style); + break; + case "LineString": + this._$shapesContainer.geographics("drawLineString", this._map.toPixel(shape.coordinates, center, pixelSize), style); + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.pointAlong( shape, .5 ).coordinates, center, pixelSize ); + } + break; + case "Polygon": + this._$shapesContainer.geographics("drawPolygon", this._map.toPixel(shape.coordinates, center, pixelSize), style); + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiPoint": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawPoint", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiLineString": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawLineString", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiPolygon": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawPolygon", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + + case "GeometryCollection": + this._refreshShapes(geographics, shape.geometries, style, label, center, pixelSize); + break; + } + + if ( hasLabel && labelPixel ) { + this._$shapesContainer.geographics( "drawLabel", labelPixel, label ); + } + } + }, + + _findMapSize: function () { + // really, really attempt to find a size for this thing + // even if it's hidden (look at parents) + var size = { width: 0, height: 0 }, + sizeContainer = this._$elem; + + while (sizeContainer.size() && !(size["width"] > 0 && size["height"] > 0)) { + size = { width: sizeContainer.width(), height: sizeContainer.height() }; + if (size["width"] <= 0 || size["height"] <= 0) { + size = { width: parseInt(sizeContainer.css("width")), height: parseInt(sizeContainer.css("height")) }; + } + sizeContainer = sizeContainer.parent(); + } + return size; + }, + + _forcePosition: function (elem) { + var cssPosition = elem.css("position"); + if (cssPosition != "relative" && cssPosition != "absolute" && cssPosition != "fixed") { + elem.css("position", "relative"); + } + }, + + _getPixelSize: function ( zoom ) { + var tilingScheme = this._options["tilingScheme"]; + if (tilingScheme != null) { + if (zoom === 0) { + return tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes[0] : tilingScheme.basePixelSize; + } + + zoom = Math.round(zoom); + zoom = Math.max(zoom, 0); + var levels = tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes.length : tilingScheme.levels; + zoom = Math.min(zoom, levels - 1); + + if (tilingScheme.pixelSizes != null) { + return tilingScheme.pixelSizes[zoom]; + } else { + return tilingScheme.basePixelSize / Math.pow(2, zoom); + } + } else { + var bbox = $.geo.scaleBy( this._getBboxMax(), 1 / Math.pow( this._zoomFactor, zoom ), true ); + return Math.max( $.geo.width( bbox, true ) / this._contentBounds.width, $.geo.height( bbox, true ) / this._contentBounds.height ); + } + }, + + _getZoomCenterAndSize: function ( anchor, zoomDelta, full ) { + var zoomFactor = ( full ? this._fullZoomFactor : this._partialZoomFactor ), + scale = Math.pow( zoomFactor, -zoomDelta ), + pixelSize, + zoomLevel; + + if ( this._options[ "tilingScheme" ] ) { + zoomLevel = this._getZoom(this._center, this._pixelSize * scale); + pixelSize = this._getPixelSize(zoomLevel); + } else { + pixelSize = this._pixelSize * scale; + + if ( this._getZoom( this._center, pixelSize ) < 0 ) { + pixelSize = this._pixelSizeMax; + } + } + + var ratio = pixelSize / this._pixelSize, + anchorMapCoord = this._toMap(anchor), + centerDelta = [(this._center[0] - anchorMapCoord[0]) * ratio, (this._center[1] - anchorMapCoord[1]) * ratio], + scaleCenter = [anchorMapCoord[0] + centerDelta[0], anchorMapCoord[1] + centerDelta[1]]; + + return { pixelSize: pixelSize, center: scaleCenter }; + }, + + _mouseWheelFinish: function () { + this._wheelTimeout = null; + + if (this._wheelLevel != 0) { + var wheelCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, this._options[ "tilingScheme" ] != null ); + + this._setCenterAndSize(wheelCenterAndSize.center, wheelCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + } else { + this._refresh(); + } + }, + + _panEnd: function () { + this._velocity = [ + (this._velocity[0] > 0 ? Math.floor(this._velocity[0] * this._friction[0]) : Math.ceil(this._velocity[0] * this._friction[0])), + (this._velocity[1] > 0 ? Math.floor(this._velocity[1] * this._friction[1]) : Math.ceil(this._velocity[1] * this._friction[1])) + ]; + + if (Math.abs(this._velocity[0]) < 4 && Math.abs(this._velocity[1]) < 4) { + this._panFinalize(); + } else { + this._current = [ + this._current[0] + this._velocity[0], + this._current[1] + this._velocity[1] + ]; + + this._panMove(); + setTimeout($.proxy(this._panEnd, this), 30); + } + }, + + _panFinalize: function () { + if (this._panning) { + this._velocity = [0, 0]; + + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + image = this._options[ "axisLayout" ] === "image", + dxMap = -dx * this._pixelSize, + dyMap = ( image ? -1 : 1 ) * dy * this._pixelSize; + + this._$panContainer.css({ left: 0, top: 0 }); + + this._$servicesContainer.find( ".geo-shapes-container" ).css( { left: 0, top: 0 } ); + + this._setCenterAndSize([this._center[0] + dxMap, this._center[1] + dyMap], this._pixelSize, true, true); + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._inOp = false; + this._anchor = this._current; + this._mouseDown = this._toolPan = this._panning = false; + } + }, + + _panMove: function () { + if ( ! this._options[ "pannable" ] ) { + return; + } + + var dx = this._current[0] - this._lastDrag[0], + dy = this._current[1] - this._lastDrag[1], + i = 0, + service, + translateObj; + + if (this._toolPan || dx > 3 || dx < -3 || dy > 3 || dy < -3) { + if (!this._toolPan) { + this._toolPan = true; + this._$eventTarget.css("cursor", this._options["cursors"]["pan"]); + } + + if (this._mouseDown) { + this._velocity = [dx, dy]; + } + + if (dx != 0 || dy != 0) { + this._panning = true; + this._lastDrag = this._current; + + translateObj = { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + }; + + for ( i = 0; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo[ "_serviceTypes" ][ service.type ].interactivePan( this, service, dx, dy ); + + service.serviceContainer.find( ".geo-shapes-container" ).css( translateObj ); + } + + this._$panContainer.css( translateObj ); + + //this._refreshDrawing(); + } + } + }, + + _refresh: function () { + var service, + i = 0; + + if ( this._$elem.is( ".geo-map" ) ) { + for ( ; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + + if ( !this._mouseDown && $.geo[ "_serviceTypes" ][ service.type ] !== null ) { + $.geo[ "_serviceTypes" ][ service.type ].refresh( this, service ); + service.serviceContainer.geomap( "refresh" ); + } + } + } + + if ( this._$shapesContainer ) { + this._$shapesContainer.geographics( "clear" ); + if ( this._graphicShapes.length > 0 ) { + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes ); + } + } + }, + + _setCenterAndSize: function (center, pixelSize, trigger, refresh) { + if ( ! $.isArray( center ) || center.length != 2 || typeof center[ 0 ] !== "number" || typeof center[ 1 ] !== "number" ) { + return; + } + + // the final call during any extent change + if (this._pixelSize != pixelSize) { + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + for (var i = 0; i < this._currentServices.length; i++) { + var service = this._currentServices[i]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, center, pixelSize); + } + } + + this._center = $.merge( [ ], center ); + this._options["pixelSize"] = this._pixelSize = pixelSize; + + if ( this._userGeodetic ) { + this._options["bbox"] = $.geo.proj.toGeodetic( this._getBbox() ); + this._options["center"] = $.geo.proj.toGeodetic( this._center ); + } else { + this._options["bbox"] = this._getBbox(); + this._options["center"] = $.merge( [ ], center ); + } + + this._options["zoom"] = this._getZoom(); + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords); + } + + if (trigger) { + this._trigger("bboxchange", window.event, { bbox: $.merge( [ ], this._options["bbox"] ) }); + } + + if (refresh) { + this._refresh(); + this._refreshDrawing(); + } + }, + + _toMap: function (p, center, pixelSize) { + // ignores $.geo.proj + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var isMultiPointOrLineString = $.isArray( p[ 0 ] ), + isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray( p[ 0 ][ 0 ] ), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray( p[ 0 ][ 0 ][ 0 ] ), + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + xRatio = $.geo.width(bbox, true) / width, + yRatio = $.geo.height(bbox, true) / height, + yOffset, + image = this._options[ "axisLayout" ] === "image", + result = [], + i, j, k; + + if ( !isMultiPolygon ) { + if ( !isMultiLineStringOrPolygon ) { + if ( !isMultiPointOrLineString ) { + p = [ p ]; + } + p = [ p ]; + } + p = [ p ]; + } + + for ( i = 0; i < p.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < p[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < p[ i ][ j ].length; k++ ) { + yOffset = (p[ i ][ j ][ k ][1] * yRatio); + result[ i ][ j ][ k ] = [ + bbox[ 0 ] + ( p[ i ][ j ][ k ][ 0 ] * xRatio ), + image ? bbox[ 1 ] + yOffset : bbox[ 3 ] - yOffset + ]; + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + }, + + _toPixel: function (p, center, pixelSize) { + // ignores $.geo.proj + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var isMultiPointOrLineString = $.isArray( p[ 0 ] ), + isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray( p[ 0 ][ 0 ] ), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray( p[ 0 ][ 0 ][ 0 ] ), + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + bboxWidth = $.geo.width(bbox, true), + bboxHeight = $.geo.height(bbox, true), + image = this._options[ "axisLayout" ] === "image", + xRatio = width / bboxWidth, + yRatio = height / bboxHeight, + result = [ ], + i, j, k; + + if ( !isMultiPolygon ) { + if ( !isMultiLineStringOrPolygon ) { + if ( !isMultiPointOrLineString ) { + p = [ p ]; + } + p = [ p ]; + } + p = [ p ]; + } + + for ( i = 0; i < p.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < p[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < p[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = [ + Math.round( ( p[ i ][ j ][ k ][ 0 ] - bbox[ 0 ] ) * xRatio ), + Math.round( ( image ? p[ i ][ j ][ k ][ 1 ] - bbox[ 1 ] : bbox[ 3 ] - p[ i ][ j ][ k ][ 1 ] ) * yRatio ) + ]; + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + }, + + _zoomTo: function (coord, zoom, trigger, refresh) { + zoom = zoom < 0 ? 0 : zoom; + + var pixelSize = this._getPixelSize( zoom ); + + this._setCenterAndSize( coord, pixelSize, trigger, refresh ); + }, + + _document_keydown: function (e) { + var len = this._drawCoords.length; + if (len > 0 && e.which == 27) { + if (len <= 2) { + this._resetDrawing(); + this._inOp = false; + } else { + this._drawCoords[len - 2] = $.merge( [], this._drawCoords[ len - 1 ] ); + this._drawPixels[len - 2] = $.merge( [], this._drawPixels[ len - 1 ] ); + + this._drawCoords.length--; + this._drawPixels.length--; + + this._refreshDrawing(); + } + } + }, + + _eventTarget_dblclick_zoom: function(e) { + this._trigger("dblclick", e, { type: "Point", coordinates: this.toMap(this._current) }); + if (!e.isDefaultPrevented()) { + var centerAndSize = this._getZoomCenterAndSize(this._current, 1, true ); + this._setCenterAndSize(centerAndSize.center, centerAndSize.pixelSize, true, true); + } + }, + + _eventTarget_dblclick: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + this._panFinalize(); + + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + var offset = $(e.currentTarget).offset(); + + switch (this._options["mode"]) { + case "drawLineString": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + this._drawCoords.length--; + this._trigger( "shape", e, { + type: "LineString", + coordinates: this._userGeodetic ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords + } ); + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "drawPolygon": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + var endIndex = this._drawCoords.length - 1; + if (endIndex > 2) { + this._drawCoords[endIndex] = $.merge( [], this._drawCoords[0] ); + this._trigger( "shape", e, { + type: "Polygon", + coordinates: [ this._userGeodetic ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords ] + } ); + } + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "measureLength": + case "measureArea": + this._resetDrawing(); + break; + + default: + this._eventTarget_dblclick_zoom(e); + break; + } + + this._inOp = false; + }, + + _eventTarget_touchstart: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + if ( !this._supportTouch && e.which != 1 ) { + return; + } + + this._panFinalize(); + this._mouseWheelFinish(); + + var offset = $(e.currentTarget).offset(), + touches = e.originalEvent.changedTouches; + + if ( this._supportTouch ) { + this._multiTouchAnchor = $.merge( [ ], touches ); + + this._isMultiTouch = this._multiTouchAnchor.length > 1; + + if ( this._isMultiTouch ) { + this._multiTouchCurrentBbox = [ + touches[0].pageX - offset.left, + touches[0].pageY - offset.top, + touches[1].pageX - offset.left, + touches[1].pageY - offset.top + ]; + + this._multiTouchAnchorBbox = $.merge( [ ], this._multiTouchCurrentBbox ); + + this._current = $.geo.center( this._multiTouchCurrentBbox, true ); + } else { + this._multiTouchCurrentBbox = [ + touches[0].pageX - offset.left, + touches[0].pageY - offset.top, + NaN, + NaN + ]; + + this._current = [ touches[0].pageX - offset.left, touches[0].pageY - offset.top ]; + } + } else { + this._current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + var downDate = $.now(); + if (downDate - this._downDate < 750) { + if (this._isTap) { + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance > 8) { + this._isTap = false; + } else { + this._current = $.merge( [ ], this._anchor ); + } + } + + if (this._isDbltap) { + this._isDbltap = false; + } else { + this._isDbltap = this._isTap; + } + } else { + this._isDbltap = false; + } + this._isTap = true; + this._downDate = downDate; + } + + this._mouseDown = true; + this._anchor = $.merge( [ ], this._current ); + + if (!this._inOp && e.shiftKey) { + this._shiftZoom = true; + this._$eventTarget.css("cursor", this._options["cursors"]["zoom"]); + } else if ( !this._isMultiTouch && this._options[ "pannable" ] ) { + this._inOp = true; + + switch (this._options["mode"]) { + case "zoom": + break; + + default: + this._lastDrag = this._current; + + if (e.currentTarget.setCapture) { + e.currentTarget.setCapture(); + } + + break; + } + } + + e.preventDefault(); + return false; + }, + + _dragTarget_touchmove: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + var offset = this._$eventTarget.offset(), + drawCoordsLen = this._drawCoords.length, + touches = e.originalEvent.changedTouches, + current, + service, + i = 0; + + if ( this._supportTouch ) { + if ( !this._isMultiTouch && touches[ 0 ].identifier !== this._multiTouchAnchor[ 0 ].identifier ) { + // switch to multitouch + this._mouseDown = false; + this._dragTarget_touchstop( e ); + + this._isMultiTouch = true; + + this._multiTouchAnchor.push( touches[ 0 ] ); + + this._multiTouchCurrentBbox = [ + this._multiTouchCurrentBbox[ 0 ], + this._multiTouchCurrentBbox[ 1 ], + this._multiTouchAnchor[1].pageX - offset.left, + this._multiTouchAnchor[1].pageY - offset.top + ]; + + this._multiTouchAnchorBbox = $.merge( [ ], this._multiTouchCurrentBbox ); + + this._mouseDown = true; + this._anchor = this._current = $.geo.center( this._multiTouchCurrentBbox, true ); + + return false; + } + + if ( this._isMultiTouch ) { + for ( ; i < touches.length; i++ ) { + if ( touches[ i ].identifier === this._multiTouchAnchor[ 0 ].identifier ) { + this._multiTouchCurrentBbox[ 0 ] = touches[ i ].pageX - offset.left; + this._multiTouchCurrentBbox[ 1 ] = touches[ i ].pageY - offset.top; + } else if ( touches[ i ].identifier === this._multiTouchAnchor[ 1 ].identifier ) { + this._multiTouchCurrentBbox[ 2 ] = touches[ i ].pageX - offset.left; + this._multiTouchCurrentBbox[ 3 ] = touches[ i ].pageY - offset.top; + } + } + + current = $.geo.center( this._multiTouchCurrentBbox, true ); + + var currentWidth = this._multiTouchCurrentBbox[ 2 ] - this._multiTouchCurrentBbox[ 0 ], + anchorWidth = this._multiTouchAnchorBbox[ 2 ] - this._multiTouchAnchorBbox[ 0 ], + ratioWidth = currentWidth / anchorWidth; + + this._wheelLevel = Math.abs( Math.floor( ( 1 - ratioWidth ) * 10 ) ); + if ( Math.abs( currentWidth ) < Math.abs( anchorWidth ) ) { + this._wheelLevel = - this._wheelLevel; + } + + var pinchCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, false ); + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + + for ( i = 0; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo[ "_serviceTypes" ][ service.type ].interactiveScale( this, service, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize ); + } + + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize); + } + + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + current = $.geo.center( this._multiTouchCurrentBbox, true ); + } else { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (current[0] === this._lastMove[0] && current[1] === this._lastMove[1]) { + if ( this._inOp ) { + e.preventDefault(); + return false; + } + } + + if ( _ieVersion == 7 ) { + this._isDbltap = this._isTap = false; + } + + if (this._mouseDown) { + this._current = current; + this._moveDate = $.now(); + } + + if ( this._isMultiTouch ) { + e.preventDefault( ); + this._isDbltap = this._isTap = false; + return false; + } + + var mode = this._shiftZoom ? "zoom" : this._options["mode"]; + + switch (mode) { + case "zoom": + if ( this._mouseDown ) { + this._$drawContainer.geographics( "clear" ); + this._$drawContainer.geographics( "drawBbox", [ + this._anchor[ 0 ], + this._anchor[ 1 ], + current[ 0 ], + current[ 1 ] + ] ); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + case "drawLineString": + case "drawPolygon": + case "measureLength": + case "measureArea": + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + if (drawCoordsLen > 0) { + this._drawCoords[drawCoordsLen - 1] = this._toMap(current); + this._drawPixels[drawCoordsLen - 1] = current; + + this._refreshDrawing(); + } + + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + default: + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + } + + this._lastMove = current; + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _dragTarget_touchstop: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + if (!this._mouseDown && _ieVersion == 7) { + // ie7 doesn't appear to trigger dblclick on this._$eventTarget, + // we fake regular click here to cause soft dblclick + this._eventTarget_touchstart(e); + } + + var mouseWasDown = this._mouseDown, + wasToolPan = this._toolPan, + offset = this._$eventTarget.offset(), + mode = this._shiftZoom ? "zoom" : this._options["mode"], + current, i, clickDate, + dx, dy; + + if (this._supportTouch) { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + if (this._isTap) { + var dx = current[0] - this._anchor[0], + dy = current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance <= 8) { + current = $.merge( [ ], this._anchor ); + } + } + } + + dx = current[0] - this._anchor[0]; + dy = current[1] - this._anchor[1]; + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._shiftZoom = this._mouseDown = this._toolPan = false; + + if ( this._isMultiTouch ) { + e.preventDefault( ); + this._isMultiTouch = false; + + var pinchCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, false ); + + this._setCenterAndSize(pinchCenterAndSize.center, pinchCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + + return false; + } + + if (document.releaseCapture) { + document.releaseCapture(); + } + + if (mouseWasDown) { + clickDate = $.now(); + this._current = current; + + switch (mode) { + case "zoom": + if ( dx > 0 || dy > 0 ) { + var minSize = this._pixelSize * 6, + bboxCoords = this._toMap( [ [ + Math.min( this._anchor[ 0 ], current[ 0 ] ), + Math.max( this._anchor[ 1 ], current[ 1 ] ) + ], [ + Math.max( this._anchor[ 0 ], current[ 0 ] ), + Math.min( this._anchor[ 1 ], current[ 1 ] ) + ] + ] ), + bbox = [ + bboxCoords[0][0], + bboxCoords[0][1], + bboxCoords[1][0], + bboxCoords[1][1] + ]; + + if ( ( bbox[2] - bbox[0] ) < minSize && ( bbox[3] - bbox[1] ) < minSize ) { + bbox = $.geo.scaleBy( this._getBbox( $.geo.center( bbox, true ) ), .5, true ); + } + + this._setBbox(bbox, true, true); + } + + this._resetDrawing(); + break; + + case "drawPoint": + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + if (wasToolPan) { + this._panFinalize(); + } else { + if (clickDate - this._clickDate > 100) { + var geomap = this; + this._drawTimeout = setTimeout(function () { + if (geomap._drawTimeout) { + geomap._trigger("shape", e, { type: "Point", coordinates: geomap.toMap(current) }); + geomap._inOp = false; + geomap._drawTimeout = null; + } + }, 250); + } + } + break; + + case "drawLineString": + case "drawPolygon": + case "measureLength": + case "measureArea": + if (wasToolPan) { + this._panFinalize(); + } else { + i = (this._drawCoords.length == 0 ? 0 : this._drawCoords.length - 1); + + this._drawCoords[i] = this._toMap(current); + this._drawPixels[i] = current; + + if (i < 2 || !(this._drawCoords[i][0] == this._drawCoords[i-1][0] && + this._drawCoords[i][1] == this._drawCoords[i-1][1])) { + this._drawCoords[i + 1] = this._toMap(current); + this._drawPixels[i + 1] = current; + } + + this._refreshDrawing(); + } + break; + + default: + if (wasToolPan) { + this._panEnd(); + } else { + if (clickDate - this._clickDate > 100) { + this._trigger("click", e, { type: "Point", coordinates: this.toMap(current) }); + this._inOp = false; + } + } + break; + } + + this._clickDate = clickDate; + + if (this._softDblClick && this._isDbltap) { + this._isDbltap = this._isTap = false; + this._$eventTarget.trigger("dblclick", e); + } + } + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _eventTarget_mousewheel: function (e, delta) { + if ( this._options[ "mode" ] === "static" || this._options[ "scroll" ] === "off" ) { + return; + } + + e.preventDefault(); + + this._panFinalize(); + + if ( this._mouseDown ) { + return false; + } + + if (delta != 0) { + if (this._wheelTimeout) { + window.clearTimeout(this._wheelTimeout); + this._wheelTimeout = null; + } else { + var offset = $(e.currentTarget).offset(); + this._anchor = [e.pageX - offset.left, e.pageY - offset.top]; + } + + this._wheelLevel += delta; + + var wheelCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, this._options[ "tilingScheme" ] != null ), + service, + i = 0; + + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + + for ( ; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + var geomap = this; + this._wheelTimeout = window.setTimeout(function () { + geomap._mouseWheelFinish(); + }, 1000); + } + + return false; + } + } + ); +})(jQuery); + +(function ($, undefined) { + $.geo._serviceTypes.tiled = (function () { + return { + create: function (map, serviceContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0, + reloadTiles: false + }; + + var scHtml = '
            '; + + serviceContainer.append(scHtml); + + serviceState.serviceContainer = serviceContainer.children( ":last" ); + + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, serviceContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function ( map, service, dx, dy ) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState ) { + this._cancelUnloaded( map, service ); + + serviceState.serviceContainer.children( ).css( "-moz-transition", "").css( { + webkitTransition: "", + transition: "", + left: function ( index, value ) { + return parseInt( value ) + dx; + }, + top: function ( index, value ) { + return parseInt( value ) + dy; + } + }); + + if ( service && service.style.visibility === "visible" ) { + var pixelSize = map._pixelSize, + + serviceObj = this, + serviceContainer = serviceState.serviceContainer, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + + /* same as refresh 1 */ + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + image = map.options[ "axisLayout" ] === "image", + ySign = image ? +1 : -1, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + /* end same as refresh 1 */ + + halfWidth = mapWidth / 2 * pixelSize, + halfHeight = mapHeight / 2 * pixelSize, + + currentPosition = scaleContainer.position(), + scaleOriginParts = scaleContainer.data("scaleOrigin").split(","), + totalDx = parseInt(scaleOriginParts[0]) - currentPosition.left, + totalDy = parseInt(scaleOriginParts[1]) - currentPosition.top, + + mapCenterOriginal = map._getCenter(), + mapCenter = [ + mapCenterOriginal[0] + totalDx * pixelSize, + mapCenterOriginal[1] + ySign * totalDy * pixelSize + ], + + /* same as refresh 2 */ + tileX = Math.floor(((mapCenter[0] - halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.max( Math.floor(( image ? (mapCenter[1] - halfHeight) - tilingScheme.origin[1] : tilingScheme.origin[1] - (mapCenter[1] + halfHeight)) / (pixelSize * tileHeight)), 0 ), + tileX2 = Math.ceil(((mapCenter[0] + halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil(( image ? (mapCenter[1] + halfHeight) - tilingScheme.origin[1] : tilingScheme.origin[1] - (mapCenter[1] - halfHeight)) / (pixelSize * tileHeight)), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] + ySign * bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMinOrMaxY = tilingScheme.origin[1] + ySign * (fullYAtScale * tileHeight) * pixelSize, + /* end same as refresh 2 */ + + serviceLeft = Math.round((fullXMinX - (mapCenterOriginal[0] - halfWidth)) / pixelSize), + serviceTop = Math.round(( image ? fullYMinOrMaxY - (mapCenterOriginal[1] - halfHeight) : (mapCenterOriginal[1] + halfHeight) - fullYMinOrMaxY ) / pixelSize), + + opacity = service.style.opacity, + + x, y; + + for ( x = tileX; x < tileX2; x++ ) { + for ( y = tileY; y < tileY2; y++ ) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ( $img.size( ) === 0 ) { + /* same as refresh 3 */ + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] + ySign * (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] + ySign * ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + urlProp = ( service.hasOwnProperty("src") ? "src" : "getUrl" ), + urlArgs = { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + /* end same as refresh 3 */ + + serviceState.loadCount++; + //this._map._requestQueued(); + + if ( serviceState.reloadTiles && $img.size() > 0 ) { + $img.attr( "src", imageUrl ); + } else { + /* same as refresh 4 */ + var imgMarkup = ""; + + scaleContainer.append( imgMarkup ); + $img = scaleContainer.children(":last"); + } + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + + /* end same as refresh 4 */ + } + } + } + } + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState && service && service.style.visibility === "visible" ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight; + + + serviceContainer.children( ).each( function ( i ) { + var $scaleContainer = $(this), + scaleRatio = $scaleContainer.attr("data-pixelSize") / pixelSize, + transitionCss = ""; //"width .25s ease-in, height .25s ease-in, left .25s ease-in, top .25s ease-in"; + + scaleRatio = Math.round(scaleRatio * 1000) / 1000; + + + var scaleOriginParts = $scaleContainer.data("scaleOrigin").split(","), + oldMapCoord = map._toMap([scaleOriginParts[0], scaleOriginParts[1]]), + newPixelPoint = map._toPixel(oldMapCoord, center, pixelSize); + + $scaleContainer.css( "-moz-transition", transitionCss ).css( { + webkitTransition: transitionCss, + transition: transitionCss, + left: Math.round(newPixelPoint[0]) + "px", + top: Math.round(newPixelPoint[1]) + "px", + width: tileWidth * scaleRatio, + height: tileHeight * scaleRatio + } ); + + if ( $("body")[0].filters !== undefined ) { + $scaleContainer.children().each( function ( i ) { + $( this ).css( "filter", "progid:DXImageTransform.Microsoft.Matrix(FilterType=bilinear,M11=" + scaleRatio + ",M22=" + scaleRatio + ",sizingmethod='auto expand')" ); + } ); + } + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + this._cancelUnloaded(map, service); + + if ( serviceState && service && service.style.visibility === "visible" && !( serviceState.serviceContainer.is( ":hidden" ) ) ) { + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceObj = this, + $serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + image = map.options[ "axisLayout" ] === "image", + ySign = image ? +1 : -1, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + + tileX = Math.floor((bbox[0] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.max( Math.floor( ( image ? bbox[1] - tilingScheme.origin[1] : tilingScheme.origin[1] - bbox[ 3 ] ) / (pixelSize * tileHeight) ), 0 ), + tileX2 = Math.ceil((bbox[2] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil( ( image ? bbox[3] - tilingScheme.origin[1] : tilingScheme.origin[1] - bbox[ 1 ] ) / (pixelSize * tileHeight) ), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] + ySign * bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMinOrMaxY = tilingScheme.origin[1] + ySign * (fullYAtScale * tileHeight) * pixelSize, + + serviceLeft = Math.round((fullXMinX - bbox[0]) / pixelSize), + serviceTop = Math.round( ( image ? fullYMinOrMaxY - bbox[1] : bbox[3] - fullYMinOrMaxY ) / pixelSize), + + scaleContainers = $serviceContainer.children().show(), + scaleContainer = scaleContainers.filter("[data-pixelSize='" + pixelSize + "']").appendTo($serviceContainer), + + opacity = service.style.opacity, + + x, y; + + if (serviceState.reloadTiles) { + scaleContainers.find("img").attr("data-dirty", "true"); + } + + if (!scaleContainer.size()) { + $serviceContainer.append("
            "); + scaleContainer = $serviceContainer.children(":last").data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + } else { + scaleContainer.css({ + left: (serviceLeft % tileWidth) + "px", + top: (serviceTop % tileHeight) + "px" + }).data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + + scaleContainer.children().each(function (i) { + var + $img = $(this), + tile = $img.attr("data-tile").split(","); + + $img.css({ + left: Math.round(((parseInt(tile[0]) - fullXAtScale) * 100) + (serviceLeft - (serviceLeft % tileWidth)) / tileWidth * 100) + "%", + top: Math.round(((parseInt(tile[1]) - fullYAtScale) * 100) + (serviceTop - (serviceTop % tileHeight)) / tileHeight * 100) + "%" + }); + + if (opacity < 1) { + $img.fadeTo(0, opacity); + } + }); + } + + for (x = tileX; x < tileX2; x++) { + for (y = tileY; y < tileY2; y++) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ($img.size() === 0 || serviceState.reloadTiles) { + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] + ySign * (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] + ySign * ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + urlProp = ( service.hasOwnProperty( "src" ) ? "src" : "getUrl" ), + urlArgs = { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + + serviceState.loadCount++; + //this._map._requestQueued(); + + if (serviceState.reloadTiles && $img.size() > 0) { + $img.attr("src", imageUrl); + } else { + var imgMarkup = ""; + + scaleContainer.append(imgMarkup); + $img = scaleContainer.children(":last"); + } + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, $serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, $serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + } + } + } + + scaleContainers.find("[data-dirty]").remove(); + serviceState.reloadTiles = false; + } + }, + + resize: function (map, service) { + }, + + opacity: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find( "img" ).stop( true ).fadeTo( "fast", service.style.opacity ); + }, + + toggle: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.css( "display", service.style.visibility === "visible" ? "block" : "none" ); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + }, + + _loadImage: function ( $img, url, pixelSize, serviceState, serviceContainer, opacity ) { + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", url); + } + }; + })(); +})(jQuery); +(function ($, undefined) { + $.geo._serviceTypes.shingled = (function () { + return { + create: function (map, serviceContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0 + }; + + var scHtml = '
            '; + + serviceContainer.append(scHtml); + + serviceState.serviceContainer = serviceContainer.children(":last"); + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, serviceContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function (map, service, dx, dy) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + pixelSize = map._pixelSize, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + panContainer = scaleContainer.children("div"); + + if ( !panContainer.length ) { + scaleContainer.children("img").wrap('
            '); + panContainer = scaleContainer.children("div"); + } + + panContainer.css( { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + } ); + + // until pan/zoom rewrite, remove all containers not in this scale + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight]; + + serviceContainer.children().each(function (i) { + var $scaleContainer = $(this), + scalePixelSize = $scaleContainer.attr("data-pixelSize"), + ratio = scalePixelSize / pixelSize; + + $scaleContainer.css( { + width: mapWidth * ratio, + height: mapHeight * ratio } ).children("img").each(function (i) { + var $img = $(this), + imgCenter = $img.data("center"), + x = (Math.round((imgCenter[0] - center[0]) / scalePixelSize) - halfWidth) * ratio, + y = (Math.round((center[1] - imgCenter[1]) / scalePixelSize) - halfHeight) * ratio; + + $img.css({ left: x + "px", top: y + "px" }); + }); + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + this._cancelUnloaded(map, service); + + if ( serviceState && service && service.style.visibility === "visible" && !( serviceState.serviceContainer.is( ":hidden" ) ) ) { + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceObj = this, + serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children('[data-pixelSize="' + pixelSize + '"]'), + + opacity = service.style.opacity, + + $img; + + if ( !scaleContainer.size() ) { + serviceContainer.append('
            '); + scaleContainer = serviceContainer.children(":last"); + } + + scaleContainer.children("img").each(function (i) { + var $thisimg = $(this), + imgCenter = $thisimg.data("center"), + center = map._getCenter(), + x = Math.round((imgCenter[0] - center[0]) / pixelSize) - halfWidth, + y = Math.round((center[1] - imgCenter[1]) / pixelSize) - halfHeight; + + $thisimg.css({ left: x + "px", top: y + "px" }); + }); + + if (opacity < 1) { + serviceContainer.find("img").attr("data-keepAlive", "0"); + } + + var urlProp = ( service.hasOwnProperty("src") ? "src" : "getUrl" ), + urlArgs = { + bbox: bbox, + width: mapWidth, + height: mapHeight, + zoom: map._getZoom(), + tile: null, + index: 0 + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + + serviceState.loadCount++; + //this._map._requestQueued(); + + scaleContainer.append(''); + $img = scaleContainer.children(":last").data("center", map._getCenter()); + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + + } + }, + + resize: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState && service && service.style.visibility === "visible" ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children(); + + scaleContainer.attr("data-pixelSize", "0"); + scaleContainer.css({ + left: halfWidth + 'px', + top: halfHeight + 'px' + }); + } + }, + + opacity: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find( "img" ).stop( true ).fadeTo( "fast", service.style.opacity ); + }, + + toggle: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + serviceState.serviceContainer.css("display", service.style.visibility === "visible" ? "block" : "none"); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + }, + + _loadImage: function ( $img, url, pixelSize, serviceState, serviceContainer, opacity ) { + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(':not([data-pixelSize="' + pixelSize + '"])').remove(); + + var panContainer = serviceContainer.find('[data-pixelSize="' + pixelSize + '"]>div'); + if (panContainer.size() > 0) { + var panContainerPos = panContainer.position(); + + panContainer.children("img").each(function (i) { + var $thisimg = $(this), + x = panContainerPos.left + parseInt($thisimg.css("left")), + y = panContainerPos.top + parseInt($thisimg.css("top")); + + $thisimg.css({ left: x + "px", top: y + "px" }); + }).unwrap(); + + panContainer.remove(); + } + + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", url); + } + } + })(); +})(jQuery); +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ + +(function($) { + +var types = ['DOMMouseScroll', 'mousewheel']; + +if ($.event.fixHooks) { + for ( var i=types.length; i; ) { + $.event.fixHooks[ types[--i] ] = $.event.mouseHooks; + } +} + +$.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i=types.length; i; ) { + this.addEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i=types.length; i; ) { + this.removeEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } +}; + +$.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } +}); + + +function handler(event) { + var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; } + if ( orgEvent.detail ) { delta = -orgEvent.detail/3; } + + // New school multidimensional scroll (touchpads) deltas + deltaY = delta; + + // Gecko + if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) { + deltaY = 0; + deltaX = -1*delta; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; } + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); +} + +})(jQuery); diff --git a/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a4.min.js b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a4.min.js new file mode 100755 index 0000000..8696f1e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-1.0a4.min.js @@ -0,0 +1,171 @@ +document.createElement("canvas").getContext||function(){function g(){return this.context_||(this.context_=new t(this))}function q(p,h){var o=G.call(arguments,2);return function(){return p.apply(h,o.concat(G.call(arguments)))}}function r(p){p.namespaces.g_vml_||p.namespaces.add("g_vml_","urn:schemas-microsoft-com:vml","#default#VML");p.namespaces.g_o_||p.namespaces.add("g_o_","urn:schemas-microsoft-com:office:office","#default#VML");if(!p.styleSheets.ex_canvas_){p=p.createStyleSheet();p.owningElement.id= +"ex_canvas_";p.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}function b(p){var h=p.srcElement;switch(p.propertyName){case "width":h.getContext().clearRect();h.style.width=h.attributes.width.nodeValue+"px";h.firstChild.style.width=h.clientWidth+"px";break;case "height":h.getContext().clearRect();h.style.height=h.attributes.height.nodeValue+"px";h.firstChild.style.height=h.clientHeight+"px"}}function c(p){p=p.srcElement;if(p.firstChild){p.firstChild.style.width= +p.clientWidth+"px";p.firstChild.style.height=p.clientHeight+"px"}}function a(){return[[1,0,0],[0,1,0],[0,0,1]]}function d(p,h){for(var o=a(),s=0;s<3;s++)for(var x=0;x<3;x++){for(var v=0,A=0;A<3;A++)v+=p[s][A]*h[A][x];o[s][x]=v}return o}function f(p,h){h.fillStyle=p.fillStyle;h.lineCap=p.lineCap;h.lineJoin=p.lineJoin;h.lineWidth=p.lineWidth;h.miterLimit=p.miterLimit;h.shadowBlur=p.shadowBlur;h.shadowColor=p.shadowColor;h.shadowOffsetX=p.shadowOffsetX;h.shadowOffsetY=p.shadowOffsetY;h.strokeStyle=p.strokeStyle; +h.globalAlpha=p.globalAlpha;h.font=p.font;h.textAlign=p.textAlign;h.textBaseline=p.textBaseline;h.arcScaleX_=p.arcScaleX_;h.arcScaleY_=p.arcScaleY_;h.lineScale_=p.lineScale_}function e(p){var h=p.indexOf("(",3),o=p.indexOf(")",h+1);h=p.substring(h+1,o).split(",");if(h.length!=4||p.charAt(3)!="a")h[3]=1;return h}function l(p,h,o){return Math.min(o,Math.max(h,p))}function m(p,h,o){o<0&&o++;o>1&&o--;return 6*o<1?p+(h-p)*6*o:2*o<1?h:3*o<2?p+(h-p)*(2/3-o)*6:p}function n(p){if(p in R)return R[p];var h, +o=1;p=String(p);if(p.charAt(0)=="#")h=p;else if(/^rgb/.test(p)){o=e(p);h="#";for(var s,x=0;x<3;x++){s=o[x].indexOf("%")!=-1?Math.floor(parseFloat(o[x])/100*255):+o[x];h+=M[l(s,0,255)]}o=+o[3]}else if(/^hsl/.test(p)){x=o=e(p);h=parseFloat(x[0])/360%360;h<0&&h++;s=l(parseFloat(x[1])/100,0,1);x=l(parseFloat(x[2])/100,0,1);if(s==0)s=x=h=x;else{var v=x<0.5?x*(1+s):x+s-x*s,A=2*x-v;s=m(A,v,h+1/3);x=m(A,v,h);h=m(A,v,h-1/3)}h="#"+M[Math.floor(s*255)]+M[Math.floor(x*255)]+M[Math.floor(h*255)];o=o[3]}else h= +p;return R[p]={color:h,alpha:o}}function t(p){this.m_=a();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.fillStyle=this.strokeStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=H*1;this.globalAlpha=1;this.canvas=p;var h="width:"+p.clientWidth+"px;height:"+p.clientHeight+"px;overflow:hidden;position:absolute",o=p.ownerDocument.createElement("div");o.style.cssText=h;p.appendChild(o);h=o.cloneNode(false);h.style.backgroundColor="red";h.style.filter="alpha(opacity=0)"; +p.appendChild(h);this.element_=o;this.lineScale_=this.arcScaleY_=this.arcScaleX_=1}function u(p,h,o,s){p.currentPath_.push({type:"bezierCurveTo",cp1x:h.x,cp1y:h.y,cp2x:o.x,cp2y:o.y,x:s.x,y:s.y});p.currentX_=s.x;p.currentY_=s.y}function w(p,h,o){p=p.m_;return{x:H*(h*p[0][0]+o*p[1][0]+p[2][0])-C,y:H*(h*p[0][1]+o*p[1][1]+p[2][1])-C}}function B(p,h,o){if(isFinite(h[0][0])&&isFinite(h[0][1])&&isFinite(h[1][0])&&isFinite(h[1][1])&&isFinite(h[2][0])&&isFinite(h[2][1])){p.m_=h;if(o)p.lineScale_=P(J(h[0][0]* +h[1][1]-h[0][1]*h[1][0]))}}function I(p){this.code=this[p];this.message=p+": DOM Exception "+this.code}var F=Math,y=F.round,K=F.sin,D=F.cos,J=F.abs,P=F.sqrt,H=10,C=H/2;navigator.userAgent.match(/MSIE ([\d.]+)?/);var G=Array.prototype.slice;r(document);F={init:function(p){p=p||document;p.createElement("canvas");p.attachEvent("onreadystatechange",q(this.init_,this,p))},init_:function(p){p=p.getElementsByTagName("canvas");for(var h=0;hs.x)s.x=v.x;if(o.y==null||v.ys.y)s.y=v.y}}h.push(' ">');if(p){p=n(this.fillStyle);h.push('')}else{o=n(this.strokeStyle);p=o.color;o=o.alpha*this.globalAlpha;s=this.lineScale_*this.lineWidth;if(s<1)o*=s;h.push("')}h.push("");this.element_.insertAdjacentHTML("beforeEnd",h.join(""))};z.fill=function(){this.stroke(true)};z.closePath=function(){this.currentPath_.push({type:"close"})};z.save= +function(){var p={};f(this,p);this.aStack_.push(p);this.mStack_.push(this.m_);this.m_=d(a(),this.m_)};z.restore=function(){if(this.aStack_.length){f(this.aStack_.pop(),this);this.m_=this.mStack_.pop()}};z.translate=function(p,h){B(this,d([[1,0,0],[0,1,0],[p,h,1]],this.m_),false)};z.scale=function(p,h){this.arcScaleX_*=p;this.arcScaleY_*=h;B(this,d([[p,0,0],[0,h,0],[0,0,1]],this.m_),true)};z=I.prototype=Error();z.INDEX_SIZE_ERR=1;z.DOMSTRING_SIZE_ERR=2;z.HIERARCHY_REQUEST_ERR=3;z.WRONG_DOCUMENT_ERR= +4;z.INVALID_CHARACTER_ERR=5;z.NO_DATA_ALLOWED_ERR=6;z.NO_MODIFICATION_ALLOWED_ERR=7;z.NOT_FOUND_ERR=8;z.NOT_SUPPORTED_ERR=9;z.INUSE_ATTRIBUTE_ERR=10;z.INVALID_STATE_ERR=11;z.SYNTAX_ERR=12;z.INVALID_MODIFICATION_ERR=13;z.NAMESPACE_ERR=14;z.INVALID_ACCESS_ERR=15;z.VALIDATION_ERR=16;z.TYPE_MISMATCH_ERR=17;G_vmlCanvasManager=F;CanvasRenderingContext2D=t;DOMException=I}(); +$.widget||function(g,q){if(g.cleanData){var r=g.cleanData;g.cleanData=function(c){for(var a=0,d;(d=c[a])!=null;a++)try{g(d).triggerHandler("remove")}catch(f){}r(c)}}else{var b=g.fn.remove;g.fn.remove=function(c,a){return this.each(function(){if(!a)if(!c||g.filter(c,[this]).length)g("*",this).add([this]).each(function(){try{g(this).triggerHandler("remove")}catch(d){}});return b.call(g(this),c,a)})}}g.widget=function(c,a,d){var f=c.split(".")[0],e;c=c.split(".")[1];e=f+"-"+c;if(!d){d=a;a=g.Widget}g.expr[":"][e]= +function(l){return!!g.data(l,c)};g[f]=g[f]||{};g[f][c]=function(l,m){arguments.length&&this._createWidget(l,m)};a=new a;a.options=g.extend(true,{},a.options);g[f][c].prototype=g.extend(true,a,{namespace:f,widgetName:c,widgetEventPrefix:g[f][c].prototype.widgetEventPrefix||c,widgetBaseClass:e},d);g.widget.bridge(c,g[f][c])};g.widget.bridge=function(c,a){g.fn[c]=function(d){var f=typeof d==="string",e=Array.prototype.slice.call(arguments,1),l=this;d=!f&&e.length?g.extend.apply(null,[true,d].concat(e)): +d;if(f&&d.charAt(0)==="_")return l;f?this.each(function(){var m=g.data(this,c),n=m&&g.isFunction(m[d])?m[d].apply(m,e):m;if(n!==m&&n!==q){l=n;return false}}):this.each(function(){var m=g.data(this,c);m?m.option(d||{})._init():g.data(this,c,new a(d,this))});return l}};g.Widget=function(c,a){arguments.length&&this._createWidget(c,a)};g.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(c,a){g.data(a,this.widgetName,this);this.element=g(a);this.options= +g.extend(true,{},this.options,this._getCreateOptions(),c);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return g.metadata&&g.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+ +"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(c,a){var d=c;if(arguments.length===0)return g.extend({},this.options);if(typeof c==="string"){if(a===q)return this.options[c];d={};d[c]=a}this._setOptions(d);return this},_setOptions:function(c){var a=this;g.each(c,function(d,f){a._setOption(d,f)});return this},_setOption:function(c,a){this.options[c]=a;if(c==="disabled")this.widget()[a?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled", +a);return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(c,a,d){var f,e=this.options[c];d=d||{};a=g.Event(a);a.type=(c===this.widgetEventPrefix?c:this.widgetEventPrefix+c).toLowerCase();a.target=this.element[0];if(c=a.originalEvent)for(f in c)f in a||(a[f]=c[f]);this.element.trigger(a,d);return!(g.isFunction(e)&&e.call(this.element[0],a,d)===false||a.isDefaultPrevented())}}}(jQuery); +window.JsViews||window.jQuery&&jQuery.views||function(g,q){function r(h,o,s,x,v){var A=(s=s||{viewsCount:0,ctx:n.helpers})&&s.ctx;return{jsViews:"v1.0pre",path:o||"",itemNumber:++s.viewsCount||1,viewsCount:0,tmpl:v,data:x||s.data||{},ctx:h&&h===A?A:A?F(F({},A),h):h||{},parent:s}}function b(h,o,s,x,v,A,E){return s?(x?v?"$view."+v:s:"$data."+s)+(A||""):E||o||""}function c(h){function o(O){O-=x;O&&E.push(h.substr(x,O).replace(C,"\\n"))}var s,x=0,v=[],A=[],E=A,N=[,,A];h=h.replace(M,"\\$1");h.replace(w, +function(O,S,Q,ga,ha,T,ia,ja,ka,ca){function la(Z,V,ma,da,na,oa,ea,fa,pa,qa){return W?(W=!ea,W?Z:'"'):X?(X=!fa,X?Z:'"'):da?V.replace(P,b)+da:na?Y?"":(aa=K,"\u0008"+V+":"):ma?(Y++,V.replace(P,b)+"("):pa?(Y--,")"):V?V.replace(P,b):oa?",":qa?Y?"":aa?(aa=y,"\u0008"):",":(W=ea,X=fa,'"')}var aa,ba="",Y=0,X=y,W=y;Q=Q||ga;o(ca);if(ha)n.allowCode&&E.push(["*",T.replace(G,"$1")]);else if(Q){if(Q==="else"){N=v.pop();E=N[2];S=K}T=T?(T+" ").replace(H,la).replace(z,function(Z,V){ba+=V+",";return""}):"";T=T.slice(0, +-1);s=[Q,ia?ja||"none":"",S&&[],"{"+ba+"_hash:'"+ba+"',_path:'"+T+"'}",T];if(S){v.push(N);N=s}E.push(s)}else if(ka)N=v.pop();x=ca+O.length;if(!N)throw"Expected block tag";E=N[2]});o(h.length);return a(A)}function a(h){var o,s,x=[],v=h.length,A="try{var views="+(D?"jQuery":"JsViews")+'.views,tag=views.renderTag,enc=views.encode,html=views.encoders.html,$ctx=$view && $view.ctx,result=""+\n\n';for(s=0;s)[^>]*$|\{\{\! /,P=/^(true|false|null|[\d\.]+)|(\w+|\$(view|data|ctx|(\w+)))([\w\.]*)|((['"])(?:\\\1|.)*\7)$/g,H=/(\$?[\w\.\[\]]+)(?:(\()|\s*(===|!==|==|!=|<|>|<=|>=)\s*|\s*(\=)\s*)?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g,C=/\r?\n/g,G=/\\(['"])/g,M=/\\?(['"])/g,z=/\x08([^\x08]+)\x08/g,L=0,R={"&":"&","<":"<",">":">"},U=/[\x00"&'<>]/g,p=Array.prototype.slice;if(D){e=D;e.fn.extend({render:function(h,o,s,x){return u(h,this[0],o,s,x)},template:function(h,o){return e.template(h, +this[0],o)}})}else{l=g.$;g.JsViews=m=g.$=e={extend:function(h,o){for(var s in o)h[s]=o[s];return h},isArray:Array.isArray||function(h){return Object.prototype.toString.call(h)==="[object Array]"},noConflict:function(){if(g.$===m)g.$=l;return m}}}F=e.extend;F(e,{views:n={templates:{},tags:{"if":function(){var h=this._view;h.onElse=function(o,s){for(var x=0,v=s.length;v&&!s[x++];)if(x===v)return"";h.onElse=q;return u(h.data,o.tmpl,h.ctx,h)};return h.onElse(this,arguments)},"else":function(){var h=this._view; +return h.onElse?h.onElse(this,arguments):""},each:function(){var h,o="",s=arguments,x=s.length,v=this.tmpl,A=this._view;for(h=0;hError: "+(h.message||h)+". ":'""'},setDelimiters:function(h,o){var s=o.charAt(0), +x=o.charAt(1);h="\\"+h.charAt(0)+"\\"+h.charAt(1);o="\\"+s+"\\"+x;w=h+"(?:(?:(\\#)?(\\w+(?=[!\\s\\"+s+"]))|(?:(\\=)|(\\*)))\\s*((?:[^\\"+s+"]|\\"+s+"(?!\\"+x+"))*?)(!(\\w*))?|(?:\\/([\\w\\$\\.\\[\\]]+)))"+o;w=RegExp(w,"g")},registerTags:B=function(h,o){var s;if(typeof h==="object")for(s in h)B(s,h[s]);else n.tags[h]=o;return this},registerHelpers:I=function(h,o){if(typeof h==="object")for(var s in h)I(s,h[s]);else n.helpers[h]=o;return this},encode:function(h,o){return o?(t[h||"html"]||t.html)(o): +""},encoders:t={none:function(h){return h},html:function(h){return String(h).replace(U,d)}},renderTag:function(h,o,s,x,v){var A,E;A=arguments;E=n.presenters;hash=v._hash;tagFn=n.tags[h];if(!tagFn)return"";x=x&&o.tmpl.nested[x-1];v.tmpl=v.tmpl||x||q;if(E&&E[h]){E=F(F({},v.ctx),v);delete E.ctx;delete E._path;delete E.tmpl;v.ctx=E;v._ctor=h+(hash?"="+hash.slice(0,-1):"");v=F(F({},tagFn),v);tagFn=n.tags.each}v._encode=s;v._view=o;return(A=tagFn.apply(v,A.length>5?p.call(A,5):[o.data]))||(A===q?"":A.toString())}}, +render:u=function(h,o,s,x,v,A){var E,N,O,S,Q="";if(arguments.length===2&&h.jsViews){x=h;s=x.ctx;h=x.data}o=e.template(o);if(!o)return"";if(e.isArray(h)){S=new r(s,v,x,h);E=0;for(N=h.length;E"+O+"" + content + "" : content; + } + } else { + result += tmpl( data, new View( context, path, parentView, data, tmpl )); + } + + return viewsNs.activeViews + // If in activeView mode, include annotations + ? "" + result + "" + // else return just the string result + : result; + }, + +//=============== +// template +//=============== + + template: function( name, tmpl ) { + // Set: + // Use $.template( name, tmpl ) to cache a named template, + // where tmpl is a template string, a script element or a jQuery instance wrapping a script element, etc. + // Use $( "selector" ).template( name ) to provide access by name to a script block template declaration. + + // Get: + // Use $.template( name ) to access a cached template. + // Also $( selectorToScriptBlock ).template(), or $.template( null, templateString ) + // will return the compiled template, without adding a name reference. + // If templateString is not a selector, $.template( templateString ) is equivalent + // to $.template( null, templateString ). To ensure a string is treated as a template, + // include an HTML element, an HTML comment, or a template comment tag. + + if (tmpl) { + // Compile template and associate with name + if ( "" + tmpl === tmpl ) { // type string + // This is an HTML string being passed directly in. + tmpl = compile( tmpl ); + } else if ( jQuery && tmpl instanceof $ ) { + tmpl = tmpl[0]; + } + if ( tmpl ) { + if ( jQuery && tmpl.nodeType ) { + // If this is a template block, use cached copy, or generate tmpl function and cache. + tmpl = $.data( tmpl, "tmpl" ) || $.data( tmpl, "tmpl", compile( tmpl.innerHTML )); + } + viewsNs.templates[ tmpl._name = tmpl._name || name || "_" + autoName++ ] = tmpl; + } + return tmpl; + } + // Return named compiled template + return name + ? "" + name !== name // not type string + ? (name._name + ? name // already compiled + : $.template( null, name )) + : viewsNs.templates[ name ] || + // If not in map, treat as a selector. (If integrated with core, use quickExpr.exec) + $.template( null, htmlExpr.test( name ) ? name : try$( name )) + : null; + } +}); + +viewsNs.setDelimiters( "{{", "}}" ); + +//================= +// compile template +//================= + +// Generate a reusable function that will serve to render a template against data +// (Compile AST then build template function) + +function parsePath( all, comp, object, viewDataCtx, viewProperty, path, string, quot ) { + return object + ? ((viewDataCtx + ? viewProperty + ? ("$view." + viewProperty) + : object + :("$data." + object) + ) + ( path || "" )) + : string || (comp || ""); +} + +function compile( markup ) { + var newNode, + loc = 0, + stack = [], + topNode = [], + content = topNode, + current = [,,topNode]; + + function pushPreceedingContent( shift ) { + shift -= loc; + if ( shift ) { + content.push( markup.substr( loc, shift ).replace( rNewLine,"\\n")); + } + } + + function parseTag( all, isBlock, tagName, equals, code, params, useEncode, encode, closeBlock, index ) { + // rTag : # tagName equals code params encode closeBlock + // /\{\{(?:(?:(\#)?(\w+(?=[\s\}!]))|(?:(\=)|(\*)))((?:[^\}]|\}(?!\}))*?)(!(\w*))?|(?:\/([\w\$\.\[\]]+)))\}\}/g; + + // Build abstract syntax tree: [ tagName, params, content, encode ] + var named, + hash = "", + parenDepth = 0, + quoted = FALSE, // boolean for string content in double qoutes + aposed = FALSE; // or in single qoutes + + function parseParams( all, path, paren, comp, eq, comma, apos, quot, rightParen, space, index ) { + // path paren eq comma apos quot rtPrn space + // /(\$?[\w\.\[\]]+)(?:(\()|(===)|(\=))?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g + + return aposed + // within single-quoted string + ? ( aposed = !apos, (aposed ? all : '"')) + : quoted + // within double-quoted string + ? ( quoted = !quot, (quoted ? all : '"')) + : comp + // comparison + ? ( path.replace( rPath, parsePath ) + comp) + : eq + // named param + ? parenDepth ? "" :( named = TRUE, '\b' + path + ':') + : paren + // function + ? (parenDepth++, path.replace( rPath, parsePath ) + '(') + : rightParen + // function + ? (parenDepth--, ")") + : path + // path + ? path.replace( rPath, parsePath ) + : comma + ? "," + : space + ? (parenDepth + ? "" + : named + ? ( named = FALSE, "\b") + : "," + ) + : (aposed = apos, quoted = quot, '"'); + } + + tagName = tagName || equals; + pushPreceedingContent( index ); + if ( code ) { + if ( viewsNs.allowCode ) { + content.push([ "*", params.replace( rUnescapeQuotes, "$1" )]); + } + } else if ( tagName ) { + if ( tagName === "else" ) { + current = stack.pop(); + content = current[ 2 ]; + isBlock = TRUE; + } + params = (params + ? (params + " ") + .replace( rParams, parseParams ) + .replace( rBuildHash, function( all, keyValue, index ) { + hash += keyValue + ","; + return ""; + }) + : ""); + params = params.slice( 0, -1 ); + newNode = [ + tagName, + useEncode ? encode || "none" : "", + isBlock && [], + "{" + hash + "_hash:'" + hash + "',_path:'" + params + "'}", + params + ]; + + if ( isBlock ) { + stack.push( current ); + current = newNode; + } + content.push( newNode ); + } else if ( closeBlock ) { + current = stack.pop(); + } + loc = index + all.length; // location marker - parsed up to here + if ( !current ) { + throw "Expected block tag"; + } + content = current[ 2 ]; + } + markup = markup.replace( rEscapeQuotes, "\\$1" ); + markup.replace( rTag, parseTag ); + pushPreceedingContent( markup.length ); + return buildTmplFunction( topNode ); +} + +// Build javascript compiled template function, from AST +function buildTmplFunction( nodes ) { + var ret, node, i, + nested = [], + l = nodes.length, + code = "try{var views=" + + (jQuery ? "jQuery" : "JsViews") + + '.views,tag=views.renderTag,enc=views.encode,html=views.encoders.html,$ctx=$view && $view.ctx,result=""+\n\n'; + + for ( i = 0; i < l; i++ ) { + node = nodes[ i ]; + if ( node[ 0 ] === "*" ) { + code = code.slice( 0, i ? -1 : -3 ) + ";" + node[ 1 ] + ( i + 1 < l ? "result+=" : "" ); + } else if ( "" + node === node ) { // type string + code += '"' + node + '"+'; + } else { + var tag = node[ 0 ], + encode = node[ 1 ], + content = node[ 2 ], + obj = node[ 3 ], + params = node[ 4 ], + paramsOrEmptyString = params + '||"")+'; + + if( content ) { + nested.push( buildTmplFunction( content )); + } + code += tag === "=" + ? (!encode || encode === "html" + ? "html(" + paramsOrEmptyString + : encode === "none" + ? ("(" + paramsOrEmptyString) + : ('enc("' + encode + '",' + paramsOrEmptyString) + ) + : 'tag("' + tag + '",$view,"' + ( encode || "" ) + '",' + + (content ? nested.length : '""') // For block tags, pass in the key (nested.length) to the nested content template + + "," + obj + (params ? "," : "") + params + ")+"; + } + } + ret = new Function( "$data, $view", code.slice( 0, -1) + ";return result;\n\n}catch(e){return views.err(e);}" ); + ret.nested = nested; + return ret; +} + +//========================== Private helper functions, used by code above ========================== + +function replacerForHtml( ch ) { + // Original code from Mike Samuel + return escapeMapForHtml[ ch ] + // Intentional assignment that caches the result of encoding ch. + || ( escapeMapForHtml[ ch ] = "&#" + ch.charCodeAt( 0 ) + ";" ); +} + +function try$( selector ) { + // If selector is valid, return jQuery object, otherwise return (invalid) selector string + try { + return $( selector ); + } catch( e) {} + return selector; +} +})( window ); +(function ($, window, undefined) { + var pos_oo = Number.POSITIVE_INFINITY, + neg_oo = Number.NEGATIVE_INFINITY; + + $.geo = { + // + // utility functions + // + + _allCoordinates: function (geom) { + // return array of all positions in all geometries of geom + // not in JTS + var geometries = this._flatten(geom), + curGeom = 0, + result = []; + + for (; curGeom < geometries.length; curGeom++) { + var coordinates = geometries[curGeom].coordinates, + isArray = coordinates && $.isArray(coordinates[0]), + isDblArray = isArray && $.isArray(coordinates[0][0]), + isTriArray = isDblArray && $.isArray(coordinates[0][0][0]), + i, j, k; + + if (!isTriArray) { + if (!isDblArray) { + if (!isArray) { + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + for (k = 0; k < coordinates[i][j].length; k++) { + result.push(coordinates[i][j][k]); + } + } + } + } + return result; + }, + + _isGeodetic: function( coords ) { + // returns true if the first coordinate it can find is geodetic + + while ( $.isArray( coords ) ) { + if ( coords.length > 1 && ! $.isArray( coords[ 0 ] ) ) { + return ( coords[ 0 ] >= -180 && coords[ 0 ] <= 180 && coords[ 1 ] >= -85 && coords[ 1 ] <= 85 ); + } else { + coords = coords[ 0 ]; + } + } + + return false; + }, + + // + // bbox functions + // + + center: function (bbox, _ignoreGeo /* Internal Use Only */) { + // Envelope.centre in JTS + // bbox only, use centroid for geom + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var center = [(bbox[0] + bbox[2]) / 2, (bbox[1] + bbox[3]) / 2]; + return wasGeodetic ? $.geo.proj.toGeodetic(center) : center; + }, + + expandBy: function (bbox, dx, dy, _ignoreGeo /* Internal Use Only */) { + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + bbox = [bbox[0] - dx, bbox[1] - dy, bbox[2] + dx, bbox[3] + dy]; + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + height: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + + return bbox[3] - bbox[1]; + }, + + _in: function(bbox1, bbox2) { + return bbox1[0] <= bbox2[0] && + bbox1[1] <= bbox2[1] && + bbox1[2] >= bbox2[2] && + bbox1[3] >= bbox2[3]; + }, + + _bboxDisjoint: function( bbox1, bbox2 ) { + return bbox2[ 0 ] > bbox1[ 2 ] || + bbox2[ 2 ] < bbox1[ 0 ] || + bbox2[ 1 ] > bbox1[ 3 ] || + bbox2[ 3 ] < bbox1[ 1 ]; + }, + + reaspect: function (bbox, ratio, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var width = this.width(bbox, true), + height = this.height(bbox, true), + center = this.center(bbox, true), + dx, dy; + + if (width != 0 && height != 0 && ratio > 0) { + if (width / height > ratio) { + dx = width / 2; + dy = dx / ratio; + } else { + dy = height / 2; + dx = dy * ratio; + } + + bbox = [center[0] - dx, center[1] - dy, center[0] + dx, center[1] + dy]; + } + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + recenter: function( bbox, center, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj ) { + if ( this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + if ( this._isGeodetic( center ) ) { + center = $.geo.proj.fromGeodetic(center); + } + } + + var halfWidth = ( bbox[ 2 ] - bbox[ 0 ] ) / 2, + halfHeight = ( bbox[ 3 ] - bbox[ 1 ] ) / 2; + + bbox = [ + center[ 0 ] - halfWidth, + center[ 1 ] - halfHeight, + center[ 0 ] + halfWidth, + center[ 1 ] + halfHeight + ]; + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + scaleBy: function ( bbox, scale, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var c = this.center(bbox, true), + dx = (bbox[2] - bbox[0]) * scale / 2, + dy = (bbox[3] - bbox[1]) * scale / 2; + + bbox = [c[0] - dx, c[1] - dy, c[0] + dx, c[1] + dy]; + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + width: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + + return bbox[2] - bbox[0]; + }, + + // + // geometry functions + // + + // bbox (Geometry.getEnvelope in JTS) + + bbox: function ( geom, _ignoreGeo /* Internal Use Only */ ) { + if ( !geom ) { + return undefined; + } else if ( geom.bbox ) { + result = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom.bbox ) ) ? $.geo.proj.fromGeodetic( geom.bbox ) : geom.bbox; + } else { + result = [ pos_oo, pos_oo, neg_oo, neg_oo ]; + + var coordinates = this._allCoordinates( geom ), + curCoord = 0; + + if ( coordinates.length == 0 ) { + return undefined; + } + + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( coordinates ) ) { + wasGeodetic = true; + coordinates = $.geo.proj.fromGeodetic( coordinates ); + } + + for ( ; curCoord < coordinates.length; curCoord++ ) { + result[0] = Math.min(coordinates[curCoord][0], result[0]); + result[1] = Math.min(coordinates[curCoord][1], result[1]); + result[2] = Math.max(coordinates[curCoord][0], result[2]); + result[3] = Math.max(coordinates[curCoord][1], result[3]); + } + } + + return wasGeodetic ? $.geo.proj.toGeodetic(result) : result; + }, + + // centroid + + centroid: function( geom, _ignoreGeo /* Internal Use Only */ ) { + switch (geom.type) { + case "Point": + return $.extend({}, geom); + + case "LineString": + case "Polygon": + var a = 0, + c = [0, 0], + coords = $.merge( [ ], geom.type == "Polygon" ? geom.coordinates[0] : geom.coordinates ), + i = 1, j, n; + + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( coords ) ) { + wasGeodetic = true; + coords = $.geo.proj.fromGeodetic(coords); + } + + //if (coords[0][0] != coords[coords.length - 1][0] || coords[0][1] != coords[coords.length - 1][1]) { + // coords.push(coords[0]); + //} + + for (; i <= coords.length; i++) { + j = i % coords.length; + n = (coords[i - 1][0] * coords[j][1]) - (coords[j][0] * coords[i - 1][1]); + a += n; + c[0] += (coords[i - 1][0] + coords[j][0]) * n; + c[1] += (coords[i - 1][1] + coords[j][1]) * n; + } + + if (a == 0) { + if (coords.length > 0) { + c[0] = coords[0][0]; + c[1] = coords[0][1]; + return { type: "Point", coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c }; + } else { + return undefined; + } + } + + a *= 3; + c[0] /= a; + c[1] /= a; + + return { type: "Point", coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c }; + } + return undefined; + }, + + // contains + + contains: function (geom1, geom2) { + if (geom1.type != "Polygon") { + return false; + } + + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1.coordinates, geom2.coordinates); + + case "LineString": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates); + + case "Polygon": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates[0]); + + default: + return false; + } + }, + + _containsPolygonPoint: function (polygonCoordinates, pointCoordinate) { + if (polygonCoordinates.length == 0 || polygonCoordinates[0].length < 4) { + return false; + } + + var rayCross = 0, + a = polygonCoordinates[0][0], + i = 1, + b, + x; + + for (; i < polygonCoordinates[0].length; i++) { + b = polygonCoordinates[0][i]; + + if ((a[1] <= pointCoordinate[1] && pointCoordinate[1] < b[1]) || (b[1] <= pointCoordinate[1] && pointCoordinate[1] < a[1]) && (pointCoordinate[0] < a[0] || pointCoordinate[0] < b[0])) { + x = a[0] + (b[0] - a[0]) * (pointCoordinate[1] - a[1]) / (b[1] - a[1]); + + if (x > pointCoordinate[0]) { + rayCross++; + } + } + + a = b; + } + + return rayCross % 2 == 1; + }, + + _containsPolygonLineString: function (polygonCoordinates, lineStringCoordinates) { + for (var i = 0; i < lineStringCoordinates.length; i++) { + if (!this._containsPolygonPoint(polygonCoordinates, lineStringCoordinates[i])) { + return false; + } + } + return true; + }, + + // distance + + distance: function ( geom1, geom2, _ignoreGeo /* Internal Use Only */ ) { + var geom1CoordinatesProjected = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom1.coordinates ) ) ? $.geo.proj.fromGeodetic(geom1.coordinates) : geom1.coordinates, + geom2CoordinatesProjected = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom2.coordinates ) ) ? $.geo.proj.fromGeodetic(geom2.coordinates) : geom2.coordinates; + + switch (geom1.type) { + case "Point": + switch (geom2.type) { + case "Point": + return this._distancePointPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "LineString": + return this._distanceLineStringPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "Polygon": + return this._containsPolygonPoint(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "LineString": + switch (geom2.type) { + case "Point": + return this._distanceLineStringPoint(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "LineString": + return this._distanceLineStringLineString(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "Polygon": + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "LineString": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected[0]) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected[0]); + default: + return undefined; + } + break; + } + }, + + _distancePointPoint: function (coordinate1, coordinate2) { + var dx = coordinate2[0] - coordinate1[0], + dy = coordinate2[1] - coordinate1[1]; + return Math.sqrt((dx * dx) + (dy * dy)); + }, + + _distanceLineStringPoint: function (lineStringCoordinates, pointCoordinate) { + var minDist = pos_oo; + + if (lineStringCoordinates.length > 0) { + var a = lineStringCoordinates[0], + + apx = pointCoordinate[0] - a[0], + apy = pointCoordinate[1] - a[1]; + + if (lineStringCoordinates.length == 1) { + return Math.sqrt(apx * apx + apy * apy); + } else { + for (var i = 1; i < lineStringCoordinates.length; i++) { + var b = lineStringCoordinates[i], + + abx = b[0] - a[0], + aby = b[1] - a[1], + bpx = pointCoordinate[0] - b[0], + bpy = pointCoordinate[1] - b[1], + + d = this._distanceSegmentPoint(abx, aby, apx, apy, bpx, bpy); + + if (d == 0) { + return 0; + } + + if (d < minDist) { + minDist = d; + } + + a = b; + apx = bpx; + apy = bpy; + } + } + } + + return Math.sqrt(minDist); + }, + + _distanceSegmentPoint: function (abx, aby, apx, apy, bpx, bpy) { + var dot1 = abx * apx + aby * apy; + + if (dot1 <= 0) { + return apx * apx + apy * apy; + } + + var dot2 = abx * abx + aby * aby; + + if (dot1 >= dot2) { + return bpx * bpx + bpy * bpy; + } + + return apx * apx + apy * apy - dot1 * dot1 / dot2; + }, + + _distanceLineStringLineString: function (lineStringCoordinates1, lineStringCoordinates2) { + var minDist = pos_oo; + for (var i = 0; i < lineStringCoordinates2.length; i++) { + minDist = Math.min(minDist, this._distanceLineStringPoint(lineStringCoordinates1, lineStringCoordinates2[i])); + } + return minDist; + }, + + // buffer + + _buffer: function( geom, distance, _ignoreGeo /* Internal Use Only */ ) { + var wasGeodetic = false, + coords = geom.coordinates; + + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom.coordinates ) ) { + wasGeodetic = true; + coords = $.geo.proj.fromGeodetic( geom.coordinates ); + } + + switch ( geom.type ) { + case "Point": + var resultCoords = [], + slices = 180, + i = 0, + a; + + for ( ; i <= slices; i++ ) { + a = ( i * 360 / slices ) * ( Math.PI / 180 ); + resultCoords.push( [ + coords[ 0 ] + Math.cos( a ) * distance, + coords[ 1 ] + Math.sin( a ) * distance + ] ); + } + + return { + type: "Polygon", + coordinates: [ ( wasGeodetic ? $.geo.proj.toGeodetic( resultCoords ) : resultCoords ) ] + }; + + break; + + default: + return undefined; + } + }, + + + // + // feature + // + + _flatten: function (geom) { + // return an array of all basic geometries + // not in JTS + var geometries = [], + curGeom = 0; + switch (geom.type) { + case "Feature": + $.merge(geometries, this._flatten(geom.geometry)); + break; + + case "FeatureCollection": + for (; curGeom < geom.features.length; curGeom++) { + $.merge(geometries, this._flatten(geom.features[curGeom].geometry)); + } + break; + + case "GeometryCollection": + for (; curGeom < geom.geometries.length; curGeom++) { + $.merge(geometries, this._flatten(geom.geometries[curGeom])); + } + break; + + default: + geometries[0] = geom; + break; + } + return geometries; + }, + + length: function( geom, _ignoreGeo /* Internal Use Only */ ) { + var sum = 0, + lineStringCoordinates, + i = 1, dx, dy; + + switch ( geom.type ) { + case "Point": + return 0; + + case "LineString": + lineStringCoordinates = geom.coordinates; + break; + + case "Polygon": + lineStringCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( lineStringCoordinates ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( lineStringCoordinates ) ) { + lineStringCoordinates = $.geo.proj.fromGeodetic( lineStringCoordinates ); + } + + for ( ; i < lineStringCoordinates.length; i++ ) { + dx = lineStringCoordinates[ i ][0] - lineStringCoordinates[ i - 1 ][0]; + dy = lineStringCoordinates[ i ][1] - lineStringCoordinates[ i - 1 ][1]; + sum += Math.sqrt((dx * dx) + (dy * dy)); + } + + return sum; + } + + // return undefined; + }, + + area: function( geom, _ignoreGeo /* Internal Use Only */ ) { + var sum = 0, + polygonCoordinates, + i = 1, j; + + switch ( geom.type ) { + case "Point": + case "LineString": + return 0; + + case "Polygon": + polygonCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( polygonCoordinates ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( polygonCoordinates ) ) { + polygonCoordinates = $.geo.proj.fromGeodetic( polygonCoordinates ); + } + + for ( ; i <= polygonCoordinates.length; i++) { + j = i % polygonCoordinates.length; + sum += ( polygonCoordinates[ i - 1 ][ 0 ] - polygonCoordinates[ j ][ 0 ] ) * ( polygonCoordinates[ i - 1 ][ 1 ] + polygonCoordinates[ j ][ 1 ] ) / 2; + } + + return Math.abs( sum ); + } + }, + + pointAlong: function( geom, percentage, _ignoreGeo /* Internal Use Only */ ) { + var totalLength = 0, + previousPercentageSum = 0, + percentageSum = 0, + remainderPercentageSum, + len, + lineStringCoordinates, + segmentLengths = [], + i = 1, dx, dy, + c, c0, c1, + wasGeodetic = false; + + switch ( geom.type ) { + case "Point": + return $.extend( { }, geom ); + + case "LineString": + lineStringCoordinates = geom.coordinates; + break; + + case "Polygon": + lineStringCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( lineStringCoordinates ) { + if ( percentage === 0 ) { + return { + type: "Point", + coordinates: [ lineStringCoordinates[ 0 ][ 0 ], lineStringCoordinates[ 0 ][ 1 ] ] + }; + } else if ( percentage === 1 ) { + i = lineStringCoordinates.length - 1; + return { + type: "Point", + coordinates: [ lineStringCoordinates[ i ][ 0 ], lineStringCoordinates[ i ][ 1 ] ] + }; + } else { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( lineStringCoordinates ) ) { + wasGeodetic = true; + lineStringCoordinates = $.geo.proj.fromGeodetic( lineStringCoordinates ); + } + + for ( ; i < lineStringCoordinates.length; i++ ) { + dx = lineStringCoordinates[ i ][ 0 ] - lineStringCoordinates[ i - 1 ][ 0 ]; + dy = lineStringCoordinates[ i ][ 1 ] - lineStringCoordinates[ i - 1 ][ 1 ]; + len = Math.sqrt((dx * dx) + (dy * dy)); + segmentLengths.push( len ); + totalLength += len; + } + + for ( i = 0; i < segmentLengths.length && percentageSum < percentage; i++ ) { + previousPercentageSum = percentageSum; + percentageSum += ( segmentLengths[ i ] / totalLength ); + } + + remainderPercentageSum = percentage - previousPercentageSum; + + c0 = lineStringCoordinates[ i - 1 ]; + c1 = lineStringCoordinates[ i ]; + + c = [ + c0[ 0 ] + ( remainderPercentageSum * ( c1[ 0 ] - c0[ 0 ] ) ), + c0[ 1 ] + ( remainderPercentageSum * ( c1[ 1 ] - c0[ 1 ] ) ) + ]; + + return { + type: "Point", + coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c + }; + } + } + }, + + // + // WKT functions + // + + _WKT: (function () { + function pointToString(value) { + return "POINT " + pointToUntaggedString(value.coordinates); + } + + function pointToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + return "(" + coordinates.join(" ") + ")"; + } + } + + function lineStringToString(value) { + return "LINESTRING " + lineStringToUntaggedString(value.coordinates); + } + + function lineStringToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var points = [] + + for (var i = 0; i < coordinates.length; i++) { + points.push(coordinates[i].join(" ")); + } + + return "(" + points + ")"; + } + } + + function polygonToString(value) { + return "POLYGON " + polygonToUntaggedString(value.coordinates); + } + + function polygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMTPY"; + } else { + var lineStrings = []; + + for (var i = 0; i < coordinates.length; i++) { + lineStrings.push(lineStringToUntaggedString(coordinates[i])); + } + + return "(" + lineStrings + ")"; + } + } + + function multiPointToString(value) { + return "MULTIPOINT " + lineStringToUntaggedString(value.coordinates); + } + + function multiLineStringToString(value) { + return "MULTILINSTRING " + polygonToUntaggedString(value.coordinates); + } + + function multiPolygonToString(value) { + return "MULTIPOLYGON " + multiPolygonToUntaggedString(value.coordinates); + } + + function multiPolygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var polygons = []; + for (var i = 0; i < coordinates.length; i++) { + polygons.push(polygonToUntaggedString(coordinates[i])); + } + return "(" + polygons + ")"; + } + } + + function geometryCollectionToString(value) { + return "GEOMETRYCOLLECTION " + geometryCollectionToUntaggedString(value.geometries); + } + + function geometryCollectionToUntaggedString(geometries) { + if (!(geometries && geometries.length)) { + return "EMPTY"; + } else { + var geometryText = []; + for (var i = 0; i < geometries.length; i++) { + geometryText.push(stringify(geometries[i])); + } + return "(" + geometries + ")"; + } + } + + function stringify(value) { + if (!(value && value.type)) { + return ""; + } else { + switch (value.type) { + case "Point": + return pointToString(value); + + case "LineString": + return lineStringToString(value); + + case "Polygon": + return polygonToString(value); + + case "MultiPoint": + return multiPointToString(value); + + case "MultiLineString": + return multiLineStringToString(value); + + case "MultiPolygon": + return multiPolygonToString(value); + + case "GeometryCollection": + return geometryCollectionToString(value); + + default: + return ""; + } + } + } + + function pointParseUntagged(wkt) { + var pointString = wkt.match( /\(\s*([\d\.-]+)\s+([\d\.-]+)\s*\)/ ); + return pointString && pointString.length > 2 ? { + type: "Point", + coordinates: [ + parseFloat(pointString[1]), + parseFloat(pointString[2]) + ] + } : null; + } + + function lineStringParseUntagged(wkt) { + var lineString = wkt.match( /\s*\((.*)\)/ ), + coords = [], + pointStrings, + pointParts, + i = 0; + + if ( lineString.length > 1 ) { + pointStrings = lineString[ 1 ].match( /[\d\.-]+\s+[\d\.-]+/g ); + + for ( ; i < pointStrings.length; i++ ) { + pointParts = pointStrings[ i ].match( /\s*([\d\.-]+)\s+([\d\.-]+)\s*/ ); + coords[ i ] = [ parseFloat( pointParts[ 1 ] ), parseFloat( pointParts[ 2 ] ) ]; + } + + return { + type: "LineString", + coordinates: coords + }; + } else { + return null + } + } + + function polygonParseUntagged(wkt) { + var polygon = wkt.match( /\s*\(\s*\((.*)\)\s*\)/ ), + coords = [], + pointStrings, + pointParts, + i = 0; + + if ( polygon.length > 1 ) { + pointStrings = polygon[ 1 ].match( /[\d\.-]+\s+[\d\.-]+/g ); + + for ( ; i < pointStrings.length; i++ ) { + pointParts = pointStrings[ i ].match( /\s*([\d\.-]+)\s+([\d\.-]+)\s*/ ); + coords[ i ] = [ parseFloat( pointParts[ 1 ] ), parseFloat( pointParts[ 2 ] ) ]; + } + + return { + type: "Polygon", + coordinates: [ coords ] + }; + } else { + return null; + } + } + + function parse(wkt) { + wkt = $.trim(wkt); + + var typeIndex = wkt.indexOf( " " ), + untagged = wkt.substr( typeIndex + 1 ); + + switch (wkt.substr(0, typeIndex).toUpperCase()) { + case "POINT": + return pointParseUntagged( untagged ); + + case "LINESTRING": + return lineStringParseUntagged( untagged ); + + case "POLYGON": + return polygonParseUntagged( untagged ); + + default: + return null; + } + } + + return { + stringify: stringify, + + parse: parse + }; + })(), + + // + // projection functions + // + + proj: (function () { + var halfPi = 1.5707963267948966192, + quarterPi = 0.7853981633974483096, + radiansPerDegree = 0.0174532925199432958, + degreesPerRadian = 57.295779513082320877, + semiMajorAxis = 6378137; + + return { + fromGeodeticPos: function (coordinate) { + if (!coordinate) { + debugger; + } + return [ + semiMajorAxis * coordinate[ 0 ] * radiansPerDegree, + semiMajorAxis * Math.log(Math.tan(quarterPi + coordinate[ 1 ] * radiansPerDegree / 2)) + ]; + }, + + fromGeodetic: function ( coordinates ) { + if ( ! $.geo._isGeodetic( coordinates ) ) { + return coordinates; + } + + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + fromGeodeticPos = this.fromGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = fromGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = fromGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ], + i, j, k; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = fromGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + }, + + toGeodeticPos: function (coordinate) { + return [ + (coordinate[ 0 ] / semiMajorAxis) * degreesPerRadian, + (halfPi - 2 * Math.atan(1 / Math.exp(coordinate[ 1 ] / semiMajorAxis))) * degreesPerRadian + ]; + }, + + toGeodetic: function (coordinates) { + if ( $.geo._isGeodetic( coordinates ) ) { + return coordinates; + } + + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + toGeodeticPos = this.toGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = toGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = toGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ]; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = toGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + } + } + })(), + + // + // service types (defined in other files) + // + + _serviceTypes: {} + } +})(jQuery, this); +(function ($, undefined) { + + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()); + + $.widget("geo.geographics", { + _$elem: undefined, + _options: {}, + _trueCanvas: true, + + _width: 0, + _height: 0, + + _$canvas: undefined, + _context: undefined, + _$labelsContainer: undefined, + + options: { + style: { + borderRadius: "8px", + color: "#7f0000", + //fill: undefined, + fillOpacity: .2, + height: "8px", + opacity: 1, + //stroke: undefined, + strokeOpacity: 1, + strokeWidth: "2px", + visibility: "visible", + width: "8px" + } + }, + + _create: function () { + this._$elem = this.element; + this._options = this.options; + + this._$elem.css({ display: "inline-block", overflow: "hidden", textAlign: "left" }); + + if (this._$elem.css("position") == "static") { + this._$elem.css("position", "relative"); + } + + this._$elem.addClass( "geo-graphics" ); + + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + var posCss = 'position:absolute;left:0;top:0;margin:0;padding:0;', + sizeCss = 'width:' + this._width + 'px;height:' + this._height + 'px;', + sizeAttr = 'width="' + this._width + '" height="' + this._height + '"'; + + if (document.createElement('canvas').getContext) { + this._$elem.append(''); + this._$canvas = this._$elem.children(':last'); + this._context = this._$canvas[0].getContext("2d"); + } else if (_ieVersion <= 8) { + this._trueCanvas = false; + this._$elem.append( '
            '); + this._$canvas = this._$elem.children(':last'); + + G_vmlCanvasManager.initElement(this._$canvas[0]); + this._context = this._$canvas[0].getContext("2d"); + this._$canvas.children().css({ backgroundColor: "transparent", width: this._width, height: this._height }); + } + + this._$elem.append('
            '); + this._$labelsContainer = this._$elem.children(':last'); + }, + + _setOption: function (key, value) { + if (key == "style") { + value = $.extend({}, this._options.style, value); + } + $.Widget.prototype._setOption.apply(this, arguments); + }, + + destroy: function () { + $.Widget.prototype.destroy.apply(this, arguments); + this._$elem.html(""); + this._$elem.removeClass( "geo-graphics" ); + }, + + clear: function () { + this._context.clearRect(0, 0, this._width, this._height); + this._$labelsContainer.html(""); + }, + + drawArc: function (coordinates, startAngle, sweepAngle, style) { + style = this._getGraphicStyle(style); + + if (style.visibility != "hidden" && style.opacity > 0 && style.widthValue > 0 && style.heightValue > 0) { + var r = Math.min(style.widthValue, style.heightValue) / 2; + + startAngle = (startAngle * Math.PI / 180); + sweepAngle = (sweepAngle * Math.PI / 180); + + this._context.save(); + this._context.translate(coordinates[0], coordinates[1]); + if (style.widthValue > style.heightValue) { + this._context.scale(style.widthValue / style.heightValue, 1); + } else { + this._context.scale(1, style.heightValue / style.widthValue); + } + + this._context.beginPath(); + this._context.arc(0, 0, r, startAngle, sweepAngle, false); + + if (this._trueCanvas) { + this._context.restore(); + } + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + + if (!this._trueCanvas) { + this._context.restore(); + } + } + }, + + drawPoint: function (coordinates, style) { + var style = this._getGraphicStyle(style); + if (style.widthValue == style.heightValue && style.heightValue == style.borderRadiusValue) { + this.drawArc(coordinates, 0, 360, style); + } else if (style.visibility != "hidden" && style.opacity > 0) { + style.borderRadiusValue = Math.min(Math.min(style.widthValue, style.heightValue) / 2, style.borderRadiusValue); + coordinates[0] -= style.widthValue / 2; + coordinates[1] -= style.heightValue / 2; + this._context.beginPath(); + this._context.moveTo(coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.lineTo(coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1]); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1], coordinates[0] + style.widthValue, coordinates[1] + style.borderRadiusValue); + this._context.lineTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue, coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.lineTo(coordinates[0] + style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1] + style.heightValue, coordinates[0], coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.lineTo(coordinates[0], coordinates[1] + style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1], coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.closePath(); + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + + this._context.stroke(); + } + } + }, + + drawLineString: function (coordinates, style) { + this._drawLines([coordinates], false, style); + }, + + drawPolygon: function (coordinates, style) { + this._drawLines(coordinates, true, style); + }, + + drawBbox: function (bbox, style) { + this._drawLines([[ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ]], true, style); + }, + + drawLabel: function( coordinates, label ) { + this._$labelsContainer.append( '
            ' + label + '
            '); + }, + + resize: function( ) { + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + if ( this._trueCanvas ) { + this._$canvas[0].width = this._width; + this._$canvas[0].height = this._height; + } else { + } + + this._$labelsContainer.css( { + width: this._width, + height: this._height + } ); + }, + + _getGraphicStyle: function (style) { + function safeParse(value) { + value = parseInt(value); + return (+value + '') === value ? +value : value; + } + + style = $.extend({}, this._options.style, style); + style.borderRadiusValue = safeParse(style.borderRadius); + style.fill = style.fill || style.color; + style.doFill = style.fill && style.fillOpacity > 0; + style.stroke = style.stroke || style.color; + style.strokeWidthValue = safeParse(style.strokeWidth); + style.doStroke = style.stroke && style.strokeOpacity > 0 && style.strokeWidthValue > 0; + style.widthValue = safeParse(style.width); + style.heightValue = safeParse(style.height); + return style; + }, + + _drawLines: function (coordinates, close, style) { + if (!coordinates || !coordinates.length || coordinates[0].length < 2) { + return; + } + + var style = this._getGraphicStyle(style), + i, j; + + if (style.visibility != "hidden" && style.opacity > 0) { + this._context.beginPath(); + this._context.moveTo(coordinates[0][0][0], coordinates[0][0][1]); + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + this._context.lineTo(coordinates[i][j][0], coordinates[i][j][1]); + } + } + + if (close) { + this._context.closePath(); + } + + if (close && style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineCap = this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + } + } + }); + + +})(jQuery); + +(function ($, undefined) { + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()), + + _defaultOptions = { + bbox: [-180, -85, 180, 85], + bboxMax: [-180, -85, 180, 85], + center: [0, 0], + cursors: { + "static": "default", + pan: "url(data:image/vnd.microsoft.icon;base64,AAACAAEAICACAAgACAAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8=), move", + zoom: "crosshair", + drawPoint: "crosshair", + drawLineString: "crosshair", + drawPolygon: "crosshair", + measureLength: "crosshair", + measureArea: "crosshair" + }, + measureLabels: { + length: "{{=length.toFixed( 2 )}} m", + area: "{{=area.toFixed( 2 )}} sq m" + }, + drawStyle: {}, + shapeStyle: {}, + mode: "pan", + pannable: true, + scroll: "default", + services: [ + { + "class": "osm", + type: "tiled", + src: function (view) { + return "http://tile.openstreetmap.org/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png"; + }, + attr: "© OpenStreetMap & contributors, CC-BY-SA" + } + ], + tilingScheme: { + tileWidth: 256, + tileHeight: 256, + levels: 18, + basePixelSize: 156543.03392799936, + origin: [-20037508.342787, 20037508.342787] + }, + axisLayout: "map", + zoom: 0, + pixelSize: 0 + }; + + $.widget("geo.geomap", { + // private widget members + _$elem: undefined, //< map div for maps, service div for services + _map: undefined, //< only defined in services + _created: false, + + _contentBounds: {}, + + _$resizeContainer: undefined, //< all elements that should match _contentBounds' size + + _$eventTarget: undefined, + _$contentFrame: undefined, + _$existingChildren: undefined, + _$attrList: undefined, + _$servicesContainer: undefined, + + _$panContainer: undefined, //< all non-service elements that move while panning + _$shapesContainer: undefined, + _$drawContainer: undefined, + _$measureContainer: undefined, + _$measureLabel: undefined, + + _dpi: 96, + + _currentServices: [], //< internal copy + + _center: undefined, + _pixelSize: undefined, + _centerMax: undefined, + _pixelSizeMax: undefined, + + _userGeodetic: true, + + _wheelTimeout: null, + _wheelLevel: 0, + + _zoomFactor: 2, //< determines what a zoom level means + + _fullZoomFactor: 2, //< interactiveScale factor needed to zoom a whole level + _partialZoomFactor: 1.18920711500273, //< interactiveScale factor needed to zoom a fraction of a level (the fourth root of 2) + + _mouseDown: undefined, + _inOp: undefined, + _toolPan: undefined, + _shiftZoom: undefined, + _anchor: undefined, + _current: undefined, + _downDate: undefined, + _moveDate: undefined, + _clickDate: undefined, + _lastMove: undefined, + _lastDrag: undefined, + + _windowHandler: null, + _resizeTimeout: null, + + _panning: undefined, + _velocity: undefined, + _friction: undefined, + + _supportTouch: undefined, + _softDblClick: undefined, + _isTap: undefined, + _isDbltap: undefined, + + _isMultiTouch: undefined, + _multiTouchAnchor: undefined, //< TouchList + _multiTouchAnchorBbox: undefined, //< bbox + _multiTouchCurrentBbox: undefined, //< bbox + + _drawTimeout: null, //< used in drawPoint mode so we don't send two shape events on dbltap + _drawPixels: [], //< an array of coordinate arrays for drawing lines & polygons, in pixel coordinates + _drawCoords: [], + + _graphicShapes: [], //< an array of objects containing style object refs & GeoJSON object refs + + _initOptions: {}, + + _options: {}, + + options: $.extend({}, _defaultOptions), + + _createWidget: function (options, element) { + this._$elem = $(element); + + if (this._$elem.is(".geo-service")) { + var $contentFrame = this._$elem.closest( ".geo-content-frame" ); + this._$elem.append('
            '); + this._$shapesContainer = this._$elem.children(':last'); + this._graphicShapes = []; + $.Widget.prototype._createWidget.apply(this, arguments); + return; + } + + this._$elem.addClass("geo-map"); + + this._initOptions = options || {}; + + this._forcePosition(this._$elem); + + this._$elem.css("text-align", "left"); + + var size = this._findMapSize(); + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._createChildren(); + + this._center = this._centerMax = [0, 0]; + + this.options["pixelSize"] = this._pixelSize = this._pixelSizeMax = 156543.03392799936; + + this._mouseDown = + this._inOp = + this._toolPan = + this._shiftZoom = + this._panning = + this._isTap = + this._isDbltap = false; + + this._anchor = [ 0, 0 ]; + this._current = [ 0, 0 ]; + this._lastMove = [ 0, 0 ]; + this._lastDrag = [ 0, 0 ]; + this._velocity = [ 0, 0 ]; + + this._friction = [.8, .8]; + + this._downDate = + this._moveDate = + this._clickDate = 0; + + this._drawPixels = []; + this._drawCoords = []; + this._graphicShapes = []; + + + $.Widget.prototype._createWidget.apply(this, arguments); + }, + + _create: function () { + this._options = this.options; + + if (this._$elem.is(".geo-service")) { + this._map = this._$elem.data( "geoMap" ); + this._$shapesContainer.geographics( ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + return; + } + + this._map = this; + + this._supportTouch = "ontouchend" in document; + this._softDblClick = this._supportTouch || _ieVersion == 7; + + var geomap = this, + touchStartEvent = this._supportTouch ? "touchstart" : "mousedown", + touchStopEvent = this._supportTouch ? "touchend touchcancel" : "mouseup", + touchMoveEvent = this._supportTouch ? "touchmove" : "mousemove"; + + $(document).keydown($.proxy(this._document_keydown, this)); + + this._$eventTarget.dblclick($.proxy(this._eventTarget_dblclick, this)); + + this._$eventTarget.bind(touchStartEvent, $.proxy(this._eventTarget_touchstart, this)); + + var dragTarget = (this._$eventTarget[0].setCapture) ? this._$eventTarget : $(document); + dragTarget.bind(touchMoveEvent, $.proxy(this._dragTarget_touchmove, this)); + dragTarget.bind(touchStopEvent, $.proxy(this._dragTarget_touchstop, this)); + + this._$eventTarget.mousewheel($.proxy(this._eventTarget_mousewheel, this)); + + this._windowHandler = function () { + if (geomap._resizeTimeout) { + clearTimeout(geomap._resizeTimeout); + } + geomap._resizeTimeout = setTimeout(function () { + if (geomap._created) { + geomap._$elem.geomap("resize"); + } + }, 500); + }; + + $(window).resize(this._windowHandler); + + this._$drawContainer.geographics({ style: this._initOptions.drawStyle || {} }); + this._options["drawStyle"] = this._$drawContainer.geographics("option", "style"); + + this._$shapesContainer.geographics( { style: this._initOptions.shapeStyle || { } } ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + + if (this._initOptions) { + if (this._initOptions.tilingScheme) { + this._setOption("tilingScheme", this._initOptions.tilingScheme, false); + } + if ( this._initOptions.services ) { + // jQuery UI Widget Factory merges user services with our default, we want to clobber the default + this._options[ "services" ] = $.merge( [ ], this._initOptions.services ); + } + if (this._initOptions.bbox) { + this._setOption("bbox", this._initOptions.bbox, false); + } + if (this._initOptions.center) { + this._setOption("center", this._initOptions.center, false); + } + if (this._initOptions.zoom !== undefined) { + this._setZoom(this._initOptions.zoom, false, false); + } + } + + $.template( "geoMeasureLength", this._options[ "measureLabels" ].length ); + $.template( "geoMeasureArea", this._options[ "measureLabels" ].area ); + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._createServices(); + this._refresh(); + + this._created = true; + }, + + _setOption: function (key, value, refresh) { + if ( key == "pixelSize" ) { + return; + } + + refresh = (refresh === undefined || refresh); + + if ( this._$elem.is( ".geo-map" ) ) { + this._panFinalize(); + } + + switch (key) { + case "bbox": + this._userGeodetic = $.geo.proj && $.geo._isGeodetic( value ); + if ( this._userGeodetic ) { + value = $.geo.proj.fromGeodetic( value ); + } + + this._setBbox(value, false, refresh); + value = this._getBbox(); + break; + + case "center": + this._userGeodetic = $.geo.proj && $.geo._isGeodetic( value ); + if ( this._userGeodetic ) { + value = $.geo.proj.fromGeodetic( value ); + } + + this._setCenterAndSize( value, this._pixelSize, false, refresh ); + break; + + case "measureLabels": + value = $.extend( this._options[ "measureLabels" ], value ); + $.template( "geoMeasureLength", value.length ); + $.template( "geoMeasureArea", value.area ); + break; + + case "drawStyle": + if (this._$drawContainer) { + this._$drawContainer.geographics("option", "style", value); + value = this._$drawContainer.geographics("option", "style"); + } + break; + + case "shapeStyle": + if (this._$shapesContainer) { + this._$shapesContainer.geographics("option", "style", value); + value = this._$shapesContainer.geographics("option", "style"); + } + break; + + case "mode": + this._resetDrawing( ); + this._$eventTarget.css("cursor", this._options["cursors"][value]); + break; + + case "zoom": + this._setZoom(value, false, refresh); + break; + } + + $.Widget.prototype._setOption.apply(this, arguments); + + switch ( key ) { + case "bbox": + case "center": + if ( this._userGeodetic ) { + this._options[ "bbox" ] = $.geo.proj.toGeodetic( this._options[ "bbox" ] ); + this._options[ "center" ] = $.geo.proj.toGeodetic( this._center ); + } + break; + + case "tilingScheme": + if ( value != null ) { + this._pixelSizeMax = this._getPixelSize( 0 ); + this._centerMax = [ + value.origin[ 0 ] + this._pixelSizeMax * value.tileWidth / 2, + value.origin[ 1 ] + this._pixelSizeMax * value.tileHeight / 2 + ]; + } + break; + + case "bboxMax": + this._pixelSizeMax = this._getPixelSize( 0 ); + + if ( $.geo.proj && $.geo._isGeodetic( value ) ) { + this._centerMax = $.geo.center( $.geo.proj.fromGeodetic( value ) ); + } else { + this._centerMax = $.geo.center( value ); + } + break; + + case "services": + this._createServices(); + if (refresh) { + this._refresh(); + } + break; + + case "shapeStyle": + if ( refresh ) { + this._$shapesContainer.geographics("clear"); + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes ); + } + break; + } + }, + + destroy: function () { + if ( this._$elem.is(".geo-service") ) { + this._$shapesContainer.geographics("destroy"); + this._$shapesContainer = undefined; + } else { + this._created = false; + + $(window).unbind("resize", this._windowHandler); + + for ( var i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[ i ].serviceContainer.geomap("destroy"); + $.geo["_serviceTypes"][this._currentServices[i].type].destroy(this, this._$servicesContainer, this._currentServices[i]); + } + + this._$shapesContainer.geographics("destroy"); + this._$shapesContainer = undefined; + this._$drawContainer.geographics("destroy"); + this._$drawContainer = undefined; + + this._$existingChildren.detach(); + this._$elem.html(""); + this._$elem.append(this._$existingChildren); + this._$elem.removeClass("geo-map"); + } + + $.Widget.prototype.destroy.apply(this, arguments); + }, + + toMap: function (p) { + p = this._toMap(p); + return this._userGeodetic ? $.geo.proj.toGeodetic(p) : p; + }, + + toPixel: function ( p, _center /* Internal Use Only */, _pixelSize /* Internal Use Only */ ) { + return this._toPixel( $.geo.proj ? $.geo.proj.fromGeodetic( p ) : p, _center, _pixelSize ); + }, + + opacity: function ( value, _serviceContainer ) { + if ( this._$elem.is( ".geo-service" ) ) { + this._$elem.closest( ".geo-map" ).geomap( "opacity", value, this._$elem ); + } else { + if ( value >= 0 || value <= 1 ) { + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[ i ]; + if ( !_serviceContainer || service.serviceContainer[ 0 ] == _serviceContainer[ 0 ] ) { + service.style.opacity = value; + $.geo[ "_serviceTypes" ][ service.type ].opacity( this, service ); + } + } + } + } + }, + + toggle: function ( value, _serviceContainer ) { + if ( this._$elem.is( ".geo-service" ) ) { + this._$elem.closest( ".geo-map" ).geomap( "toggle", value, this._$elem ); + } else { + + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[ i ]; + + if ( !_serviceContainer || service.serviceContainer[ 0 ] == _serviceContainer[ 0 ] ) { + if ( value === undefined ) { + // toggle visibility + value = ( service.style.visibility !== "visible" ); + } + + service.style.visibility = ( value ? "visible" : "hidden" ); + + service.serviceContainer.toggle( value ); + + if ( value ) { + $.geo[ "_serviceTypes" ][ service.type ].refresh( this, service ); + } + } + } + } + }, + + zoom: function (numberOfLevels) { + if (numberOfLevels != null) { + this._setZoom(this._options["zoom"] + numberOfLevels, false, true); + } + }, + + refresh: function () { + this._refresh(); + }, + + resize: function () { + var size = this._findMapSize(), + dx = size["width"]/2 - this._contentBounds.width/2, + dy = size["height"]/2 - this._contentBounds.height/2, + i; + + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._$resizeContainer.css( { + width: size["width"], + height: size["height"] + } ); + + for (i = 0; i < this._currentServices.length; i++) { + $.geo["_serviceTypes"][this._currentServices[i].type].resize(this, this._currentServices[i]); + } + + this._$elem.find( ".geo-graphics" ).css( { + width: size["width"], + height: size["height"] + }).geographics( "resize" ); + + for (i = 0; i < this._drawPixels.length; i++) { + this._drawPixels[i][0] += dx; + this._drawPixels[i][1] += dy; + } + + this._setCenterAndSize(this._center, this._pixelSize, false, true); + }, + + append: function ( shape, style, label, refresh ) { + if ( shape && $.isPlainObject( shape ) ) { + var shapes, arg, i, realStyle, realLabel, realRefresh; + + if ( shape.type == "FeatureCollection" ) { + shapes = shape.features; + } else { + shapes = $.isArray( shape ) ? shape : [ shape ]; + } + + for ( i = 1; i < arguments.length; i++ ) { + arg = arguments[ i ]; + + if ( typeof arg === "object" ) { + realStyle = arg; + } else if ( typeof arg === "number" || typeof arg === "string" ) { + realLabel = arg; + } else if ( typeof arg === "boolean" ) { + realRefresh = arg; + } + } + + for ( i = 0; i < shapes.length; i++ ) { + if ( shapes[ i ].type != "Point" ) { + var bbox = $.geo.bbox( shapes[ i ] ); + if ( $.geo.proj && $.geo._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic( bbox ); + } + $.data( shapes[ i ], "geoBbox", bbox ); + } + + this._graphicShapes.push( { + shape: shapes[ i ], + style: realStyle, + label: realLabel + } ); + } + + if ( realRefresh === undefined || realRefresh ) { + this._refresh( ); + } + } + }, + + empty: function ( refresh ) { + for ( var i = 0; i < this._graphicShapes.length; i++ ) { + $.removeData( this._graphicShapes[ i ].shape, "geoBbox" ); + } + + this._graphicShapes = []; + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + find: function ( selector, pixelTolerance ) { + var isPoint = $.isPlainObject( selector ), + searchPixel = isPoint ? this._map.toPixel( selector.coordinates ) : undefined, + mapTol = this._map._pixelSize * pixelTolerance, + result = [], + graphicShape, + geometries, + curGeom, + i = 0; + + for ( ; i < this._graphicShapes.length; i++ ) { + graphicShape = this._graphicShapes[ i ]; + + if ( isPoint ) { + if ( graphicShape.shape.type == "Point" ) { + if ( $.geo.distance( graphicShape.shape, selector ) <= mapTol ) { + result.push( graphicShape.shape ); + } + } else { + var bbox = $.data( graphicShape.shape, "geoBbox" ), + bboxPolygon = { + type: "Polygon", + coordinates: [ [ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ] ] + }, + projectedPoint = { + type: "Point", + coordinates: $.geo.proj && $.geo._isGeodetic( selector.coordinates ) ? $.geo.proj.fromGeodetic( selector.coordinates ) : selector.coordinates + }; + + if ( $.geo.distance( bboxPolygon, projectedPoint, true ) <= mapTol ) { + geometries = $.geo._flatten( graphicShape.shape ); + for ( curGeom = 0; curGeom < geometries.length; curGeom++ ) { + if ( $.geo.distance( geometries[ curGeom ], selector ) <= mapTol ) { + result.push( graphicShape.shape ); + break; + } + } + } + } + } else { + result.push( graphicShape.shape ); + } + } + + if ( this._$elem.is( ".geo-map" ) ) { + this._$elem.find( ".geo-service" ).each( function( ) { + result = $.merge( result, $( this ).geomap( "find", selector, pixelTolerance ) ); + } ); + } + + return result; + }, + + remove: function ( shape, refresh ) { + for ( var i = 0; i < this._graphicShapes.length; i++ ) { + if ( this._graphicShapes[ i ].shape == shape ) { + $.removeData( shape, "geoBbox" ); + var rest = this._graphicShapes.slice( i + 1 ); + this._graphicShapes.length = i; + this._graphicShapes.push.apply( this._graphicShapes, rest ); + break; + } + } + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + _getBbox: function (center, pixelSize) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + // calculate the internal bbox + var halfWidth = this._contentBounds[ "width" ] / 2 * pixelSize, + halfHeight = this._contentBounds[ "height" ] / 2 * pixelSize; + return [ center[ 0 ] - halfWidth, center[ 1 ] - halfHeight, center[ 0 ] + halfWidth, center[ 1 ] + halfHeight ]; + }, + + _setBbox: function (value, trigger, refresh) { + var center = [value[0] + (value[2] - value[0]) / 2, value[1] + (value[3] - value[1]) / 2], + pixelSize = Math.max($.geo.width(value, true) / this._contentBounds.width, $.geo.height(value, true) / this._contentBounds.height); + + if (this._options["tilingScheme"]) { + var zoom = this._getZoom( center, pixelSize ); + pixelSize = this._getPixelSize( zoom ); + } else { + if ( this._getZoom( center, pixelSize ) < 0 ) { + pixelSize = this._pixelSizeMax; + } + } + + this._setCenterAndSize(center, pixelSize, trigger, refresh); + }, + + _getBboxMax: function () { + // calculate the internal bboxMax + var halfWidth = this._contentBounds["width"] / 2 * this._pixelSizeMax, + halfHeight = this._contentBounds["height"] / 2 * this._pixelSizeMax; + return [this._centerMax[0] - halfWidth, this._centerMax[1] - halfHeight, this._centerMax[0] + halfWidth, this._centerMax[1] + halfHeight]; + }, + + _getCenter: function () { + return this._center; + }, + + _getContentBounds: function () { + return this._contentBounds; + }, + + _getServicesContainer: function () { + return this._$servicesContainer; + }, + + _getZoom: function ( center, pixelSize ) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + // calculate the internal zoom level, vs. public zoom property + var tilingScheme = this._options["tilingScheme"]; + if ( tilingScheme ) { + if ( tilingScheme.pixelSizes != null ) { + var roundedPixelSize = Math.floor(pixelSize * 1000), + levels = tilingScheme.pixelSizes.length, + i = levels - 1; + + for ( ; i >= 0; i-- ) { + if ( Math.floor( tilingScheme.pixelSizes[ i ] * 1000 ) >= roundedPixelSize ) { + return i; + } + } + + return 0; + } else { + return Math.max( Math.round( Math.log( tilingScheme.basePixelSize / pixelSize) / Math.log( 2 ) ), 0 ); + } + } else { + var ratio = this._contentBounds["width"] / this._contentBounds["height"], + bbox = $.geo.reaspect( this._getBbox( center, pixelSize ), ratio, true ), + bboxMax = $.geo.reaspect(this._getBboxMax(), ratio, true); + + return Math.max( Math.round( Math.log($.geo.width(bboxMax, true) / $.geo.width(bbox, true)) / Math.log(this._zoomFactor) ), 0 ); + } + }, + + _setZoom: function ( value, trigger, refresh ) { + value = Math.max( value, 0 ); + + this._setCenterAndSize( this._center, this._getPixelSize( value ), trigger, refresh ); + }, + + _createChildren: function () { + this._$existingChildren = this._$elem.children().detach(); + + this._forcePosition(this._$existingChildren); + + this._$existingChildren.css("-moz-user-select", "none"); + + var contentSizeCss = "width:" + this._contentBounds["width"] + "px; height:" + this._contentBounds["height"] + "px; margin:0; padding:0;", + contentPosCss = "position:absolute; left:0; top:0;"; + + this._$elem.prepend('
            '); + this._$eventTarget = this._$contentFrame = this._$elem.children(':first'); + + this._$contentFrame.append('
            '); + this._$servicesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
            '); + this._$shapesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append( '
              ' ); + this._$attrList = this._$contentFrame.children( ":last" ); + + this._$contentFrame.append('
              '); + this._$drawContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
              '); + this._$measureContainer = this._$contentFrame.children(':last'); + this._$measureLabel = this._$measureContainer.children(); + + this._$panContainer = $( [ this._$shapesContainer[ 0 ], this._$drawContainer[ 0 ], this._$measureContainer[ 0 ] ] ); + + this._$resizeContainer = $( [ this._$contentFrame[ 0 ], this._$servicesContainer[ 0 ], this._$eventTarget[ 0 ], this._$measureContainer[ 0 ] ] ); + + this._$contentFrame.append(this._$existingChildren); + + if ( ! $("#geo-measure-style").length ) { + $("head").prepend( '' ); + } + }, + + _createServices: function () { + var service, i; + + for ( i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[ i ].serviceContainer.geomap( "destroy" ); + $.geo[ "_serviceTypes" ][ this._currentServices[ i ].type ].destroy( this, this._$servicesContainer, this._currentServices[ i ] ); + } + + this._currentServices = [ ]; + this._$servicesContainer.html( "" ); + this._$attrList.html( "" ); + + for ( i = 0; i < this._options[ "services" ].length; i++ ) { + service = this._currentServices[ i ] = $.extend( { }, this._options[ "services" ][ i ] ); + + // default the service style property on our copy + service.style = $.extend( { + visibility: "visible", + opacity: 1 + }, service.style ); + + var idString = service.id ? ' id="' + service.id + '"' : "", + classString = 'class="geo-service ' + ( service["class"] ? service["class"] : '' ) + '"', + scHtml = '
              ', + servicesContainer; + + this._$servicesContainer.append( scHtml ); + serviceContainer = this._$servicesContainer.children( ":last" ); + this._currentServices[ i ].serviceContainer = serviceContainer; + + $.geo[ "_serviceTypes" ][ service.type ].create( this, serviceContainer, service, i ); + + serviceContainer.data( "geoMap", this ).geomap(); + + if ( service.attr ) { + this._$attrList.append( '
            • ' + service.attr + '
            • ' ); + } + } + + this._$attrList.find( "a" ).css( { + position: "relative", + zIndex: 100 + } ); + }, + + _refreshDrawing: function ( ) { + this._$drawContainer.geographics("clear"); + + if ( this._drawPixels.length > 0 ) { + var mode = this._options[ "mode" ], + pixels = this._drawPixels, + coords = this._drawCoords, + label, + labelShape, + labelPixel, + widthOver, + heightOver; + + switch ( mode ) { + case "measureLength": + mode = "drawLineString"; + labelShape = { + type: "LineString", + coordinates: coords + }; + label = $.render( { length: $.geo.length( labelShape, true ) }, "geoMeasureLength" ); + labelPixel = $.merge( [], pixels[ pixels.length - 1 ] ); + break; + + case "measureArea": + mode = "drawPolygon"; + + labelShape = { + type: "Polygon", + coordinates: [ $.merge( [ ], coords ) ] + }; + labelShape.coordinates[ 0 ].push( coords[ 0 ] ); + + label = $.render( { area: $.geo.area( labelShape, true ) }, "geoMeasureArea" ); + labelPixel = $.merge( [], pixels[ pixels.length - 1 ] ); + pixels = [ pixels ]; + break; + + case "drawPolygon": + pixels = [ pixels ]; + break; + } + + this._$drawContainer.geographics( mode, pixels ); + + if ( label ) { + this._$measureLabel.html( label ); + + widthOver = this._contentBounds.width - ( this._$measureLabel.outerWidth( true ) + labelPixel[ 0 ] ); + heightOver = this._contentBounds.height - ( this._$measureLabel.outerHeight( true ) + labelPixel[ 1 ] ); + + if ( widthOver < 0 ) { + labelPixel[ 0 ] += widthOver; + } + + if ( heightOver < 0 ) { + labelPixel[ 1 ] += heightOver; + } + + this._$measureLabel.css( { + left: labelPixel[ 0 ], + top: labelPixel[ 1 ] + } ).show(); + } + } + }, + + _resetDrawing: function () { + this._drawPixels = []; + this._drawCoords = []; + this._$drawContainer.geographics("clear"); + this._$measureLabel.hide(); + }, + + _refreshShapes: function (geographics, shapes, styles, labels, center, pixelSize) { + var i, mgi, + shape, + shapeBbox, + style, + label, + hasLabel, + labelPixel, + bbox = this._map._getBbox(center, pixelSize); + + for (i = 0; i < shapes.length; i++) { + shape = shapes[i].shape || shapes[i]; + shape = shape.geometry || shape; + shapeBbox = $.data(shape, "geoBbox"); + + if ( shapeBbox && $.geo._bboxDisjoint( bbox, shapeBbox ) ) { + continue; + } + + style = $.isArray(styles) ? styles[i].style : styles; + label = $.isArray(labels) ? labels[i].label : labels; + hasLabel = ( label !== undefined ); + labelPixel = undefined; + + switch (shape.type) { + case "Point": + labelPixel = this._map.toPixel( shape.coordinates, center, pixelSize ); + this._$shapesContainer.geographics("drawPoint", labelPixel, style); + break; + case "LineString": + this._$shapesContainer.geographics("drawLineString", this._map.toPixel(shape.coordinates, center, pixelSize), style); + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.pointAlong( shape, .5 ).coordinates, center, pixelSize ); + } + break; + case "Polygon": + this._$shapesContainer.geographics("drawPolygon", this._map.toPixel(shape.coordinates, center, pixelSize), style); + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiPoint": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawPoint", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiLineString": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawLineString", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiPolygon": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawPolygon", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + + case "GeometryCollection": + this._refreshShapes(geographics, shape.geometries, style, label, center, pixelSize); + break; + } + + if ( hasLabel && labelPixel ) { + this._$shapesContainer.geographics( "drawLabel", labelPixel, label ); + } + } + }, + + _findMapSize: function () { + // really, really attempt to find a size for this thing + // even if it's hidden (look at parents) + var size = { width: 0, height: 0 }, + sizeContainer = this._$elem; + + while (sizeContainer.size() && !(size["width"] > 0 && size["height"] > 0)) { + size = { width: sizeContainer.width(), height: sizeContainer.height() }; + if (size["width"] <= 0 || size["height"] <= 0) { + size = { width: parseInt(sizeContainer.css("width")), height: parseInt(sizeContainer.css("height")) }; + } + sizeContainer = sizeContainer.parent(); + } + return size; + }, + + _forcePosition: function (elem) { + var cssPosition = elem.css("position"); + if (cssPosition != "relative" && cssPosition != "absolute" && cssPosition != "fixed") { + elem.css("position", "relative"); + } + }, + + _getPixelSize: function ( zoom ) { + var tilingScheme = this._options["tilingScheme"]; + if (tilingScheme != null) { + if (zoom === 0) { + return tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes[0] : tilingScheme.basePixelSize; + } + + zoom = Math.round(zoom); + zoom = Math.max(zoom, 0); + var levels = tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes.length : tilingScheme.levels; + zoom = Math.min(zoom, levels - 1); + + if (tilingScheme.pixelSizes != null) { + return tilingScheme.pixelSizes[zoom]; + } else { + return tilingScheme.basePixelSize / Math.pow(2, zoom); + } + } else { + var bbox = $.geo.scaleBy( this._getBboxMax(), 1 / Math.pow( this._zoomFactor, zoom ), true ); + return Math.max( $.geo.width( bbox, true ) / this._contentBounds.width, $.geo.height( bbox, true ) / this._contentBounds.height ); + } + }, + + _getZoomCenterAndSize: function ( anchor, zoomDelta, full ) { + var zoomFactor = ( full ? this._fullZoomFactor : this._partialZoomFactor ), + scale = Math.pow( zoomFactor, -zoomDelta ), + pixelSize, + zoomLevel; + + if ( this._options[ "tilingScheme" ] ) { + zoomLevel = this._getZoom(this._center, this._pixelSize * scale); + pixelSize = this._getPixelSize(zoomLevel); + } else { + pixelSize = this._pixelSize * scale; + + if ( this._getZoom( this._center, pixelSize ) < 0 ) { + pixelSize = this._pixelSizeMax; + } + } + + var ratio = pixelSize / this._pixelSize, + anchorMapCoord = this._toMap(anchor), + centerDelta = [(this._center[0] - anchorMapCoord[0]) * ratio, (this._center[1] - anchorMapCoord[1]) * ratio], + scaleCenter = [anchorMapCoord[0] + centerDelta[0], anchorMapCoord[1] + centerDelta[1]]; + + return { pixelSize: pixelSize, center: scaleCenter }; + }, + + _mouseWheelFinish: function () { + this._wheelTimeout = null; + + if (this._wheelLevel != 0) { + var wheelCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, this._options[ "tilingScheme" ] != null ); + + this._setCenterAndSize(wheelCenterAndSize.center, wheelCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + } else { + this._refresh(); + } + }, + + _panEnd: function () { + this._velocity = [ + (this._velocity[0] > 0 ? Math.floor(this._velocity[0] * this._friction[0]) : Math.ceil(this._velocity[0] * this._friction[0])), + (this._velocity[1] > 0 ? Math.floor(this._velocity[1] * this._friction[1]) : Math.ceil(this._velocity[1] * this._friction[1])) + ]; + + if (Math.abs(this._velocity[0]) < 4 && Math.abs(this._velocity[1]) < 4) { + this._panFinalize(); + } else { + this._current = [ + this._current[0] + this._velocity[0], + this._current[1] + this._velocity[1] + ]; + + this._panMove(); + setTimeout($.proxy(this._panEnd, this), 30); + } + }, + + _panFinalize: function () { + if (this._panning) { + this._velocity = [0, 0]; + + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + image = this._options[ "axisLayout" ] === "image", + dxMap = -dx * this._pixelSize, + dyMap = ( image ? -1 : 1 ) * dy * this._pixelSize; + + this._$panContainer.css({ left: 0, top: 0 }); + + this._$servicesContainer.find( ".geo-shapes-container" ).css( { left: 0, top: 0 } ); + + this._setCenterAndSize([this._center[0] + dxMap, this._center[1] + dyMap], this._pixelSize, true, true); + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._inOp = false; + this._anchor = this._current; + this._mouseDown = this._toolPan = this._panning = false; + } + }, + + _panMove: function () { + if ( ! this._options[ "pannable" ] ) { + return; + } + + var dx = this._current[0] - this._lastDrag[0], + dy = this._current[1] - this._lastDrag[1], + i = 0, + service, + translateObj; + + if (this._toolPan || dx > 3 || dx < -3 || dy > 3 || dy < -3) { + if (!this._toolPan) { + this._toolPan = true; + this._$eventTarget.css("cursor", this._options["cursors"]["pan"]); + } + + if (this._mouseDown) { + this._velocity = [dx, dy]; + } + + if (dx != 0 || dy != 0) { + this._panning = true; + this._lastDrag = this._current; + + translateObj = { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + }; + + for ( i = 0; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo[ "_serviceTypes" ][ service.type ].interactivePan( this, service, dx, dy ); + + service.serviceContainer.find( ".geo-shapes-container" ).css( translateObj ); + } + + this._$panContainer.css( translateObj ); + + //this._refreshDrawing(); + } + } + }, + + _refresh: function () { + var service, + i = 0; + + if ( this._$elem.is( ".geo-map" ) ) { + for ( ; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + + if ( !this._mouseDown && $.geo[ "_serviceTypes" ][ service.type ] !== null ) { + $.geo[ "_serviceTypes" ][ service.type ].refresh( this, service ); + service.serviceContainer.geomap( "refresh" ); + } + } + } + + if ( this._$shapesContainer ) { + this._$shapesContainer.geographics( "clear" ); + if ( this._graphicShapes.length > 0 ) { + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes ); + } + } + }, + + _setCenterAndSize: function (center, pixelSize, trigger, refresh) { + if ( ! $.isArray( center ) || center.length != 2 || typeof center[ 0 ] !== "number" || typeof center[ 1 ] !== "number" ) { + return; + } + + // the final call during any extent change + if (this._pixelSize != pixelSize) { + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + for (var i = 0; i < this._currentServices.length; i++) { + var service = this._currentServices[i]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, center, pixelSize); + } + } + + this._center = $.merge( [ ], center ); + this._options["pixelSize"] = this._pixelSize = pixelSize; + + if ( this._userGeodetic ) { + this._options["bbox"] = $.geo.proj.toGeodetic( this._getBbox() ); + this._options["center"] = $.geo.proj.toGeodetic( this._center ); + } else { + this._options["bbox"] = this._getBbox(); + this._options["center"] = $.merge( [ ], center ); + } + + this._options["zoom"] = this._getZoom(); + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords); + } + + if (trigger) { + this._trigger("bboxchange", window.event, { bbox: $.merge( [ ], this._options["bbox"] ) }); + } + + if (refresh) { + this._refresh(); + this._refreshDrawing(); + } + }, + + _toMap: function (p, center, pixelSize) { + // ignores $.geo.proj + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var isMultiPointOrLineString = $.isArray( p[ 0 ] ), + isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray( p[ 0 ][ 0 ] ), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray( p[ 0 ][ 0 ][ 0 ] ), + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + xRatio = $.geo.width(bbox, true) / width, + yRatio = $.geo.height(bbox, true) / height, + yOffset, + image = this._options[ "axisLayout" ] === "image", + result = [], + i, j, k; + + if ( !isMultiPolygon ) { + if ( !isMultiLineStringOrPolygon ) { + if ( !isMultiPointOrLineString ) { + p = [ p ]; + } + p = [ p ]; + } + p = [ p ]; + } + + for ( i = 0; i < p.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < p[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < p[ i ][ j ].length; k++ ) { + yOffset = (p[ i ][ j ][ k ][1] * yRatio); + result[ i ][ j ][ k ] = [ + bbox[ 0 ] + ( p[ i ][ j ][ k ][ 0 ] * xRatio ), + image ? bbox[ 1 ] + yOffset : bbox[ 3 ] - yOffset + ]; + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + }, + + _toPixel: function (p, center, pixelSize) { + // ignores $.geo.proj + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var isMultiPointOrLineString = $.isArray( p[ 0 ] ), + isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray( p[ 0 ][ 0 ] ), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray( p[ 0 ][ 0 ][ 0 ] ), + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + bboxWidth = $.geo.width(bbox, true), + bboxHeight = $.geo.height(bbox, true), + image = this._options[ "axisLayout" ] === "image", + xRatio = width / bboxWidth, + yRatio = height / bboxHeight, + result = [ ], + i, j, k; + + if ( !isMultiPolygon ) { + if ( !isMultiLineStringOrPolygon ) { + if ( !isMultiPointOrLineString ) { + p = [ p ]; + } + p = [ p ]; + } + p = [ p ]; + } + + for ( i = 0; i < p.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < p[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < p[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = [ + Math.round( ( p[ i ][ j ][ k ][ 0 ] - bbox[ 0 ] ) * xRatio ), + Math.round( ( image ? p[ i ][ j ][ k ][ 1 ] - bbox[ 1 ] : bbox[ 3 ] - p[ i ][ j ][ k ][ 1 ] ) * yRatio ) + ]; + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + }, + + _zoomTo: function (coord, zoom, trigger, refresh) { + zoom = zoom < 0 ? 0 : zoom; + + var pixelSize = this._getPixelSize( zoom ); + + this._setCenterAndSize( coord, pixelSize, trigger, refresh ); + }, + + _document_keydown: function (e) { + var len = this._drawCoords.length; + if (len > 0 && e.which == 27) { + if (len <= 2) { + this._resetDrawing(); + this._inOp = false; + } else { + this._drawCoords[len - 2] = $.merge( [], this._drawCoords[ len - 1 ] ); + this._drawPixels[len - 2] = $.merge( [], this._drawPixels[ len - 1 ] ); + + this._drawCoords.length--; + this._drawPixels.length--; + + this._refreshDrawing(); + } + } + }, + + _eventTarget_dblclick_zoom: function(e) { + this._trigger("dblclick", e, { type: "Point", coordinates: this.toMap(this._current) }); + if (!e.isDefaultPrevented()) { + var centerAndSize = this._getZoomCenterAndSize(this._current, 1, true ); + this._setCenterAndSize(centerAndSize.center, centerAndSize.pixelSize, true, true); + } + }, + + _eventTarget_dblclick: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + this._panFinalize(); + + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + var offset = $(e.currentTarget).offset(); + + switch (this._options["mode"]) { + case "drawLineString": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + this._drawCoords.length--; + this._trigger( "shape", e, { + type: "LineString", + coordinates: this._userGeodetic ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords + } ); + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "drawPolygon": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + var endIndex = this._drawCoords.length - 1; + if (endIndex > 2) { + this._drawCoords[endIndex] = $.merge( [], this._drawCoords[0] ); + this._trigger( "shape", e, { + type: "Polygon", + coordinates: [ this._userGeodetic ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords ] + } ); + } + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "measureLength": + case "measureArea": + this._resetDrawing(); + break; + + default: + this._eventTarget_dblclick_zoom(e); + break; + } + + this._inOp = false; + }, + + _eventTarget_touchstart: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + if ( !this._supportTouch && e.which != 1 ) { + return; + } + + this._panFinalize(); + this._mouseWheelFinish(); + + var offset = $(e.currentTarget).offset(), + touches = e.originalEvent.changedTouches; + + if ( this._supportTouch ) { + this._multiTouchAnchor = $.merge( [ ], touches ); + + this._isMultiTouch = this._multiTouchAnchor.length > 1; + + if ( this._isMultiTouch ) { + this._multiTouchCurrentBbox = [ + touches[0].pageX - offset.left, + touches[0].pageY - offset.top, + touches[1].pageX - offset.left, + touches[1].pageY - offset.top + ]; + + this._multiTouchAnchorBbox = $.merge( [ ], this._multiTouchCurrentBbox ); + + this._current = $.geo.center( this._multiTouchCurrentBbox, true ); + } else { + this._multiTouchCurrentBbox = [ + touches[0].pageX - offset.left, + touches[0].pageY - offset.top, + NaN, + NaN + ]; + + this._current = [ touches[0].pageX - offset.left, touches[0].pageY - offset.top ]; + } + } else { + this._current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + var downDate = $.now(); + if (downDate - this._downDate < 750) { + if (this._isTap) { + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance > 8) { + this._isTap = false; + } else { + this._current = $.merge( [ ], this._anchor ); + } + } + + if (this._isDbltap) { + this._isDbltap = false; + } else { + this._isDbltap = this._isTap; + } + } else { + this._isDbltap = false; + } + this._isTap = true; + this._downDate = downDate; + } + + this._mouseDown = true; + this._anchor = $.merge( [ ], this._current ); + + if (!this._inOp && e.shiftKey) { + this._shiftZoom = true; + this._$eventTarget.css("cursor", this._options["cursors"]["zoom"]); + } else if ( !this._isMultiTouch && this._options[ "pannable" ] ) { + this._inOp = true; + + switch (this._options["mode"]) { + case "zoom": + break; + + default: + this._lastDrag = this._current; + + if (e.currentTarget.setCapture) { + e.currentTarget.setCapture(); + } + + break; + } + } + + e.preventDefault(); + return false; + }, + + _dragTarget_touchmove: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + var offset = this._$eventTarget.offset(), + drawCoordsLen = this._drawCoords.length, + touches = e.originalEvent.changedTouches, + current, + service, + i = 0; + + if ( this._supportTouch ) { + if ( !this._isMultiTouch && touches[ 0 ].identifier !== this._multiTouchAnchor[ 0 ].identifier ) { + // switch to multitouch + this._mouseDown = false; + this._dragTarget_touchstop( e ); + + this._isMultiTouch = true; + + this._multiTouchAnchor.push( touches[ 0 ] ); + + this._multiTouchCurrentBbox = [ + this._multiTouchCurrentBbox[ 0 ], + this._multiTouchCurrentBbox[ 1 ], + this._multiTouchAnchor[1].pageX - offset.left, + this._multiTouchAnchor[1].pageY - offset.top + ]; + + this._multiTouchAnchorBbox = $.merge( [ ], this._multiTouchCurrentBbox ); + + this._mouseDown = true; + this._anchor = this._current = $.geo.center( this._multiTouchCurrentBbox, true ); + + return false; + } + + if ( this._isMultiTouch ) { + for ( ; i < touches.length; i++ ) { + if ( touches[ i ].identifier === this._multiTouchAnchor[ 0 ].identifier ) { + this._multiTouchCurrentBbox[ 0 ] = touches[ i ].pageX - offset.left; + this._multiTouchCurrentBbox[ 1 ] = touches[ i ].pageY - offset.top; + } else if ( touches[ i ].identifier === this._multiTouchAnchor[ 1 ].identifier ) { + this._multiTouchCurrentBbox[ 2 ] = touches[ i ].pageX - offset.left; + this._multiTouchCurrentBbox[ 3 ] = touches[ i ].pageY - offset.top; + } + } + + current = $.geo.center( this._multiTouchCurrentBbox, true ); + + var currentWidth = this._multiTouchCurrentBbox[ 2 ] - this._multiTouchCurrentBbox[ 0 ], + anchorWidth = this._multiTouchAnchorBbox[ 2 ] - this._multiTouchAnchorBbox[ 0 ], + ratioWidth = currentWidth / anchorWidth; + + this._wheelLevel = Math.abs( Math.floor( ( 1 - ratioWidth ) * 10 ) ); + if ( Math.abs( currentWidth ) < Math.abs( anchorWidth ) ) { + this._wheelLevel = - this._wheelLevel; + } + + var pinchCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, false ); + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + + for ( i = 0; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo[ "_serviceTypes" ][ service.type ].interactiveScale( this, service, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize ); + } + + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize); + } + + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + current = $.geo.center( this._multiTouchCurrentBbox, true ); + } else { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (current[0] === this._lastMove[0] && current[1] === this._lastMove[1]) { + if ( this._inOp ) { + e.preventDefault(); + return false; + } + } + + if ( _ieVersion == 7 ) { + this._isDbltap = this._isTap = false; + } + + if (this._mouseDown) { + this._current = current; + this._moveDate = $.now(); + } + + if ( this._isMultiTouch ) { + e.preventDefault( ); + this._isDbltap = this._isTap = false; + return false; + } + + var mode = this._shiftZoom ? "zoom" : this._options["mode"]; + + switch (mode) { + case "zoom": + if ( this._mouseDown ) { + this._$drawContainer.geographics( "clear" ); + this._$drawContainer.geographics( "drawBbox", [ + this._anchor[ 0 ], + this._anchor[ 1 ], + current[ 0 ], + current[ 1 ] + ] ); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + case "drawLineString": + case "drawPolygon": + case "measureLength": + case "measureArea": + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + if (drawCoordsLen > 0) { + this._drawCoords[drawCoordsLen - 1] = this._toMap(current); + this._drawPixels[drawCoordsLen - 1] = current; + + this._refreshDrawing(); + } + + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + default: + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + } + + this._lastMove = current; + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _dragTarget_touchstop: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + if (!this._mouseDown && _ieVersion == 7) { + // ie7 doesn't appear to trigger dblclick on this._$eventTarget, + // we fake regular click here to cause soft dblclick + this._eventTarget_touchstart(e); + } + + var mouseWasDown = this._mouseDown, + wasToolPan = this._toolPan, + offset = this._$eventTarget.offset(), + mode = this._shiftZoom ? "zoom" : this._options["mode"], + current, i, clickDate, + dx, dy; + + if (this._supportTouch) { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + if (this._isTap) { + var dx = current[0] - this._anchor[0], + dy = current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance <= 8) { + current = $.merge( [ ], this._anchor ); + } + } + } + + dx = current[0] - this._anchor[0]; + dy = current[1] - this._anchor[1]; + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._shiftZoom = this._mouseDown = this._toolPan = false; + + if ( this._isMultiTouch ) { + e.preventDefault( ); + this._isMultiTouch = false; + + var pinchCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, false ); + + this._setCenterAndSize(pinchCenterAndSize.center, pinchCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + + return false; + } + + if (document.releaseCapture) { + document.releaseCapture(); + } + + if (mouseWasDown) { + clickDate = $.now(); + this._current = current; + + switch (mode) { + case "zoom": + if ( dx > 0 || dy > 0 ) { + var minSize = this._pixelSize * 6, + bboxCoords = this._toMap( [ [ + Math.min( this._anchor[ 0 ], current[ 0 ] ), + Math.max( this._anchor[ 1 ], current[ 1 ] ) + ], [ + Math.max( this._anchor[ 0 ], current[ 0 ] ), + Math.min( this._anchor[ 1 ], current[ 1 ] ) + ] + ] ), + bbox = [ + bboxCoords[0][0], + bboxCoords[0][1], + bboxCoords[1][0], + bboxCoords[1][1] + ]; + + if ( ( bbox[2] - bbox[0] ) < minSize && ( bbox[3] - bbox[1] ) < minSize ) { + bbox = $.geo.scaleBy( this._getBbox( $.geo.center( bbox, true ) ), .5, true ); + } + + this._setBbox(bbox, true, true); + } + + this._resetDrawing(); + break; + + case "drawPoint": + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + if (wasToolPan) { + this._panFinalize(); + } else { + if (clickDate - this._clickDate > 100) { + var geomap = this; + this._drawTimeout = setTimeout(function () { + if (geomap._drawTimeout) { + geomap._trigger("shape", e, { type: "Point", coordinates: geomap.toMap(current) }); + geomap._inOp = false; + geomap._drawTimeout = null; + } + }, 250); + } + } + break; + + case "drawLineString": + case "drawPolygon": + case "measureLength": + case "measureArea": + if (wasToolPan) { + this._panFinalize(); + } else { + i = (this._drawCoords.length == 0 ? 0 : this._drawCoords.length - 1); + + this._drawCoords[i] = this._toMap(current); + this._drawPixels[i] = current; + + if (i < 2 || !(this._drawCoords[i][0] == this._drawCoords[i-1][0] && + this._drawCoords[i][1] == this._drawCoords[i-1][1])) { + this._drawCoords[i + 1] = this._toMap(current); + this._drawPixels[i + 1] = current; + } + + this._refreshDrawing(); + } + break; + + default: + if (wasToolPan) { + this._panEnd(); + } else { + if (clickDate - this._clickDate > 100) { + this._trigger("click", e, { type: "Point", coordinates: this.toMap(current) }); + this._inOp = false; + } + } + break; + } + + this._clickDate = clickDate; + + if (this._softDblClick && this._isDbltap) { + this._isDbltap = this._isTap = false; + this._$eventTarget.trigger("dblclick", e); + } + } + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _eventTarget_mousewheel: function (e, delta) { + if ( this._options[ "mode" ] === "static" || this._options[ "scroll" ] === "off" ) { + return; + } + + e.preventDefault(); + + this._panFinalize(); + + if ( this._mouseDown ) { + return false; + } + + if (delta != 0) { + if (this._wheelTimeout) { + window.clearTimeout(this._wheelTimeout); + this._wheelTimeout = null; + } else { + var offset = $(e.currentTarget).offset(); + this._anchor = [e.pageX - offset.left, e.pageY - offset.top]; + } + + this._wheelLevel += delta; + + var wheelCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, this._options[ "tilingScheme" ] != null ), + service, + i = 0; + + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + + for ( ; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + var geomap = this; + this._wheelTimeout = window.setTimeout(function () { + geomap._mouseWheelFinish(); + }, 1000); + } + + return false; + } + } + ); +})(jQuery); + +(function ($, undefined) { + $.geo._serviceTypes.tiled = (function () { + return { + create: function (map, serviceContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0, + reloadTiles: false + }; + + var scHtml = '
              '; + + serviceContainer.append(scHtml); + + serviceState.serviceContainer = serviceContainer.children( ":last" ); + + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, serviceContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function ( map, service, dx, dy ) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState ) { + this._cancelUnloaded( map, service ); + + serviceState.serviceContainer.children( ).css( "-moz-transition", "").css( { + webkitTransition: "", + transition: "", + left: function ( index, value ) { + return parseInt( value ) + dx; + }, + top: function ( index, value ) { + return parseInt( value ) + dy; + } + }); + + if ( service && service.style.visibility === "visible" ) { + var pixelSize = map._pixelSize, + + serviceObj = this, + serviceContainer = serviceState.serviceContainer, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + + /* same as refresh 1 */ + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + image = map.options[ "axisLayout" ] === "image", + ySign = image ? +1 : -1, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + /* end same as refresh 1 */ + + halfWidth = mapWidth / 2 * pixelSize, + halfHeight = mapHeight / 2 * pixelSize, + + currentPosition = scaleContainer.position(), + scaleOriginParts = scaleContainer.data("scaleOrigin").split(","), + totalDx = parseInt(scaleOriginParts[0]) - currentPosition.left, + totalDy = parseInt(scaleOriginParts[1]) - currentPosition.top, + + mapCenterOriginal = map._getCenter(), + mapCenter = [ + mapCenterOriginal[0] + totalDx * pixelSize, + mapCenterOriginal[1] + ySign * totalDy * pixelSize + ], + + /* same as refresh 2 */ + tileX = Math.floor(((mapCenter[0] - halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.max( Math.floor(( image ? (mapCenter[1] - halfHeight) - tilingScheme.origin[1] : tilingScheme.origin[1] - (mapCenter[1] + halfHeight)) / (pixelSize * tileHeight)), 0 ), + tileX2 = Math.ceil(((mapCenter[0] + halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil(( image ? (mapCenter[1] + halfHeight) - tilingScheme.origin[1] : tilingScheme.origin[1] - (mapCenter[1] - halfHeight)) / (pixelSize * tileHeight)), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] + ySign * bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMinOrMaxY = tilingScheme.origin[1] + ySign * (fullYAtScale * tileHeight) * pixelSize, + /* end same as refresh 2 */ + + serviceLeft = Math.round((fullXMinX - (mapCenterOriginal[0] - halfWidth)) / pixelSize), + serviceTop = Math.round(( image ? fullYMinOrMaxY - (mapCenterOriginal[1] - halfHeight) : (mapCenterOriginal[1] + halfHeight) - fullYMinOrMaxY ) / pixelSize), + + opacity = service.style.opacity, + + x, y; + + for ( x = tileX; x < tileX2; x++ ) { + for ( y = tileY; y < tileY2; y++ ) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ( $img.size( ) === 0 ) { + /* same as refresh 3 */ + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] + ySign * (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] + ySign * ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + urlProp = ( service.hasOwnProperty("src") ? "src" : "getUrl" ), + urlArgs = { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + /* end same as refresh 3 */ + + serviceState.loadCount++; + //this._map._requestQueued(); + + if ( serviceState.reloadTiles && $img.size() > 0 ) { + $img.attr( "src", imageUrl ); + } else { + /* same as refresh 4 */ + var imgMarkup = ""; + + scaleContainer.append( imgMarkup ); + $img = scaleContainer.children(":last"); + } + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + + /* end same as refresh 4 */ + } + } + } + } + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState && service && service.style.visibility === "visible" ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight; + + + serviceContainer.children( ).each( function ( i ) { + var $scaleContainer = $(this), + scaleRatio = $scaleContainer.attr("data-pixelSize") / pixelSize, + transitionCss = ""; //"width .25s ease-in, height .25s ease-in, left .25s ease-in, top .25s ease-in"; + + scaleRatio = Math.round(scaleRatio * 1000) / 1000; + + + var scaleOriginParts = $scaleContainer.data("scaleOrigin").split(","), + oldMapCoord = map._toMap([scaleOriginParts[0], scaleOriginParts[1]]), + newPixelPoint = map._toPixel(oldMapCoord, center, pixelSize); + + $scaleContainer.css( "-moz-transition", transitionCss ).css( { + webkitTransition: transitionCss, + transition: transitionCss, + left: Math.round(newPixelPoint[0]) + "px", + top: Math.round(newPixelPoint[1]) + "px", + width: tileWidth * scaleRatio, + height: tileHeight * scaleRatio + } ); + + if ( $("body")[0].filters !== undefined ) { + $scaleContainer.children().each( function ( i ) { + $( this ).css( "filter", "progid:DXImageTransform.Microsoft.Matrix(FilterType=bilinear,M11=" + scaleRatio + ",M22=" + scaleRatio + ",sizingmethod='auto expand')" ); + } ); + } + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + this._cancelUnloaded(map, service); + + if ( serviceState && service && service.style.visibility === "visible" && !( serviceState.serviceContainer.is( ":hidden" ) ) ) { + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceObj = this, + $serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + image = map.options[ "axisLayout" ] === "image", + ySign = image ? +1 : -1, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + + tileX = Math.floor((bbox[0] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.max( Math.floor( ( image ? bbox[1] - tilingScheme.origin[1] : tilingScheme.origin[1] - bbox[ 3 ] ) / (pixelSize * tileHeight) ), 0 ), + tileX2 = Math.ceil((bbox[2] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil( ( image ? bbox[3] - tilingScheme.origin[1] : tilingScheme.origin[1] - bbox[ 1 ] ) / (pixelSize * tileHeight) ), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] + ySign * bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMinOrMaxY = tilingScheme.origin[1] + ySign * (fullYAtScale * tileHeight) * pixelSize, + + serviceLeft = Math.round((fullXMinX - bbox[0]) / pixelSize), + serviceTop = Math.round( ( image ? fullYMinOrMaxY - bbox[1] : bbox[3] - fullYMinOrMaxY ) / pixelSize), + + scaleContainers = $serviceContainer.children().show(), + scaleContainer = scaleContainers.filter("[data-pixelSize='" + pixelSize + "']").appendTo($serviceContainer), + + opacity = service.style.opacity, + + x, y; + + if (serviceState.reloadTiles) { + scaleContainers.find("img").attr("data-dirty", "true"); + } + + if (!scaleContainer.size()) { + $serviceContainer.append("
              "); + scaleContainer = $serviceContainer.children(":last").data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + } else { + scaleContainer.css({ + left: (serviceLeft % tileWidth) + "px", + top: (serviceTop % tileHeight) + "px" + }).data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + + scaleContainer.children().each(function (i) { + var + $img = $(this), + tile = $img.attr("data-tile").split(","); + + $img.css({ + left: Math.round(((parseInt(tile[0]) - fullXAtScale) * 100) + (serviceLeft - (serviceLeft % tileWidth)) / tileWidth * 100) + "%", + top: Math.round(((parseInt(tile[1]) - fullYAtScale) * 100) + (serviceTop - (serviceTop % tileHeight)) / tileHeight * 100) + "%" + }); + + if (opacity < 1) { + $img.fadeTo(0, opacity); + } + }); + } + + for (x = tileX; x < tileX2; x++) { + for (y = tileY; y < tileY2; y++) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ($img.size() === 0 || serviceState.reloadTiles) { + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] + ySign * (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] + ySign * ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + urlProp = ( service.hasOwnProperty( "src" ) ? "src" : "getUrl" ), + urlArgs = { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + + serviceState.loadCount++; + //this._map._requestQueued(); + + if (serviceState.reloadTiles && $img.size() > 0) { + $img.attr("src", imageUrl); + } else { + var imgMarkup = ""; + + scaleContainer.append(imgMarkup); + $img = scaleContainer.children(":last"); + } + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, $serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, $serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + } + } + } + + scaleContainers.find("[data-dirty]").remove(); + serviceState.reloadTiles = false; + } + }, + + resize: function (map, service) { + }, + + opacity: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find( "img" ).stop( true ).fadeTo( "fast", service.style.opacity ); + }, + + toggle: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.css( "display", service.style.visibility === "visible" ? "block" : "none" ); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + }, + + _loadImage: function ( $img, url, pixelSize, serviceState, serviceContainer, opacity ) { + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", url); + } + }; + })(); +})(jQuery); +(function ($, undefined) { + $.geo._serviceTypes.shingled = (function () { + return { + create: function (map, serviceContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0 + }; + + var scHtml = '
              '; + + serviceContainer.append(scHtml); + + serviceState.serviceContainer = serviceContainer.children(":last"); + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, serviceContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function (map, service, dx, dy) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + pixelSize = map._pixelSize, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + panContainer = scaleContainer.children("div"); + + if ( !panContainer.length ) { + scaleContainer.children("img").wrap('
              '); + panContainer = scaleContainer.children("div"); + } + + panContainer.css( { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + } ); + + // until pan/zoom rewrite, remove all containers not in this scale + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight]; + + serviceContainer.children().each(function (i) { + var $scaleContainer = $(this), + scalePixelSize = $scaleContainer.attr("data-pixelSize"), + ratio = scalePixelSize / pixelSize; + + $scaleContainer.css( { + width: mapWidth * ratio, + height: mapHeight * ratio } ).children("img").each(function (i) { + var $img = $(this), + imgCenter = $img.data("center"), + x = (Math.round((imgCenter[0] - center[0]) / scalePixelSize) - halfWidth) * ratio, + y = (Math.round((center[1] - imgCenter[1]) / scalePixelSize) - halfHeight) * ratio; + + $img.css({ left: x + "px", top: y + "px" }); + }); + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + this._cancelUnloaded(map, service); + + if ( serviceState && service && service.style.visibility === "visible" && !( serviceState.serviceContainer.is( ":hidden" ) ) ) { + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceObj = this, + serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children('[data-pixelSize="' + pixelSize + '"]'), + + opacity = service.style.opacity, + + $img; + + if ( !scaleContainer.size() ) { + serviceContainer.append('
              '); + scaleContainer = serviceContainer.children(":last"); + } + + scaleContainer.children("img").each(function (i) { + var $thisimg = $(this), + imgCenter = $thisimg.data("center"), + center = map._getCenter(), + x = Math.round((imgCenter[0] - center[0]) / pixelSize) - halfWidth, + y = Math.round((center[1] - imgCenter[1]) / pixelSize) - halfHeight; + + $thisimg.css({ left: x + "px", top: y + "px" }); + }); + + if (opacity < 1) { + serviceContainer.find("img").attr("data-keepAlive", "0"); + } + + var urlProp = ( service.hasOwnProperty("src") ? "src" : "getUrl" ), + urlArgs = { + bbox: bbox, + width: mapWidth, + height: mapHeight, + zoom: map._getZoom(), + tile: null, + index: 0 + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + + serviceState.loadCount++; + //this._map._requestQueued(); + + scaleContainer.append(''); + $img = scaleContainer.children(":last").data("center", map._getCenter()); + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + + } + }, + + resize: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState && service && service.style.visibility === "visible" ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children(); + + scaleContainer.attr("data-pixelSize", "0"); + scaleContainer.css({ + left: halfWidth + 'px', + top: halfHeight + 'px' + }); + } + }, + + opacity: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find( "img" ).stop( true ).fadeTo( "fast", service.style.opacity ); + }, + + toggle: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + serviceState.serviceContainer.css("display", service.style.visibility === "visible" ? "block" : "none"); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + }, + + _loadImage: function ( $img, url, pixelSize, serviceState, serviceContainer, opacity ) { + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(':not([data-pixelSize="' + pixelSize + '"])').remove(); + + var panContainer = serviceContainer.find('[data-pixelSize="' + pixelSize + '"]>div'); + if (panContainer.size() > 0) { + var panContainerPos = panContainer.position(); + + panContainer.children("img").each(function (i) { + var $thisimg = $(this), + x = panContainerPos.left + parseInt($thisimg.css("left")), + y = panContainerPos.top + parseInt($thisimg.css("top")); + + $thisimg.css({ left: x + "px", top: y + "px" }); + }).unwrap(); + + panContainer.remove(); + } + + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", url); + } + } + })(); +})(jQuery); +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ + +(function($) { + +var types = ['DOMMouseScroll', 'mousewheel']; + +if ($.event.fixHooks) { + for ( var i=types.length; i; ) { + $.event.fixHooks[ types[--i] ] = $.event.mouseHooks; + } +} + +$.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i=types.length; i; ) { + this.addEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i=types.length; i; ) { + this.removeEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } +}; + +$.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } +}); + + +function handler(event) { + var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; } + if ( orgEvent.detail ) { delta = -orgEvent.detail/3; } + + // New school multidimensional scroll (touchpads) deltas + deltaY = delta; + + // Gecko + if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) { + deltaY = 0; + deltaX = -1*delta; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; } + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); +} + +})(jQuery); diff --git a/libs/js/jquery-geo-1.0a4/docs/jquery.geo-test.min.js b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-test.min.js new file mode 100755 index 0000000..8696f1e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/jquery.geo-test.min.js @@ -0,0 +1,171 @@ +document.createElement("canvas").getContext||function(){function g(){return this.context_||(this.context_=new t(this))}function q(p,h){var o=G.call(arguments,2);return function(){return p.apply(h,o.concat(G.call(arguments)))}}function r(p){p.namespaces.g_vml_||p.namespaces.add("g_vml_","urn:schemas-microsoft-com:vml","#default#VML");p.namespaces.g_o_||p.namespaces.add("g_o_","urn:schemas-microsoft-com:office:office","#default#VML");if(!p.styleSheets.ex_canvas_){p=p.createStyleSheet();p.owningElement.id= +"ex_canvas_";p.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}function b(p){var h=p.srcElement;switch(p.propertyName){case "width":h.getContext().clearRect();h.style.width=h.attributes.width.nodeValue+"px";h.firstChild.style.width=h.clientWidth+"px";break;case "height":h.getContext().clearRect();h.style.height=h.attributes.height.nodeValue+"px";h.firstChild.style.height=h.clientHeight+"px"}}function c(p){p=p.srcElement;if(p.firstChild){p.firstChild.style.width= +p.clientWidth+"px";p.firstChild.style.height=p.clientHeight+"px"}}function a(){return[[1,0,0],[0,1,0],[0,0,1]]}function d(p,h){for(var o=a(),s=0;s<3;s++)for(var x=0;x<3;x++){for(var v=0,A=0;A<3;A++)v+=p[s][A]*h[A][x];o[s][x]=v}return o}function f(p,h){h.fillStyle=p.fillStyle;h.lineCap=p.lineCap;h.lineJoin=p.lineJoin;h.lineWidth=p.lineWidth;h.miterLimit=p.miterLimit;h.shadowBlur=p.shadowBlur;h.shadowColor=p.shadowColor;h.shadowOffsetX=p.shadowOffsetX;h.shadowOffsetY=p.shadowOffsetY;h.strokeStyle=p.strokeStyle; +h.globalAlpha=p.globalAlpha;h.font=p.font;h.textAlign=p.textAlign;h.textBaseline=p.textBaseline;h.arcScaleX_=p.arcScaleX_;h.arcScaleY_=p.arcScaleY_;h.lineScale_=p.lineScale_}function e(p){var h=p.indexOf("(",3),o=p.indexOf(")",h+1);h=p.substring(h+1,o).split(",");if(h.length!=4||p.charAt(3)!="a")h[3]=1;return h}function l(p,h,o){return Math.min(o,Math.max(h,p))}function m(p,h,o){o<0&&o++;o>1&&o--;return 6*o<1?p+(h-p)*6*o:2*o<1?h:3*o<2?p+(h-p)*(2/3-o)*6:p}function n(p){if(p in R)return R[p];var h, +o=1;p=String(p);if(p.charAt(0)=="#")h=p;else if(/^rgb/.test(p)){o=e(p);h="#";for(var s,x=0;x<3;x++){s=o[x].indexOf("%")!=-1?Math.floor(parseFloat(o[x])/100*255):+o[x];h+=M[l(s,0,255)]}o=+o[3]}else if(/^hsl/.test(p)){x=o=e(p);h=parseFloat(x[0])/360%360;h<0&&h++;s=l(parseFloat(x[1])/100,0,1);x=l(parseFloat(x[2])/100,0,1);if(s==0)s=x=h=x;else{var v=x<0.5?x*(1+s):x+s-x*s,A=2*x-v;s=m(A,v,h+1/3);x=m(A,v,h);h=m(A,v,h-1/3)}h="#"+M[Math.floor(s*255)]+M[Math.floor(x*255)]+M[Math.floor(h*255)];o=o[3]}else h= +p;return R[p]={color:h,alpha:o}}function t(p){this.m_=a();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.fillStyle=this.strokeStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=H*1;this.globalAlpha=1;this.canvas=p;var h="width:"+p.clientWidth+"px;height:"+p.clientHeight+"px;overflow:hidden;position:absolute",o=p.ownerDocument.createElement("div");o.style.cssText=h;p.appendChild(o);h=o.cloneNode(false);h.style.backgroundColor="red";h.style.filter="alpha(opacity=0)"; +p.appendChild(h);this.element_=o;this.lineScale_=this.arcScaleY_=this.arcScaleX_=1}function u(p,h,o,s){p.currentPath_.push({type:"bezierCurveTo",cp1x:h.x,cp1y:h.y,cp2x:o.x,cp2y:o.y,x:s.x,y:s.y});p.currentX_=s.x;p.currentY_=s.y}function w(p,h,o){p=p.m_;return{x:H*(h*p[0][0]+o*p[1][0]+p[2][0])-C,y:H*(h*p[0][1]+o*p[1][1]+p[2][1])-C}}function B(p,h,o){if(isFinite(h[0][0])&&isFinite(h[0][1])&&isFinite(h[1][0])&&isFinite(h[1][1])&&isFinite(h[2][0])&&isFinite(h[2][1])){p.m_=h;if(o)p.lineScale_=P(J(h[0][0]* +h[1][1]-h[0][1]*h[1][0]))}}function I(p){this.code=this[p];this.message=p+": DOM Exception "+this.code}var F=Math,y=F.round,K=F.sin,D=F.cos,J=F.abs,P=F.sqrt,H=10,C=H/2;navigator.userAgent.match(/MSIE ([\d.]+)?/);var G=Array.prototype.slice;r(document);F={init:function(p){p=p||document;p.createElement("canvas");p.attachEvent("onreadystatechange",q(this.init_,this,p))},init_:function(p){p=p.getElementsByTagName("canvas");for(var h=0;hs.x)s.x=v.x;if(o.y==null||v.ys.y)s.y=v.y}}h.push(' ">');if(p){p=n(this.fillStyle);h.push('')}else{o=n(this.strokeStyle);p=o.color;o=o.alpha*this.globalAlpha;s=this.lineScale_*this.lineWidth;if(s<1)o*=s;h.push("')}h.push("");this.element_.insertAdjacentHTML("beforeEnd",h.join(""))};z.fill=function(){this.stroke(true)};z.closePath=function(){this.currentPath_.push({type:"close"})};z.save= +function(){var p={};f(this,p);this.aStack_.push(p);this.mStack_.push(this.m_);this.m_=d(a(),this.m_)};z.restore=function(){if(this.aStack_.length){f(this.aStack_.pop(),this);this.m_=this.mStack_.pop()}};z.translate=function(p,h){B(this,d([[1,0,0],[0,1,0],[p,h,1]],this.m_),false)};z.scale=function(p,h){this.arcScaleX_*=p;this.arcScaleY_*=h;B(this,d([[p,0,0],[0,h,0],[0,0,1]],this.m_),true)};z=I.prototype=Error();z.INDEX_SIZE_ERR=1;z.DOMSTRING_SIZE_ERR=2;z.HIERARCHY_REQUEST_ERR=3;z.WRONG_DOCUMENT_ERR= +4;z.INVALID_CHARACTER_ERR=5;z.NO_DATA_ALLOWED_ERR=6;z.NO_MODIFICATION_ALLOWED_ERR=7;z.NOT_FOUND_ERR=8;z.NOT_SUPPORTED_ERR=9;z.INUSE_ATTRIBUTE_ERR=10;z.INVALID_STATE_ERR=11;z.SYNTAX_ERR=12;z.INVALID_MODIFICATION_ERR=13;z.NAMESPACE_ERR=14;z.INVALID_ACCESS_ERR=15;z.VALIDATION_ERR=16;z.TYPE_MISMATCH_ERR=17;G_vmlCanvasManager=F;CanvasRenderingContext2D=t;DOMException=I}(); +$.widget||function(g,q){if(g.cleanData){var r=g.cleanData;g.cleanData=function(c){for(var a=0,d;(d=c[a])!=null;a++)try{g(d).triggerHandler("remove")}catch(f){}r(c)}}else{var b=g.fn.remove;g.fn.remove=function(c,a){return this.each(function(){if(!a)if(!c||g.filter(c,[this]).length)g("*",this).add([this]).each(function(){try{g(this).triggerHandler("remove")}catch(d){}});return b.call(g(this),c,a)})}}g.widget=function(c,a,d){var f=c.split(".")[0],e;c=c.split(".")[1];e=f+"-"+c;if(!d){d=a;a=g.Widget}g.expr[":"][e]= +function(l){return!!g.data(l,c)};g[f]=g[f]||{};g[f][c]=function(l,m){arguments.length&&this._createWidget(l,m)};a=new a;a.options=g.extend(true,{},a.options);g[f][c].prototype=g.extend(true,a,{namespace:f,widgetName:c,widgetEventPrefix:g[f][c].prototype.widgetEventPrefix||c,widgetBaseClass:e},d);g.widget.bridge(c,g[f][c])};g.widget.bridge=function(c,a){g.fn[c]=function(d){var f=typeof d==="string",e=Array.prototype.slice.call(arguments,1),l=this;d=!f&&e.length?g.extend.apply(null,[true,d].concat(e)): +d;if(f&&d.charAt(0)==="_")return l;f?this.each(function(){var m=g.data(this,c),n=m&&g.isFunction(m[d])?m[d].apply(m,e):m;if(n!==m&&n!==q){l=n;return false}}):this.each(function(){var m=g.data(this,c);m?m.option(d||{})._init():g.data(this,c,new a(d,this))});return l}};g.Widget=function(c,a){arguments.length&&this._createWidget(c,a)};g.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(c,a){g.data(a,this.widgetName,this);this.element=g(a);this.options= +g.extend(true,{},this.options,this._getCreateOptions(),c);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return g.metadata&&g.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+ +"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(c,a){var d=c;if(arguments.length===0)return g.extend({},this.options);if(typeof c==="string"){if(a===q)return this.options[c];d={};d[c]=a}this._setOptions(d);return this},_setOptions:function(c){var a=this;g.each(c,function(d,f){a._setOption(d,f)});return this},_setOption:function(c,a){this.options[c]=a;if(c==="disabled")this.widget()[a?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled", +a);return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(c,a,d){var f,e=this.options[c];d=d||{};a=g.Event(a);a.type=(c===this.widgetEventPrefix?c:this.widgetEventPrefix+c).toLowerCase();a.target=this.element[0];if(c=a.originalEvent)for(f in c)f in a||(a[f]=c[f]);this.element.trigger(a,d);return!(g.isFunction(e)&&e.call(this.element[0],a,d)===false||a.isDefaultPrevented())}}}(jQuery); +window.JsViews||window.jQuery&&jQuery.views||function(g,q){function r(h,o,s,x,v){var A=(s=s||{viewsCount:0,ctx:n.helpers})&&s.ctx;return{jsViews:"v1.0pre",path:o||"",itemNumber:++s.viewsCount||1,viewsCount:0,tmpl:v,data:x||s.data||{},ctx:h&&h===A?A:A?F(F({},A),h):h||{},parent:s}}function b(h,o,s,x,v,A,E){return s?(x?v?"$view."+v:s:"$data."+s)+(A||""):E||o||""}function c(h){function o(O){O-=x;O&&E.push(h.substr(x,O).replace(C,"\\n"))}var s,x=0,v=[],A=[],E=A,N=[,,A];h=h.replace(M,"\\$1");h.replace(w, +function(O,S,Q,ga,ha,T,ia,ja,ka,ca){function la(Z,V,ma,da,na,oa,ea,fa,pa,qa){return W?(W=!ea,W?Z:'"'):X?(X=!fa,X?Z:'"'):da?V.replace(P,b)+da:na?Y?"":(aa=K,"\u0008"+V+":"):ma?(Y++,V.replace(P,b)+"("):pa?(Y--,")"):V?V.replace(P,b):oa?",":qa?Y?"":aa?(aa=y,"\u0008"):",":(W=ea,X=fa,'"')}var aa,ba="",Y=0,X=y,W=y;Q=Q||ga;o(ca);if(ha)n.allowCode&&E.push(["*",T.replace(G,"$1")]);else if(Q){if(Q==="else"){N=v.pop();E=N[2];S=K}T=T?(T+" ").replace(H,la).replace(z,function(Z,V){ba+=V+",";return""}):"";T=T.slice(0, +-1);s=[Q,ia?ja||"none":"",S&&[],"{"+ba+"_hash:'"+ba+"',_path:'"+T+"'}",T];if(S){v.push(N);N=s}E.push(s)}else if(ka)N=v.pop();x=ca+O.length;if(!N)throw"Expected block tag";E=N[2]});o(h.length);return a(A)}function a(h){var o,s,x=[],v=h.length,A="try{var views="+(D?"jQuery":"JsViews")+'.views,tag=views.renderTag,enc=views.encode,html=views.encoders.html,$ctx=$view && $view.ctx,result=""+\n\n';for(s=0;s)[^>]*$|\{\{\! /,P=/^(true|false|null|[\d\.]+)|(\w+|\$(view|data|ctx|(\w+)))([\w\.]*)|((['"])(?:\\\1|.)*\7)$/g,H=/(\$?[\w\.\[\]]+)(?:(\()|\s*(===|!==|==|!=|<|>|<=|>=)\s*|\s*(\=)\s*)?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g,C=/\r?\n/g,G=/\\(['"])/g,M=/\\?(['"])/g,z=/\x08([^\x08]+)\x08/g,L=0,R={"&":"&","<":"<",">":">"},U=/[\x00"&'<>]/g,p=Array.prototype.slice;if(D){e=D;e.fn.extend({render:function(h,o,s,x){return u(h,this[0],o,s,x)},template:function(h,o){return e.template(h, +this[0],o)}})}else{l=g.$;g.JsViews=m=g.$=e={extend:function(h,o){for(var s in o)h[s]=o[s];return h},isArray:Array.isArray||function(h){return Object.prototype.toString.call(h)==="[object Array]"},noConflict:function(){if(g.$===m)g.$=l;return m}}}F=e.extend;F(e,{views:n={templates:{},tags:{"if":function(){var h=this._view;h.onElse=function(o,s){for(var x=0,v=s.length;v&&!s[x++];)if(x===v)return"";h.onElse=q;return u(h.data,o.tmpl,h.ctx,h)};return h.onElse(this,arguments)},"else":function(){var h=this._view; +return h.onElse?h.onElse(this,arguments):""},each:function(){var h,o="",s=arguments,x=s.length,v=this.tmpl,A=this._view;for(h=0;hError: "+(h.message||h)+". ":'""'},setDelimiters:function(h,o){var s=o.charAt(0), +x=o.charAt(1);h="\\"+h.charAt(0)+"\\"+h.charAt(1);o="\\"+s+"\\"+x;w=h+"(?:(?:(\\#)?(\\w+(?=[!\\s\\"+s+"]))|(?:(\\=)|(\\*)))\\s*((?:[^\\"+s+"]|\\"+s+"(?!\\"+x+"))*?)(!(\\w*))?|(?:\\/([\\w\\$\\.\\[\\]]+)))"+o;w=RegExp(w,"g")},registerTags:B=function(h,o){var s;if(typeof h==="object")for(s in h)B(s,h[s]);else n.tags[h]=o;return this},registerHelpers:I=function(h,o){if(typeof h==="object")for(var s in h)I(s,h[s]);else n.helpers[h]=o;return this},encode:function(h,o){return o?(t[h||"html"]||t.html)(o): +""},encoders:t={none:function(h){return h},html:function(h){return String(h).replace(U,d)}},renderTag:function(h,o,s,x,v){var A,E;A=arguments;E=n.presenters;hash=v._hash;tagFn=n.tags[h];if(!tagFn)return"";x=x&&o.tmpl.nested[x-1];v.tmpl=v.tmpl||x||q;if(E&&E[h]){E=F(F({},v.ctx),v);delete E.ctx;delete E._path;delete E.tmpl;v.ctx=E;v._ctor=h+(hash?"="+hash.slice(0,-1):"");v=F(F({},tagFn),v);tagFn=n.tags.each}v._encode=s;v._view=o;return(A=tagFn.apply(v,A.length>5?p.call(A,5):[o.data]))||(A===q?"":A.toString())}}, +render:u=function(h,o,s,x,v,A){var E,N,O,S,Q="";if(arguments.length===2&&h.jsViews){x=h;s=x.ctx;h=x.data}o=e.template(o);if(!o)return"";if(e.isArray(h)){S=new r(s,v,x,h);E=0;for(N=h.length;E"+O+" You can set the center and zoom of the map at the same time you initialize it by passing a JavaScript object of options.

              +
              $("#map").geomap({
              +  center: [ -71.037598, 42.363281 ],
              +  zoom: 10
              +});
              +

              Please note that longitude is the first value, x, even though it is commonly spoken second. This plugin does not distinguish between lon/lat and any other x/y coordinate system.

              +

              The above example will show the City of Boston. The value passed to the center property is a GeoJSON position, which is an array with an x value followed by a y value.

              +

              If you need help determining the center point values the events example can help. Pan and zoom the map to an area and click the location you want. Then copy the coordinates value displayed under the geo argument heading of the click event and paste it into you code.

              +
              +
              + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/docs/what/index.html b/libs/js/jquery-geo-1.0a4/docs/what/index.html new file mode 100755 index 0000000..01225db --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/docs/what/index.html @@ -0,0 +1,51 @@ + + + + + + + what? | jQuery Geo + + + + + + + + + + + +
              +
              +

              what?

              +
              + +
              +

              open-source

              +

              + jQuery Geo is a jQuery plugin, which means it is 100% JavaScript that ties into the popular jQuery library. It helps make interacting with various web mapping servers and tile sets such as Open Street Map, WMS and Esri ArcGIS Server as simple as possible. +

              +

              + Internally, Applied Geographics, Inc. has been developing a JavaScript mapping component over the last four years or so and are proud to give our reasearch to the open-source community. +

              +

              + Our intention is to be a simple & fast approach to a decent percentage of the spatial web's needs. +

              +

              widget

              +

              + The primary component of our geospatial plugin is a single user interface widget that pulls in tiled or dynamic map images from map servers. By default, this component targets Open Street Map tiles but can be easilly configured to use other WMS layers or cached tile sets.

              +
              +

              The map widget includes only what is required to show mapping data and handle direct user interaction with the map. The rest can be handled programmatically by the web developer and any other UI framework they choose, e.g., showing and hiding services, changing the widget's mode and hooking into an external zoom bar.

              +

              geo

              +

              Apart from the widget, jQuery Geo has useful geospatial functions in the $.geo namespace. These functions help you calculate bounding boxes, measure the distance between geometries, determine if one geometry contains another, and other functions you might find in the well-known Java Topology Suite. They are all implemented in JavaScript and are included with the rest of jQuery Geo.

              +
              +
              + + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/favicon.ico b/libs/js/jquery-geo-1.0a4/favicon.ico new file mode 100755 index 0000000..5717d04 Binary files /dev/null and b/libs/js/jquery-geo-1.0a4/favicon.ico differ diff --git a/libs/js/jquery-geo-1.0a4/grunt.js b/libs/js/jquery-geo-1.0a4/grunt.js new file mode 100755 index 0000000..a61de90 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/grunt.js @@ -0,0 +1,7 @@ +config.init( { + lint: { + files: [ "js/jquery.geo.core.js" ] + } +} ); + +task.registerTask( "default", "lint" ); diff --git a/libs/js/jquery-geo-1.0a4/index.html b/libs/js/jquery-geo-1.0a4/index.html new file mode 100755 index 0000000..f9a80ca --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/index.html @@ -0,0 +1,387 @@ + + + + + jQuery Geo + + + + + + + +
              +
              + +

              jQuery Geowrite less, map more

              +
              +
              +
              +
              + + +

              jQuery Geo - an interactive mapping plugin

              + +

              jQuery Geo, an open-source geospatial mapping project from Applied Geographics, provides a streamlined JavaScript API for a large percentage of your online mapping needs. Whether you just want to display a map on a wep page as quickly as possible or you are a more advanced GIS user, jQuery Geo can help!

              + +

              This project is considered alpha only because it does not yet fully implement the feature set of our scheduled beta release. Alpha releases are stable and should not change much as we port technology from our internal library to the open source one.

              + +

              You can check back here, follow @jQueryGeo on Twitter for release announcements. Also, head over to the lead developer's Twitter account, @ryanttb, for development info, links, or to ask questions.

              + +

              Download

              +

              Using jQuery Geo requires adding one element, including one script (apart from jQuery itself) and calling one function. The following copy-and-paste snippet will help you get started.

              +
              <div id="map" style="height: 320px;"></div>
              +<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
              +<script src="http://code.jquerygeo.com/jquery.geo-1.0a4.min.js"></script>
              +<script>$(function() { $( "#map" ).geomap( ); });</script>
              + +

              code.jquerygeo.com is on the CloudFlare Content Delivery Network (CDN) so our minified, gzipped library will get to your client as fast as possible!

              + +

              Alpha 4 released!

              + + +

              It's been a long three months but we're very happy to announce the release of jQuery Geo 1.0a4! Here are some highlights and details:

              + +

              At the service level

              + +

              In alpha 3, you could append and interact with shapes on the map. In alpha 4, this is extended to services! Service-level shapes have their own shapeStyle apart from the map's and hide when their service is hidden.

              + +

              More modes!

              + +

              There are new modes to let you measure distance & area, and a static mode for when you want to display a map but not let users interact with it. Apart from the three new built-in modes, you can also create custom modes to help organize your app.

              + +

              What's that? CSS labels!

              + +

              You can now give any shape a label when you append it. You can style the label from your regular style sheet using the .geo-label class which opens labeling up to all the design power of CSS3. There's even more potential if you put a class or id on your map service because you can target labels on different services using CSS rules. Also, labels can be any HTML which opens them up to new features in HTML5!

              + +

              More service src options

              + +

              The old getUrl property has been renamed to src (see Breaking below) and you can now set it to a string template. jQuery Geo will stick your tile row, column, zoom, or image bbox in for you. Services defined as a string are a little easier on the eyes than a function and can be stored as JSON data.

              + +

              You can still use a function and the function can now return a jQuery Promise to delay loading of the map image or tile. Want to calculate a Mandlebrot image in a JavaScript web worker without blocking user interaction? Return a new jQuery.Deferred() and call resolve when you're done!

              + +

              Mobile

              + +

              This version has better mobile support including pinch zoom on iOS and Android 3+ as well as other bug fixes for mobile devices.

              + +

              Don't worry about $.geo.proj so much

              + +

              You can now send either geodetic (lon, lat) or projected (x, y) coordinates to any library function and it will return accordingly if you stay on the default web mercator projection. You should still set it to null or implement the (to|from)GeodeticPos functions if you need to change projections.

              + +

              Breaking

              + +

              There is one deprecation (a service object property will be renamed in beta) and one minor breaking change.

              + +

              To align this API with HTML itself, the getUrl property on service objects will be renamed to src. Using either src or getUrl will work for this alpha release but getUrl will be removed for beta. Please update any map services to use the new src property when you're defining them.

              + +

              Also on service objects, the initial opacity and visibility are in a property of the service object itself named style. Your old services will still function but ones you may expect to be hidden initially will be visible until you update the service object.

              + +

              To exemplify both of these changes, instead of:

              {
              +  type: "tiled",
              +  getUrl: function( view ) { return ""; },
              +  visibility: "hidden"
              +}
              you should write:
              {
              +  type: "tiled",
              +  src: function( view ) { return ""; },
              +  style: { visibility: "hidden" }
              +}

              + +

              Everything else

              + +

              With over 60 commits, there are more features and bug fixes to write about. If you dare to click the link below (or read the README file on the project's GitHub page) you can get a better idea of what went into this build. This is the last alpha release (!) and the path to beta will add unit testing, a better build process, and smaller, more refined source code. Thanks for all your support!

              + + Show changelog + + + +

              Alpha 3 released!

              + + +

              jQuery Geo 1.0 Alpha 3 is mostly about sketching!

              +
                +
              • new modes: drawPoint, drawLineString, and drawPolygon allow users to draw on your map
              • +
              • new event: shape triggers anytime a user draws a feature
              • +
              • new style option: drawStyle lets you change how the shapes look while being drawn
              • +
              +

              It's also about geometry functions!

              +
                +
              • $.geo's center, height/width, expandBy, scaleBy & reaspect functions operate on bounding boxes
              • +
              • $.geo's bbox, distance, contains & centroid functions operate on geometries
              • +
              +

              Many examples have more class and now link to jsFiddles to further explain what's going on!

              +

              And a tiny bit about size

              +

              jQuery Geo is now hosted on a CDN with gzip enabled bringing the entire library to your neighborhood at under 18k.

              +

              Breaking

              +

              There are some minor breaking changes to make the API more consistent.

              +
                +
              • The getPixelSize function is now a read-only option named pixelSize:
                $( "#map" ).geomap( "option", "pixelSize" );
              • +
              • The shapeStyle function is also now an option, e.g.:
                $( "#map" ).geomap( "option", "shapeStyle", { color: "red" } );
              • +
              • + The boolean visible property on service objects is now the visibility property found in CSS and geomap styles and can be "visible" or "hidden": +
                $( "#map" ).geomap( { services: [ { id: "roads", visibility: "hidden", ... } ] } );
                +
              • +
              + +

              Edge

              +

              The links above will always point to the latest stable release. However, you can test the most recently committed docs, code & demos by heading over to the test release.

              + Test docs & demos + +

              Thanks!

              + +
                +
              • + + +
              • + +
              • + + +
              • + +
              • + + +
              • + +
              • + + +
              • + +
              • + + +
              • +
              + + +
              +
              + + + + + + + diff --git a/libs/js/jquery-geo-1.0a4/js/excanvas.js b/libs/js/jquery-geo-1.0a4/js/excanvas.js new file mode 100755 index 0000000..f40af96 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/excanvas.js @@ -0,0 +1,1417 @@ +// Copyright 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +// Known Issues: +// +// * Patterns only support repeat. +// * Radial gradient are not implemented. The VML version of these look very +// different from the canvas one. +// * Clipping paths are not implemented. +// * Coordsize. The width and height attribute have higher priority than the +// width and height style values which isn't correct. +// * Painting mode isn't implemented. +// * Canvas width/height should is using content-box by default. IE in +// Quirks mode will draw the canvas using border-box. Either change your +// doctype to HTML5 +// (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype) +// or use Box Sizing Behavior from WebFX +// (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html) +// * Non uniform scaling does not correctly scale strokes. +// * Optimize. There is always room for speed improvements. + +// Only add this code if we do not already have a canvas implementation +if (!document.createElement('canvas').getContext) { + + (function () { + + // alias some functions to make (compiled) code shorter + var m = Math; + var mr = m.round; + var ms = m.sin; + var mc = m.cos; + var abs = m.abs; + var sqrt = m.sqrt; + + // this is used for sub pixel precision + var Z = 10; + var Z2 = Z / 2; + + var IE_VERSION = +navigator.userAgent.match(/MSIE ([\d.]+)?/)[1]; + + /** + * This funtion is assigned to the elements as element.getContext(). + * @this {HTMLElement} + * @return {CanvasRenderingContext2D_} + */ + function getContext() { + return this.context_ || + (this.context_ = new CanvasRenderingContext2D_(this)); + } + + var slice = Array.prototype.slice; + + /** + * Binds a function to an object. The returned function will always use the + * passed in {@code obj} as {@code this}. + * + * Example: + * + * g = bind(f, obj, a, b) + * g(c, d) // will do f.call(obj, a, b, c, d) + * + * @param {Function} f The function to bind the object to + * @param {Object} obj The object that should act as this when the function + * is called + * @param {*} var_args Rest arguments that will be used as the initial + * arguments when the function is called + * @return {Function} A new function that has bound this + */ + function bind(f, obj, var_args) { + var a = slice.call(arguments, 2); + return function () { + return f.apply(obj, a.concat(slice.call(arguments))); + }; + } + + function encodeHtmlAttribute(s) { + return String(s).replace(/&/g, '&').replace(/"/g, '"'); + } + + function addNamespace(doc, prefix, urn) { + if (!doc.namespaces[prefix]) { + doc.namespaces.add(prefix, urn, '#default#VML'); + } + } + + function addNamespacesAndStylesheet(doc) { + addNamespace(doc, 'g_vml_', 'urn:schemas-microsoft-com:vml'); + addNamespace(doc, 'g_o_', 'urn:schemas-microsoft-com:office:office'); + + // Setup default CSS. Only add one style sheet per document + if (!doc.styleSheets['ex_canvas_']) { + var ss = doc.createStyleSheet(); + ss.owningElement.id = 'ex_canvas_'; + ss.cssText = 'canvas{display:inline-block;overflow:hidden;' + + // default size is 300x150 in Gecko and Opera + 'text-align:left;width:300px;height:150px}'; + } + } + + // Add namespaces and stylesheet at startup. + addNamespacesAndStylesheet(document); + + var G_vmlCanvasManager_ = { + init: function (opt_doc) { + var doc = opt_doc || document; + // Create a dummy element so that IE will allow canvas elements to be + // recognized. + doc.createElement('canvas'); + doc.attachEvent('onreadystatechange', bind(this.init_, this, doc)); + }, + + init_: function (doc) { + // find all canvas elements + var els = doc.getElementsByTagName('canvas'); + for (var i = 0; i < els.length; i++) { + this.initElement(els[i]); + } + }, + + /** + * Public initializes a canvas element so that it can be used as canvas + * element from now on. This is called automatically before the page is + * loaded but if you are creating elements using createElement you need to + * make sure this is called on the element. + * @param {HTMLElement} el The canvas element to initialize. + * @return {HTMLElement} the element that was created. + */ + initElement: function (el) { + if (!el.getContext) { + el.getContext = getContext; + + // Add namespaces and stylesheet to document of the element. + addNamespacesAndStylesheet(el.ownerDocument); + + // Remove fallback content. There is no way to hide text nodes so we + // just remove all childNodes. We could hide all elements and remove + // text nodes but who really cares about the fallback content. + el.innerHTML = ''; + + // do not use inline function because that will leak memory + el.attachEvent('onpropertychange', onPropertyChange); + el.attachEvent('onresize', onResize); + + var attrs = el.attributes; + if (attrs.width && attrs.width.specified) { + // TODO: use runtimeStyle and coordsize + // el.getContext().setWidth_(attrs.width.nodeValue); + el.style.width = attrs.width.nodeValue + 'px'; + } else { + el.width = el.clientWidth; + } + if (attrs.height && attrs.height.specified) { + // TODO: use runtimeStyle and coordsize + // el.getContext().setHeight_(attrs.height.nodeValue); + el.style.height = attrs.height.nodeValue + 'px'; + } else { + el.height = el.clientHeight; + } + //el.getContext().setCoordsize_() + } + return el; + } + }; + + function onPropertyChange(e) { + var el = e.srcElement; + + switch (e.propertyName) { + case 'width': + el.getContext().clearRect(); + el.style.width = el.attributes.width.nodeValue + 'px'; + // In IE8 this does not trigger onresize. + el.firstChild.style.width = el.clientWidth + 'px'; + break; + case 'height': + el.getContext().clearRect(); + el.style.height = el.attributes.height.nodeValue + 'px'; + el.firstChild.style.height = el.clientHeight + 'px'; + break; + } + } + + function onResize(e) { + var el = e.srcElement; + if (el.firstChild) { + el.firstChild.style.width = el.clientWidth + 'px'; + el.firstChild.style.height = el.clientHeight + 'px'; + } + } + + G_vmlCanvasManager_.init(); + + // precompute "00" to "FF" + var decToHex = []; + for (var i = 0; i < 16; i++) { + for (var j = 0; j < 16; j++) { + decToHex[i * 16 + j] = i.toString(16) + j.toString(16); + } + } + + function createMatrixIdentity() { + return [ + [1, 0, 0], + [0, 1, 0], + [0, 0, 1] + ]; + } + + function matrixMultiply(m1, m2) { + var result = createMatrixIdentity(); + + for (var x = 0; x < 3; x++) { + for (var y = 0; y < 3; y++) { + var sum = 0; + + for (var z = 0; z < 3; z++) { + sum += m1[x][z] * m2[z][y]; + } + + result[x][y] = sum; + } + } + return result; + } + + function copyState(o1, o2) { + o2.fillStyle = o1.fillStyle; + o2.lineCap = o1.lineCap; + o2.lineJoin = o1.lineJoin; + o2.lineWidth = o1.lineWidth; + o2.miterLimit = o1.miterLimit; + o2.shadowBlur = o1.shadowBlur; + o2.shadowColor = o1.shadowColor; + o2.shadowOffsetX = o1.shadowOffsetX; + o2.shadowOffsetY = o1.shadowOffsetY; + o2.strokeStyle = o1.strokeStyle; + o2.globalAlpha = o1.globalAlpha; + o2.font = o1.font; + o2.textAlign = o1.textAlign; + o2.textBaseline = o1.textBaseline; + o2.arcScaleX_ = o1.arcScaleX_; + o2.arcScaleY_ = o1.arcScaleY_; + o2.lineScale_ = o1.lineScale_; + } + + // var colorData = { + // aliceblue: '#F0F8FF', + // antiquewhite: '#FAEBD7', + // aquamarine: '#7FFFD4', + // azure: '#F0FFFF', + // beige: '#F5F5DC', + // bisque: '#FFE4C4', + // black: '#000000', + // blanchedalmond: '#FFEBCD', + // blueviolet: '#8A2BE2', + // brown: '#A52A2A', + // burlywood: '#DEB887', + // cadetblue: '#5F9EA0', + // chartreuse: '#7FFF00', + // chocolate: '#D2691E', + // coral: '#FF7F50', + // cornflowerblue: '#6495ED', + // cornsilk: '#FFF8DC', + // crimson: '#DC143C', + // cyan: '#00FFFF', + // darkblue: '#00008B', + // darkcyan: '#008B8B', + // darkgoldenrod: '#B8860B', + // darkgray: '#A9A9A9', + // darkgreen: '#006400', + // darkgrey: '#A9A9A9', + // darkkhaki: '#BDB76B', + // darkmagenta: '#8B008B', + // darkolivegreen: '#556B2F', + // darkorange: '#FF8C00', + // darkorchid: '#9932CC', + // darkred: '#8B0000', + // darksalmon: '#E9967A', + // darkseagreen: '#8FBC8F', + // darkslateblue: '#483D8B', + // darkslategray: '#2F4F4F', + // darkslategrey: '#2F4F4F', + // darkturquoise: '#00CED1', + // darkviolet: '#9400D3', + // deeppink: '#FF1493', + // deepskyblue: '#00BFFF', + // dimgray: '#696969', + // dimgrey: '#696969', + // dodgerblue: '#1E90FF', + // firebrick: '#B22222', + // floralwhite: '#FFFAF0', + // forestgreen: '#228B22', + // gainsboro: '#DCDCDC', + // ghostwhite: '#F8F8FF', + // gold: '#FFD700', + // goldenrod: '#DAA520', + // grey: '#808080', + // greenyellow: '#ADFF2F', + // honeydew: '#F0FFF0', + // hotpink: '#FF69B4', + // indianred: '#CD5C5C', + // indigo: '#4B0082', + // ivory: '#FFFFF0', + // khaki: '#F0E68C', + // lavender: '#E6E6FA', + // lavenderblush: '#FFF0F5', + // lawngreen: '#7CFC00', + // lemonchiffon: '#FFFACD', + // lightblue: '#ADD8E6', + // lightcoral: '#F08080', + // lightcyan: '#E0FFFF', + // lightgoldenrodyellow: '#FAFAD2', + // lightgreen: '#90EE90', + // lightgrey: '#D3D3D3', + // lightpink: '#FFB6C1', + // lightsalmon: '#FFA07A', + // lightseagreen: '#20B2AA', + // lightskyblue: '#87CEFA', + // lightslategray: '#778899', + // lightslategrey: '#778899', + // lightsteelblue: '#B0C4DE', + // lightyellow: '#FFFFE0', + // limegreen: '#32CD32', + // linen: '#FAF0E6', + // magenta: '#FF00FF', + // mediumaquamarine: '#66CDAA', + // mediumblue: '#0000CD', + // mediumorchid: '#BA55D3', + // mediumpurple: '#9370DB', + // mediumseagreen: '#3CB371', + // mediumslateblue: '#7B68EE', + // mediumspringgreen: '#00FA9A', + // mediumturquoise: '#48D1CC', + // mediumvioletred: '#C71585', + // midnightblue: '#191970', + // mintcream: '#F5FFFA', + // mistyrose: '#FFE4E1', + // moccasin: '#FFE4B5', + // navajowhite: '#FFDEAD', + // oldlace: '#FDF5E6', + // olivedrab: '#6B8E23', + // orange: '#FFA500', + // orangered: '#FF4500', + // orchid: '#DA70D6', + // palegoldenrod: '#EEE8AA', + // palegreen: '#98FB98', + // paleturquoise: '#AFEEEE', + // palevioletred: '#DB7093', + // papayawhip: '#FFEFD5', + // peachpuff: '#FFDAB9', + // peru: '#CD853F', + // pink: '#FFC0CB', + // plum: '#DDA0DD', + // powderblue: '#B0E0E6', + // rosybrown: '#BC8F8F', + // royalblue: '#4169E1', + // saddlebrown: '#8B4513', + // salmon: '#FA8072', + // sandybrown: '#F4A460', + // seagreen: '#2E8B57', + // seashell: '#FFF5EE', + // sienna: '#A0522D', + // skyblue: '#87CEEB', + // slateblue: '#6A5ACD', + // slategray: '#708090', + // slategrey: '#708090', + // snow: '#FFFAFA', + // springgreen: '#00FF7F', + // steelblue: '#4682B4', + // tan: '#D2B48C', + // thistle: '#D8BFD8', + // tomato: '#FF6347', + // turquoise: '#40E0D0', + // violet: '#EE82EE', + // wheat: '#F5DEB3', + // whitesmoke: '#F5F5F5', + // yellowgreen: '#9ACD32' + // }; + + + function getRgbHslContent(styleString) { + var start = styleString.indexOf('(', 3); + var end = styleString.indexOf(')', start + 1); + var parts = styleString.substring(start + 1, end).split(','); + // add alpha if needed + if (parts.length != 4 || styleString.charAt(3) != 'a') { + parts[3] = 1; + } + return parts; + } + + function percent(s) { + return parseFloat(s) / 100; + } + + function clamp(v, min, max) { + return Math.min(max, Math.max(min, v)); + } + + function hslToRgb(parts) { + var r, g, b, h, s, l; + h = parseFloat(parts[0]) / 360 % 360; + if (h < 0) + h++; + s = clamp(percent(parts[1]), 0, 1); + l = clamp(percent(parts[2]), 0, 1); + if (s == 0) { + r = g = b = l; // achromatic + } else { + var q = l < 0.5 ? l * (1 + s) : l + s - l * s; + var p = 2 * l - q; + r = hueToRgb(p, q, h + 1 / 3); + g = hueToRgb(p, q, h); + b = hueToRgb(p, q, h - 1 / 3); + } + + return '#' + decToHex[Math.floor(r * 255)] + + decToHex[Math.floor(g * 255)] + + decToHex[Math.floor(b * 255)]; + } + + function hueToRgb(m1, m2, h) { + if (h < 0) + h++; + if (h > 1) + h--; + + if (6 * h < 1) + return m1 + (m2 - m1) * 6 * h; + else if (2 * h < 1) + return m2; + else if (3 * h < 2) + return m1 + (m2 - m1) * (2 / 3 - h) * 6; + else + return m1; + } + + var processStyleCache = {}; + + function processStyle(styleString) { + if (styleString in processStyleCache) { + return processStyleCache[styleString]; + } + + var str, alpha = 1; + + styleString = String(styleString); + if (styleString.charAt(0) == '#') { + str = styleString; + } else if (/^rgb/.test(styleString)) { + var parts = getRgbHslContent(styleString); + var str = '#', n; + for (var i = 0; i < 3; i++) { + if (parts[i].indexOf('%') != -1) { + n = Math.floor(percent(parts[i]) * 255); + } else { + n = +parts[i]; + } + str += decToHex[clamp(n, 0, 255)]; + } + alpha = +parts[3]; + } else if (/^hsl/.test(styleString)) { + var parts = getRgbHslContent(styleString); + str = hslToRgb(parts); + alpha = parts[3]; + } else { + str = /*colorData[styleString] ||*/styleString; + } + return processStyleCache[styleString] = { color: str, alpha: alpha }; + } + + var DEFAULT_STYLE = { + style: 'normal', + variant: 'normal', + weight: 'normal', + size: 10, + family: 'sans-serif' + }; + + // Internal text style cache + // var fontStyleCache = {}; + + // function processFontStyle(styleString) { + // if (fontStyleCache[styleString]) { + // return fontStyleCache[styleString]; + // } + + // var el = document.createElement('div'); + // var style = el.style; + // try { + // style.font = styleString; + // } catch (ex) { + // // Ignore failures to set to invalid font. + // } + + // return fontStyleCache[styleString] = { + // style: style.fontStyle || DEFAULT_STYLE.style, + // variant: style.fontVariant || DEFAULT_STYLE.variant, + // weight: style.fontWeight || DEFAULT_STYLE.weight, + // size: style.fontSize || DEFAULT_STYLE.size, + // family: style.fontFamily || DEFAULT_STYLE.family + // }; + // } + + // function getComputedStyle(style, element) { + // var computedStyle = {}; + + // for (var p in style) { + // computedStyle[p] = style[p]; + // } + + // // Compute the size + // var canvasFontSize = parseFloat(element.currentStyle.fontSize), + // fontSize = parseFloat(style.size); + + // if (typeof style.size == 'number') { + // computedStyle.size = style.size; + // } else if (style.size.indexOf('px') != -1) { + // computedStyle.size = fontSize; + // } else if (style.size.indexOf('em') != -1) { + // computedStyle.size = canvasFontSize * fontSize; + // } else if(style.size.indexOf('%') != -1) { + // computedStyle.size = (canvasFontSize / 100) * fontSize; + // } else if (style.size.indexOf('pt') != -1) { + // computedStyle.size = fontSize / .75; + // } else { + // computedStyle.size = canvasFontSize; + // } + + // // Different scaling between normal text and VML text. This was found using + // // trial and error to get the same size as non VML text. + // computedStyle.size *= 0.981; + + // return computedStyle; + // } + + // function buildStyle(style) { + // return style.style + ' ' + style.variant + ' ' + style.weight + ' ' + + // style.size + 'px ' + style.family; + // } + + var lineCapMap = { + 'butt': 'flat', + 'round': 'round' + }; + + function processLineCap(lineCap) { + return lineCapMap[lineCap] || 'square'; + } + + /** + * This class implements CanvasRenderingContext2D interface as described by + * the WHATWG. + * @param {HTMLElement} canvasElement The element that the 2D context should + * be associated with + */ + function CanvasRenderingContext2D_(canvasElement) { + this.m_ = createMatrixIdentity(); + + this.mStack_ = []; + this.aStack_ = []; + this.currentPath_ = []; + + // Canvas context properties + this.strokeStyle = '#000'; + this.fillStyle = '#000'; + + this.lineWidth = 1; + this.lineJoin = 'miter'; + this.lineCap = 'butt'; + this.miterLimit = Z * 1; + this.globalAlpha = 1; + //this.font = '10px sans-serif'; + //this.textAlign = 'left'; + //this.textBaseline = 'alphabetic'; + this.canvas = canvasElement; + + var cssText = 'width:' + canvasElement.clientWidth + 'px;height:' + + canvasElement.clientHeight + 'px;overflow:hidden;position:absolute'; + var el = canvasElement.ownerDocument.createElement('div'); + el.style.cssText = cssText; + canvasElement.appendChild(el); + + var overlayEl = el.cloneNode(false); + // Use a non transparent background. + overlayEl.style.backgroundColor = 'red'; + overlayEl.style.filter = 'alpha(opacity=0)'; + canvasElement.appendChild(overlayEl); + + this.element_ = el; + this.arcScaleX_ = 1; + this.arcScaleY_ = 1; + this.lineScale_ = 1; + } + + var contextPrototype = CanvasRenderingContext2D_.prototype; + contextPrototype.clearRect = function () { + if (this.textMeasureEl_) { + this.textMeasureEl_.removeNode(true); + this.textMeasureEl_ = null; + } + this.element_.innerHTML = ''; + }; + + contextPrototype.beginPath = function () { + // TODO: Branch current matrix so that save/restore has no effect + // as per safari docs. + this.currentPath_ = []; + }; + + contextPrototype.moveTo = function (aX, aY) { + var p = getCoords(this, aX, aY); + this.currentPath_.push({ type: 'moveTo', x: p.x, y: p.y }); + this.currentX_ = p.x; + this.currentY_ = p.y; + }; + + contextPrototype.lineTo = function (aX, aY) { + var p = getCoords(this, aX, aY); + this.currentPath_.push({ type: 'lineTo', x: p.x, y: p.y }); + + this.currentX_ = p.x; + this.currentY_ = p.y; + }; + + contextPrototype.bezierCurveTo = function(aCP1x, aCP1y, + aCP2x, aCP2y, + aX, aY) { + var p = getCoords(this, aX, aY); + var cp1 = getCoords(this, aCP1x, aCP1y); + var cp2 = getCoords(this, aCP2x, aCP2y); + bezierCurveTo(this, cp1, cp2, p); + }; + + // Helper function that takes the already fixed cordinates. + function bezierCurveTo(self, cp1, cp2, p) { + self.currentPath_.push({ + type: 'bezierCurveTo', + cp1x: cp1.x, + cp1y: cp1.y, + cp2x: cp2.x, + cp2y: cp2.y, + x: p.x, + y: p.y + }); + self.currentX_ = p.x; + self.currentY_ = p.y; + } + + contextPrototype.quadraticCurveTo = function(aCPx, aCPy, aX, aY) { + // the following is lifted almost directly from + // http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes + + var cp = getCoords(this, aCPx, aCPy); + var p = getCoords(this, aX, aY); + + var cp1 = { + x: this.currentX_ + 2.0 / 3.0 * (cp.x - this.currentX_), + y: this.currentY_ + 2.0 / 3.0 * (cp.y - this.currentY_) + }; + var cp2 = { + x: cp1.x + (p.x - this.currentX_) / 3.0, + y: cp1.y + (p.y - this.currentY_) / 3.0 + }; + + bezierCurveTo(this, cp1, cp2, p); + }; + + contextPrototype.arc = function (aX, aY, aRadius, + aStartAngle, aEndAngle, aClockwise) { + aRadius *= Z; + var arcType = aClockwise ? 'at' : 'wa'; + + var xStart = aX + mc(aStartAngle) * aRadius - Z2; + var yStart = aY + ms(aStartAngle) * aRadius - Z2; + + var xEnd = aX + mc(aEndAngle) * aRadius - Z2; + var yEnd = aY + ms(aEndAngle) * aRadius - Z2; + + // IE won't render arches drawn counter clockwise if xStart == xEnd. + if (xStart == xEnd && !aClockwise) { + xStart += 0.125; // Offset xStart by 1/80 of a pixel. Use something + // that can be represented in binary + } + + var p = getCoords(this, aX, aY); + var pStart = getCoords(this, xStart, yStart); + var pEnd = getCoords(this, xEnd, yEnd); + + this.currentPath_.push({ type: arcType, + x: p.x, + y: p.y, + radius: aRadius, + xStart: pStart.x, + yStart: pStart.y, + xEnd: pEnd.x, + yEnd: pEnd.y + }); + + }; + + // contextPrototype.rect = function(aX, aY, aWidth, aHeight) { + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // }; + + // contextPrototype.strokeRect = function(aX, aY, aWidth, aHeight) { + // var oldPath = this.currentPath_; + // this.beginPath(); + + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // this.stroke(); + + // this.currentPath_ = oldPath; + // }; + + // contextPrototype.fillRect = function(aX, aY, aWidth, aHeight) { + // var oldPath = this.currentPath_; + // this.beginPath(); + + // this.moveTo(aX, aY); + // this.lineTo(aX + aWidth, aY); + // this.lineTo(aX + aWidth, aY + aHeight); + // this.lineTo(aX, aY + aHeight); + // this.closePath(); + // this.fill(); + + // this.currentPath_ = oldPath; + // }; + + // contextPrototype.createLinearGradient = function(aX0, aY0, aX1, aY1) { + // var gradient = new CanvasGradient_('gradient'); + // gradient.x0_ = aX0; + // gradient.y0_ = aY0; + // gradient.x1_ = aX1; + // gradient.y1_ = aY1; + // return gradient; + // }; + + // contextPrototype.createRadialGradient = function(aX0, aY0, aR0, + // aX1, aY1, aR1) { + // var gradient = new CanvasGradient_('gradientradial'); + // gradient.x0_ = aX0; + // gradient.y0_ = aY0; + // gradient.r0_ = aR0; + // gradient.x1_ = aX1; + // gradient.y1_ = aY1; + // gradient.r1_ = aR1; + // return gradient; + // }; + + // contextPrototype.drawImage = function(image, var_args) { + // var dx, dy, dw, dh, sx, sy, sw, sh; + + // // to find the original width we overide the width and height + // var oldRuntimeWidth = image.runtimeStyle.width; + // var oldRuntimeHeight = image.runtimeStyle.height; + // image.runtimeStyle.width = 'auto'; + // image.runtimeStyle.height = 'auto'; + + // // get the original size + // var w = image.width; + // var h = image.height; + + // // and remove overides + // image.runtimeStyle.width = oldRuntimeWidth; + // image.runtimeStyle.height = oldRuntimeHeight; + + // if (arguments.length == 3) { + // dx = arguments[1]; + // dy = arguments[2]; + // sx = sy = 0; + // sw = dw = w; + // sh = dh = h; + // } else if (arguments.length == 5) { + // dx = arguments[1]; + // dy = arguments[2]; + // dw = arguments[3]; + // dh = arguments[4]; + // sx = sy = 0; + // sw = w; + // sh = h; + // } else if (arguments.length == 9) { + // sx = arguments[1]; + // sy = arguments[2]; + // sw = arguments[3]; + // sh = arguments[4]; + // dx = arguments[5]; + // dy = arguments[6]; + // dw = arguments[7]; + // dh = arguments[8]; + // } else { + // throw Error('Invalid number of arguments'); + // } + + // var d = getCoords(this, dx, dy); + + // var w2 = sw / 2; + // var h2 = sh / 2; + + // var vmlStr = []; + + // var W = 10; + // var H = 10; + + // // For some reason that I've now forgotten, using divs didn't work + // vmlStr.push(' ' , + // '', + // ''); + + // this.element_.insertAdjacentHTML('BeforeEnd', vmlStr.join('')); + // }; + + contextPrototype.stroke = function (aFill) { + var lineStr = []; + var lineOpen = false; + + var W = 10; + var H = 10; + + lineStr.push(''); + + if (!aFill) { + appendStroke(this, lineStr); + } else { + appendFill(this, lineStr, min, max); + } + + lineStr.push(''); + + this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); + }; + + function appendStroke(ctx, lineStr) { + var a = processStyle(ctx.strokeStyle); + var color = a.color; + var opacity = a.alpha * ctx.globalAlpha; + var lineWidth = ctx.lineScale_ * ctx.lineWidth; + + // VML cannot correctly render a line if the width is less than 1px. + // In that case, we dilute the color to make the line look thinner. + if (lineWidth < 1) { + opacity *= lineWidth; + } + + lineStr.push( + '' + ); + } + + function appendFill(ctx, lineStr, min, max) { + var fillStyle = ctx.fillStyle; + var arcScaleX = ctx.arcScaleX_; + var arcScaleY = ctx.arcScaleY_; + var width = max.x - min.x; + var height = max.y - min.y; + // if (fillStyle instanceof CanvasGradient_) { + // // TODO: Gradients transformed with the transformation matrix. + // var angle = 0; + // var focus = {x: 0, y: 0}; + + // // additional offset + // var shift = 0; + // // scale factor for offset + // var expansion = 1; + + // if (fillStyle.type_ == 'gradient') { + // var x0 = fillStyle.x0_ / arcScaleX; + // var y0 = fillStyle.y0_ / arcScaleY; + // var x1 = fillStyle.x1_ / arcScaleX; + // var y1 = fillStyle.y1_ / arcScaleY; + // var p0 = getCoords(ctx, x0, y0); + // var p1 = getCoords(ctx, x1, y1); + // var dx = p1.x - p0.x; + // var dy = p1.y - p0.y; + // angle = Math.atan2(dx, dy) * 180 / Math.PI; + + // // The angle should be a non-negative number. + // if (angle < 0) { + // angle += 360; + // } + + // // Very small angles produce an unexpected result because they are + // // converted to a scientific notation string. + // if (angle < 1e-6) { + // angle = 0; + // } + // } else { + // var p0 = getCoords(ctx, fillStyle.x0_, fillStyle.y0_); + // focus = { + // x: (p0.x - min.x) / width, + // y: (p0.y - min.y) / height + // }; + + // width /= arcScaleX * Z; + // height /= arcScaleY * Z; + // var dimension = m.max(width, height); + // shift = 2 * fillStyle.r0_ / dimension; + // expansion = 2 * fillStyle.r1_ / dimension - shift; + // } + + // // We need to sort the color stops in ascending order by offset, + // // otherwise IE won't interpret it correctly. + // var stops = fillStyle.colors_; + // stops.sort(function(cs1, cs2) { + // return cs1.offset - cs2.offset; + // }); + + // var length = stops.length; + // var color1 = stops[0].color; + // var color2 = stops[length - 1].color; + // var opacity1 = stops[0].alpha * ctx.globalAlpha; + // var opacity2 = stops[length - 1].alpha * ctx.globalAlpha; + + // var colors = []; + // for (var i = 0; i < length; i++) { + // var stop = stops[i]; + // colors.push(stop.offset * expansion + shift + ' ' + stop.color); + // } + + // // When colors attribute is used, the meanings of opacity and o:opacity2 + // // are reversed. + // lineStr.push(''); + // } else if (fillStyle instanceof CanvasPattern_) { + // if (width && height) { + // var deltaLeft = -min.x; + // var deltaTop = -min.y; + // lineStr.push(''); + // } + // } else { + var a = processStyle(ctx.fillStyle); + var color = a.color; + var opacity = a.alpha * ctx.globalAlpha; + lineStr.push(''); + // } + } + + contextPrototype.fill = function () { + this.stroke(true); + }; + + contextPrototype.closePath = function () { + this.currentPath_.push({ type: 'close' }); + }; + + function getCoords(ctx, aX, aY) { + var m = ctx.m_; + return { + x: Z * (aX * m[0][0] + aY * m[1][0] + m[2][0]) - Z2, + y: Z * (aX * m[0][1] + aY * m[1][1] + m[2][1]) - Z2 + }; + }; + + contextPrototype.save = function () { + var o = {}; + copyState(this, o); + this.aStack_.push(o); + this.mStack_.push(this.m_); + this.m_ = matrixMultiply(createMatrixIdentity(), this.m_); + }; + + contextPrototype.restore = function () { + if (this.aStack_.length) { + copyState(this.aStack_.pop(), this); + this.m_ = this.mStack_.pop(); + } + }; + + function matrixIsFinite(m) { + return isFinite(m[0][0]) && isFinite(m[0][1]) && + isFinite(m[1][0]) && isFinite(m[1][1]) && + isFinite(m[2][0]) && isFinite(m[2][1]); + } + + function setM(ctx, m, updateLineScale) { + if (!matrixIsFinite(m)) { + return; + } + ctx.m_ = m; + + if (updateLineScale) { + // Get the line scale. + // Determinant of this.m_ means how much the area is enlarged by the + // transformation. So its square root can be used as a scale factor + // for width. + var det = m[0][0] * m[1][1] - m[0][1] * m[1][0]; + ctx.lineScale_ = sqrt(abs(det)); + } + } + + contextPrototype.translate = function (aX, aY) { + var m1 = [ + [1, 0, 0], + [0, 1, 0], + [aX, aY, 1] + ]; + + setM(this, matrixMultiply(m1, this.m_), false); + }; + + // contextPrototype.rotate = function(aRot) { + // var c = mc(aRot); + // var s = ms(aRot); + + // var m1 = [ + // [c, s, 0], + // [-s, c, 0], + // [0, 0, 1] + // ]; + + // setM(this, matrixMultiply(m1, this.m_), false); + // }; + + contextPrototype.scale = function (aX, aY) { + this.arcScaleX_ *= aX; + this.arcScaleY_ *= aY; + var m1 = [ + [aX, 0, 0], + [0, aY, 0], + [0, 0, 1] + ]; + + setM(this, matrixMultiply(m1, this.m_), true); + }; + + // contextPrototype.transform = function(m11, m12, m21, m22, dx, dy) { + // var m1 = [ + // [m11, m12, 0], + // [m21, m22, 0], + // [dx, dy, 1] + // ]; + + // setM(this, matrixMultiply(m1, this.m_), true); + // }; + + // contextPrototype.setTransform = function(m11, m12, m21, m22, dx, dy) { + // var m = [ + // [m11, m12, 0], + // [m21, m22, 0], + // [dx, dy, 1] + // ]; + + // setM(this, m, true); + // }; + + /** + * The text drawing function. + * The maxWidth argument isn't taken in account, since no browser supports + * it yet. + */ + // contextPrototype.drawText_ = function(text, x, y, maxWidth, stroke) { + // var m = this.m_, + // delta = 1000, + // left = 0, + // right = delta, + // offset = {x: 0, y: 0}, + // lineStr = []; + + // var fontStyle = getComputedStyle(processFontStyle(this.font), + // this.element_); + + // var fontStyleString = buildStyle(fontStyle); + + // var elementStyle = this.element_.currentStyle; + // var textAlign = this.textAlign.toLowerCase(); + // switch (textAlign) { + // case 'left': + // case 'center': + // case 'right': + // break; + // case 'end': + // textAlign = elementStyle.direction == 'ltr' ? 'right' : 'left'; + // break; + // case 'start': + // textAlign = elementStyle.direction == 'rtl' ? 'right' : 'left'; + // break; + // default: + // textAlign = 'left'; + // } + + // // 1.75 is an arbitrary number, as there is no info about the text baseline + // switch (this.textBaseline) { + // case 'hanging': + // case 'top': + // offset.y = fontStyle.size / 1.75; + // break; + // case 'middle': + // break; + // default: + // case null: + // case 'alphabetic': + // case 'ideographic': + // case 'bottom': + // offset.y = -fontStyle.size / 2.25; + // break; + // } + + // switch(textAlign) { + // case 'right': + // left = delta; + // right = 0.05; + // break; + // case 'center': + // left = right = delta / 2; + // break; + // } + + // var d = getCoords(this, x + offset.x, y + offset.y); + + // lineStr.push(''); + + // if (stroke) { + // appendStroke(this, lineStr); + // } else { + // // TODO: Fix the min and max params. + // appendFill(this, lineStr, {x: -left, y: 0}, + // {x: right, y: fontStyle.size}); + // } + + // var skewM = m[0][0].toFixed(3) + ',' + m[1][0].toFixed(3) + ',' + + // m[0][1].toFixed(3) + ',' + m[1][1].toFixed(3) + ',0,0'; + + // var skewOffset = mr(d.x / Z) + ',' + mr(d.y / Z); + + // lineStr.push('', + // '', + // ''); + + // this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); + // }; + + // contextPrototype.fillText = function(text, x, y, maxWidth) { + // this.drawText_(text, x, y, maxWidth, false); + // }; + + // contextPrototype.strokeText = function(text, x, y, maxWidth) { + // this.drawText_(text, x, y, maxWidth, true); + // }; + + // contextPrototype.measureText = function(text) { + // if (!this.textMeasureEl_) { + // var s = ''; + // this.element_.insertAdjacentHTML('beforeEnd', s); + // this.textMeasureEl_ = this.element_.lastChild; + // } + // var doc = this.element_.ownerDocument; + // this.textMeasureEl_.innerHTML = ''; + // this.textMeasureEl_.style.font = this.font; + // // Don't use innerHTML or innerText because they allow markup/whitespace. + // this.textMeasureEl_.appendChild(doc.createTextNode(text)); + // return {width: this.textMeasureEl_.offsetWidth}; + // }; + + /******** STUBS ********/ + // contextPrototype.clip = function() { + // // TODO: Implement + // }; + + // contextPrototype.arcTo = function() { + // // TODO: Implement + // }; + + // contextPrototype.createPattern = function(image, repetition) { + // return new CanvasPattern_(image, repetition); + // }; + + // // Gradient / Pattern Stubs + // function CanvasGradient_(aType) { + // this.type_ = aType; + // this.x0_ = 0; + // this.y0_ = 0; + // this.r0_ = 0; + // this.x1_ = 0; + // this.y1_ = 0; + // this.r1_ = 0; + // this.colors_ = []; + // } + + // CanvasGradient_.prototype.addColorStop = function(aOffset, aColor) { + // aColor = processStyle(aColor); + // this.colors_.push({offset: aOffset, + // color: aColor.color, + // alpha: aColor.alpha}); + // }; + + // function CanvasPattern_(image, repetition) { + // assertImageIsValid(image); + // switch (repetition) { + // case 'repeat': + // case null: + // case '': + // this.repetition_ = 'repeat'; + // break + // case 'repeat-x': + // case 'repeat-y': + // case 'no-repeat': + // this.repetition_ = repetition; + // break; + // default: + // throwException('SYNTAX_ERR'); + // } + + // this.src_ = image.src; + // this.width_ = image.width; + // this.height_ = image.height; + // } + + function throwException(s) { + throw new DOMException_(s); + } + + // function assertImageIsValid(img) { + // if (!img || img.nodeType != 1 || img.tagName != 'IMG') { + // throwException('TYPE_MISMATCH_ERR'); + // } + // if (img.readyState != 'complete') { + // throwException('INVALID_STATE_ERR'); + // } + // } + + function DOMException_(s) { + this.code = this[s]; + this.message = s + ': DOM Exception ' + this.code; + } + var p = DOMException_.prototype = new Error; + p.INDEX_SIZE_ERR = 1; + p.DOMSTRING_SIZE_ERR = 2; + p.HIERARCHY_REQUEST_ERR = 3; + p.WRONG_DOCUMENT_ERR = 4; + p.INVALID_CHARACTER_ERR = 5; + p.NO_DATA_ALLOWED_ERR = 6; + p.NO_MODIFICATION_ALLOWED_ERR = 7; + p.NOT_FOUND_ERR = 8; + p.NOT_SUPPORTED_ERR = 9; + p.INUSE_ATTRIBUTE_ERR = 10; + p.INVALID_STATE_ERR = 11; + p.SYNTAX_ERR = 12; + p.INVALID_MODIFICATION_ERR = 13; + p.NAMESPACE_ERR = 14; + p.INVALID_ACCESS_ERR = 15; + p.VALIDATION_ERR = 16; + p.TYPE_MISMATCH_ERR = 17; + + // set up externs + G_vmlCanvasManager = G_vmlCanvasManager_; + CanvasRenderingContext2D = CanvasRenderingContext2D_; + //CanvasGradient = CanvasGradient_; + //CanvasPattern = CanvasPattern_; + DOMException = DOMException_; + })(); + +} // if diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.geo.core.js b/libs/js/jquery-geo-1.0a4/js/jquery.geo.core.js new file mode 100755 index 0000000..28f7e08 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.geo.core.js @@ -0,0 +1,1002 @@ +(function ($, window, undefined) { + var pos_oo = Number.POSITIVE_INFINITY, + neg_oo = Number.NEGATIVE_INFINITY; + + $.geo = { + // + // utility functions + // + + _allCoordinates: function (geom) { + // return array of all positions in all geometries of geom + // not in JTS + var geometries = this._flatten(geom), + curGeom = 0, + result = []; + + for (; curGeom < geometries.length; curGeom++) { + var coordinates = geometries[curGeom].coordinates, + isArray = coordinates && $.isArray(coordinates[0]), + isDblArray = isArray && $.isArray(coordinates[0][0]), + isTriArray = isDblArray && $.isArray(coordinates[0][0][0]), + i, j, k; + + if (!isTriArray) { + if (!isDblArray) { + if (!isArray) { + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + coordinates = [coordinates]; + } + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + for (k = 0; k < coordinates[i][j].length; k++) { + result.push(coordinates[i][j][k]); + } + } + } + } + return result; + }, + + _isGeodetic: function( coords ) { + // returns true if the first coordinate it can find is geodetic + + while ( $.isArray( coords ) ) { + if ( coords.length > 1 && ! $.isArray( coords[ 0 ] ) ) { + return ( coords[ 0 ] >= -180 && coords[ 0 ] <= 180 && coords[ 1 ] >= -85 && coords[ 1 ] <= 85 ); + } else { + coords = coords[ 0 ]; + } + } + + return false; + }, + + // + // bbox functions + // + + center: function (bbox, _ignoreGeo /* Internal Use Only */) { + // Envelope.centre in JTS + // bbox only, use centroid for geom + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var center = [(bbox[0] + bbox[2]) / 2, (bbox[1] + bbox[3]) / 2]; + return wasGeodetic ? $.geo.proj.toGeodetic(center) : center; + }, + + expandBy: function (bbox, dx, dy, _ignoreGeo /* Internal Use Only */) { + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + bbox = [bbox[0] - dx, bbox[1] - dy, bbox[2] + dx, bbox[3] + dy]; + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + height: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + + return bbox[3] - bbox[1]; + }, + + _in: function(bbox1, bbox2) { + return bbox1[0] <= bbox2[0] && + bbox1[1] <= bbox2[1] && + bbox1[2] >= bbox2[2] && + bbox1[3] >= bbox2[3]; + }, + + _bboxDisjoint: function( bbox1, bbox2 ) { + return bbox2[ 0 ] > bbox1[ 2 ] || + bbox2[ 2 ] < bbox1[ 0 ] || + bbox2[ 1 ] > bbox1[ 3 ] || + bbox2[ 3 ] < bbox1[ 1 ]; + }, + + reaspect: function (bbox, ratio, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var width = this.width(bbox, true), + height = this.height(bbox, true), + center = this.center(bbox, true), + dx, dy; + + if (width != 0 && height != 0 && ratio > 0) { + if (width / height > ratio) { + dx = width / 2; + dy = dx / ratio; + } else { + dy = height / 2; + dx = dy * ratio; + } + + bbox = [center[0] - dx, center[1] - dy, center[0] + dx, center[1] + dy]; + } + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + recenter: function( bbox, center, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj ) { + if ( this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + if ( this._isGeodetic( center ) ) { + center = $.geo.proj.fromGeodetic(center); + } + } + + var halfWidth = ( bbox[ 2 ] - bbox[ 0 ] ) / 2, + halfHeight = ( bbox[ 3 ] - bbox[ 1 ] ) / 2; + + bbox = [ + center[ 0 ] - halfWidth, + center[ 1 ] - halfHeight, + center[ 0 ] + halfWidth, + center[ 1 ] + halfHeight + ]; + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + scaleBy: function ( bbox, scale, _ignoreGeo /* Internal Use Only */ ) { + // not in JTS + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + wasGeodetic = true; + bbox = $.geo.proj.fromGeodetic(bbox); + } + + var c = this.center(bbox, true), + dx = (bbox[2] - bbox[0]) * scale / 2, + dy = (bbox[3] - bbox[1]) * scale / 2; + + bbox = [c[0] - dx, c[1] - dy, c[0] + dx, c[1] + dy]; + + return wasGeodetic ? $.geo.proj.toGeodetic(bbox) : bbox; + }, + + width: function (bbox, _ignoreGeo /* Internal Use Only */ ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic(bbox); + } + + return bbox[2] - bbox[0]; + }, + + // + // geometry functions + // + + // bbox (Geometry.getEnvelope in JTS) + + bbox: function ( geom, _ignoreGeo /* Internal Use Only */ ) { + if ( !geom ) { + return undefined; + } else if ( geom.bbox ) { + result = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom.bbox ) ) ? $.geo.proj.fromGeodetic( geom.bbox ) : geom.bbox; + } else { + result = [ pos_oo, pos_oo, neg_oo, neg_oo ]; + + var coordinates = this._allCoordinates( geom ), + curCoord = 0; + + if ( coordinates.length == 0 ) { + return undefined; + } + + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( coordinates ) ) { + wasGeodetic = true; + coordinates = $.geo.proj.fromGeodetic( coordinates ); + } + + for ( ; curCoord < coordinates.length; curCoord++ ) { + result[0] = Math.min(coordinates[curCoord][0], result[0]); + result[1] = Math.min(coordinates[curCoord][1], result[1]); + result[2] = Math.max(coordinates[curCoord][0], result[2]); + result[3] = Math.max(coordinates[curCoord][1], result[3]); + } + } + + return wasGeodetic ? $.geo.proj.toGeodetic(result) : result; + }, + + // centroid + + centroid: function( geom, _ignoreGeo /* Internal Use Only */ ) { + switch (geom.type) { + case "Point": + return $.extend({}, geom); + + case "LineString": + case "Polygon": + var a = 0, + c = [0, 0], + coords = $.merge( [ ], geom.type == "Polygon" ? geom.coordinates[0] : geom.coordinates ), + i = 1, j, n; + + var wasGeodetic = false; + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( coords ) ) { + wasGeodetic = true; + coords = $.geo.proj.fromGeodetic(coords); + } + + //if (coords[0][0] != coords[coords.length - 1][0] || coords[0][1] != coords[coords.length - 1][1]) { + // coords.push(coords[0]); + //} + + for (; i <= coords.length; i++) { + j = i % coords.length; + n = (coords[i - 1][0] * coords[j][1]) - (coords[j][0] * coords[i - 1][1]); + a += n; + c[0] += (coords[i - 1][0] + coords[j][0]) * n; + c[1] += (coords[i - 1][1] + coords[j][1]) * n; + } + + if (a == 0) { + if (coords.length > 0) { + c[0] = coords[0][0]; + c[1] = coords[0][1]; + return { type: "Point", coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c }; + } else { + return undefined; + } + } + + a *= 3; + c[0] /= a; + c[1] /= a; + + return { type: "Point", coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c }; + } + return undefined; + }, + + // contains + + contains: function (geom1, geom2) { + if (geom1.type != "Polygon") { + return false; + } + + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1.coordinates, geom2.coordinates); + + case "LineString": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates); + + case "Polygon": + return this._containsPolygonLineString(geom1.coordinates, geom2.coordinates[0]); + + default: + return false; + } + }, + + _containsPolygonPoint: function (polygonCoordinates, pointCoordinate) { + if (polygonCoordinates.length == 0 || polygonCoordinates[0].length < 4) { + return false; + } + + var rayCross = 0, + a = polygonCoordinates[0][0], + i = 1, + b, + x; + + for (; i < polygonCoordinates[0].length; i++) { + b = polygonCoordinates[0][i]; + + if ((a[1] <= pointCoordinate[1] && pointCoordinate[1] < b[1]) || (b[1] <= pointCoordinate[1] && pointCoordinate[1] < a[1]) && (pointCoordinate[0] < a[0] || pointCoordinate[0] < b[0])) { + x = a[0] + (b[0] - a[0]) * (pointCoordinate[1] - a[1]) / (b[1] - a[1]); + + if (x > pointCoordinate[0]) { + rayCross++; + } + } + + a = b; + } + + return rayCross % 2 == 1; + }, + + _containsPolygonLineString: function (polygonCoordinates, lineStringCoordinates) { + for (var i = 0; i < lineStringCoordinates.length; i++) { + if (!this._containsPolygonPoint(polygonCoordinates, lineStringCoordinates[i])) { + return false; + } + } + return true; + }, + + // distance + + distance: function ( geom1, geom2, _ignoreGeo /* Internal Use Only */ ) { + var geom1CoordinatesProjected = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom1.coordinates ) ) ? $.geo.proj.fromGeodetic(geom1.coordinates) : geom1.coordinates, + geom2CoordinatesProjected = ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom2.coordinates ) ) ? $.geo.proj.fromGeodetic(geom2.coordinates) : geom2.coordinates; + + switch (geom1.type) { + case "Point": + switch (geom2.type) { + case "Point": + return this._distancePointPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "LineString": + return this._distanceLineStringPoint(geom2CoordinatesProjected, geom1CoordinatesProjected); + case "Polygon": + return this._containsPolygonPoint(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "LineString": + switch (geom2.type) { + case "Point": + return this._distanceLineStringPoint(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "LineString": + return this._distanceLineStringLineString(geom1CoordinatesProjected, geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom2CoordinatesProjected, geom1CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom2CoordinatesProjected[0], geom1CoordinatesProjected); + default: + return undefined; + } + break; + + case "Polygon": + switch (geom2.type) { + case "Point": + return this._containsPolygonPoint(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringPoint(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "LineString": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected); + case "Polygon": + return this._containsPolygonLineString(geom1CoordinatesProjected, geom2CoordinatesProjected[0]) ? 0 : this._distanceLineStringLineString(geom1CoordinatesProjected[0], geom2CoordinatesProjected[0]); + default: + return undefined; + } + break; + } + }, + + _distancePointPoint: function (coordinate1, coordinate2) { + var dx = coordinate2[0] - coordinate1[0], + dy = coordinate2[1] - coordinate1[1]; + return Math.sqrt((dx * dx) + (dy * dy)); + }, + + _distanceLineStringPoint: function (lineStringCoordinates, pointCoordinate) { + var minDist = pos_oo; + + if (lineStringCoordinates.length > 0) { + var a = lineStringCoordinates[0], + + apx = pointCoordinate[0] - a[0], + apy = pointCoordinate[1] - a[1]; + + if (lineStringCoordinates.length == 1) { + return Math.sqrt(apx * apx + apy * apy); + } else { + for (var i = 1; i < lineStringCoordinates.length; i++) { + var b = lineStringCoordinates[i], + + abx = b[0] - a[0], + aby = b[1] - a[1], + bpx = pointCoordinate[0] - b[0], + bpy = pointCoordinate[1] - b[1], + + d = this._distanceSegmentPoint(abx, aby, apx, apy, bpx, bpy); + + if (d == 0) { + return 0; + } + + if (d < minDist) { + minDist = d; + } + + a = b; + apx = bpx; + apy = bpy; + } + } + } + + return Math.sqrt(minDist); + }, + + _distanceSegmentPoint: function (abx, aby, apx, apy, bpx, bpy) { + var dot1 = abx * apx + aby * apy; + + if (dot1 <= 0) { + return apx * apx + apy * apy; + } + + var dot2 = abx * abx + aby * aby; + + if (dot1 >= dot2) { + return bpx * bpx + bpy * bpy; + } + + return apx * apx + apy * apy - dot1 * dot1 / dot2; + }, + + _distanceLineStringLineString: function (lineStringCoordinates1, lineStringCoordinates2) { + var minDist = pos_oo; + for (var i = 0; i < lineStringCoordinates2.length; i++) { + minDist = Math.min(minDist, this._distanceLineStringPoint(lineStringCoordinates1, lineStringCoordinates2[i])); + } + return minDist; + }, + + // buffer + + _buffer: function( geom, distance, _ignoreGeo /* Internal Use Only */ ) { + var wasGeodetic = false, + coords = geom.coordinates; + + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( geom.coordinates ) ) { + wasGeodetic = true; + coords = $.geo.proj.fromGeodetic( geom.coordinates ); + } + + switch ( geom.type ) { + case "Point": + var resultCoords = [], + slices = 180, + i = 0, + a; + + for ( ; i <= slices; i++ ) { + a = ( i * 360 / slices ) * ( Math.PI / 180 ); + resultCoords.push( [ + coords[ 0 ] + Math.cos( a ) * distance, + coords[ 1 ] + Math.sin( a ) * distance + ] ); + } + + return { + type: "Polygon", + coordinates: [ ( wasGeodetic ? $.geo.proj.toGeodetic( resultCoords ) : resultCoords ) ] + }; + + break; + + default: + return undefined; + } + }, + + + // + // feature + // + + _flatten: function (geom) { + // return an array of all basic geometries + // not in JTS + var geometries = [], + curGeom = 0; + switch (geom.type) { + case "Feature": + $.merge(geometries, this._flatten(geom.geometry)); + break; + + case "FeatureCollection": + for (; curGeom < geom.features.length; curGeom++) { + $.merge(geometries, this._flatten(geom.features[curGeom].geometry)); + } + break; + + case "GeometryCollection": + for (; curGeom < geom.geometries.length; curGeom++) { + $.merge(geometries, this._flatten(geom.geometries[curGeom])); + } + break; + + default: + geometries[0] = geom; + break; + } + return geometries; + }, + + length: function( geom, _ignoreGeo /* Internal Use Only */ ) { + var sum = 0, + lineStringCoordinates, + i = 1, dx, dy; + + switch ( geom.type ) { + case "Point": + return 0; + + case "LineString": + lineStringCoordinates = geom.coordinates; + break; + + case "Polygon": + lineStringCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( lineStringCoordinates ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( lineStringCoordinates ) ) { + lineStringCoordinates = $.geo.proj.fromGeodetic( lineStringCoordinates ); + } + + for ( ; i < lineStringCoordinates.length; i++ ) { + dx = lineStringCoordinates[ i ][0] - lineStringCoordinates[ i - 1 ][0]; + dy = lineStringCoordinates[ i ][1] - lineStringCoordinates[ i - 1 ][1]; + sum += Math.sqrt((dx * dx) + (dy * dy)); + } + + return sum; + } + + // return undefined; + }, + + area: function( geom, _ignoreGeo /* Internal Use Only */ ) { + var sum = 0, + polygonCoordinates, + i = 1, j; + + switch ( geom.type ) { + case "Point": + case "LineString": + return 0; + + case "Polygon": + polygonCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( polygonCoordinates ) { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( polygonCoordinates ) ) { + polygonCoordinates = $.geo.proj.fromGeodetic( polygonCoordinates ); + } + + for ( ; i <= polygonCoordinates.length; i++) { + j = i % polygonCoordinates.length; + sum += ( polygonCoordinates[ i - 1 ][ 0 ] - polygonCoordinates[ j ][ 0 ] ) * ( polygonCoordinates[ i - 1 ][ 1 ] + polygonCoordinates[ j ][ 1 ] ) / 2; + } + + return Math.abs( sum ); + } + }, + + pointAlong: function( geom, percentage, _ignoreGeo /* Internal Use Only */ ) { + var totalLength = 0, + previousPercentageSum = 0, + percentageSum = 0, + remainderPercentageSum, + len, + lineStringCoordinates, + segmentLengths = [], + i = 1, dx, dy, + c, c0, c1, + wasGeodetic = false; + + switch ( geom.type ) { + case "Point": + return $.extend( { }, geom ); + + case "LineString": + lineStringCoordinates = geom.coordinates; + break; + + case "Polygon": + lineStringCoordinates = geom.coordinates[ 0 ]; + break; + } + + if ( lineStringCoordinates ) { + if ( percentage === 0 ) { + return { + type: "Point", + coordinates: [ lineStringCoordinates[ 0 ][ 0 ], lineStringCoordinates[ 0 ][ 1 ] ] + }; + } else if ( percentage === 1 ) { + i = lineStringCoordinates.length - 1; + return { + type: "Point", + coordinates: [ lineStringCoordinates[ i ][ 0 ], lineStringCoordinates[ i ][ 1 ] ] + }; + } else { + if ( !_ignoreGeo && $.geo.proj && this._isGeodetic( lineStringCoordinates ) ) { + wasGeodetic = true; + lineStringCoordinates = $.geo.proj.fromGeodetic( lineStringCoordinates ); + } + + for ( ; i < lineStringCoordinates.length; i++ ) { + dx = lineStringCoordinates[ i ][ 0 ] - lineStringCoordinates[ i - 1 ][ 0 ]; + dy = lineStringCoordinates[ i ][ 1 ] - lineStringCoordinates[ i - 1 ][ 1 ]; + len = Math.sqrt((dx * dx) + (dy * dy)); + segmentLengths.push( len ); + totalLength += len; + } + + for ( i = 0; i < segmentLengths.length && percentageSum < percentage; i++ ) { + previousPercentageSum = percentageSum; + percentageSum += ( segmentLengths[ i ] / totalLength ); + } + + remainderPercentageSum = percentage - previousPercentageSum; + + c0 = lineStringCoordinates[ i - 1 ]; + c1 = lineStringCoordinates[ i ]; + + c = [ + c0[ 0 ] + ( remainderPercentageSum * ( c1[ 0 ] - c0[ 0 ] ) ), + c0[ 1 ] + ( remainderPercentageSum * ( c1[ 1 ] - c0[ 1 ] ) ) + ]; + + return { + type: "Point", + coordinates: wasGeodetic ? $.geo.proj.toGeodetic(c) : c + }; + } + } + }, + + // + // WKT functions + // + + _WKT: (function () { + function pointToString(value) { + return "POINT " + pointToUntaggedString(value.coordinates); + } + + function pointToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + return "(" + coordinates.join(" ") + ")"; + } + } + + function lineStringToString(value) { + return "LINESTRING " + lineStringToUntaggedString(value.coordinates); + } + + function lineStringToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var points = [] + + for (var i = 0; i < coordinates.length; i++) { + points.push(coordinates[i].join(" ")); + } + + return "(" + points + ")"; + } + } + + function polygonToString(value) { + return "POLYGON " + polygonToUntaggedString(value.coordinates); + } + + function polygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMTPY"; + } else { + var lineStrings = []; + + for (var i = 0; i < coordinates.length; i++) { + lineStrings.push(lineStringToUntaggedString(coordinates[i])); + } + + return "(" + lineStrings + ")"; + } + } + + function multiPointToString(value) { + return "MULTIPOINT " + lineStringToUntaggedString(value.coordinates); + } + + function multiLineStringToString(value) { + return "MULTILINSTRING " + polygonToUntaggedString(value.coordinates); + } + + function multiPolygonToString(value) { + return "MULTIPOLYGON " + multiPolygonToUntaggedString(value.coordinates); + } + + function multiPolygonToUntaggedString(coordinates) { + if (!(coordinates && coordinates.length)) { + return "EMPTY"; + } else { + var polygons = []; + for (var i = 0; i < coordinates.length; i++) { + polygons.push(polygonToUntaggedString(coordinates[i])); + } + return "(" + polygons + ")"; + } + } + + function geometryCollectionToString(value) { + return "GEOMETRYCOLLECTION " + geometryCollectionToUntaggedString(value.geometries); + } + + function geometryCollectionToUntaggedString(geometries) { + if (!(geometries && geometries.length)) { + return "EMPTY"; + } else { + var geometryText = []; + for (var i = 0; i < geometries.length; i++) { + geometryText.push(stringify(geometries[i])); + } + return "(" + geometries + ")"; + } + } + + function stringify(value) { + if (!(value && value.type)) { + return ""; + } else { + switch (value.type) { + case "Point": + return pointToString(value); + + case "LineString": + return lineStringToString(value); + + case "Polygon": + return polygonToString(value); + + case "MultiPoint": + return multiPointToString(value); + + case "MultiLineString": + return multiLineStringToString(value); + + case "MultiPolygon": + return multiPolygonToString(value); + + case "GeometryCollection": + return geometryCollectionToString(value); + + default: + return ""; + } + } + } + + function pointParseUntagged(wkt) { + var pointString = wkt.match( /\(\s*([\d\.-]+)\s+([\d\.-]+)\s*\)/ ); + return pointString && pointString.length > 2 ? { + type: "Point", + coordinates: [ + parseFloat(pointString[1]), + parseFloat(pointString[2]) + ] + } : null; + } + + function lineStringParseUntagged(wkt) { + var lineString = wkt.match( /\s*\((.*)\)/ ), + coords = [], + pointStrings, + pointParts, + i = 0; + + if ( lineString.length > 1 ) { + pointStrings = lineString[ 1 ].match( /[\d\.-]+\s+[\d\.-]+/g ); + + for ( ; i < pointStrings.length; i++ ) { + pointParts = pointStrings[ i ].match( /\s*([\d\.-]+)\s+([\d\.-]+)\s*/ ); + coords[ i ] = [ parseFloat( pointParts[ 1 ] ), parseFloat( pointParts[ 2 ] ) ]; + } + + return { + type: "LineString", + coordinates: coords + }; + } else { + return null + } + } + + function polygonParseUntagged(wkt) { + var polygon = wkt.match( /\s*\(\s*\((.*)\)\s*\)/ ), + coords = [], + pointStrings, + pointParts, + i = 0; + + if ( polygon.length > 1 ) { + pointStrings = polygon[ 1 ].match( /[\d\.-]+\s+[\d\.-]+/g ); + + for ( ; i < pointStrings.length; i++ ) { + pointParts = pointStrings[ i ].match( /\s*([\d\.-]+)\s+([\d\.-]+)\s*/ ); + coords[ i ] = [ parseFloat( pointParts[ 1 ] ), parseFloat( pointParts[ 2 ] ) ]; + } + + return { + type: "Polygon", + coordinates: [ coords ] + }; + } else { + return null; + } + } + + function parse(wkt) { + wkt = $.trim(wkt); + + var typeIndex = wkt.indexOf( " " ), + untagged = wkt.substr( typeIndex + 1 ); + + switch (wkt.substr(0, typeIndex).toUpperCase()) { + case "POINT": + return pointParseUntagged( untagged ); + + case "LINESTRING": + return lineStringParseUntagged( untagged ); + + case "POLYGON": + return polygonParseUntagged( untagged ); + + default: + return null; + } + } + + return { + stringify: stringify, + + parse: parse + }; + })(), + + // + // projection functions + // + + proj: (function () { + var halfPi = 1.5707963267948966192, + quarterPi = 0.7853981633974483096, + radiansPerDegree = 0.0174532925199432958, + degreesPerRadian = 57.295779513082320877, + semiMajorAxis = 6378137; + + return { + fromGeodeticPos: function (coordinate) { + if (!coordinate) { + debugger; + } + return [ + semiMajorAxis * coordinate[ 0 ] * radiansPerDegree, + semiMajorAxis * Math.log(Math.tan(quarterPi + coordinate[ 1 ] * radiansPerDegree / 2)) + ]; + }, + + fromGeodetic: function ( coordinates ) { + if ( ! $.geo._isGeodetic( coordinates ) ) { + return coordinates; + } + + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + fromGeodeticPos = this.fromGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = fromGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = fromGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ], + i, j, k; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = fromGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + }, + + toGeodeticPos: function (coordinate) { + return [ + (coordinate[ 0 ] / semiMajorAxis) * degreesPerRadian, + (halfPi - 2 * Math.atan(1 / Math.exp(coordinate[ 1 ] / semiMajorAxis))) * degreesPerRadian + ]; + }, + + toGeodetic: function (coordinates) { + if ( $.geo._isGeodetic( coordinates ) ) { + return coordinates; + } + + var isMultiPointOrLineString = $.isArray(coordinates[ 0 ]), + toGeodeticPos = this.toGeodeticPos; + + if (!isMultiPointOrLineString && coordinates.length == 4) { + // bbox + var min = toGeodeticPos([ coordinates[ 0 ], coordinates[ 1 ] ]), + max = toGeodeticPos([ coordinates[ 2 ], coordinates[ 3 ] ]); + return [ min[ 0 ], min[ 1 ], max[ 0 ], max[ 1 ] ]; + } else { + // geometry + var isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray(coordinates[ 0 ][ 0 ]), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray(coordinates[ 0 ][ 0 ][ 0 ]), + result = [ ]; + + if (!isMultiPolygon) { + if (!isMultiLineStringOrPolygon) { + if (!isMultiPointOrLineString) { + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + coordinates = [ coordinates ]; + } + + for ( i = 0; i < coordinates.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < coordinates[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < coordinates[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = toGeodeticPos(coordinates[ i ][ j ][ k ]); + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + } + } + } + })(), + + // + // service types (defined in other files) + // + + _serviceTypes: {} + } +})(jQuery, this); + diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.geo.geographics.js b/libs/js/jquery-geo-1.0a4/js/jquery.geo.geographics.js new file mode 100755 index 0000000..889eb67 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.geo.geographics.js @@ -0,0 +1,284 @@ +(function ($, undefined) { + + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()); + + $.widget("geo.geographics", { + _$elem: undefined, + _options: {}, + _trueCanvas: true, + + _width: 0, + _height: 0, + + _$canvas: undefined, + _context: undefined, + _$labelsContainer: undefined, + + options: { + style: { + borderRadius: "8px", + color: "#7f0000", + //fill: undefined, + fillOpacity: .2, + height: "8px", + opacity: 1, + //stroke: undefined, + strokeOpacity: 1, + strokeWidth: "2px", + visibility: "visible", + width: "8px" + } + }, + + _create: function () { + this._$elem = this.element; + this._options = this.options; + + this._$elem.css({ display: "inline-block", overflow: "hidden", textAlign: "left" }); + + if (this._$elem.css("position") == "static") { + this._$elem.css("position", "relative"); + } + + this._$elem.addClass( "geo-graphics" ); + + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + var posCss = 'position:absolute;left:0;top:0;margin:0;padding:0;', + sizeCss = 'width:' + this._width + 'px;height:' + this._height + 'px;', + sizeAttr = 'width="' + this._width + '" height="' + this._height + '"'; + + if (document.createElement('canvas').getContext) { + this._$elem.append(''); + this._$canvas = this._$elem.children(':last'); + this._context = this._$canvas[0].getContext("2d"); + } else if (_ieVersion <= 8) { + this._trueCanvas = false; + this._$elem.append( '
              '); + this._$canvas = this._$elem.children(':last'); + + G_vmlCanvasManager.initElement(this._$canvas[0]); + this._context = this._$canvas[0].getContext("2d"); + this._$canvas.children().css({ backgroundColor: "transparent", width: this._width, height: this._height }); + } + + this._$elem.append('
              '); + this._$labelsContainer = this._$elem.children(':last'); + }, + + _setOption: function (key, value) { + if (key == "style") { + value = $.extend({}, this._options.style, value); + } + $.Widget.prototype._setOption.apply(this, arguments); + }, + + destroy: function () { + $.Widget.prototype.destroy.apply(this, arguments); + this._$elem.html(""); + this._$elem.removeClass( "geo-graphics" ); + }, + + clear: function () { + this._context.clearRect(0, 0, this._width, this._height); + this._$labelsContainer.html(""); + }, + + drawArc: function (coordinates, startAngle, sweepAngle, style) { + style = this._getGraphicStyle(style); + + if (style.visibility != "hidden" && style.opacity > 0 && style.widthValue > 0 && style.heightValue > 0) { + var r = Math.min(style.widthValue, style.heightValue) / 2; + + startAngle = (startAngle * Math.PI / 180); + sweepAngle = (sweepAngle * Math.PI / 180); + + this._context.save(); + this._context.translate(coordinates[0], coordinates[1]); + if (style.widthValue > style.heightValue) { + this._context.scale(style.widthValue / style.heightValue, 1); + } else { + this._context.scale(1, style.heightValue / style.widthValue); + } + + this._context.beginPath(); + this._context.arc(0, 0, r, startAngle, sweepAngle, false); + + if (this._trueCanvas) { + this._context.restore(); + } + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + + if (!this._trueCanvas) { + this._context.restore(); + } + } + }, + + drawPoint: function (coordinates, style) { + var style = this._getGraphicStyle(style); + if (style.widthValue == style.heightValue && style.heightValue == style.borderRadiusValue) { + this.drawArc(coordinates, 0, 360, style); + } else if (style.visibility != "hidden" && style.opacity > 0) { + style.borderRadiusValue = Math.min(Math.min(style.widthValue, style.heightValue) / 2, style.borderRadiusValue); + coordinates[0] -= style.widthValue / 2; + coordinates[1] -= style.heightValue / 2; + this._context.beginPath(); + this._context.moveTo(coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.lineTo(coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1]); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1], coordinates[0] + style.widthValue, coordinates[1] + style.borderRadiusValue); + this._context.lineTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0] + style.widthValue, coordinates[1] + style.heightValue, coordinates[0] + style.widthValue - style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.lineTo(coordinates[0] + style.borderRadiusValue, coordinates[1] + style.heightValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1] + style.heightValue, coordinates[0], coordinates[1] + style.heightValue - style.borderRadiusValue); + this._context.lineTo(coordinates[0], coordinates[1] + style.borderRadiusValue); + this._context.quadraticCurveTo(coordinates[0], coordinates[1], coordinates[0] + style.borderRadiusValue, coordinates[1]); + this._context.closePath(); + + if (style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + + this._context.stroke(); + } + } + }, + + drawLineString: function (coordinates, style) { + this._drawLines([coordinates], false, style); + }, + + drawPolygon: function (coordinates, style) { + this._drawLines(coordinates, true, style); + }, + + drawBbox: function (bbox, style) { + this._drawLines([[ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ]], true, style); + }, + + drawLabel: function( coordinates, label ) { + this._$labelsContainer.append( '
              ' + label + '
              '); + }, + + resize: function( ) { + this._width = this._$elem.width(); + this._height = this._$elem.height(); + + if (!(this._width && this._height)) { + this._width = parseInt(this._$elem.css("width")); + this._height = parseInt(this._$elem.css("height")); + } + + if ( this._trueCanvas ) { + this._$canvas[0].width = this._width; + this._$canvas[0].height = this._height; + } else { + } + + this._$labelsContainer.css( { + width: this._width, + height: this._height + } ); + }, + + _getGraphicStyle: function (style) { + function safeParse(value) { + value = parseInt(value); + return (+value + '') === value ? +value : value; + } + + style = $.extend({}, this._options.style, style); + style.borderRadiusValue = safeParse(style.borderRadius); + style.fill = style.fill || style.color; + style.doFill = style.fill && style.fillOpacity > 0; + style.stroke = style.stroke || style.color; + style.strokeWidthValue = safeParse(style.strokeWidth); + style.doStroke = style.stroke && style.strokeOpacity > 0 && style.strokeWidthValue > 0; + style.widthValue = safeParse(style.width); + style.heightValue = safeParse(style.height); + return style; + }, + + _drawLines: function (coordinates, close, style) { + if (!coordinates || !coordinates.length || coordinates[0].length < 2) { + return; + } + + var style = this._getGraphicStyle(style), + i, j; + + if (style.visibility != "hidden" && style.opacity > 0) { + this._context.beginPath(); + this._context.moveTo(coordinates[0][0][0], coordinates[0][0][1]); + + for (i = 0; i < coordinates.length; i++) { + for (j = 0; j < coordinates[i].length; j++) { + this._context.lineTo(coordinates[i][j][0], coordinates[i][j][1]); + } + } + + if (close) { + this._context.closePath(); + } + + if (close && style.doFill) { + this._context.fillStyle = style.fill; + this._context.globalAlpha = style.opacity * style.fillOpacity; + this._context.fill(); + } + + if (style.doStroke) { + this._context.lineCap = this._context.lineJoin = "round"; + this._context.lineWidth = style.strokeWidthValue; + this._context.strokeStyle = style.stroke; + + this._context.globalAlpha = style.opacity * style.strokeOpacity; + this._context.stroke(); + } + } + } + }); + + +})(jQuery); + + diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.geo.geomap.js b/libs/js/jquery-geo-1.0a4/js/jquery.geo.geomap.js new file mode 100755 index 0000000..47ad52e --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.geo.geomap.js @@ -0,0 +1,1864 @@ +(function ($, undefined) { + var _ieVersion = (function () { + var v = 5, div = document.createElement("div"), a = div.all || []; + while (div.innerHTML = "", a[0]) { } + return v > 6 ? v : !v; + } ()), + + _defaultOptions = { + bbox: [-180, -85, 180, 85], + bboxMax: [-180, -85, 180, 85], + center: [0, 0], + cursors: { + "static": "default", + pan: "url(data:image/vnd.microsoft.icon;base64,AAACAAEAICACAAgACAAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8=), move", + zoom: "crosshair", + drawPoint: "crosshair", + drawLineString: "crosshair", + drawPolygon: "crosshair", + measureLength: "crosshair", + measureArea: "crosshair" + }, + measureLabels: { + length: "{{=length.toFixed( 2 )}} m", + area: "{{=area.toFixed( 2 )}} sq m" + }, + drawStyle: {}, + shapeStyle: {}, + mode: "pan", + pannable: true, + scroll: "default", + services: [ + { + "class": "osm", + type: "tiled", + src: function (view) { + return "http://tile.openstreetmap.org/" + view.zoom + "/" + view.tile.column + "/" + view.tile.row + ".png"; + }, + attr: "© OpenStreetMap & contributors, CC-BY-SA" + } + ], + tilingScheme: { + tileWidth: 256, + tileHeight: 256, + levels: 18, + basePixelSize: 156543.03392799936, + origin: [-20037508.342787, 20037508.342787] + }, + axisLayout: "map", + zoom: 0, + pixelSize: 0 + }; + + $.widget("geo.geomap", { + // private widget members + _$elem: undefined, //< map div for maps, service div for services + _map: undefined, //< only defined in services + _created: false, + + _contentBounds: {}, + + _$resizeContainer: undefined, //< all elements that should match _contentBounds' size + + _$eventTarget: undefined, + _$contentFrame: undefined, + _$existingChildren: undefined, + _$attrList: undefined, + _$servicesContainer: undefined, + + _$panContainer: undefined, //< all non-service elements that move while panning + _$shapesContainer: undefined, + _$drawContainer: undefined, + _$measureContainer: undefined, + _$measureLabel: undefined, + + _dpi: 96, + + _currentServices: [], //< internal copy + + _center: undefined, + _pixelSize: undefined, + _centerMax: undefined, + _pixelSizeMax: undefined, + + _userGeodetic: true, + + _wheelTimeout: null, + _wheelLevel: 0, + + _zoomFactor: 2, //< determines what a zoom level means + + _fullZoomFactor: 2, //< interactiveScale factor needed to zoom a whole level + _partialZoomFactor: 1.18920711500273, //< interactiveScale factor needed to zoom a fraction of a level (the fourth root of 2) + + _mouseDown: undefined, + _inOp: undefined, + _toolPan: undefined, + _shiftZoom: undefined, + _anchor: undefined, + _current: undefined, + _downDate: undefined, + _moveDate: undefined, + _clickDate: undefined, + _lastMove: undefined, + _lastDrag: undefined, + + _windowHandler: null, + _resizeTimeout: null, + + _panning: undefined, + _velocity: undefined, + _friction: undefined, + + _supportTouch: undefined, + _softDblClick: undefined, + _isTap: undefined, + _isDbltap: undefined, + + _isMultiTouch: undefined, + _multiTouchAnchor: undefined, //< TouchList + _multiTouchAnchorBbox: undefined, //< bbox + _multiTouchCurrentBbox: undefined, //< bbox + + _drawTimeout: null, //< used in drawPoint mode so we don't send two shape events on dbltap + _drawPixels: [], //< an array of coordinate arrays for drawing lines & polygons, in pixel coordinates + _drawCoords: [], + + _graphicShapes: [], //< an array of objects containing style object refs & GeoJSON object refs + + _initOptions: {}, + + _options: {}, + + options: $.extend({}, _defaultOptions), + + _createWidget: function (options, element) { + this._$elem = $(element); + + if (this._$elem.is(".geo-service")) { + var $contentFrame = this._$elem.closest( ".geo-content-frame" ); + this._$elem.append('
              '); + this._$shapesContainer = this._$elem.children(':last'); + this._graphicShapes = []; + $.Widget.prototype._createWidget.apply(this, arguments); + return; + } + + this._$elem.addClass("geo-map"); + + this._initOptions = options || {}; + + this._forcePosition(this._$elem); + + this._$elem.css("text-align", "left"); + + var size = this._findMapSize(); + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._createChildren(); + + this._center = this._centerMax = [0, 0]; + + this.options["pixelSize"] = this._pixelSize = this._pixelSizeMax = 156543.03392799936; + + this._mouseDown = + this._inOp = + this._toolPan = + this._shiftZoom = + this._panning = + this._isTap = + this._isDbltap = false; + + this._anchor = [ 0, 0 ]; + this._current = [ 0, 0 ]; + this._lastMove = [ 0, 0 ]; + this._lastDrag = [ 0, 0 ]; + this._velocity = [ 0, 0 ]; + + this._friction = [.8, .8]; + + this._downDate = + this._moveDate = + this._clickDate = 0; + + this._drawPixels = []; + this._drawCoords = []; + this._graphicShapes = []; + + + $.Widget.prototype._createWidget.apply(this, arguments); + }, + + _create: function () { + this._options = this.options; + + if (this._$elem.is(".geo-service")) { + this._map = this._$elem.data( "geoMap" ); + this._$shapesContainer.geographics( ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + return; + } + + this._map = this; + + this._supportTouch = "ontouchend" in document; + this._softDblClick = this._supportTouch || _ieVersion == 7; + + var geomap = this, + touchStartEvent = this._supportTouch ? "touchstart" : "mousedown", + touchStopEvent = this._supportTouch ? "touchend touchcancel" : "mouseup", + touchMoveEvent = this._supportTouch ? "touchmove" : "mousemove"; + + $(document).keydown($.proxy(this._document_keydown, this)); + + this._$eventTarget.dblclick($.proxy(this._eventTarget_dblclick, this)); + + this._$eventTarget.bind(touchStartEvent, $.proxy(this._eventTarget_touchstart, this)); + + var dragTarget = (this._$eventTarget[0].setCapture) ? this._$eventTarget : $(document); + dragTarget.bind(touchMoveEvent, $.proxy(this._dragTarget_touchmove, this)); + dragTarget.bind(touchStopEvent, $.proxy(this._dragTarget_touchstop, this)); + + this._$eventTarget.mousewheel($.proxy(this._eventTarget_mousewheel, this)); + + this._windowHandler = function () { + if (geomap._resizeTimeout) { + clearTimeout(geomap._resizeTimeout); + } + geomap._resizeTimeout = setTimeout(function () { + if (geomap._created) { + geomap._$elem.geomap("resize"); + } + }, 500); + }; + + $(window).resize(this._windowHandler); + + this._$drawContainer.geographics({ style: this._initOptions.drawStyle || {} }); + this._options["drawStyle"] = this._$drawContainer.geographics("option", "style"); + + this._$shapesContainer.geographics( { style: this._initOptions.shapeStyle || { } } ); + this._options["shapeStyle"] = this._$shapesContainer.geographics("option", "style"); + + if (this._initOptions) { + if (this._initOptions.tilingScheme) { + this._setOption("tilingScheme", this._initOptions.tilingScheme, false); + } + if ( this._initOptions.services ) { + // jQuery UI Widget Factory merges user services with our default, we want to clobber the default + this._options[ "services" ] = $.merge( [ ], this._initOptions.services ); + } + if (this._initOptions.bbox) { + this._setOption("bbox", this._initOptions.bbox, false); + } + if (this._initOptions.center) { + this._setOption("center", this._initOptions.center, false); + } + if (this._initOptions.zoom !== undefined) { + this._setZoom(this._initOptions.zoom, false, false); + } + } + + $.template( "geoMeasureLength", this._options[ "measureLabels" ].length ); + $.template( "geoMeasureArea", this._options[ "measureLabels" ].area ); + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._createServices(); + this._refresh(); + + this._created = true; + }, + + _setOption: function (key, value, refresh) { + if ( key == "pixelSize" ) { + return; + } + + refresh = (refresh === undefined || refresh); + + if ( this._$elem.is( ".geo-map" ) ) { + this._panFinalize(); + } + + switch (key) { + case "bbox": + this._userGeodetic = $.geo.proj && $.geo._isGeodetic( value ); + if ( this._userGeodetic ) { + value = $.geo.proj.fromGeodetic( value ); + } + + this._setBbox(value, false, refresh); + value = this._getBbox(); + break; + + case "center": + this._userGeodetic = $.geo.proj && $.geo._isGeodetic( value ); + if ( this._userGeodetic ) { + value = $.geo.proj.fromGeodetic( value ); + } + + this._setCenterAndSize( value, this._pixelSize, false, refresh ); + break; + + case "measureLabels": + value = $.extend( this._options[ "measureLabels" ], value ); + $.template( "geoMeasureLength", value.length ); + $.template( "geoMeasureArea", value.area ); + break; + + case "drawStyle": + if (this._$drawContainer) { + this._$drawContainer.geographics("option", "style", value); + value = this._$drawContainer.geographics("option", "style"); + } + break; + + case "shapeStyle": + if (this._$shapesContainer) { + this._$shapesContainer.geographics("option", "style", value); + value = this._$shapesContainer.geographics("option", "style"); + } + break; + + case "mode": + this._resetDrawing( ); + this._$eventTarget.css("cursor", this._options["cursors"][value]); + break; + + case "zoom": + this._setZoom(value, false, refresh); + break; + } + + $.Widget.prototype._setOption.apply(this, arguments); + + switch ( key ) { + case "bbox": + case "center": + if ( this._userGeodetic ) { + this._options[ "bbox" ] = $.geo.proj.toGeodetic( this._options[ "bbox" ] ); + this._options[ "center" ] = $.geo.proj.toGeodetic( this._center ); + } + break; + + case "tilingScheme": + if ( value != null ) { + this._pixelSizeMax = this._getPixelSize( 0 ); + this._centerMax = [ + value.origin[ 0 ] + this._pixelSizeMax * value.tileWidth / 2, + value.origin[ 1 ] + this._pixelSizeMax * value.tileHeight / 2 + ]; + } + break; + + case "bboxMax": + this._pixelSizeMax = this._getPixelSize( 0 ); + + if ( $.geo.proj && $.geo._isGeodetic( value ) ) { + this._centerMax = $.geo.center( $.geo.proj.fromGeodetic( value ) ); + } else { + this._centerMax = $.geo.center( value ); + } + break; + + case "services": + this._createServices(); + if (refresh) { + this._refresh(); + } + break; + + case "shapeStyle": + if ( refresh ) { + this._$shapesContainer.geographics("clear"); + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes ); + } + break; + } + }, + + destroy: function () { + if ( this._$elem.is(".geo-service") ) { + this._$shapesContainer.geographics("destroy"); + this._$shapesContainer = undefined; + } else { + this._created = false; + + $(window).unbind("resize", this._windowHandler); + + for ( var i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[ i ].serviceContainer.geomap("destroy"); + $.geo["_serviceTypes"][this._currentServices[i].type].destroy(this, this._$servicesContainer, this._currentServices[i]); + } + + this._$shapesContainer.geographics("destroy"); + this._$shapesContainer = undefined; + this._$drawContainer.geographics("destroy"); + this._$drawContainer = undefined; + + this._$existingChildren.detach(); + this._$elem.html(""); + this._$elem.append(this._$existingChildren); + this._$elem.removeClass("geo-map"); + } + + $.Widget.prototype.destroy.apply(this, arguments); + }, + + toMap: function (p) { + p = this._toMap(p); + return this._userGeodetic ? $.geo.proj.toGeodetic(p) : p; + }, + + toPixel: function ( p, _center /* Internal Use Only */, _pixelSize /* Internal Use Only */ ) { + return this._toPixel( $.geo.proj ? $.geo.proj.fromGeodetic( p ) : p, _center, _pixelSize ); + }, + + opacity: function ( value, _serviceContainer ) { + if ( this._$elem.is( ".geo-service" ) ) { + this._$elem.closest( ".geo-map" ).geomap( "opacity", value, this._$elem ); + } else { + if ( value >= 0 || value <= 1 ) { + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[ i ]; + if ( !_serviceContainer || service.serviceContainer[ 0 ] == _serviceContainer[ 0 ] ) { + service.style.opacity = value; + $.geo[ "_serviceTypes" ][ service.type ].opacity( this, service ); + } + } + } + } + }, + + toggle: function ( value, _serviceContainer ) { + if ( this._$elem.is( ".geo-service" ) ) { + this._$elem.closest( ".geo-map" ).geomap( "toggle", value, this._$elem ); + } else { + + for ( var i = 0; i < this._currentServices.length; i++ ) { + var service = this._currentServices[ i ]; + + if ( !_serviceContainer || service.serviceContainer[ 0 ] == _serviceContainer[ 0 ] ) { + if ( value === undefined ) { + // toggle visibility + value = ( service.style.visibility !== "visible" ); + } + + service.style.visibility = ( value ? "visible" : "hidden" ); + + service.serviceContainer.toggle( value ); + + if ( value ) { + $.geo[ "_serviceTypes" ][ service.type ].refresh( this, service ); + } + } + } + } + }, + + zoom: function (numberOfLevels) { + if (numberOfLevels != null) { + this._setZoom(this._options["zoom"] + numberOfLevels, false, true); + } + }, + + refresh: function () { + this._refresh(); + }, + + resize: function () { + var size = this._findMapSize(), + dx = size["width"]/2 - this._contentBounds.width/2, + dy = size["height"]/2 - this._contentBounds.height/2, + i; + + this._contentBounds = { + x: parseInt(this._$elem.css("padding-left")), + y: parseInt(this._$elem.css("padding-top")), + width: size["width"], + height: size["height"] + }; + + this._$resizeContainer.css( { + width: size["width"], + height: size["height"] + } ); + + for (i = 0; i < this._currentServices.length; i++) { + $.geo["_serviceTypes"][this._currentServices[i].type].resize(this, this._currentServices[i]); + } + + this._$elem.find( ".geo-graphics" ).css( { + width: size["width"], + height: size["height"] + }).geographics( "resize" ); + + for (i = 0; i < this._drawPixels.length; i++) { + this._drawPixels[i][0] += dx; + this._drawPixels[i][1] += dy; + } + + this._setCenterAndSize(this._center, this._pixelSize, false, true); + }, + + append: function ( shape, style, label, refresh ) { + if ( shape && $.isPlainObject( shape ) ) { + var shapes, arg, i, realStyle, realLabel, realRefresh; + + if ( shape.type == "FeatureCollection" ) { + shapes = shape.features; + } else { + shapes = $.isArray( shape ) ? shape : [ shape ]; + } + + for ( i = 1; i < arguments.length; i++ ) { + arg = arguments[ i ]; + + if ( typeof arg === "object" ) { + realStyle = arg; + } else if ( typeof arg === "number" || typeof arg === "string" ) { + realLabel = arg; + } else if ( typeof arg === "boolean" ) { + realRefresh = arg; + } + } + + for ( i = 0; i < shapes.length; i++ ) { + if ( shapes[ i ].type != "Point" ) { + var bbox = $.geo.bbox( shapes[ i ] ); + if ( $.geo.proj && $.geo._isGeodetic( bbox ) ) { + bbox = $.geo.proj.fromGeodetic( bbox ); + } + $.data( shapes[ i ], "geoBbox", bbox ); + } + + this._graphicShapes.push( { + shape: shapes[ i ], + style: realStyle, + label: realLabel + } ); + } + + if ( realRefresh === undefined || realRefresh ) { + this._refresh( ); + } + } + }, + + empty: function ( refresh ) { + for ( var i = 0; i < this._graphicShapes.length; i++ ) { + $.removeData( this._graphicShapes[ i ].shape, "geoBbox" ); + } + + this._graphicShapes = []; + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + find: function ( selector, pixelTolerance ) { + var isPoint = $.isPlainObject( selector ), + searchPixel = isPoint ? this._map.toPixel( selector.coordinates ) : undefined, + mapTol = this._map._pixelSize * pixelTolerance, + result = [], + graphicShape, + geometries, + curGeom, + i = 0; + + for ( ; i < this._graphicShapes.length; i++ ) { + graphicShape = this._graphicShapes[ i ]; + + if ( isPoint ) { + if ( graphicShape.shape.type == "Point" ) { + if ( $.geo.distance( graphicShape.shape, selector ) <= mapTol ) { + result.push( graphicShape.shape ); + } + } else { + var bbox = $.data( graphicShape.shape, "geoBbox" ), + bboxPolygon = { + type: "Polygon", + coordinates: [ [ + [bbox[0], bbox[1]], + [bbox[0], bbox[3]], + [bbox[2], bbox[3]], + [bbox[2], bbox[1]], + [bbox[0], bbox[1]] + ] ] + }, + projectedPoint = { + type: "Point", + coordinates: $.geo.proj && $.geo._isGeodetic( selector.coordinates ) ? $.geo.proj.fromGeodetic( selector.coordinates ) : selector.coordinates + }; + + if ( $.geo.distance( bboxPolygon, projectedPoint, true ) <= mapTol ) { + geometries = $.geo._flatten( graphicShape.shape ); + for ( curGeom = 0; curGeom < geometries.length; curGeom++ ) { + if ( $.geo.distance( geometries[ curGeom ], selector ) <= mapTol ) { + result.push( graphicShape.shape ); + break; + } + } + } + } + } else { + result.push( graphicShape.shape ); + } + } + + if ( this._$elem.is( ".geo-map" ) ) { + this._$elem.find( ".geo-service" ).each( function( ) { + result = $.merge( result, $( this ).geomap( "find", selector, pixelTolerance ) ); + } ); + } + + return result; + }, + + remove: function ( shape, refresh ) { + for ( var i = 0; i < this._graphicShapes.length; i++ ) { + if ( this._graphicShapes[ i ].shape == shape ) { + $.removeData( shape, "geoBbox" ); + var rest = this._graphicShapes.slice( i + 1 ); + this._graphicShapes.length = i; + this._graphicShapes.push.apply( this._graphicShapes, rest ); + break; + } + } + + if ( refresh === undefined || refresh ) { + this._refresh(); + } + }, + + _getBbox: function (center, pixelSize) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + // calculate the internal bbox + var halfWidth = this._contentBounds[ "width" ] / 2 * pixelSize, + halfHeight = this._contentBounds[ "height" ] / 2 * pixelSize; + return [ center[ 0 ] - halfWidth, center[ 1 ] - halfHeight, center[ 0 ] + halfWidth, center[ 1 ] + halfHeight ]; + }, + + _setBbox: function (value, trigger, refresh) { + var center = [value[0] + (value[2] - value[0]) / 2, value[1] + (value[3] - value[1]) / 2], + pixelSize = Math.max($.geo.width(value, true) / this._contentBounds.width, $.geo.height(value, true) / this._contentBounds.height); + + if (this._options["tilingScheme"]) { + var zoom = this._getZoom( center, pixelSize ); + pixelSize = this._getPixelSize( zoom ); + } else { + if ( this._getZoom( center, pixelSize ) < 0 ) { + pixelSize = this._pixelSizeMax; + } + } + + this._setCenterAndSize(center, pixelSize, trigger, refresh); + }, + + _getBboxMax: function () { + // calculate the internal bboxMax + var halfWidth = this._contentBounds["width"] / 2 * this._pixelSizeMax, + halfHeight = this._contentBounds["height"] / 2 * this._pixelSizeMax; + return [this._centerMax[0] - halfWidth, this._centerMax[1] - halfHeight, this._centerMax[0] + halfWidth, this._centerMax[1] + halfHeight]; + }, + + _getCenter: function () { + return this._center; + }, + + _getContentBounds: function () { + return this._contentBounds; + }, + + _getServicesContainer: function () { + return this._$servicesContainer; + }, + + _getZoom: function ( center, pixelSize ) { + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + // calculate the internal zoom level, vs. public zoom property + var tilingScheme = this._options["tilingScheme"]; + if ( tilingScheme ) { + if ( tilingScheme.pixelSizes != null ) { + var roundedPixelSize = Math.floor(pixelSize * 1000), + levels = tilingScheme.pixelSizes.length, + i = levels - 1; + + for ( ; i >= 0; i-- ) { + if ( Math.floor( tilingScheme.pixelSizes[ i ] * 1000 ) >= roundedPixelSize ) { + return i; + } + } + + return 0; + } else { + return Math.max( Math.round( Math.log( tilingScheme.basePixelSize / pixelSize) / Math.log( 2 ) ), 0 ); + } + } else { + var ratio = this._contentBounds["width"] / this._contentBounds["height"], + bbox = $.geo.reaspect( this._getBbox( center, pixelSize ), ratio, true ), + bboxMax = $.geo.reaspect(this._getBboxMax(), ratio, true); + + return Math.max( Math.round( Math.log($.geo.width(bboxMax, true) / $.geo.width(bbox, true)) / Math.log(this._zoomFactor) ), 0 ); + } + }, + + _setZoom: function ( value, trigger, refresh ) { + value = Math.max( value, 0 ); + + this._setCenterAndSize( this._center, this._getPixelSize( value ), trigger, refresh ); + }, + + _createChildren: function () { + this._$existingChildren = this._$elem.children().detach(); + + this._forcePosition(this._$existingChildren); + + this._$existingChildren.css("-moz-user-select", "none"); + + var contentSizeCss = "width:" + this._contentBounds["width"] + "px; height:" + this._contentBounds["height"] + "px; margin:0; padding:0;", + contentPosCss = "position:absolute; left:0; top:0;"; + + this._$elem.prepend('
              '); + this._$eventTarget = this._$contentFrame = this._$elem.children(':first'); + + this._$contentFrame.append('
              '); + this._$servicesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
              '); + this._$shapesContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append( '
                ' ); + this._$attrList = this._$contentFrame.children( ":last" ); + + this._$contentFrame.append('
                '); + this._$drawContainer = this._$contentFrame.children(':last'); + + this._$contentFrame.append('
                '); + this._$measureContainer = this._$contentFrame.children(':last'); + this._$measureLabel = this._$measureContainer.children(); + + this._$panContainer = $( [ this._$shapesContainer[ 0 ], this._$drawContainer[ 0 ], this._$measureContainer[ 0 ] ] ); + + this._$resizeContainer = $( [ this._$contentFrame[ 0 ], this._$servicesContainer[ 0 ], this._$eventTarget[ 0 ], this._$measureContainer[ 0 ] ] ); + + this._$contentFrame.append(this._$existingChildren); + + if ( ! $("#geo-measure-style").length ) { + $("head").prepend( '' ); + } + }, + + _createServices: function () { + var service, i; + + for ( i = 0; i < this._currentServices.length; i++ ) { + this._currentServices[ i ].serviceContainer.geomap( "destroy" ); + $.geo[ "_serviceTypes" ][ this._currentServices[ i ].type ].destroy( this, this._$servicesContainer, this._currentServices[ i ] ); + } + + this._currentServices = [ ]; + this._$servicesContainer.html( "" ); + this._$attrList.html( "" ); + + for ( i = 0; i < this._options[ "services" ].length; i++ ) { + service = this._currentServices[ i ] = $.extend( { }, this._options[ "services" ][ i ] ); + + // default the service style property on our copy + service.style = $.extend( { + visibility: "visible", + opacity: 1 + }, service.style ); + + var idString = service.id ? ' id="' + service.id + '"' : "", + classString = 'class="geo-service ' + ( service["class"] ? service["class"] : '' ) + '"', + scHtml = '
                ', + servicesContainer; + + this._$servicesContainer.append( scHtml ); + serviceContainer = this._$servicesContainer.children( ":last" ); + this._currentServices[ i ].serviceContainer = serviceContainer; + + $.geo[ "_serviceTypes" ][ service.type ].create( this, serviceContainer, service, i ); + + serviceContainer.data( "geoMap", this ).geomap(); + + if ( service.attr ) { + this._$attrList.append( '
              • ' + service.attr + '
              • ' ); + } + } + + this._$attrList.find( "a" ).css( { + position: "relative", + zIndex: 100 + } ); + }, + + _refreshDrawing: function ( ) { + this._$drawContainer.geographics("clear"); + + if ( this._drawPixels.length > 0 ) { + var mode = this._options[ "mode" ], + pixels = this._drawPixels, + coords = this._drawCoords, + label, + labelShape, + labelPixel, + widthOver, + heightOver; + + switch ( mode ) { + case "measureLength": + mode = "drawLineString"; + labelShape = { + type: "LineString", + coordinates: coords + }; + label = $.render( { length: $.geo.length( labelShape, true ) }, "geoMeasureLength" ); + labelPixel = $.merge( [], pixels[ pixels.length - 1 ] ); + break; + + case "measureArea": + mode = "drawPolygon"; + + labelShape = { + type: "Polygon", + coordinates: [ $.merge( [ ], coords ) ] + }; + labelShape.coordinates[ 0 ].push( coords[ 0 ] ); + + label = $.render( { area: $.geo.area( labelShape, true ) }, "geoMeasureArea" ); + labelPixel = $.merge( [], pixels[ pixels.length - 1 ] ); + pixels = [ pixels ]; + break; + + case "drawPolygon": + pixels = [ pixels ]; + break; + } + + this._$drawContainer.geographics( mode, pixels ); + + if ( label ) { + this._$measureLabel.html( label ); + + widthOver = this._contentBounds.width - ( this._$measureLabel.outerWidth( true ) + labelPixel[ 0 ] ); + heightOver = this._contentBounds.height - ( this._$measureLabel.outerHeight( true ) + labelPixel[ 1 ] ); + + if ( widthOver < 0 ) { + labelPixel[ 0 ] += widthOver; + } + + if ( heightOver < 0 ) { + labelPixel[ 1 ] += heightOver; + } + + this._$measureLabel.css( { + left: labelPixel[ 0 ], + top: labelPixel[ 1 ] + } ).show(); + } + } + }, + + _resetDrawing: function () { + this._drawPixels = []; + this._drawCoords = []; + this._$drawContainer.geographics("clear"); + this._$measureLabel.hide(); + }, + + _refreshShapes: function (geographics, shapes, styles, labels, center, pixelSize) { + var i, mgi, + shape, + shapeBbox, + style, + label, + hasLabel, + labelPixel, + bbox = this._map._getBbox(center, pixelSize); + + for (i = 0; i < shapes.length; i++) { + shape = shapes[i].shape || shapes[i]; + shape = shape.geometry || shape; + shapeBbox = $.data(shape, "geoBbox"); + + if ( shapeBbox && $.geo._bboxDisjoint( bbox, shapeBbox ) ) { + continue; + } + + style = $.isArray(styles) ? styles[i].style : styles; + label = $.isArray(labels) ? labels[i].label : labels; + hasLabel = ( label !== undefined ); + labelPixel = undefined; + + switch (shape.type) { + case "Point": + labelPixel = this._map.toPixel( shape.coordinates, center, pixelSize ); + this._$shapesContainer.geographics("drawPoint", labelPixel, style); + break; + case "LineString": + this._$shapesContainer.geographics("drawLineString", this._map.toPixel(shape.coordinates, center, pixelSize), style); + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.pointAlong( shape, .5 ).coordinates, center, pixelSize ); + } + break; + case "Polygon": + this._$shapesContainer.geographics("drawPolygon", this._map.toPixel(shape.coordinates, center, pixelSize), style); + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiPoint": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawPoint", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiLineString": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawLineString", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + case "MultiPolygon": + for (mgi = 0; mgi < shape.coordinates.length; mgi++) { + this._$shapesContainer.geographics("drawPolygon", this._map.toPixel(shape.coordinates[mgi], center, pixelSize), style); + } + if ( hasLabel ) { + labelPixel = this._map.toPixel( $.geo.centroid( shape ).coordinates, center, pixelSize ); + } + break; + + case "GeometryCollection": + this._refreshShapes(geographics, shape.geometries, style, label, center, pixelSize); + break; + } + + if ( hasLabel && labelPixel ) { + this._$shapesContainer.geographics( "drawLabel", labelPixel, label ); + } + } + }, + + _findMapSize: function () { + // really, really attempt to find a size for this thing + // even if it's hidden (look at parents) + var size = { width: 0, height: 0 }, + sizeContainer = this._$elem; + + while (sizeContainer.size() && !(size["width"] > 0 && size["height"] > 0)) { + size = { width: sizeContainer.width(), height: sizeContainer.height() }; + if (size["width"] <= 0 || size["height"] <= 0) { + size = { width: parseInt(sizeContainer.css("width")), height: parseInt(sizeContainer.css("height")) }; + } + sizeContainer = sizeContainer.parent(); + } + return size; + }, + + _forcePosition: function (elem) { + var cssPosition = elem.css("position"); + if (cssPosition != "relative" && cssPosition != "absolute" && cssPosition != "fixed") { + elem.css("position", "relative"); + } + }, + + _getPixelSize: function ( zoom ) { + var tilingScheme = this._options["tilingScheme"]; + if (tilingScheme != null) { + if (zoom === 0) { + return tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes[0] : tilingScheme.basePixelSize; + } + + zoom = Math.round(zoom); + zoom = Math.max(zoom, 0); + var levels = tilingScheme.pixelSizes != null ? tilingScheme.pixelSizes.length : tilingScheme.levels; + zoom = Math.min(zoom, levels - 1); + + if (tilingScheme.pixelSizes != null) { + return tilingScheme.pixelSizes[zoom]; + } else { + return tilingScheme.basePixelSize / Math.pow(2, zoom); + } + } else { + var bbox = $.geo.scaleBy( this._getBboxMax(), 1 / Math.pow( this._zoomFactor, zoom ), true ); + return Math.max( $.geo.width( bbox, true ) / this._contentBounds.width, $.geo.height( bbox, true ) / this._contentBounds.height ); + } + }, + + _getZoomCenterAndSize: function ( anchor, zoomDelta, full ) { + var zoomFactor = ( full ? this._fullZoomFactor : this._partialZoomFactor ), + scale = Math.pow( zoomFactor, -zoomDelta ), + pixelSize, + zoomLevel; + + if ( this._options[ "tilingScheme" ] ) { + zoomLevel = this._getZoom(this._center, this._pixelSize * scale); + pixelSize = this._getPixelSize(zoomLevel); + } else { + pixelSize = this._pixelSize * scale; + + if ( this._getZoom( this._center, pixelSize ) < 0 ) { + pixelSize = this._pixelSizeMax; + } + } + + var ratio = pixelSize / this._pixelSize, + anchorMapCoord = this._toMap(anchor), + centerDelta = [(this._center[0] - anchorMapCoord[0]) * ratio, (this._center[1] - anchorMapCoord[1]) * ratio], + scaleCenter = [anchorMapCoord[0] + centerDelta[0], anchorMapCoord[1] + centerDelta[1]]; + + return { pixelSize: pixelSize, center: scaleCenter }; + }, + + _mouseWheelFinish: function () { + this._wheelTimeout = null; + + if (this._wheelLevel != 0) { + var wheelCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, this._options[ "tilingScheme" ] != null ); + + this._setCenterAndSize(wheelCenterAndSize.center, wheelCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + } else { + this._refresh(); + } + }, + + _panEnd: function () { + this._velocity = [ + (this._velocity[0] > 0 ? Math.floor(this._velocity[0] * this._friction[0]) : Math.ceil(this._velocity[0] * this._friction[0])), + (this._velocity[1] > 0 ? Math.floor(this._velocity[1] * this._friction[1]) : Math.ceil(this._velocity[1] * this._friction[1])) + ]; + + if (Math.abs(this._velocity[0]) < 4 && Math.abs(this._velocity[1]) < 4) { + this._panFinalize(); + } else { + this._current = [ + this._current[0] + this._velocity[0], + this._current[1] + this._velocity[1] + ]; + + this._panMove(); + setTimeout($.proxy(this._panEnd, this), 30); + } + }, + + _panFinalize: function () { + if (this._panning) { + this._velocity = [0, 0]; + + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + image = this._options[ "axisLayout" ] === "image", + dxMap = -dx * this._pixelSize, + dyMap = ( image ? -1 : 1 ) * dy * this._pixelSize; + + this._$panContainer.css({ left: 0, top: 0 }); + + this._$servicesContainer.find( ".geo-shapes-container" ).css( { left: 0, top: 0 } ); + + this._setCenterAndSize([this._center[0] + dxMap, this._center[1] + dyMap], this._pixelSize, true, true); + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._inOp = false; + this._anchor = this._current; + this._mouseDown = this._toolPan = this._panning = false; + } + }, + + _panMove: function () { + if ( ! this._options[ "pannable" ] ) { + return; + } + + var dx = this._current[0] - this._lastDrag[0], + dy = this._current[1] - this._lastDrag[1], + i = 0, + service, + translateObj; + + if (this._toolPan || dx > 3 || dx < -3 || dy > 3 || dy < -3) { + if (!this._toolPan) { + this._toolPan = true; + this._$eventTarget.css("cursor", this._options["cursors"]["pan"]); + } + + if (this._mouseDown) { + this._velocity = [dx, dy]; + } + + if (dx != 0 || dy != 0) { + this._panning = true; + this._lastDrag = this._current; + + translateObj = { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + }; + + for ( i = 0; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo[ "_serviceTypes" ][ service.type ].interactivePan( this, service, dx, dy ); + + service.serviceContainer.find( ".geo-shapes-container" ).css( translateObj ); + } + + this._$panContainer.css( translateObj ); + + //this._refreshDrawing(); + } + } + }, + + _refresh: function () { + var service, + i = 0; + + if ( this._$elem.is( ".geo-map" ) ) { + for ( ; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + + if ( !this._mouseDown && $.geo[ "_serviceTypes" ][ service.type ] !== null ) { + $.geo[ "_serviceTypes" ][ service.type ].refresh( this, service ); + service.serviceContainer.geomap( "refresh" ); + } + } + } + + if ( this._$shapesContainer ) { + this._$shapesContainer.geographics( "clear" ); + if ( this._graphicShapes.length > 0 ) { + this._refreshShapes( this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes ); + } + } + }, + + _setCenterAndSize: function (center, pixelSize, trigger, refresh) { + if ( ! $.isArray( center ) || center.length != 2 || typeof center[ 0 ] !== "number" || typeof center[ 1 ] !== "number" ) { + return; + } + + // the final call during any extent change + if (this._pixelSize != pixelSize) { + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + for (var i = 0; i < this._currentServices.length; i++) { + var service = this._currentServices[i]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, center, pixelSize); + } + } + + this._center = $.merge( [ ], center ); + this._options["pixelSize"] = this._pixelSize = pixelSize; + + if ( this._userGeodetic ) { + this._options["bbox"] = $.geo.proj.toGeodetic( this._getBbox() ); + this._options["center"] = $.geo.proj.toGeodetic( this._center ); + } else { + this._options["bbox"] = this._getBbox(); + this._options["center"] = $.merge( [ ], center ); + } + + this._options["zoom"] = this._getZoom(); + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords); + } + + if (trigger) { + this._trigger("bboxchange", window.event, { bbox: $.merge( [ ], this._options["bbox"] ) }); + } + + if (refresh) { + this._refresh(); + this._refreshDrawing(); + } + }, + + _toMap: function (p, center, pixelSize) { + // ignores $.geo.proj + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var isMultiPointOrLineString = $.isArray( p[ 0 ] ), + isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray( p[ 0 ][ 0 ] ), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray( p[ 0 ][ 0 ][ 0 ] ), + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + xRatio = $.geo.width(bbox, true) / width, + yRatio = $.geo.height(bbox, true) / height, + yOffset, + image = this._options[ "axisLayout" ] === "image", + result = [], + i, j, k; + + if ( !isMultiPolygon ) { + if ( !isMultiLineStringOrPolygon ) { + if ( !isMultiPointOrLineString ) { + p = [ p ]; + } + p = [ p ]; + } + p = [ p ]; + } + + for ( i = 0; i < p.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < p[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < p[ i ][ j ].length; k++ ) { + yOffset = (p[ i ][ j ][ k ][1] * yRatio); + result[ i ][ j ][ k ] = [ + bbox[ 0 ] + ( p[ i ][ j ][ k ][ 0 ] * xRatio ), + image ? bbox[ 1 ] + yOffset : bbox[ 3 ] - yOffset + ]; + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + }, + + _toPixel: function (p, center, pixelSize) { + // ignores $.geo.proj + + center = center || this._center; + pixelSize = pixelSize || this._pixelSize; + + var isMultiPointOrLineString = $.isArray( p[ 0 ] ), + isMultiLineStringOrPolygon = isMultiPointOrLineString && $.isArray( p[ 0 ][ 0 ] ), + isMultiPolygon = isMultiLineStringOrPolygon && $.isArray( p[ 0 ][ 0 ][ 0 ] ), + width = this._contentBounds["width"], + height = this._contentBounds["height"], + halfWidth = width / 2 * pixelSize, + halfHeight = height / 2 * pixelSize, + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight], + bboxWidth = $.geo.width(bbox, true), + bboxHeight = $.geo.height(bbox, true), + image = this._options[ "axisLayout" ] === "image", + xRatio = width / bboxWidth, + yRatio = height / bboxHeight, + result = [ ], + i, j, k; + + if ( !isMultiPolygon ) { + if ( !isMultiLineStringOrPolygon ) { + if ( !isMultiPointOrLineString ) { + p = [ p ]; + } + p = [ p ]; + } + p = [ p ]; + } + + for ( i = 0; i < p.length; i++ ) { + result[ i ] = [ ]; + for ( j = 0; j < p[ i ].length; j++ ) { + result[ i ][ j ] = [ ]; + for ( k = 0; k < p[ i ][ j ].length; k++ ) { + result[ i ][ j ][ k ] = [ + Math.round( ( p[ i ][ j ][ k ][ 0 ] - bbox[ 0 ] ) * xRatio ), + Math.round( ( image ? p[ i ][ j ][ k ][ 1 ] - bbox[ 1 ] : bbox[ 3 ] - p[ i ][ j ][ k ][ 1 ] ) * yRatio ) + ]; + } + } + } + + return isMultiPolygon ? result : isMultiLineStringOrPolygon ? result[ 0 ] : isMultiPointOrLineString ? result[ 0 ][ 0 ] : result[ 0 ][ 0 ][ 0 ]; + }, + + _zoomTo: function (coord, zoom, trigger, refresh) { + zoom = zoom < 0 ? 0 : zoom; + + var pixelSize = this._getPixelSize( zoom ); + + this._setCenterAndSize( coord, pixelSize, trigger, refresh ); + }, + + _document_keydown: function (e) { + var len = this._drawCoords.length; + if (len > 0 && e.which == 27) { + if (len <= 2) { + this._resetDrawing(); + this._inOp = false; + } else { + this._drawCoords[len - 2] = $.merge( [], this._drawCoords[ len - 1 ] ); + this._drawPixels[len - 2] = $.merge( [], this._drawPixels[ len - 1 ] ); + + this._drawCoords.length--; + this._drawPixels.length--; + + this._refreshDrawing(); + } + } + }, + + _eventTarget_dblclick_zoom: function(e) { + this._trigger("dblclick", e, { type: "Point", coordinates: this.toMap(this._current) }); + if (!e.isDefaultPrevented()) { + var centerAndSize = this._getZoomCenterAndSize(this._current, 1, true ); + this._setCenterAndSize(centerAndSize.center, centerAndSize.pixelSize, true, true); + } + }, + + _eventTarget_dblclick: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + this._panFinalize(); + + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + var offset = $(e.currentTarget).offset(); + + switch (this._options["mode"]) { + case "drawLineString": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + this._drawCoords.length--; + this._trigger( "shape", e, { + type: "LineString", + coordinates: this._userGeodetic ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords + } ); + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "drawPolygon": + if ( this._drawCoords.length > 1 && ! ( this._drawCoords[0][0] == this._drawCoords[1][0] && + this._drawCoords[0][1] == this._drawCoords[1][1] ) ) { + var endIndex = this._drawCoords.length - 1; + if (endIndex > 2) { + this._drawCoords[endIndex] = $.merge( [], this._drawCoords[0] ); + this._trigger( "shape", e, { + type: "Polygon", + coordinates: [ this._userGeodetic ? $.geo.proj.toGeodetic(this._drawCoords) : this._drawCoords ] + } ); + } + } else { + this._eventTarget_dblclick_zoom(e); + } + this._resetDrawing(); + break; + + case "measureLength": + case "measureArea": + this._resetDrawing(); + break; + + default: + this._eventTarget_dblclick_zoom(e); + break; + } + + this._inOp = false; + }, + + _eventTarget_touchstart: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + if ( !this._supportTouch && e.which != 1 ) { + return; + } + + this._panFinalize(); + this._mouseWheelFinish(); + + var offset = $(e.currentTarget).offset(), + touches = e.originalEvent.changedTouches; + + if ( this._supportTouch ) { + this._multiTouchAnchor = $.merge( [ ], touches ); + + this._isMultiTouch = this._multiTouchAnchor.length > 1; + + if ( this._isMultiTouch ) { + this._multiTouchCurrentBbox = [ + touches[0].pageX - offset.left, + touches[0].pageY - offset.top, + touches[1].pageX - offset.left, + touches[1].pageY - offset.top + ]; + + this._multiTouchAnchorBbox = $.merge( [ ], this._multiTouchCurrentBbox ); + + this._current = $.geo.center( this._multiTouchCurrentBbox, true ); + } else { + this._multiTouchCurrentBbox = [ + touches[0].pageX - offset.left, + touches[0].pageY - offset.top, + NaN, + NaN + ]; + + this._current = [ touches[0].pageX - offset.left, touches[0].pageY - offset.top ]; + } + } else { + this._current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + var downDate = $.now(); + if (downDate - this._downDate < 750) { + if (this._isTap) { + var dx = this._current[0] - this._anchor[0], + dy = this._current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance > 8) { + this._isTap = false; + } else { + this._current = $.merge( [ ], this._anchor ); + } + } + + if (this._isDbltap) { + this._isDbltap = false; + } else { + this._isDbltap = this._isTap; + } + } else { + this._isDbltap = false; + } + this._isTap = true; + this._downDate = downDate; + } + + this._mouseDown = true; + this._anchor = $.merge( [ ], this._current ); + + if (!this._inOp && e.shiftKey) { + this._shiftZoom = true; + this._$eventTarget.css("cursor", this._options["cursors"]["zoom"]); + } else if ( !this._isMultiTouch && this._options[ "pannable" ] ) { + this._inOp = true; + + switch (this._options["mode"]) { + case "zoom": + break; + + default: + this._lastDrag = this._current; + + if (e.currentTarget.setCapture) { + e.currentTarget.setCapture(); + } + + break; + } + } + + e.preventDefault(); + return false; + }, + + _dragTarget_touchmove: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + var offset = this._$eventTarget.offset(), + drawCoordsLen = this._drawCoords.length, + touches = e.originalEvent.changedTouches, + current, + service, + i = 0; + + if ( this._supportTouch ) { + if ( !this._isMultiTouch && touches[ 0 ].identifier !== this._multiTouchAnchor[ 0 ].identifier ) { + // switch to multitouch + this._mouseDown = false; + this._dragTarget_touchstop( e ); + + this._isMultiTouch = true; + + this._multiTouchAnchor.push( touches[ 0 ] ); + + this._multiTouchCurrentBbox = [ + this._multiTouchCurrentBbox[ 0 ], + this._multiTouchCurrentBbox[ 1 ], + this._multiTouchAnchor[1].pageX - offset.left, + this._multiTouchAnchor[1].pageY - offset.top + ]; + + this._multiTouchAnchorBbox = $.merge( [ ], this._multiTouchCurrentBbox ); + + this._mouseDown = true; + this._anchor = this._current = $.geo.center( this._multiTouchCurrentBbox, true ); + + return false; + } + + if ( this._isMultiTouch ) { + for ( ; i < touches.length; i++ ) { + if ( touches[ i ].identifier === this._multiTouchAnchor[ 0 ].identifier ) { + this._multiTouchCurrentBbox[ 0 ] = touches[ i ].pageX - offset.left; + this._multiTouchCurrentBbox[ 1 ] = touches[ i ].pageY - offset.top; + } else if ( touches[ i ].identifier === this._multiTouchAnchor[ 1 ].identifier ) { + this._multiTouchCurrentBbox[ 2 ] = touches[ i ].pageX - offset.left; + this._multiTouchCurrentBbox[ 3 ] = touches[ i ].pageY - offset.top; + } + } + + current = $.geo.center( this._multiTouchCurrentBbox, true ); + + var currentWidth = this._multiTouchCurrentBbox[ 2 ] - this._multiTouchCurrentBbox[ 0 ], + anchorWidth = this._multiTouchAnchorBbox[ 2 ] - this._multiTouchAnchorBbox[ 0 ], + ratioWidth = currentWidth / anchorWidth; + + this._wheelLevel = Math.abs( Math.floor( ( 1 - ratioWidth ) * 10 ) ); + if ( Math.abs( currentWidth ) < Math.abs( anchorWidth ) ) { + this._wheelLevel = - this._wheelLevel; + } + + var pinchCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, false ); + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + + for ( i = 0; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo[ "_serviceTypes" ][ service.type ].interactiveScale( this, service, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize ); + } + + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize); + } + + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, pinchCenterAndSize.center, pinchCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + current = $.geo.center( this._multiTouchCurrentBbox, true ); + } else { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (current[0] === this._lastMove[0] && current[1] === this._lastMove[1]) { + if ( this._inOp ) { + e.preventDefault(); + return false; + } + } + + if ( _ieVersion == 7 ) { + this._isDbltap = this._isTap = false; + } + + if (this._mouseDown) { + this._current = current; + this._moveDate = $.now(); + } + + if ( this._isMultiTouch ) { + e.preventDefault( ); + this._isDbltap = this._isTap = false; + return false; + } + + var mode = this._shiftZoom ? "zoom" : this._options["mode"]; + + switch (mode) { + case "zoom": + if ( this._mouseDown ) { + this._$drawContainer.geographics( "clear" ); + this._$drawContainer.geographics( "drawBbox", [ + this._anchor[ 0 ], + this._anchor[ 1 ], + current[ 0 ], + current[ 1 ] + ] ); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + case "drawLineString": + case "drawPolygon": + case "measureLength": + case "measureArea": + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + if (drawCoordsLen > 0) { + this._drawCoords[drawCoordsLen - 1] = this._toMap(current); + this._drawPixels[drawCoordsLen - 1] = current; + + this._refreshDrawing(); + } + + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + + default: + if (this._mouseDown || this._toolPan) { + this._panMove(); + } else { + this._trigger("move", e, { type: "Point", coordinates: this.toMap(current) }); + } + break; + } + + this._lastMove = current; + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _dragTarget_touchstop: function (e) { + if ( this._options[ "mode" ] === "static" ) { + return; + } + + if (!this._mouseDown && _ieVersion == 7) { + // ie7 doesn't appear to trigger dblclick on this._$eventTarget, + // we fake regular click here to cause soft dblclick + this._eventTarget_touchstart(e); + } + + var mouseWasDown = this._mouseDown, + wasToolPan = this._toolPan, + offset = this._$eventTarget.offset(), + mode = this._shiftZoom ? "zoom" : this._options["mode"], + current, i, clickDate, + dx, dy; + + if (this._supportTouch) { + current = [e.originalEvent.changedTouches[0].pageX - offset.left, e.originalEvent.changedTouches[0].pageY - offset.top]; + } else { + current = [e.pageX - offset.left, e.pageY - offset.top]; + } + + if (this._softDblClick) { + if (this._isTap) { + var dx = current[0] - this._anchor[0], + dy = current[1] - this._anchor[1], + distance = Math.sqrt((dx * dx) + (dy * dy)); + if (distance <= 8) { + current = $.merge( [ ], this._anchor ); + } + } + } + + dx = current[0] - this._anchor[0]; + dy = current[1] - this._anchor[1]; + + this._$eventTarget.css("cursor", this._options["cursors"][this._options["mode"]]); + + this._shiftZoom = this._mouseDown = this._toolPan = false; + + if ( this._isMultiTouch ) { + e.preventDefault( ); + this._isMultiTouch = false; + + var pinchCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, false ); + + this._setCenterAndSize(pinchCenterAndSize.center, pinchCenterAndSize.pixelSize, true, true); + + this._wheelLevel = 0; + + return false; + } + + if (document.releaseCapture) { + document.releaseCapture(); + } + + if (mouseWasDown) { + clickDate = $.now(); + this._current = current; + + switch (mode) { + case "zoom": + if ( dx > 0 || dy > 0 ) { + var minSize = this._pixelSize * 6, + bboxCoords = this._toMap( [ [ + Math.min( this._anchor[ 0 ], current[ 0 ] ), + Math.max( this._anchor[ 1 ], current[ 1 ] ) + ], [ + Math.max( this._anchor[ 0 ], current[ 0 ] ), + Math.min( this._anchor[ 1 ], current[ 1 ] ) + ] + ] ), + bbox = [ + bboxCoords[0][0], + bboxCoords[0][1], + bboxCoords[1][0], + bboxCoords[1][1] + ]; + + if ( ( bbox[2] - bbox[0] ) < minSize && ( bbox[3] - bbox[1] ) < minSize ) { + bbox = $.geo.scaleBy( this._getBbox( $.geo.center( bbox, true ) ), .5, true ); + } + + this._setBbox(bbox, true, true); + } + + this._resetDrawing(); + break; + + case "drawPoint": + if (this._drawTimeout) { + window.clearTimeout(this._drawTimeout); + this._drawTimeout = null; + } + + if (wasToolPan) { + this._panFinalize(); + } else { + if (clickDate - this._clickDate > 100) { + var geomap = this; + this._drawTimeout = setTimeout(function () { + if (geomap._drawTimeout) { + geomap._trigger("shape", e, { type: "Point", coordinates: geomap.toMap(current) }); + geomap._inOp = false; + geomap._drawTimeout = null; + } + }, 250); + } + } + break; + + case "drawLineString": + case "drawPolygon": + case "measureLength": + case "measureArea": + if (wasToolPan) { + this._panFinalize(); + } else { + i = (this._drawCoords.length == 0 ? 0 : this._drawCoords.length - 1); + + this._drawCoords[i] = this._toMap(current); + this._drawPixels[i] = current; + + if (i < 2 || !(this._drawCoords[i][0] == this._drawCoords[i-1][0] && + this._drawCoords[i][1] == this._drawCoords[i-1][1])) { + this._drawCoords[i + 1] = this._toMap(current); + this._drawPixels[i + 1] = current; + } + + this._refreshDrawing(); + } + break; + + default: + if (wasToolPan) { + this._panEnd(); + } else { + if (clickDate - this._clickDate > 100) { + this._trigger("click", e, { type: "Point", coordinates: this.toMap(current) }); + this._inOp = false; + } + } + break; + } + + this._clickDate = clickDate; + + if (this._softDblClick && this._isDbltap) { + this._isDbltap = this._isTap = false; + this._$eventTarget.trigger("dblclick", e); + } + } + + if ( this._inOp ) { + e.preventDefault(); + return false; + } + }, + + _eventTarget_mousewheel: function (e, delta) { + if ( this._options[ "mode" ] === "static" || this._options[ "scroll" ] === "off" ) { + return; + } + + e.preventDefault(); + + this._panFinalize(); + + if ( this._mouseDown ) { + return false; + } + + if (delta != 0) { + if (this._wheelTimeout) { + window.clearTimeout(this._wheelTimeout); + this._wheelTimeout = null; + } else { + var offset = $(e.currentTarget).offset(); + this._anchor = [e.pageX - offset.left, e.pageY - offset.top]; + } + + this._wheelLevel += delta; + + var wheelCenterAndSize = this._getZoomCenterAndSize( this._anchor, this._wheelLevel, this._options[ "tilingScheme" ] != null ), + service, + i = 0; + + this._$elem.find( ".geo-shapes-container" ).geographics("clear"); + + for ( ; i < this._currentServices.length; i++ ) { + service = this._currentServices[ i ]; + $.geo["_serviceTypes"][service.type].interactiveScale(this, service, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._graphicShapes.length > 0 && this._graphicShapes.length < 256) { + this._refreshShapes(this._$shapesContainer, this._graphicShapes, this._graphicShapes, this._graphicShapes, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + } + + if (this._drawCoords.length > 0) { + this._drawPixels = this._toPixel(this._drawCoords, wheelCenterAndSize.center, wheelCenterAndSize.pixelSize); + this._refreshDrawing(); + } + + var geomap = this; + this._wheelTimeout = window.setTimeout(function () { + geomap._mouseWheelFinish(); + }, 1000); + } + + return false; + } + } + ); +})(jQuery); + + diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.geo.head.js b/libs/js/jquery-geo-1.0a4/js/jquery.geo.head.js new file mode 100755 index 0000000..9f9faaf --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.geo.head.js @@ -0,0 +1,23 @@ +// excanvas +// Copyright 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/* + * AppGeo/geo + * (c) 2007-2011, Applied Geographics, Inc. All rights reserved. + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + */ + + diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.geo.shingled.js b/libs/js/jquery-geo-1.0a4/js/jquery.geo.shingled.js new file mode 100755 index 0000000..a883dbe --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.geo.shingled.js @@ -0,0 +1,272 @@ +(function ($, undefined) { + $.geo._serviceTypes.shingled = (function () { + return { + create: function (map, serviceContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0 + }; + + var scHtml = '
                '; + + serviceContainer.append(scHtml); + + serviceState.serviceContainer = serviceContainer.children(":last"); + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, serviceContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function (map, service, dx, dy) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + pixelSize = map._pixelSize, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + panContainer = scaleContainer.children("div"); + + if ( !panContainer.length ) { + scaleContainer.children("img").wrap('
                '); + panContainer = scaleContainer.children("div"); + } + + panContainer.css( { + left: function (index, value) { + return parseInt(value) + dx; + }, + top: function (index, value) { + return parseInt(value) + dy; + } + } ); + + // until pan/zoom rewrite, remove all containers not in this scale + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + bbox = [center[0] - halfWidth, center[1] - halfHeight, center[0] + halfWidth, center[1] + halfHeight]; + + serviceContainer.children().each(function (i) { + var $scaleContainer = $(this), + scalePixelSize = $scaleContainer.attr("data-pixelSize"), + ratio = scalePixelSize / pixelSize; + + $scaleContainer.css( { + width: mapWidth * ratio, + height: mapHeight * ratio } ).children("img").each(function (i) { + var $img = $(this), + imgCenter = $img.data("center"), + x = (Math.round((imgCenter[0] - center[0]) / scalePixelSize) - halfWidth) * ratio, + y = (Math.round((center[1] - imgCenter[1]) / scalePixelSize) - halfHeight) * ratio; + + $img.css({ left: x + "px", top: y + "px" }); + }); + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + this._cancelUnloaded(map, service); + + if ( serviceState && service && service.style.visibility === "visible" && !( serviceState.serviceContainer.is( ":hidden" ) ) ) { + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceObj = this, + serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children('[data-pixelSize="' + pixelSize + '"]'), + + opacity = service.style.opacity, + + $img; + + if ( !scaleContainer.size() ) { + serviceContainer.append('
                '); + scaleContainer = serviceContainer.children(":last"); + } + + scaleContainer.children("img").each(function (i) { + var $thisimg = $(this), + imgCenter = $thisimg.data("center"), + center = map._getCenter(), + x = Math.round((imgCenter[0] - center[0]) / pixelSize) - halfWidth, + y = Math.round((center[1] - imgCenter[1]) / pixelSize) - halfHeight; + + $thisimg.css({ left: x + "px", top: y + "px" }); + }); + + if (opacity < 1) { + serviceContainer.find("img").attr("data-keepAlive", "0"); + } + + var urlProp = ( service.hasOwnProperty("src") ? "src" : "getUrl" ), + urlArgs = { + bbox: bbox, + width: mapWidth, + height: mapHeight, + zoom: map._getZoom(), + tile: null, + index: 0 + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + + serviceState.loadCount++; + //this._map._requestQueued(); + + scaleContainer.append(''); + $img = scaleContainer.children(":last").data("center", map._getCenter()); + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + + } + }, + + resize: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if ( serviceState && service && service.style.visibility === "visible" ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + halfWidth = mapWidth / 2, + halfHeight = mapHeight / 2, + + scaleContainer = serviceContainer.children(); + + scaleContainer.attr("data-pixelSize", "0"); + scaleContainer.css({ + left: halfWidth + 'px', + top: halfHeight + 'px' + }); + } + }, + + opacity: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find( "img" ).stop( true ).fadeTo( "fast", service.style.opacity ); + }, + + toggle: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + serviceState.serviceContainer.css("display", service.style.visibility === "visible" ? "block" : "none"); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data(service, "geoServiceState"); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + }, + + _loadImage: function ( $img, url, pixelSize, serviceState, serviceContainer, opacity ) { + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(':not([data-pixelSize="' + pixelSize + '"])').remove(); + + var panContainer = serviceContainer.find('[data-pixelSize="' + pixelSize + '"]>div'); + if (panContainer.size() > 0) { + var panContainerPos = panContainer.position(); + + panContainer.children("img").each(function (i) { + var $thisimg = $(this), + x = panContainerPos.left + parseInt($thisimg.css("left")), + y = panContainerPos.top + parseInt($thisimg.css("top")); + + $thisimg.css({ left: x + "px", top: y + "px" }); + }).unwrap(); + + panContainer.remove(); + } + + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", url); + } + } + })(); +})(jQuery); + diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.geo.tiled.js b/libs/js/jquery-geo-1.0a4/js/jquery.geo.tiled.js new file mode 100755 index 0000000..e99b2ea --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.geo.tiled.js @@ -0,0 +1,441 @@ +(function ($, undefined) { + $.geo._serviceTypes.tiled = (function () { + return { + create: function (map, serviceContainer, service, index) { + var serviceState = $.data(service, "geoServiceState"); + + if ( !serviceState ) { + serviceState = { + loadCount: 0, + reloadTiles: false + }; + + var scHtml = '
                '; + + serviceContainer.append(scHtml); + + serviceState.serviceContainer = serviceContainer.children( ":last" ); + + $.data(service, "geoServiceState", serviceState); + } + + return serviceState.serviceContainer; + }, + + destroy: function (map, serviceContainer, service) { + var serviceState = $.data(service, "geoServiceState"); + + serviceState.serviceContainer.remove(); + + $.removeData(service, "geoServiceState"); + }, + + interactivePan: function ( map, service, dx, dy ) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState ) { + this._cancelUnloaded( map, service ); + + serviceState.serviceContainer.children( ).css( "-moz-transition", "").css( { + webkitTransition: "", + transition: "", + left: function ( index, value ) { + return parseInt( value ) + dx; + }, + top: function ( index, value ) { + return parseInt( value ) + dy; + } + }); + + if ( service && service.style.visibility === "visible" ) { + var pixelSize = map._pixelSize, + + serviceObj = this, + serviceContainer = serviceState.serviceContainer, + scaleContainer = serviceContainer.children("[data-pixelSize='" + pixelSize + "']"), + + /* same as refresh 1 */ + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + image = map.options[ "axisLayout" ] === "image", + ySign = image ? +1 : -1, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + /* end same as refresh 1 */ + + halfWidth = mapWidth / 2 * pixelSize, + halfHeight = mapHeight / 2 * pixelSize, + + currentPosition = scaleContainer.position(), + scaleOriginParts = scaleContainer.data("scaleOrigin").split(","), + totalDx = parseInt(scaleOriginParts[0]) - currentPosition.left, + totalDy = parseInt(scaleOriginParts[1]) - currentPosition.top, + + mapCenterOriginal = map._getCenter(), + mapCenter = [ + mapCenterOriginal[0] + totalDx * pixelSize, + mapCenterOriginal[1] + ySign * totalDy * pixelSize + ], + + /* same as refresh 2 */ + tileX = Math.floor(((mapCenter[0] - halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.max( Math.floor(( image ? (mapCenter[1] - halfHeight) - tilingScheme.origin[1] : tilingScheme.origin[1] - (mapCenter[1] + halfHeight)) / (pixelSize * tileHeight)), 0 ), + tileX2 = Math.ceil(((mapCenter[0] + halfWidth) - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil(( image ? (mapCenter[1] + halfHeight) - tilingScheme.origin[1] : tilingScheme.origin[1] - (mapCenter[1] - halfHeight)) / (pixelSize * tileHeight)), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] + ySign * bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMinOrMaxY = tilingScheme.origin[1] + ySign * (fullYAtScale * tileHeight) * pixelSize, + /* end same as refresh 2 */ + + serviceLeft = Math.round((fullXMinX - (mapCenterOriginal[0] - halfWidth)) / pixelSize), + serviceTop = Math.round(( image ? fullYMinOrMaxY - (mapCenterOriginal[1] - halfHeight) : (mapCenterOriginal[1] + halfHeight) - fullYMinOrMaxY ) / pixelSize), + + opacity = service.style.opacity, + + x, y; + + for ( x = tileX; x < tileX2; x++ ) { + for ( y = tileY; y < tileY2; y++ ) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ( $img.size( ) === 0 ) { + /* same as refresh 3 */ + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] + ySign * (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] + ySign * ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + urlProp = ( service.hasOwnProperty("src") ? "src" : "getUrl" ), + urlArgs = { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + /* end same as refresh 3 */ + + serviceState.loadCount++; + //this._map._requestQueued(); + + if ( serviceState.reloadTiles && $img.size() > 0 ) { + $img.attr( "src", imageUrl ); + } else { + /* same as refresh 4 */ + var imgMarkup = ""; + + scaleContainer.append( imgMarkup ); + $img = scaleContainer.children(":last"); + } + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + + /* end same as refresh 4 */ + } + } + } + } + } + }, + + interactiveScale: function (map, service, center, pixelSize) { + var serviceState = $.data( service, "geoServiceState" ); + + if ( serviceState && service && service.style.visibility === "visible" ) { + this._cancelUnloaded(map, service); + + var serviceContainer = serviceState.serviceContainer, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight; + + + serviceContainer.children( ).each( function ( i ) { + var $scaleContainer = $(this), + scaleRatio = $scaleContainer.attr("data-pixelSize") / pixelSize, + transitionCss = ""; //"width .25s ease-in, height .25s ease-in, left .25s ease-in, top .25s ease-in"; + + scaleRatio = Math.round(scaleRatio * 1000) / 1000; + + + var scaleOriginParts = $scaleContainer.data("scaleOrigin").split(","), + oldMapCoord = map._toMap([scaleOriginParts[0], scaleOriginParts[1]]), + newPixelPoint = map._toPixel(oldMapCoord, center, pixelSize); + + $scaleContainer.css( "-moz-transition", transitionCss ).css( { + webkitTransition: transitionCss, + transition: transitionCss, + left: Math.round(newPixelPoint[0]) + "px", + top: Math.round(newPixelPoint[1]) + "px", + width: tileWidth * scaleRatio, + height: tileHeight * scaleRatio + } ); + + if ( $("body")[0].filters !== undefined ) { + $scaleContainer.children().each( function ( i ) { + $( this ).css( "filter", "progid:DXImageTransform.Microsoft.Matrix(FilterType=bilinear,M11=" + scaleRatio + ",M22=" + scaleRatio + ",sizingmethod='auto expand')" ); + } ); + } + }); + } + }, + + refresh: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + this._cancelUnloaded(map, service); + + if ( serviceState && service && service.style.visibility === "visible" && !( serviceState.serviceContainer.is( ":hidden" ) ) ) { + + var bbox = map._getBbox(), + pixelSize = map._pixelSize, + + serviceObj = this, + $serviceContainer = serviceState.serviceContainer, + + contentBounds = map._getContentBounds(), + mapWidth = contentBounds["width"], + mapHeight = contentBounds["height"], + + image = map.options[ "axisLayout" ] === "image", + ySign = image ? +1 : -1, + + tilingScheme = map.options["tilingScheme"], + tileWidth = tilingScheme.tileWidth, + tileHeight = tilingScheme.tileHeight, + + tileX = Math.floor((bbox[0] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY = Math.max( Math.floor( ( image ? bbox[1] - tilingScheme.origin[1] : tilingScheme.origin[1] - bbox[ 3 ] ) / (pixelSize * tileHeight) ), 0 ), + tileX2 = Math.ceil((bbox[2] - tilingScheme.origin[0]) / (pixelSize * tileWidth)), + tileY2 = Math.ceil( ( image ? bbox[3] - tilingScheme.origin[1] : tilingScheme.origin[1] - bbox[ 1 ] ) / (pixelSize * tileHeight) ), + + bboxMax = map._getBboxMax(), + pixelSizeAtZero = map._getPixelSize(0), + ratio = pixelSizeAtZero / pixelSize, + fullXAtScale = Math.floor((bboxMax[0] - tilingScheme.origin[0]) / (pixelSizeAtZero * tileWidth)) * ratio, + fullYAtScale = Math.floor((tilingScheme.origin[1] + ySign * bboxMax[3]) / (pixelSizeAtZero * tileHeight)) * ratio, + + fullXMinX = tilingScheme.origin[0] + (fullXAtScale * tileWidth) * pixelSize, + fullYMinOrMaxY = tilingScheme.origin[1] + ySign * (fullYAtScale * tileHeight) * pixelSize, + + serviceLeft = Math.round((fullXMinX - bbox[0]) / pixelSize), + serviceTop = Math.round( ( image ? fullYMinOrMaxY - bbox[1] : bbox[3] - fullYMinOrMaxY ) / pixelSize), + + scaleContainers = $serviceContainer.children().show(), + scaleContainer = scaleContainers.filter("[data-pixelSize='" + pixelSize + "']").appendTo($serviceContainer), + + opacity = service.style.opacity, + + x, y; + + if (serviceState.reloadTiles) { + scaleContainers.find("img").attr("data-dirty", "true"); + } + + if (!scaleContainer.size()) { + $serviceContainer.append("
                "); + scaleContainer = $serviceContainer.children(":last").data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + } else { + scaleContainer.css({ + left: (serviceLeft % tileWidth) + "px", + top: (serviceTop % tileHeight) + "px" + }).data("scaleOrigin", (serviceLeft % tileWidth) + "," + (serviceTop % tileHeight)); + + scaleContainer.children().each(function (i) { + var + $img = $(this), + tile = $img.attr("data-tile").split(","); + + $img.css({ + left: Math.round(((parseInt(tile[0]) - fullXAtScale) * 100) + (serviceLeft - (serviceLeft % tileWidth)) / tileWidth * 100) + "%", + top: Math.round(((parseInt(tile[1]) - fullYAtScale) * 100) + (serviceTop - (serviceTop % tileHeight)) / tileHeight * 100) + "%" + }); + + if (opacity < 1) { + $img.fadeTo(0, opacity); + } + }); + } + + for (x = tileX; x < tileX2; x++) { + for (y = tileY; y < tileY2; y++) { + var tileStr = "" + x + "," + y, + $img = scaleContainer.children("[data-tile='" + tileStr + "']").removeAttr("data-dirty"); + + if ($img.size() === 0 || serviceState.reloadTiles) { + var bottomLeft = [ + tilingScheme.origin[0] + (x * tileWidth) * pixelSize, + tilingScheme.origin[1] + ySign * (y * tileHeight) * pixelSize + ], + + topRight = [ + tilingScheme.origin[0] + ((x + 1) * tileWidth - 1) * pixelSize, + tilingScheme.origin[1] + ySign * ((y + 1) * tileHeight - 1) * pixelSize + ], + + tileBbox = [bottomLeft[0], bottomLeft[1], topRight[0], topRight[1]], + + urlProp = ( service.hasOwnProperty( "src" ) ? "src" : "getUrl" ), + urlArgs = { + bbox: tileBbox, + width: tileWidth, + height: tileHeight, + zoom: map._getZoom(), + tile: { + row: y, + column: x + }, + index: Math.abs(y + x) + }, + isFunc = $.isFunction( service[ urlProp ] ), + imageUrl; + + if ( isFunc ) { + imageUrl = service[ urlProp ]( urlArgs ); + } else { + $.template( "geoSrc", service[ urlProp ] ); + imageUrl = $.render( urlArgs, "geoSrc" ); + } + + serviceState.loadCount++; + //this._map._requestQueued(); + + if (serviceState.reloadTiles && $img.size() > 0) { + $img.attr("src", imageUrl); + } else { + var imgMarkup = ""; + + scaleContainer.append(imgMarkup); + $img = scaleContainer.children(":last"); + } + + if ( typeof imageUrl === "string" ) { + serviceObj._loadImage( $img, imageUrl, pixelSize, serviceState, $serviceContainer, opacity ); + } else { + // assume Deferred + imageUrl.done( function( url ) { + serviceObj._loadImage( $img, url, pixelSize, serviceState, $serviceContainer, opacity ); + } ).fail( function( ) { + $img.remove( ); + serviceState.loadCount--; + } ); + } + } + } + } + + scaleContainers.find("[data-dirty]").remove(); + serviceState.reloadTiles = false; + } + }, + + resize: function (map, service) { + }, + + opacity: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.find( "img" ).stop( true ).fadeTo( "fast", service.style.opacity ); + }, + + toggle: function ( map, service ) { + var serviceState = $.data( service, "geoServiceState" ); + serviceState.serviceContainer.css( "display", service.style.visibility === "visible" ? "block" : "none" ); + }, + + _cancelUnloaded: function (map, service) { + var serviceState = $.data( service, "geoServiceState" ); + + if (serviceState && serviceState.loadCount > 0) { + serviceState.serviceContainer.find("img:hidden").remove(); + while (serviceState.loadCount > 0) { + serviceState.loadCount--; + } + } + }, + + _loadImage: function ( $img, url, pixelSize, serviceState, serviceContainer, opacity ) { + $img.load(function (e) { + if (opacity < 1) { + $(e.target).fadeTo(0, opacity); + } else { + $(e.target).show(); + } + + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).error(function (e) { + $(e.target).remove(); + serviceState.loadCount--; + + if (serviceState.loadCount <= 0) { + serviceContainer.children(":not([data-pixelSize='" + pixelSize + "'])").remove(); + serviceState.loadCount = 0; + } + }).attr("src", url); + } + }; + })(); +})(jQuery); + diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.mousewheel.js b/libs/js/jquery-geo-1.0a4/js/jquery.mousewheel.js new file mode 100755 index 0000000..38b6095 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.mousewheel.js @@ -0,0 +1,84 @@ +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ + +(function($) { + +var types = ['DOMMouseScroll', 'mousewheel']; + +if ($.event.fixHooks) { + for ( var i=types.length; i; ) { + $.event.fixHooks[ types[--i] ] = $.event.mouseHooks; + } +} + +$.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i=types.length; i; ) { + this.addEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i=types.length; i; ) { + this.removeEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } +}; + +$.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } +}); + + +function handler(event) { + var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; } + if ( orgEvent.detail ) { delta = -orgEvent.detail/3; } + + // New school multidimensional scroll (touchpads) deltas + deltaY = delta; + + // Gecko + if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) { + deltaY = 0; + deltaX = -1*delta; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; } + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); +} + +})(jQuery); diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.mousewheel.min.js b/libs/js/jquery-geo-1.0a4/js/jquery.mousewheel.min.js new file mode 100755 index 0000000..3390202 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.mousewheel.min.js @@ -0,0 +1,12 @@ +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ +(function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery) diff --git a/libs/js/jquery-geo-1.0a4/js/jquery.ui.widget.js b/libs/js/jquery-geo-1.0a4/js/jquery.ui.widget.js new file mode 100755 index 0000000..75e0b36 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jquery.ui.widget.js @@ -0,0 +1,278 @@ +/*! + * jQuery UI Widget @VERSION + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ + +if ( ! $.widget ) { + +(function( $, undefined ) { + +// jQuery 1.4+ +if ( $.cleanData ) { + var _cleanData = $.cleanData; + $.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + try { + $( elem ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + } + _cleanData( elems ); + }; +} else { + var _remove = $.fn.remove; + $.fn.remove = function( selector, keepData ) { + return this.each(function() { + if ( !keepData ) { + if ( !selector || $.filter( selector, [ this ] ).length ) { + $( "*", this ).add( [ this ] ).each(function() { + try { + $( this ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + }); + } + } + return _remove.call( $(this), selector, keepData ); + }); + }; +} + +$.widget = function( name, base, prototype ) { + var namespace = name.split( "." )[ 0 ], + fullName; + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName ] = function( elem ) { + return !!$.data( elem, name ); + }; + + $[ namespace ] = $[ namespace ] || {}; + $[ namespace ][ name ] = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } + }; + + var basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from +// $.each( basePrototype, function( key, val ) { +// if ( $.isPlainObject(val) ) { +// basePrototype[ key ] = $.extend( {}, val ); +// } +// }); + basePrototype.options = $.extend( true, {}, basePrototype.options ); + $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { + namespace: namespace, + widgetName: name, + widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, + widgetBaseClass: fullName + }, prototype ); + + $.widget.bridge( name, $[ namespace ][ name ] ); +}; + +$.widget.bridge = function( name, object ) { + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = Array.prototype.slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.extend.apply( null, [ true, options ].concat(args) ) : + options; + + // prevent calls to internal methods + if ( isMethodCall && options.charAt( 0 ) === "_" ) { + return returnValue; + } + + if ( isMethodCall ) { + this.each(function() { + var instance = $.data( this, name ), + methodValue = instance && $.isFunction( instance[options] ) ? + instance[ options ].apply( instance, args ) : + instance; + // TODO: add this back in 1.9 and use $.error() (see #5972) +// if ( !instance ) { +// throw "cannot call methods on " + name + " prior to initialization; " + +// "attempted to call method '" + options + "'"; +// } +// if ( !$.isFunction( instance[options] ) ) { +// throw "no such method '" + options + "' for " + name + " widget instance"; +// } +// var methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, name ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + $.data( this, name, new object( options, this ) ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } +}; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + options: { + disabled: false + }, + _createWidget: function( options, element ) { + // $.widget.bridge stores the plugin instance, but we do it anyway + // so that it's stored even before the _create function runs + $.data( element, this.widgetName, this ); + this.element = $( element ); + this.options = $.extend( true, {}, + this.options, + this._getCreateOptions(), + options ); + + var self = this; + this.element.bind( "remove." + this.widgetName, function() { + self.destroy(); + }); + + this._create(); + this._trigger( "create" ); + this._init(); + }, + _getCreateOptions: function() { + return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; + }, + _create: function() {}, + _init: function() {}, + + destroy: function() { + this.element + .unbind( "." + this.widgetName ) + .removeData( this.widgetName ); + this.widget() + .unbind( "." + this.widgetName ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetBaseClass + "-disabled " + + "ui-state-disabled" ); + }, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.extend( {}, this.options ); + } + + if (typeof key === "string" ) { + if ( value === undefined ) { + return this.options[ key ]; + } + options = {}; + options[ key ] = value; + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var self = this; + $.each( options, function( key, value ) { + self._setOption( key, value ); + }); + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + [ value ? "addClass" : "removeClass"]( + this.widgetBaseClass + "-disabled" + " " + + "ui-state-disabled" ) + .attr( "aria-disabled", value ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _trigger: function( type, event, data ) { + var prop, orig, + callback = this.options[ type ]; + + data = data || {}; + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[ 0 ]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if ( orig ) { + for ( prop in orig ) { + if ( !( prop in event ) ) { + event[ prop ] = orig[ prop ]; + } + } + } + + this.element.trigger( event, data ); + + return !( $.isFunction(callback) && + callback.call( this.element[0], event, data ) === false || + event.isDefaultPrevented() ); + } +}; + +})( jQuery ); + +} + diff --git a/libs/js/jquery-geo-1.0a4/js/jsrender.js b/libs/js/jquery-geo-1.0a4/js/jsrender.js new file mode 100755 index 0000000..5998650 --- /dev/null +++ b/libs/js/jquery-geo-1.0a4/js/jsrender.js @@ -0,0 +1,573 @@ +/*! JsRender v1.0pre - (jsrender.js version: does not require jQuery): http://github.com/BorisMoore/jsrender */ +/* + * Optimized version of jQuery Templates, fosr rendering to string, using 'codeless' markup. + * + * Copyright 2011, Boris Moore + * Released under the MIT License. + */ +window.JsViews || window.jQuery && jQuery.views || (function( window, undefined ) { + +var $, _$, JsViews, viewsNs, tmplEncode, render, rTag, registerTags, registerHelpers, extend, + FALSE = false, TRUE = true, + jQuery = window.jQuery, document = window.document, + htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /, + rPath = /^(true|false|null|[\d\.]+)|(\w+|\$(view|data|ctx|(\w+)))([\w\.]*)|((['"])(?:\\\1|.)*\7)$/g, + rParams = /(\$?[\w\.\[\]]+)(?:(\()|\s*(===|!==|==|!=|<|>|<=|>=)\s*|\s*(\=)\s*)?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g, + rNewLine = /\r?\n/g, + rUnescapeQuotes = /\\(['"])/g, + rEscapeQuotes = /\\?(['"])/g, + rBuildHash = /\x08([^\x08]+)\x08/g, + autoName = 0, + escapeMapForHtml = { + "&": "&", + "<": "<", + ">": ">" + }, + htmlSpecialChar = /[\x00"&'<>]/g, + slice = Array.prototype.slice; + +if ( jQuery ) { + + //////////////////////////////////////////////////////////////////////////////////////////////// + // jQuery is loaded, so make $ the jQuery object + $ = jQuery; + + $.fn.extend({ + // Use first wrapped element as template markup. + // Return string obtained by rendering the template against data. + render: function( data, context, parentView, path ) { + return render( data, this[0], context, parentView, path ); + }, + + // Consider the first wrapped element as a template declaration, and get the compiled template or store it as a named template. + template: function( name, context ) { + return $.template( name, this[0], context ); + } + }); + +} else { + + //////////////////////////////////////////////////////////////////////////////////////////////// + // jQuery is not loaded. Make $ the JsViews object + + // Map over the $ in case of overwrite + _$ = window.$; + + window.JsViews = JsViews = window.$ = $ = { + extend: function( target, source ) { + var name; + for ( name in source ) { + target[ name ] = source[ name ]; + } + return target; + }, + isArray: Array.isArray || function( obj ) { + return Object.prototype.toString.call( obj ) === "[object Array]"; + }, + noConflict: function() { + if ( window.$ === JsViews ) { + window.$ = _$; + } + return JsViews; + } + }; +} + +extend = $.extend; + +//================= +// View constructor +//================= + +function View( context, path, parentView, data, template ) { + // Returns a view data structure for a new rendered instance of a template. + // The content field is a hierarchical array of strings and nested views. + + parentView = parentView || { viewsCount:0, ctx: viewsNs.helpers }; + + var parentContext = parentView && parentView.ctx; + + return { + jsViews: "v1.0pre", + path: path || "", + // inherit context from parentView, merged with new context. + itemNumber: ++parentView.viewsCount || 1, + viewsCount: 0, + tmpl: template, + data: data || parentView.data || {}, + // Set additional context on this view (which will modify the context inherited from the parent, and be inherited by child views) + ctx : context && context === parentContext + ? parentContext + : (parentContext ? extend( extend( {}, parentContext ), context ) : context||{}), + // If no jQuery, extend does not support chained copies - so limit to two parameters + parent: parentView + }; +} +extend( $, { + views: viewsNs = { + templates: {}, + tags: { + "if": function() { + var ifTag = this, + view = ifTag._view; + view.onElse = function( presenter, args ) { + var i = 0, + l = args.length; + while ( l && !args[ i++ ]) { + // Only render content if args.length === 0 (i.e. this is an else with no condition) or if a condition argument is truey + if ( i === l ) { + return ""; + } + } + view.onElse = undefined; // If condition satisfied, so won't run 'else'. + return render( view.data, presenter.tmpl, view.ctx, view); + }; + return view.onElse( this, arguments ); + }, + "else": function() { + var view = this._view; + return view.onElse ? view.onElse( this, arguments ) : ""; + }, + each: function() { + var i, + self = this, + result = "", + args = arguments, + l = args.length, + content = self.tmpl, + view = self._view; + for ( i = 0; i < l; i++ ) { + result += args[ i ] ? render( args[ i ], content, self.ctx || view.ctx, view, self._path, self._ctor ) : ""; + } + return l ? result + // If no data parameter, use the current $data from view, and render once + : result + render( view.data, content, view.ctx, view, self._path, self.tag ); + }, + "=": function( value ) { + return value; + }, + "*": function( value ) { + return value; + } + }, + helpers: { + not: function( value ) { + return !value; + } + }, + allowCode: FALSE, + debugMode: TRUE, + err: function( e ) { + return viewsNs.debugMode ? ("
                Error: " + (e.message || e) + ". "): '""'; + }, + +//=============== +// setDelimiters +//=============== + + setDelimiters: function( openTag, closeTag ) { + // Set or modify the delimiter characters for tags: "{{" and "}}" + var firstCloseChar = closeTag.charAt( 0 ), + secondCloseChar = closeTag.charAt( 1 ); + openTag = "\\" + openTag.charAt( 0 ) + "\\" + openTag.charAt( 1 ); + closeTag = "\\" + firstCloseChar + "\\" + secondCloseChar; + + // Build regex with new delimiters + // {{ + rTag = openTag + // # tag (followed by space,! or }) or equals or code + + "(?:(?:(\\#)?(\\w+(?=[!\\s\\" + firstCloseChar + "]))" + "|(?:(\\=)|(\\*)))" + // params + + "\\s*((?:[^\\" + firstCloseChar + "]|\\" + firstCloseChar + "(?!\\" + secondCloseChar + "))*?)" + // encoding + + "(!(\\w*))?" + // closeBlock + + "|(?:\\/([\\w\\$\\.\\[\\]]+)))" + // }} + + closeTag; + + // Default rTag: # tag equals code params encoding closeBlock + // /\{\{(?:(?:(\#)?(\w+(?=[\s\}!]))|(?:(\=)|(\*)))((?:[^\}]|\}(?!\}))*?)(!(\w*))?|(?:\/([\w\$\.\[\]]+)))\}\}/g; + + rTag = new RegExp( rTag, "g" ); + }, + + +//=============== +// registerTags +//=============== + + // Register declarative tag. + registerTags: registerTags = function( name, tagFn ) { + var key; + if ( typeof name === "object" ) { + for ( key in name ) { + registerTags( key, name[ key ]); + } + } else { + // Simple single property case. + viewsNs.tags[ name ] = tagFn; + } + return this; + }, + +//=============== +// registerHelpers +//=============== + + // Register helper function for use in markup. + registerHelpers: registerHelpers = function( name, helper ) { + if ( typeof name === "object" ) { + // Object representation where property name is path and property value is value. + // TODO: We've discussed an "objectchange" event to capture all N property updates here. See TODO note above about propertyChanges. + var key; + for ( key in name ) { + registerHelpers( key, name[ key ]); + } + } else { + // Simple single property case. + viewsNs.helpers[ name ] = helper; + } + return this; + }, + +//=============== +// tmpl.encode +//=============== + + encode: function( encoding, text ) { + return text + ? ( tmplEncode[ encoding || "html" ] || tmplEncode.html)( text ) // HTML encoding is the default + : ""; + }, + + encoders: tmplEncode = { + "none": function( text ) { + return text; + }, + "html": function( text ) { + // HTML encoding helper: Replace < > & and ' and " by corresponding entities. + // Implementation, from Mike Samuel + return String( text ).replace( htmlSpecialChar, replacerForHtml ); + } + //TODO add URL encoding, and perhaps other encoding helpers... + }, + +//=============== +// renderTag +//=============== + + renderTag: function( tag, view, encode, content, tagProperties ) { + // This is a tag call, with arguments: "tag", view, encode, content, presenter [, params...] + var ret, ctx, name, + args = arguments, + presenters = viewsNs.presenters; + hash = tagProperties._hash, + tagFn = viewsNs.tags[ tag ]; + + if ( !tagFn ) { + return ""; + } + + content = content && view.tmpl.nested[ content - 1 ]; + tagProperties.tmpl = tagProperties.tmpl || content || undefined; + // Set the tmpl property to the content of the block tag, unless set as an override property on the tag + + if ( presenters && presenters[ tag ]) { + ctx = extend( extend( {}, tagProperties.ctx ), tagProperties ); + delete ctx.ctx; + delete ctx._path; + delete ctx.tmpl; + tagProperties.ctx = ctx; + tagProperties._ctor = tag + (hash ? "=" + hash.slice( 0, -1 ) : ""); + + tagProperties = extend( extend( {}, tagFn ), tagProperties ); + tagFn = viewsNs.tags.each; // Use each to render the layout template against the data + } + + tagProperties._encode = encode; + tagProperties._view = view; + ret = tagFn.apply( tagProperties, args.length > 5 ? slice.call( args, 5 ) : [view.data] ); + return ret || (ret === undefined ? "" : ret.toString()); // (If ret is the value 0 or false or null, will render to string) + } + }, + +//=============== +// render +//=============== + + render: render = function( data, tmpl, context, parentView, path, tagName ) { + // Render template against data as a tree of subviews (nested template), or as a string (top-level template). + // tagName parameter for internal use only. Used for rendering templates registered as tags (which may have associated presenter objects) + var i, l, dataItem, arrayView, content, result = ""; + + if ( arguments.length === 2 && data.jsViews ) { + parentView = data; + context = parentView.ctx; + data = parentView.data; + } + tmpl = $.template( tmpl ); + if ( !tmpl ) { + return ""; // Could throw... + } + + if ( $.isArray( data )) { + // Create a view item for the array, whose child views correspond to each data item. + arrayView = new View( context, path, parentView, data); + l = data.length; + for ( i = 0, l = data.length; i < l; i++ ) { + dataItem = data[ i ]; + content = dataItem ? tmpl( dataItem, new View( context, path, arrayView, dataItem, tmpl, this )) : ""; + result += viewsNs.activeViews ? "" + content + "" : content; + } + } else { + result += tmpl( data, new View( context, path, parentView, data, tmpl )); + } + + return viewsNs.activeViews + // If in activeView mode, include annotations + ? "" + result + "" + // else return just the string result + : result; + }, + +//=============== +// template +//=============== + + template: function( name, tmpl ) { + // Set: + // Use $.template( name, tmpl ) to cache a named template, + // where tmpl is a template string, a script element or a jQuery instance wrapping a script element, etc. + // Use $( "selector" ).template( name ) to provide access by name to a script block template declaration. + + // Get: + // Use $.template( name ) to access a cached template. + // Also $( selectorToScriptBlock ).template(), or $.template( null, templateString ) + // will return the compiled template, without adding a name reference. + // If templateString is not a selector, $.template( templateString ) is equivalent + // to $.template( null, templateString ). To ensure a string is treated as a template, + // include an HTML element, an HTML comment, or a template comment tag. + + if (tmpl) { + // Compile template and associate with name + if ( "" + tmpl === tmpl ) { // type string + // This is an HTML string being passed directly in. + tmpl = compile( tmpl ); + } else if ( jQuery && tmpl instanceof $ ) { + tmpl = tmpl[0]; + } + if ( tmpl ) { + if ( jQuery && tmpl.nodeType ) { + // If this is a template block, use cached copy, or generate tmpl function and cache. + tmpl = $.data( tmpl, "tmpl" ) || $.data( tmpl, "tmpl", compile( tmpl.innerHTML )); + } + viewsNs.templates[ tmpl._name = tmpl._name || name || "_" + autoName++ ] = tmpl; + } + return tmpl; + } + // Return named compiled template + return name + ? "" + name !== name // not type string + ? (name._name + ? name // already compiled + : $.template( null, name )) + : viewsNs.templates[ name ] || + // If not in map, treat as a selector. (If integrated with core, use quickExpr.exec) + $.template( null, htmlExpr.test( name ) ? name : try$( name )) + : null; + } +}); + +viewsNs.setDelimiters( "{{", "}}" ); + +//================= +// compile template +//================= + +// Generate a reusable function that will serve to render a template against data +// (Compile AST then build template function) + +function parsePath( all, comp, object, viewDataCtx, viewProperty, path, string, quot ) { + return object + ? ((viewDataCtx + ? viewProperty + ? ("$view." + viewProperty) + : object + :("$data." + object) + ) + ( path || "" )) + : string || (comp || ""); +} + +function compile( markup ) { + var newNode, + loc = 0, + stack = [], + topNode = [], + content = topNode, + current = [,,topNode]; + + function pushPreceedingContent( shift ) { + shift -= loc; + if ( shift ) { + content.push( markup.substr( loc, shift ).replace( rNewLine,"\\n")); + } + } + + function parseTag( all, isBlock, tagName, equals, code, params, useEncode, encode, closeBlock, index ) { + // rTag : # tagName equals code params encode closeBlock + // /\{\{(?:(?:(\#)?(\w+(?=[\s\}!]))|(?:(\=)|(\*)))((?:[^\}]|\}(?!\}))*?)(!(\w*))?|(?:\/([\w\$\.\[\]]+)))\}\}/g; + + // Build abstract syntax tree: [ tagName, params, content, encode ] + var named, + hash = "", + parenDepth = 0, + quoted = FALSE, // boolean for string content in double qoutes + aposed = FALSE; // or in single qoutes + + function parseParams( all, path, paren, comp, eq, comma, apos, quot, rightParen, space, index ) { + // path paren eq comma apos quot rtPrn space + // /(\$?[\w\.\[\]]+)(?:(\()|(===)|(\=))?|(\,\s*)|\\?(\')|\\?(\")|(\))|(\s+)/g + + return aposed + // within single-quoted string + ? ( aposed = !apos, (aposed ? all : '"')) + : quoted + // within double-quoted string + ? ( quoted = !quot, (quoted ? all : '"')) + : comp + // comparison + ? ( path.replace( rPath, parsePath ) + comp) + : eq + // named param + ? parenDepth ? "" :( named = TRUE, '\b' + path + ':') + : paren + // function + ? (parenDepth++, path.replace( rPath, parsePath ) + '(') + : rightParen + // function + ? (parenDepth--, ")") + : path + // path + ? path.replace( rPath, parsePath ) + : comma + ? "," + : space + ? (parenDepth + ? "" + : named + ? ( named = FALSE, "\b") + : "," + ) + : (aposed = apos, quoted = quot, '"'); + } + + tagName = tagName || equals; + pushPreceedingContent( index ); + if ( code ) { + if ( viewsNs.allowCode ) { + content.push([ "*", params.replace( rUnescapeQuotes, "$1" )]); + } + } else if ( tagName ) { + if ( tagName === "else" ) { + current = stack.pop(); + content = current[ 2 ]; + isBlock = TRUE; + } + params = (params + ? (params + " ") + .replace( rParams, parseParams ) + .replace( rBuildHash, function( all, keyValue, index ) { + hash += keyValue + ","; + return ""; + }) + : ""); + params = params.slice( 0, -1 ); + newNode = [ + tagName, + useEncode ? encode || "none" : "", + isBlock && [], + "{" + hash + "_hash:'" + hash + "',_path:'" + params + "'}", + params + ]; + + if ( isBlock ) { + stack.push( current ); + current = newNode; + } + content.push( newNode ); + } else if ( closeBlock ) { + current = stack.pop(); + } + loc = index + all.length; // location marker - parsed up to here + if ( !current ) { + throw "Expected block tag"; + } + content = current[ 2 ]; + } + markup = markup.replace( rEscapeQuotes, "\\$1" ); + markup.replace( rTag, parseTag ); + pushPreceedingContent( markup.length ); + return buildTmplFunction( topNode ); +} + +// Build javascript compiled template function, from AST +function buildTmplFunction( nodes ) { + var ret, node, i, + nested = [], + l = nodes.length, + code = "try{var views=" + + (jQuery ? "jQuery" : "JsViews") + + '.views,tag=views.renderTag,enc=views.encode,html=views.encoders.html,$ctx=$view && $view.ctx,result=""+\n\n'; + + for ( i = 0; i < l; i++ ) { + node = nodes[ i ]; + if ( node[ 0 ] === "*" ) { + code = code.slice( 0, i ? -1 : -3 ) + ";" + node[ 1 ] + ( i + 1 < l ? "result+=" : "" ); + } else if ( "" + node === node ) { // type string + code += '"' + node + '"+'; + } else { + var tag = node[ 0 ], + encode = node[ 1 ], + content = node[ 2 ], + obj = node[ 3 ], + params = node[ 4 ], + paramsOrEmptyString = params + '||"")+'; + + if( content ) { + nested.push( buildTmplFunction( content )); + } + code += tag === "=" + ? (!encode || encode === "html" + ? "html(" + paramsOrEmptyString + : encode === "none" + ? ("(" + paramsOrEmptyString) + : ('enc("' + encode + '",' + paramsOrEmptyString) + ) + : 'tag("' + tag + '",$view,"' + ( encode || "" ) + '",' + + (content ? nested.length : '""') // For block tags, pass in the key (nested.length) to the nested content template + + "," + obj + (params ? "," : "") + params + ")+"; + } + } + ret = new Function( "$data, $view", code.slice( 0, -1) + ";return result;\n\n}catch(e){return views.err(e);}" ); + ret.nested = nested; + return ret; +} + +//========================== Private helper functions, used by code above ========================== + +function replacerForHtml( ch ) { + // Original code from Mike Samuel + return escapeMapForHtml[ ch ] + // Intentional assignment that caches the result of encoding ch. + || ( escapeMapForHtml[ ch ] = "&#" + ch.charCodeAt( 0 ) + ";" ); +} + +function try$( selector ) { + // If selector is valid, return jQuery object, otherwise return (invalid) selector string + try { + return $( selector ); + } catch( e) {} + return selector; +} +})( window ); diff --git a/libs/js/jquery-mobile-1.0.1pre/Makefile b/libs/js/jquery-mobile-1.0.1pre/Makefile deleted file mode 100644 index 23541cd..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/Makefile +++ /dev/null @@ -1,211 +0,0 @@ -# The files to include when compiling the JS files -JSFILES = js/jquery.ui.widget.js \ - js/jquery.mobile.widget.js \ - js/jquery.mobile.media.js \ - js/jquery.mobile.support.js \ - js/jquery.mobile.vmouse.js \ - js/jquery.mobile.event.js \ - js/jquery.mobile.hashchange.js \ - js/jquery.mobile.page.js \ - js/jquery.mobile.core.js \ - js/jquery.mobile.navigation.js \ - js/jquery.mobile.navigation.pushstate.js \ - js/jquery.mobile.transition.js \ - js/jquery.mobile.degradeInputs.js \ - js/jquery.mobile.dialog.js \ - js/jquery.mobile.page.sections.js \ - js/jquery.mobile.collapsible.js \ - js/jquery.mobile.fieldContain.js \ - js/jquery.mobile.grid.js \ - js/jquery.mobile.navbar.js \ - js/jquery.mobile.listview.js \ - js/jquery.mobile.listview.filter.js \ - js/jquery.mobile.nojs.js \ - js/jquery.mobile.forms.checkboxradio.js \ - js/jquery.mobile.forms.button.js \ - js/jquery.mobile.forms.slider.js \ - js/jquery.mobile.forms.textinput.js \ - js/jquery.mobile.forms.select.custom.js \ - js/jquery.mobile.forms.select.js \ - js/jquery.mobile.buttonMarkup.js \ - js/jquery.mobile.controlGroup.js \ - js/jquery.mobile.links.js \ - js/jquery.mobile.fixHeaderFooter.js \ - js/jquery.mobile.fixHeaderFooter.native.js \ - js/jquery.mobile.init.js - -# The files to include when compiling the CSS files -CSSFILES = css/structure/jquery.mobile.core.css \ - css/structure/jquery.mobile.transitions.css \ - css/structure/jquery.mobile.grids.css \ - css/structure/jquery.mobile.headerfooter.css \ - css/structure/jquery.mobile.navbar.css \ - css/structure/jquery.mobile.button.css \ - css/structure/jquery.mobile.collapsible.css \ - css/structure/jquery.mobile.controlgroup.css \ - css/structure/jquery.mobile.dialog.css \ - css/structure/jquery.mobile.forms.checkboxradio.css \ - css/structure/jquery.mobile.forms.fieldcontain.css \ - css/structure/jquery.mobile.forms.select.css \ - css/structure/jquery.mobile.forms.textinput.css \ - css/structure/jquery.mobile.listview.css \ - css/structure/jquery.mobile.forms.slider.css -CSSTHEMEFILES = css/themes/${THEME}/jquery.mobile.theme.css - - - - -# Helper Variables -# The command to replace the @VERSION in the files with the actual version -VER = sed "s/v@VERSION/$$(git log -1 --format=format:"Git Build: SHA1: %H <> Date: %cd")/" -VER_MIN = "/*! jQuery Mobile v${VER_OFFICIAL} jquerymobile.com | jquery.org/license */" -VER_OFFICIAL = $(shell cat version.txt) - -# The output folder for the finished files -OUTPUT = compiled - -# The name of the files -NAME = jquery.mobile -STRUCTURE = jquery.mobile.structure -deploy: NAME = jquery.mobile-${VER_OFFICIAL} -deploy: STRUCTURE = jquery.mobile.structure-${VER_OFFICIAL} - -# The CSS theme being used -THEME = default - - - - - -# Build Targets - -# When no build target is specified, all gets ran -all: init css js zip notify - - -# Build and minify the CSS files -css: init - # Build the CSS file with the theme included - @@cat js/jquery.mobile.intro.js | ${VER} > ${OUTPUT}/${NAME}.css - @@cat ${CSSTHEMEFILES} ${CSSFILES} >> ${OUTPUT}/${NAME}.css - # ..... and then minify it - @@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.css - @@java -jar build/yuicompressor-2.4.6.jar --type css ${OUTPUT}/${NAME}.css >> ${OUTPUT}/${NAME}.min.css - # Build the CSS Structure-only file - @@cat js/jquery.mobile.intro.js | ${VER} > ${OUTPUT}/${STRUCTURE}.css - @@cat ${CSSFILES} >> ${OUTPUT}/${STRUCTURE}.css - # ..... and then minify it - @@echo ${VER_MIN} > ${OUTPUT}/${STRUCTURE}.min.css - @@java -jar build/yuicompressor-2.4.6.jar --type css ${OUTPUT}/${STRUCTURE}.css >> ${OUTPUT}/${STRUCTURE}.min.css - # ..... and then copy in the images - @@cp -R css/themes/${THEME}/images ${OUTPUT}/ - # Css portion is complete. - # ------------------------------------------------- - - -docs: init css js - # Create the Demos/Docs/Tests/Tools - @@mkdir -p tmp/${NAME} - @@cp -r index.html docs experiments external js/jquery.js tests tmp/${NAME}/ - @@cp ${OUTPUT}/${NAME}.min.css ${OUTPUT}/${NAME}.min.js tmp/${NAME}/ - # ... Update the JavaScript and CSS paths - @@find tmp/${NAME} -type f \ - \( -name '*.html' -o -name '*.php' \) \ - -exec perl -pi -e \ - 's|js/"|${NAME}.min.js"|g;s|css/themes/default/|${NAME}.min.css|g;s|js/jquery.js"|jquery.js"|g' {} \; - # ... Move and zip up the the whole folder - @@zip -rq ${OUTPUT}/${NAME}.docs.zip tmp/${NAME} - @@mv tmp/${NAME} ${OUTPUT}/demos - # Finish by removing the temporary files - @@rm -rf tmp - # ------------------------------------------------- - - -# Create the output directory. This is in a separate step so its not dependant on other targets -init: - # ------------------------------------------------- - # Building jQuery Mobile in the "${OUTPUT}" folder - @@rm -rf ${OUTPUT} - @@rm -rf tmp - @@mkdir -p ${OUTPUT} - # ------------------------------------------------- - - -# Build and minify the JS files -js: init - # Build the JavaScript file - @@cat js/jquery.mobile.intro.js | ${VER} > ${OUTPUT}/${NAME}.js - @@cat ${JSFILES} >> ${OUTPUT}/${NAME}.js - # ..... and then minify it - @@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.js - @@java -jar build/google-compiler-20111003.jar --js ${OUTPUT}/${NAME}.js --warning_level QUIET >> ${OUTPUT}/${NAME}.min.js - # ------------------------------------------------- - - -# Output a message saying the process is complete -notify: init - @@echo "The files have been built and are in: " $$(pwd)/${OUTPUT} - # ------------------------------------------------- - - -# Zip up the jQm files without docs -zip: init css js - # Packaging up the files into a zip archive - @@mkdir tmp - @@cp -r ${OUTPUT} tmp/${NAME} - @@zip -rq ${OUTPUT}/${NAME}.zip tmp/${NAME}/ - @@rm -rf tmp - # ------------------------------------------------- - - - - -# ------------------------------------------------- -# ------------------------------------------------- -# ------------------------------------------------- -# -# For jQuery Team Use Only -# -# ------------------------------------------------- - -# Push the latest git version to the CDN. This is done on a post commit hook -latest: init js css zip - # Time to put these on the CDN - @@scp -qr ${OUTPUT}/* jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/mobile/latest/ - # Do some cleanup to wrap it up - @@rm -rf ${OUTPUT} - # ------------------------------------------------- - -# Build the nightly backups. This is done on a server cronjob -nightlies: init js css zip docs - # Time to put these on the CDN - @@mkdir -p tmp/nightlies - @@mv ${OUTPUT} tmp/nightlies/$$(date "+%Y%m%d") - @@scp -qr tmp/nightlies/* jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/mobile/nightlies/ - # Do some cleanup to wrap it up - @@rm -rf tmp - # ------------------------------------------------- - - -# Deploy a finished release. This is manually done. -deploy: init js css docs zip - # Deploying all the files to the CDN - @@mkdir tmp - @@cp -r ${OUTPUT} tmp/${VER_OFFICIAL} - @@scp -qr tmp/* jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/mobile/ - @@rm -rf tmp/${VER_OFFICIAL} - @@mv ${OUTPUT}/demos tmp/${VER_OFFICIAL} - # Create the Demos/Docs/Tests/Tools for jQueryMobile.com - # ... By first replacing the paths - @@find tmp/${VER_OFFICIAL} -type f \ - \( -name '*.html' -o -name '*.php' \) \ - -exec perl -pi -e \ - 's|src="(.*)${NAME}.min.js"|src="//code.jquery.com/mobile/${VER_OFFICIAL}/${NAME}.min.js"|g;s|href="(.*)${NAME}.min.css"|href="//code.jquery.com/mobile/${VER_OFFICIAL}/${NAME}.min.css"|g;s|src="(.*)jquery.js"|src="//code.jquery.com/jquery-1.6.4.js"|g' {} \; - # ... So they can be copied to jquerymobile.com - @@scp -qr tmp/* jqadmin@jquerymobile.com:/srv/jquerymobile.com/htdocs/demos/ - # Do some cleanup to wrap it up - @@rm -rf tmp - @@rm -rf ${OUTPUT} - # ------------------------------------------------- - - diff --git a/libs/js/jquery-mobile-1.0.1pre/README.md b/libs/js/jquery-mobile-1.0.1pre/README.md deleted file mode 100644 index fb4c2b5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/README.md +++ /dev/null @@ -1,94 +0,0 @@ -jQuery Mobile Framework -======================= -[Official Site: http://jquerymobile.com](http://jquerymobile.com) - -[Demos and Documentation](http://jquerymobile.com/test/) - -How to build your own jQuery Mobile CSS and JS files -==================================================== -Clone this repo and build the js and css files (you'll need Git and Make installed): - - git clone git://github.com/jquery/jquery-mobile.git - cd jquery-mobile - make - -A full version and a minified version of the jQuery Mobile JavaScript and CSS files will be created -in a folder named "compiled". There is also now a Structure only css file so you can add your own theme on top of it. - -How to build a self-contained version of the Docs/Demos -======================================================= -Once you have your own cloned repo on your computer: - - make docs - -The docs will be built and available in the compiled/demos folder. You can move this folder to your web server or -other location. It has no dependencies on anything other than a basic HTML web server. - - -Submitting bugs -=============== -If you think you've found a bug, please report it by following these instructions: - -1. Visit the [Issue tracker: https://github.com/jquery/jquery-mobile/issues](https://github.com/jquery/jquery-mobile/issues) -2. Create an issue explaining the problem and expected result - - Be sure to include any relevant information for reproducing the issue - - Include information such as: - * Browser/device (with version #) - * The version of the jQuery Mobile code you're running - * If you are running from a git version, include the date and/or hash number - - Make sure that the bug still exists at http://jquerymobile.com/test/ as it may be fixed already - - You can use the CDN hosted JS and CSS files to test in your own code by using: - * [JS](http://code.jquery.com/mobile/latest/jquery.mobile.min.js) - * [CSS](http://code.jquery.com/mobile/latest/jquery.mobile.min.css) - - Include a link to some code of the bug in action. You can use either of these services to host your code - * [jsbin](http://jsbin.com) - * [jsfiddle](http://jsfiddle.net) -3. Submit the issue. - -Recommended: [JS Bin issue template with instructions](http://jsbin.com/obowiw/edit) - -Submitting patches -================== -To contribute code and bug fixes to jQuery Mobile: fork this project on Github, make changes to the code in your fork, -and then send a "pull request" to notify the team of updates that are ready to be reviewed for inclusion. - -Detailed instructions can be found at [jQuery Mobile Patching](https://gist.github.com/1294035) - -Running the jQuery Mobile demos & docs locally -============================================== -To preview locally, you'll need to clone a local copy of this repository and point your Apache & PHP webserver at its -root directory (a webserver is required, as PHP and .htaccess are used for combining development files). - -If you don't currently have a webserver running locally, there are a few options. - -If you're on a Mac, you can try dropping jQuery Mobile into your sites folder and turning on Web Sharing via System -Prefs. From there, you'll find a URL where you can browse folders in your sites directory from a browser. - -Another quick way to get up and running is to download and install MAMP for Mac OSX. Once installed, just open MAMP, -click preferences, go to the Apache tab, and select your local jQuery Mobile folder as the root. Then you can open a -browser to http://localhost:8888 to preview the code. - -Another alternative is XAMPP (Mac, Windows). You need to actually modify Apache's httpd.conf to point to your checkout: -[Instructions](http://www.apachefriends.org/en/xampp.html) - -You need the following Apache modules loaded: - -* Rewrite (mod\_rewrite.so) -* Expire (mod\_expires.so) -* Header (mod\_headers.so) - -Building With A Custom Theme -============================ -To use a custom theme in your own build, you'll need Make installed. You can find the themes in the CSS/Themes folder. -To create a new theme: - -1. Copy the `Default` folder from CSS/Themes to a new folder in the same location. The name of the folder will be the -theme's name. For testing locally, make sure the index.php file is copied as well. -2. Edit the `jquery.mobile.theme.css` file so it contains your custom fonts and colors. -3. Once you are done editing your files and saving them, open a terminal. -4. Navigate to the jQuery-Mobile folder's root. -5. Run the following command to build jQuery-Mobile (THEME is the name of the folder for your theme from step 1.): - - make THEME=YourThemeName - -6. The compiled files will be located in the "compiled" folder in the root of jQuery-Mobile. diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/index.php b/libs/js/jquery-mobile-1.0.1pre/css/structure/index.php deleted file mode 100644 index ab08918..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/index.php +++ /dev/null @@ -1,22 +0,0 @@ - * { visibility: hidden; } - -/*headers, content panels*/ -.ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; } -.ui-bar { font-size: 16px; margin: 0; } -.ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; } - -.ui-header, .ui-footer { display: block; } -.ui-page .ui-header, .ui-page .ui-footer { position: relative; } -.ui-header .ui-btn-left { position: absolute; left: 10px; top: .4em; } -.ui-header .ui-btn-right { position: absolute; right: 10px; top: .4em; } -.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 90px .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; } -.ui-footer .ui-title { margin: .6em 15px .8em; } - -/*content area*/ -.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; } -.ui-page-fullscreen .ui-content { padding:0; } - -/* native fixed headers and footers */ -.ui-mobile-touch-overflow.ui-page.ui-native-fixed, -.ui-mobile-touch-overflow.ui-page.ui-native-fullscreen { - overflow: visible; -} -.ui-mobile-touch-overflow.ui-native-fixed .ui-header, -.ui-mobile-touch-overflow.ui-native-fixed .ui-footer { - position: fixed; - left: 0; - right: 0; - top: 0; - z-index: 200; -} -.ui-mobile-touch-overflow.ui-page.ui-native-fixed .ui-footer { - top: auto; - bottom: 0; -} -.ui-mobile-touch-overflow.ui-native-fixed .ui-content { - padding-top: 2.5em; - padding-bottom: 3em; - top: 0; - bottom: 0; - height: auto; - position: absolute; -} -.ui-mobile-touch-overflow.ui-native-fullscreen .ui-content { - padding-top: 0; - padding-bottom: 0; -} -.ui-mobile-touch-overflow.ui-native-fullscreen .ui-header, -.ui-mobile-touch-overflow.ui-native-fullscreen .ui-footer { - opacity: .9; -} -.ui-native-bars-hidden { - display: none; -} - -/* icons sizing */ -.ui-icon { width: 18px; height: 18px; } - -/* fullscreen class on ui-content div */ -.ui-fullscreen { } -.ui-fullscreen img { max-width: 100%; } - -/* non-js content hiding */ -.ui-nojs { position: absolute; left: -9999px; } - -/* accessible content hiding */ -.ui-hide-label label, -.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.dialog.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.dialog.css deleted file mode 100644 index 63006eb..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.dialog.css +++ /dev/null @@ -1,21 +0,0 @@ -.ui-dialog { min-height: 480px; } -.ui-dialog .ui-header, -.ui-dialog .ui-content, -.ui-dialog .ui-footer { - max-width: 500px; - margin: 10% auto 15px auto; - width: 85%; - position: relative; -} -.ui-dialog .ui-header, -.ui-dialog .ui-footer { - padding: 0 15px; - z-index: 10; -} -.ui-dialog .ui-content { - padding: 15px; -} -.ui-dialog .ui-content, -.ui-dialog .ui-footer { - margin-top: -15px; -} diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.checkboxradio.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.checkboxradio.css deleted file mode 100644 index 9db0fb3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.checkboxradio.css +++ /dev/null @@ -1,10 +0,0 @@ -.ui-checkbox, .ui-radio { position:relative; margin: .2em 0 .5em; z-index: 1; } -.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; } -.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; } -.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; } -.ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; } -.ui-checkbox .ui-icon, .ui-radio .ui-icon { top: 1.1em; } -.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon {left: 15px; } -.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon {right: 15px; } -/* input, label positioning */ -.ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; } \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.fieldcontain.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.fieldcontain.css deleted file mode 100644 index cd73ff7..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.fieldcontain.css +++ /dev/null @@ -1,5 +0,0 @@ -.ui-field-contain { padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; } -.ui-field-contain:first-child { border-top-width: 0; } -@media all and (min-width: 450px){ - .ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; } -} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.select.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.select.css deleted file mode 100644 index b831c76..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.select.css +++ /dev/null @@ -1,42 +0,0 @@ -.ui-select { display: block; position: relative; } -.ui-select select { position: absolute; left: -9999px; top: -9999px; } -.ui-select .ui-btn { overflow: hidden; } - - -.ui-select .ui-btn { opacity: 1; } - -/* Fixes #2588 — When Windows Phone 7.5 (Mango) tries to calculate a numeric opacity for a select—including “inherit”—without explicitly specifying an opacity on the parent to give it context, a bug appears where clicking elsewhere on the page after opening the select will open the select again. */ -.ui-select .ui-btn select { cursor: pointer; -webkit-appearance: button; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); z-index: 2; } - -.ui-select .ui-disabled { opacity: .3; } - -@-moz-document url-prefix() {.ui-select .ui-btn select { opacity: 0.0001; }} -.ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; text-indent: 0; } - -.ui-select .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; } -.ui-select .ui-btn-icon-right .ui-icon { right: 15px; } - -/* labels */ -label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } - -/*listbox*/ -.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden; } -.ui-select .ui-btn-text { text-overflow: ellipsis; } - -.ui-selectmenu { position: absolute; padding: 0; z-index: 1100 !important; width: 80%; max-width: 350px; padding: 6px; } -.ui-selectmenu .ui-listview { margin: 0; } -.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; } -.ui-selectmenu-hidden { top: -9999px; left: -9999px; } -.ui-selectmenu-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 99; } -.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; } -.ui-selectmenu-list .ui-li .ui-icon { display: block; } -.ui-li.ui-selectmenu-placeholder { display: none; } -.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; } - -@media all and (min-width: 450px){ - .ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } - .ui-field-contain .ui-select { width: 60%; display: inline-block; } -} - -/* when no placeholder is defined in a multiple select, the header height doesn't even extend past the close button. this shim's content in there */ -.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; } \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.slider.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.slider.css deleted file mode 100644 index d22dd3e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.slider.css +++ /dev/null @@ -1,26 +0,0 @@ -label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } -input.ui-slider-input, -.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; } -select.ui-slider-switch { display: none; } -div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 60%; } -div.ui-slider-switch { width: 99.8%; } -a.ui-slider-handle { position: absolute; z-index: 10; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; } -a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; } -@media all and (min-width: 480px){ - .ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } - .ui-field-contain div.ui-slider { width: 43%; } -} - -div.ui-slider-switch { height: 32px; overflow: hidden; margin-left: 0; } -div.ui-slider-inneroffset { margin-left: 50%; position: absolute; top: 1px; height: 100%; width: 50%; } -a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; } -div.ui-slider-labelbg { position: absolute; top:0; margin: 0; border-width: 0; } -div.ui-slider-switch div.ui-slider-labelbg-a { width: 60%; height: 100%; left: 0; } -div.ui-slider-switch div.ui-slider-labelbg-b { width: 60%; height: 100%; right: 0; } -.ui-slider-switch-a div.ui-slider-labelbg-a, .ui-slider-switch-b div.ui-slider-labelbg-b { z-index: -1; } -.ui-slider-switch-a div.ui-slider-labelbg-b, .ui-slider-switch-b div.ui-slider-labelbg-a { z-index: 0; } - -div.ui-slider-switch a.ui-slider-handle { z-index: 20; width: 101%; height: 32px; margin-top: -18px; margin-left: -101%; } -span.ui-slider-label { width: 100%; position: absolute;height: 32px; font-size: 16px; text-align: center; line-height: 2; background: none; border-color: transparent; } -span.ui-slider-label-a { left: -100%; margin-right: -1px } -span.ui-slider-label-b { right: -100%; margin-left: -1px } diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.textinput.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.textinput.css deleted file mode 100644 index 028a34a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.forms.textinput.css +++ /dev/null @@ -1,22 +0,0 @@ -label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; } -input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 97%; } -input.ui-input-text { -webkit-appearance: none; } -textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear; -moz-transition: height 200ms linear; -o-transition: height 200ms linear; transition: height 200ms linear; } -.ui-input-search { padding: 0 30px; background-image: none; position: relative; } -.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; } -.ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; } -.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; } -.ui-input-search .ui-input-clear-hidden { display: none; } - -/* orientation adjustments - incomplete!*/ -@media all and (min-width: 450px){ - .ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 } - .ui-field-contain input.ui-input-text, - .ui-field-contain textarea.ui-input-text, - .ui-field-contain .ui-input-search { width: 60%; display: inline-block; } - .ui-field-contain .ui-input-search { width: 50%; } - .ui-hide-label input.ui-input-text, - .ui-hide-label textarea.ui-input-text, - .ui-hide-label .ui-input-search { padding: .4em; width: 97%; } - .ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ } -} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.headerfooter.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.headerfooter.css deleted file mode 100644 index 1d52c3d..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.headerfooter.css +++ /dev/null @@ -1,8 +0,0 @@ -/* fixed page header & footer configuration */ -.ui-header, .ui-footer, .ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { position: absolute; overflow: hidden; width: 100%; border-left-width: 0; border-right-width: 0; } -.ui-header-fixed, .ui-footer-fixed { - z-index: 1000; - -webkit-transform: translateZ(0); /* Force header/footer rendering to go through the same rendering pipeline as native page scrolling. */ -} -.ui-footer-duplicate, .ui-page-fullscreen .ui-fixed-inline { display: none; } -.ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { opacity: .9; } diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.listview.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.listview.css deleted file mode 100644 index 9726cc5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.listview.css +++ /dev/null @@ -1,51 +0,0 @@ -.ui-listview { margin: 0; counter-reset: listnumbering; } -.ui-content .ui-listview { margin: -15px; } -.ui-content .ui-listview-inset { margin: 1em 0; } -.ui-listview, .ui-li { list-style:none; padding:0; } -.ui-li, .ui-li.ui-field-contain { display: block; margin:0; position: relative; overflow: visible; text-align: left; border-width: 0; border-top-width: 1px; } -.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } -.ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold; } -.ui-li-divider { counter-reset: listnumbering; } -ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal;counter-increment: listnumbering; content: counter(listnumbering) ". "; } -ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */ -.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; } -.ui-li:last-child, .ui-li.ui-field-contain:last-child { border-bottom-width: 1px; } -.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; } -.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px .7em 15px; display: block; } -.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 60px; padding-left: 100px; } -.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; } -.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; } -.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 30px; } -.ui-li-has-arrow.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow.ui-li-has-count { padding-right: 75px; } -.ui-li-has-count .ui-btn-text { padding-right: 15px; } -.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } -.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } -.ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; } -.ui-listview .ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; } -.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; } - -.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; } -@media all and (min-width: 480px){ - .ui-li-aside { width: 45%; } -} -.ui-li-divider { cursor: default; } -.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 95px; } -.ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 38px; } -.ui-li-divider .ui-li-count, .ui-li-static .ui-li-count { right: 10px; } -.ui-li-has-alt .ui-li-count { right: 55px; } -.ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; z-index: 2; } -.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -11px 0 0 0; border-bottom-width: 1px; z-index: -1;} -.ui-li-link-alt .ui-btn-inner { padding: 0; height: 100%; position: absolute; width: 100%; top: 0; left: 0;} -.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px; } - -.ui-listview * .ui-btn-inner > .ui-btn > .ui-btn-inner { border-top: 0px; } - -.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px } -.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; } - -.ui-listview-filter-inset { margin: -15px -5px -15px -5px; background: transparent; } -.ui-li.ui-screen-hidden{display:none;} -/* Odd iPad positioning issue. */ -@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { - .ui-li .ui-btn-text { overflow: visible; } -} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.navbar.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.navbar.css deleted file mode 100644 index b4403b2..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.navbar.css +++ /dev/null @@ -1,21 +0,0 @@ -.ui-navbar { overflow: hidden; } -.ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;} -.ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; } -.ui-navbar-collapsed .ui-navbar-toggle { float: left; width: 25%; } -.ui-navbar li.ui-navbar-truncate { position: absolute; left: -9999px; top: -9999px; } -.ui-navbar li .ui-btn, .ui-navbar .ui-navbar-toggle .ui-btn { display: block; font-size: 12px; text-align: center; margin: 0; border-right-width: 0; } -.ui-navbar li .ui-btn { margin-right: -1px; } -.ui-navbar li .ui-btn:last-child { margin-right: 0; } -.ui-header .ui-navbar li .ui-btn, .ui-header .ui-navbar .ui-navbar-toggle .ui-btn, -.ui-footer .ui-navbar li .ui-btn, .ui-footer .ui-navbar .ui-navbar-toggle .ui-btn { border-top-width: 0; border-bottom-width: 0; } -.ui-navbar .ui-btn-inner { padding-left: 2px; padding-right: 2px; } -.ui-navbar-noicons li .ui-btn .ui-btn-inner, .ui-navbar-noicons .ui-navbar-toggle .ui-btn-inner { padding-top: .8em; padding-bottom: .9em; } -/*expanded page styles*/ -.ui-navbar-expanded .ui-btn { margin: 0; font-size: 14px; } -.ui-navbar-expanded .ui-btn-inner { padding-left: 5px; padding-right: 5px; } -.ui-navbar-expanded .ui-btn-icon-top .ui-btn-inner { padding: 45px 5px 15px; text-align: center; } -.ui-navbar-expanded .ui-btn-icon-top .ui-icon { top: 15px; } -.ui-navbar-expanded .ui-btn-icon-bottom .ui-btn-inner { padding: 15px 5px 45px; text-align: center; } -.ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; } -.ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; } -.ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; } diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.transitions.css b/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.transitions.css deleted file mode 100644 index 503baa3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.transitions.css +++ /dev/null @@ -1,263 +0,0 @@ -.spin { - -webkit-transform: rotate(360deg); - -webkit-animation-name: spin; - -webkit-animation-duration: 1s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} -@-webkit-keyframes spin { - from {-webkit-transform: rotate(0deg);} - to {-webkit-transform: rotate(360deg);} -} - -/* Transitions from jQtouch (with small modifications): http://www.jqtouch.com/ -Built by David Kaneda and maintained by Jonathan Stark. -*/ -.in, .out { - -webkit-animation-timing-function: ease-in-out; - -webkit-animation-duration: 350ms; -} - - -.slide.out { - -webkit-transform: translateX(-100%); - -webkit-animation-name: slideouttoleft; -} - -.slide.in { - -webkit-transform: translateX(0); - -webkit-animation-name: slideinfromright; -} - -.slide.out.reverse { - -webkit-transform: translateX(100%); - -webkit-animation-name: slideouttoright; -} - -.slide.in.reverse { - -webkit-transform: translateX(0); - -webkit-animation-name: slideinfromleft; -} - -.slideup.out { - -webkit-animation-name: dontmove; - z-index: 0; -} - -.slideup.in { - -webkit-transform: translateY(0); - -webkit-animation-name: slideinfrombottom; - z-index: 10; -} - -.slideup.in.reverse { - z-index: 0; - -webkit-animation-name: dontmove; -} - -.slideup.out.reverse { - -webkit-transform: translateY(100%); - z-index: 10; - -webkit-animation-name: slideouttobottom; -} - -.slidedown.out { - -webkit-animation-name: dontmove; - z-index: 0; -} - -.slidedown.in { - -webkit-transform: translateY(0); - -webkit-animation-name: slideinfromtop; - z-index: 10; -} - -.slidedown.in.reverse { - z-index: 0; - -webkit-animation-name: dontmove; -} - -.slidedown.out.reverse { - -webkit-transform: translateY(-100%); - z-index: 10; - -webkit-animation-name: slideouttotop; -} - -@-webkit-keyframes slideinfromright { - from { -webkit-transform: translateX(100%); } - to { -webkit-transform: translateX(0); } -} - -@-webkit-keyframes slideinfromleft { - from { -webkit-transform: translateX(-100%); } - to { -webkit-transform: translateX(0); } -} - -@-webkit-keyframes slideouttoleft { - from { -webkit-transform: translateX(0); } - to { -webkit-transform: translateX(-100%); } -} - -@-webkit-keyframes slideouttoright { - from { -webkit-transform: translateX(0); } - to { -webkit-transform: translateX(100%); } -} - -@-webkit-keyframes slideinfromtop { - from { -webkit-transform: translateY(-100%); } - to { -webkit-transform: translateY(0); } -} - -@-webkit-keyframes slideinfrombottom { - from { -webkit-transform: translateY(100%); } - to { -webkit-transform: translateY(0); } -} - -@-webkit-keyframes slideouttobottom { - from { -webkit-transform: translateY(0); } - to { -webkit-transform: translateY(100%); } -} - -@-webkit-keyframes slideouttotop { - from { -webkit-transform: translateY(0); } - to { -webkit-transform: translateY(-100%); } -} -@-webkit-keyframes fadein { - from { opacity: 0; } - to { opacity: 1; } -} - -@-webkit-keyframes fadeout { - from { opacity: 1; } - to { opacity: 0; } -} - -.fade.out { - z-index: 0; - -webkit-animation-name: fadeout; -} - -.fade.in { - opacity: 1; - z-index: 10; - -webkit-animation-name: fadein; -} - -/* The properties in this rule are only necessary for the 'flip' transition. - * We need specify the perspective to create a projection matrix. This will add - * some depth as the element flips. The depth number represents the distance of - * the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate - * value. - */ -.viewport-flip { - -webkit-perspective: 1000; - position: absolute; -} - -.ui-mobile-viewport-transitioning, -.ui-mobile-viewport-transitioning .ui-page { - width: 100%; - height: 100%; - overflow: hidden; -} - -.flip { - -webkit-animation-duration: .65s; - -webkit-backface-visibility:hidden; - -webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ -} - -.flip.out { - -webkit-transform: rotateY(-180deg) scale(.8); - -webkit-animation-name: flipouttoleft; -} - -.flip.in { - -webkit-transform: rotateY(0) scale(1); - -webkit-animation-name: flipinfromleft; -} - -/* Shake it all about */ - -.flip.out.reverse { - -webkit-transform: rotateY(180deg) scale(.8); - -webkit-animation-name: flipouttoright; -} - -.flip.in.reverse { - -webkit-transform: rotateY(0) scale(1); - -webkit-animation-name: flipinfromright; -} - -@-webkit-keyframes flipinfromright { - from { -webkit-transform: rotateY(-180deg) scale(.8); } - to { -webkit-transform: rotateY(0) scale(1); } -} - -@-webkit-keyframes flipinfromleft { - from { -webkit-transform: rotateY(180deg) scale(.8); } - to { -webkit-transform: rotateY(0) scale(1); } -} - -@-webkit-keyframes flipouttoleft { - from { -webkit-transform: rotateY(0) scale(1); } - to { -webkit-transform: rotateY(-180deg) scale(.8); } -} - -@-webkit-keyframes flipouttoright { - from { -webkit-transform: rotateY(0) scale(1); } - to { -webkit-transform: rotateY(180deg) scale(.8); } -} - - -/* Hackish, but reliable. */ - -@-webkit-keyframes dontmove { - from { opacity: 1; } - to { opacity: 1; } -} - -.pop { - -webkit-transform-origin: 50% 50%; -} - -.pop.in { - -webkit-transform: scale(1); - opacity: 1; - -webkit-animation-name: popin; - z-index: 10; -} - -.pop.in.reverse { - z-index: 0; - -webkit-animation-name: dontmove; -} - -.pop.out.reverse { - -webkit-transform: scale(.2); - opacity: 0; - -webkit-animation-name: popout; - z-index: 10; -} - -@-webkit-keyframes popin { - from { - -webkit-transform: scale(.2); - opacity: 0; - } - to { - -webkit-transform: scale(1); - opacity: 1; - } -} - -@-webkit-keyframes popout { - from { - -webkit-transform: scale(1); - opacity: 1; - } - to { - -webkit-transform: scale(.2); - opacity: 0; - } -} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/ajax-loader.png b/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/ajax-loader.png deleted file mode 100644 index 0973ae0..0000000 Binary files a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/ajax-loader.png and /dev/null differ diff --git a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-18-black.png b/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-18-black.png deleted file mode 100644 index 7739286..0000000 Binary files a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-18-black.png and /dev/null differ diff --git a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-18-white.png b/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-18-white.png deleted file mode 100644 index f4e6787..0000000 Binary files a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-18-white.png and /dev/null differ diff --git a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-36-black.png b/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-36-black.png deleted file mode 100644 index 7469906..0000000 Binary files a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-36-black.png and /dev/null differ diff --git a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-36-white.png b/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-36-white.png deleted file mode 100644 index 3f342cc..0000000 Binary files a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/images/icons-36-white.png and /dev/null differ diff --git a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/index.php b/libs/js/jquery-mobile-1.0.1pre/css/themes/default/index.php deleted file mode 100644 index 6e2dedc..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/css/themes/default/index.php +++ /dev/null @@ -1,8 +0,0 @@ -Switch theme') - .buttonMarkup({ - 'icon':'gear', - 'inline': true, - 'shadow': false, - 'theme': 'd' - }) - .appendTo( appendEl ) - .wrap('
                ') - .bind( "vclick", function(){ - $.themeswitcher(); - }); - } - -}); - -//collapse page navs after use -$(function(){ - $('body').delegate('.content-secondary .ui-collapsible-content', 'click', function(){ - $(this).trigger("collapse") - }); -}); - -function setDefaultTransition(){ - var winwidth = $( window ).width(), - trans ="slide"; - - if( winwidth >= 1000 ){ - trans = "none"; - } - else if( winwidth >= 650 ){ - trans = "fade"; - } - - $.mobile.defaultPageTransition = trans; -} - - -$(function(){ - setDefaultTransition(); - $( window ).bind( "throttledresize", setDefaultTransition ); -}); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/about/accessibility.html b/libs/js/jquery-mobile-1.0.1pre/docs/about/accessibility.html deleted file mode 100755 index 97399b3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/about/accessibility.html +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - jQuery Mobile Docs - Accessibility - - - - - - - - - -
                - -
                -

                Accessibility

                - Home -
                - -
                - - -
                - -

                Accessibility

                -

                jQuery Mobile is built upon standard, semantic HTML, allowing pages to be accessible to the broadest range of devices possible. For A-Grade browsers, many of the components in jQuery Mobile leverage techniques such as focus management, keyboard navigation, and HTML attributes specified in the W3C's WAI-ARIA specification.

                - -

                By utilizing these techniques, we do our best to ensure an accessible experience to users with disabilities such as blindness, who may use screen readers (like VoiceOver, on Apple's iPhone device) or other assistive technology to access the web.

                - -

                While our accessibility implementation is currently a work in progress, we aim to provide a fully accessible suite of components for version 1.0.

                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - - -
                - - - - - -
                - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/about/features.html b/libs/js/jquery-mobile-1.0.1pre/docs/about/features.html deleted file mode 100755 index 58bf0fb..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/about/features.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - jQuery Mobile Docs - Features - - - - - - - - - -
                - -
                -

                Features

                - Home -
                - -
                - -
                - -

                Key features:

                -
                  -
                • Built on jQuery core for familiar and consistent jQuery syntax and minimal learning curve and leverages jQuery UI code and patterns.
                • -
                • Compatible with all major mobile, tablet, e-reader & desktop platforms - iOS, Android, Blackberry, Palm WebOS, Nokia/Symbian, Windows Phone 7, MeeGo, Opera Mobile/Mini, Firefox Mobile, Kindle, Nook, and all modern browsers with graded levels of support.
                • -
                • Lightweight size and minimal image dependencies for speed.
                • -
                • Modular architecture for creating custom builds that are optimized to only the features needed for a particular application
                • -
                • HTML5 Markup-driven configuration of pages and behavior for fast development and minimal required scripting.
                • -
                • Progressive enhancement approach brings core content and functionality to all mobile, tablet and desktop platforms and a rich, installed application-like experience on newer mobile platforms.
                • -
                • Responsive design techniques and tools allow the same underlying codebase to automatically scale from smartphone to desktop-sized screens
                • -
                • Powerful Ajax-powered navigation system to enable animated page transitions while maintaining back button, bookmarking and and clean URLs though pushState.
                • -
                • Accessibility features such as WAI-ARIA are also included to ensure that the pages work for screen readers (e.g. VoiceOver in iOS) and other assistive technologies.
                • -
                • Touch and mouse event support streamline the process of supporting touch, mouse, and cursor focus-based user input methods with a simple API.
                • -
                • Unified UI widgets for common controls enhance native controls with touch-optimized, themable controls that are platform-agnostic and easy to use.
                • -
                • Powerful theming framework and ThemeRoller application make highly-branded experiences easy to build.
                • - -
                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/about/getting-started.html b/libs/js/jquery-mobile-1.0.1pre/docs/about/getting-started.html deleted file mode 100644 index 28a9181..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/about/getting-started.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - jQuery Mobile Docs - Quick start - - - - - - - - - -
                - -
                -

                Quick start guide

                - - - Home -
                - -
                - -
                - -

                Getting Started with jQuery Mobile

                - -

                jQuery Mobile provides a set of touch-friendly UI widgets and an AJAX-powered navigation system to support animated page transitions. Building your first jQuery Mobile page is easy, here's how:

                - -

                Create a basic page template

                -

                Pop open your favorite text editor, paste in the page template below, save and open in a browser. You are now a mobile developer!

                -

                Here's what's in the template. In the head, a meta viewport tag sets the screen width to the pixel width of the device and references to jQuery, jQuery Mobile and the mobile theme stylesheet from the CDN add all the styles and scripts.

                -

                In the body, a div with a data-role of page is the wrapper used to delineate a page, and the header bar (data-role="header") and content region (data-role="content") are added inside to create a basic page (these are both optional). These data- attributes are HTML5 attributes are used throughout jQuery Mobile to transform basic markup into an enhanced and styled widget.

                - -
                
                -<!DOCTYPE html> 
                -<html> 
                -	<head> 
                -	<title>My Page</title> 
                -	<meta name="viewport" content="width=device-width, initial-scale=1"> 
                -	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
                -	<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
                -	<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
                -</head> 
                -<body> 
                -
                -<div data-role="page">
                -
                -	<div data-role="header">
                -		<h1>My Title</h1>
                -	</div><!-- /header -->
                -
                -	<div data-role="content">	
                -		<p>Hello world</p>		
                -	</div><!-- /content -->
                -
                -</div><!-- /page -->
                -
                -</body>
                -</html>
                -
                - - -

                Add your content

                -

                Inside your content container, you can add all any standard HTML elements - headings, lists, paragraphs, etc. You can write your own custom styles to create custom layouts by adding an additional stylesheet to the head after the jQuery Mobile stylesheet.

                - -

                Make a listview

                -

                jQuery Mobile includes a diverse set of common listviews that are coded as lists with a data-role="listview" added. Here is a simple linked list that has a role of listview. We're going to make this look like an inset module by adding a data-inset="true" and add a dynamic search filter with the data-filter="true" attributes.

                - -
                
                -<ul data-role="listview" data-inset="true" data-filter="true">
                -	<li><a href="#">Acura</a></li>
                -	<li><a href="#">Audi</a></li>
                -	<li><a href="#">BMW</a></li>
                -	<li><a href="#">Cadillac</a></li>
                -	<li><a href="#">Ferrari</a></li>
                -</ul>
                -
                -
                - - - - - -

                Add a slider

                -

                The framework contains a full set of form elements that automatically are enhanced into touch-friendly styled widgets. Here's a slider made with the new HTML5 input type of range, no data-role needed. Be sure to wrap these in a form element and always properly associate a label to every form element.

                - -
                
                -<form>
                -   <label for="slider-0">Input slider:</label>
                -   <input type="range" name="slider" id="slider-0" value="25" min="0" max="100"  />
                -</form>
                -
                - -
                - - -
                - - - -

                Make a button

                -

                There are a few ways to make buttons, but lets turn a link into a button so it's easy to click. Just start with a link and add a data-role="button" attribute to it. You can add an icon with the data-icon attribute and optionally set its position with the data-iconpos attribute.

                - -
                
                -<a href="#" data-role="button" data-icon="star">Star button</a>
                -
                - - Star button - - - -

                Play with theme swatches

                -

                jQuery Mobile has a robust theme framework that supports up to 26 sets of toolbar, content and button colors, called a "swatch". Just add a data-theme="e" attribute to any of the widgets on this page: page, header, list, input for the slider, or button to turn it yellow. Try different swatch letters in default theme from a-e to mix and match swatches.

                -

                Cool party trick: add the theme swatch to the page and see how all the widgets inside the content will automatically inherit the theme (headers don't inherit, they default to swatch A).

                - -<a href="#" data-role="button" data-icon="star" data-theme="a">Button</a> - - data-theme="a" - data-theme="b" - data-theme="c" - data-theme="d" - data-theme="e" - -

                When you're ready to build a custom theme, use ThemeRoller to drag and drop, then download a custom theme.

                - -

                Go forth and build stuff

                -

                This is just scratching the surface of all the cool things you can build with jQuery Mobile with little effort. Be sure to explore linking pages, adding animated page transitions, and creating dialogs. Use the data-attribute reference to try out some of the other data- attributes you can play with.

                - -

                More of a developer? Great, forget everything we just covered (kidding). If you don't want to use the data- attribute configuration system, you can take full control of everything and call plugins directly because these are all just standard jQuery plugins built with the UI widget factory. Be sure to dig into global configuration, events, and methods. Then read up on scripting pages, generating dynamic pages, and building PhoneGap apps.

                -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/about/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/about/index.html deleted file mode 100755 index d8d46c1..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/about/index.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - jQuery UI Mobile Framework - About - - - - - - - - - -
                - -
                -

                About jQuery Mobile

                - Home -
                - - - -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/about/intro.html b/libs/js/jquery-mobile-1.0.1pre/docs/about/intro.html deleted file mode 100755 index bed44db..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/about/intro.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - jQuery Mobile Docs - Intro - - - - - - - - - -
                - -
                -

                Introduction

                - - - Home -
                - -
                - -
                - -

                jQuery Mobile Overview

                - -

                jQuery’s mobile strategy can be summarized simply: A unified user interface system that works seamlessly across all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. Focused on a lightweight codebase built on progressive enhancement with a flexible, easily themeable design.

                - -

                The critical difference with our approach is the wide variety of mobile platforms we’re targeting with jQuery Mobile. We’ve been working hard at bringing jQuery support to all mobile browsers that are sufficiently-capable and have at least a nominal amount of market share. In this way, we’re treating mobile web browsers exactly how we treat desktop web browsers.

                - -

                To make this broad support possible, all pages in jQuery Mobile are built on a foundation of clean, semantic HTML to ensure compatibility with pretty much any web-enabled device. In devices that interpret CSS and JavaScript, jQuery Mobile applies progressive enhancement techniques to unobtrusively transform the semantic page into a rich, interactive experience that leverages the power of jQuery and CSS. Accessibility features such as WAI-ARIA are tightly integrated throughout the framework to provide support for screen readers and other assistive technologies.

                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/about/platforms.html b/libs/js/jquery-mobile-1.0.1pre/docs/about/platforms.html deleted file mode 100755 index a506b35..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/about/platforms.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - jQuery Mobile Docs - Supported platforms - - - - - - - - - -
                - -
                -

                Supported platforms

                - Home -
                - -
                - - -
                -

                jQuery Mobile Supported Platforms

                -

                jQuery Mobile has broad support for the vast majority of all modern desktop, smartphone, tablet, and e-reader platforms. In addition, feature phones and older browsers are supported because of our progressive enhancement approach. We're very proud of our commitment to universal accessibility through our broad support for all popular platforms.

                - -

                We use a 3-level graded platform support system: A (full), B (full minus Ajax), C (basic). The visual fidelity of the experience is highly dependent on the CSS rendering capabilities of the device and platform so not all A grade experience will be pixel-perfect but that's the nature of the web.

                - -

                A-grade - Full enhanced experience with Ajax-based animated page transitions.

                -
                  -
                • Apple iOS 3.2-5.0 - Tested on the original iPad (4.3 / 5.0), iPad 2 (4.3), original iPhone (3.1), iPhone 3 (3.2), 3GS (4.3), and 4 (4.3 / 5.0)
                • -
                • Android 2.1-2.3 - Tested on the HTC Incredible (2.2), original Droid (2.2), Nook Color (2.2), HTC Aria (2.1), Google Nexus S (2.3). Functional on 1.5 & 1.6 but performance may be sluggish, tested on Google G1 (1.5)
                • -
                • Android Honeycomb- Tested on the Samsung Galaxy Tab 10.1 and Motorola XOOM
                • -
                • Windows Phone 7-7.5 - Tested on the HTC Surround (7.0) HTC Trophy (7.5), and LG-E900 (7.5)
                • -
                • Blackberry 6.0 - Tested on the Torch 9800 and Style 9670
                • -
                • Blackberry 7 - Tested on BlackBerry® Torch 9810
                • -
                • Blackberry Playbook - Tested on PlayBook version 1.0.1 / 1.0.5
                • -
                • Palm WebOS (1.4-2.0) - Tested on the Palm Pixi (1.4), Pre (1.4), Pre 2 (2.0)
                • -
                • Palm WebOS 3.0 - Tested on HP TouchPad
                • -
                • Firebox Mobile (Beta) - Tested on Android 2.2
                • -
                • Opera Mobile 11.0: Tested on the iPhone 3GS and 4 (5.0/6.0), Android 2.2 (5.0/6.0)
                • -
                • Meego 1.2 - Tested on Nokia 950 and N9
                • -
                • Kindle 3 and Fire: Tested on the built-in WebKit browser for each
                • -
                • Chrome Desktop 11-15 - Tested on OS X 10.6.7 and Windows 7
                • -
                • Firefox Desktop 4-8 - Tested on OS X 10.6.7 and Windows 7
                • -
                • Internet Explorer 7-9 - Tested on Windows XP, Vista and 7 (minor CSS issues)
                • -
                • Opera Desktop 10-11 - Tested on OS X 10.6.7 and Windows 7
                • -
                -

                B-grade - Enhanced experience except without Ajax navigation features.

                -
                  -
                • Blackberry 5.0: Tested on the Storm 2 9550, Bold 9770
                • -
                • Opera Mini (5.0-6.0) - Tested on iOS 3.2/4.3
                • -
                • Nokia Symbian^3 - Tested on Nokia N8 (Symbian^3), C7 (Symbian^3), also works on N97 (Symbian^1)
                • -
                -

                C-grade - Basic, non-enhanced HTML experience that is still functional

                -
                  -
                • Blackberry 4.x - Tested on the Curve 8330
                • -
                • Windows Mobile - Tested on the HTC Leo (WInMo 5.2)
                • -
                • All older smartphone platforms and featurephones - Any device that doesn't support media queries will receive the basic, C grade experience
                • -
                -

                Not Officially Supported - May work, but haven't been thoroughly tested or debugged

                -
                  -
                • Samsung Bada - The project doesn't currently have test devices or emulators, but current support is known to be fairly good. Support level undecided for 1.0
                • -
                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/data-attributes.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/data-attributes.html deleted file mode 100644 index 67b441d..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/data-attributes.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - jQuery Mobile Docs - Data Attribute Reference - - - - - - - - - -
                - -
                -

                Data Attributes

                - Home -
                - -
                - -
                -

                Data- attribute reference

                -

                The jQuery Mobile framework uses HTML5 data- attributes to allow for markup-based initialization and configuration of widgets. These attributes are completely optional; calling plugins manually and passing options directly is also supported. To avoid naming conflicts with other plugins or frameworks that also use data- attributes, set a custom namespace by modifying the ns global option.

                - - - -

                Button

                -

                Links with data-role="button". Input-based buttons and button elements are auto-enhanced, no data-role required

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-cornerstrue | false
                data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                data-iconposleft | right | top | bottom | notext
                data-iconshadowtrue | false
                data-inlinetrue | false
                data-shadowtrue | false
                data-themeswatch letter (a-z)
                -

                Multiple buttons can be wrapped in a container with a data-role="controlgroup" attribute for a vertically grouped set. Add the data-type="horizontal" attribute for the buttons to sit side-by-side.

                - - -

                Checkbox

                -

                Pairs of labels and inputs with type="checkbox" are auto-enhanced, no data-role required

                - - - - - - - - - -
                data-rolenone (prevents auto-enhancement to use native control)
                data-themeswatch letter (a-z) - Added to the form element
                - -

                Collapsible

                -

                A heading and content wrapped in a container with the data-role="collapsible"

                - - - - - - - - - - - - - -
                data-collapsedtrue | false
                data-content-themeswatch letter (a-z)
                data-themeswatch letter (a-z)
                - -

                Collapsible set

                -

                A number of collapsibles wrapped in a container with the data-role="collapsible-set"

                - - - - - - - - - -
                data-content-themeswatch letter (a-z) - Sets all collapsibles in set
                data-themeswatch letter (a-z) - Sets all collapsibles in set
                - -

                Dialog

                -

                Container with data-role="page" or "dialog" linked to with data-rel="dialog" on the anchor.

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-close-btn-textstring (text for the close button, dialog only)
                data-dom-cachetrue | false
                data-idstring (unique id for the page)
                data-fullscreentrue | false (used in conjunction with fixed toolbars)
                data-overlay-themeswatch letter (a-z) - overlay theme when the page is opened in a dialog
                data-themeswatch letter (a-z)
                data-titlestring (title used when page is shown)
                - -

                Content

                -

                Container with data-role="content"

                - - - - - -
                data-themeswatch letter (a-z)
                - - -

                Field container

                -

                Container with data-role="fieldcontain" wrapped around label/form element pair

                - -

                Flip toggle switch

                -

                Select with data-role="slider", two options only

                - - - - - - - - - - - - - -
                data-rolenone (prevents auto-enhancement to use native control)
                data-themeswatch letter (a-z) - Added to the form element
                data-track-themeswatch letter (a-z) - Added to the form element
                - -

                Footer

                -

                Container with data-role="footer"

                - - - - - - - - - - - - - -
                data-idstring (unique id, useful in persistent footers)
                data-positionfixed
                data-themeswatch letter (a-z)
                - -

                Header

                -

                Container with data-role="header"

                - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-add-back-btntrue | false (auto add back button, header only)
                data-back-btn-textstring
                data-back-btn-themeswatch letter (a-z)
                data-positionfixed
                data-themeswatch letter (a-z)
                data-titlestring (title used when page is shown)
                - -

                Link

                -

                Links, including those with a data-role="button", and form submit buttons share these attributes

                - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-ajaxtrue | false
                data-directionreverse (reverse page transition animation)
                data-dom-cachetrue | false
                data-prefetchtrue | false
                data-relback (to move one step back in history)
                - dialog (to open link styled as dialog, not tracked in history)
                - external (for linking to another domain)
                data-transitionslide | slideup | slidedown | pop | fade | flip
                - -

                Listview

                -

                OL or UL with data-role="listview"

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-count-themeswatch letter (a-z)
                data-dividerthemeswatch letter (a-z)
                data-filtertrue | false
                data-filter-placeholderstring
                data-filter-themeswatch letter (a-z)
                data-insettrue | false
                data-split-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                data-themeswatch letter (a-z)
                - -

                Listview item

                -

                LI within a listview

                - - - - - - - - - - - - - -
                data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                data-rolelist-divider
                data-themeswatch letter (a-z) - can also be set on individual LIs
                - -

                Page

                -

                Container with data-role="page"

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-close-btn-textstring (text for the close button, dialog only)
                data-dom-cachetrue | false
                data-idstring (unique id for the page)
                data-fullscreentrue | false (used in conjunction with fixed toolbars)
                data-overlay-themeswatch letter (a-z) - overlay theme when the page is opened in a dialog
                data-themeswatch letter (a-z)
                data-titlestring (title used when page is shown)
                - -

                Radio button

                -

                Pairs of labels and inputs with type="radio" are auto-enhanced, no data-role required

                - - - - - - - - - -
                data-rolenone (prevents auto-enhancement to use native control)
                data-themeswatch letter (a-z) - Added to the form element
                - -

                Select

                -

                All select form elements are auto-enhanced, no data-role required

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                data-iconposleft | right | top | bottom | notext
                data-inlinetrue | false
                data-native-menutrue | false
                data-overlay-themeswatch letter (a-z) - overlay theme for non-native selects
                data-placeholdertrue | false - Add to the Option
                data-rolenone (prevents auto-enhancement to use native control)
                data-themeswatch letter (a-z) - Added to the form element
                -

                Multiple selects can be wrapped in a fieldset with a data-role="controlgroup" attribute for a vertically grouped set. Add the data-type="horizontal" attribute for the selects to sit side-by-side.

                - -

                Slider

                -

                Inputs with type="range" are auto-enhanced, no data-role required

                - - - - - - - - - - - - - -
                data-rolenone (prevents auto-enhancement to use native control)
                data-themeswatch letter (a-z) - Added to the form element
                data-track-themeswatch letter (a-z) - Added to the form element
                - -

                Text input & Textarea

                -

                Input type="text|number|search|etc." or textarea elements are auto-enhanced, no data-role required

                - - - - - - - - - -
                data-rolenone (prevents auto-enhancement to use native control)
                data-themeswatch letter (a-z) - Added to the form element
                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/events.html deleted file mode 100755 index 359ebb1..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/events.html +++ /dev/null @@ -1,512 +0,0 @@ - - - - - - jQuery Mobile Docs - Events - - - - - - - - - -
                - -
                -

                Events

                - Home -
                - -
                -
                - -

                jQuery Mobile offers several custom events that build upon native events to create useful hooks for development. Note that these events employ various touch, mouse, and window events, depending on event existence, so you can bind to them for use in both handheld and desktop environments. You can bind to these events like you would with other jQuery events, using live() or bind().

                - -
                -

                Important: Use pageInit(), not $(document).ready()

                - The first thing you learn in jQuery is to call code inside the $(document).ready() function so everything will execute as soon as the DOM is loaded. However, in jQuery Mobile, Ajax is used to load the contents of each page into the DOM as you navigate, and the DOM ready handler only executes for the first page. To execute code whenever a new page is loaded and created, you can bind to the pageinit event. This event is explained in detail at the bottom of this page.
                - -

                -

                -

                Important: pageCreate() vs pageInit()

                - Prior to Beta 2 the recommendation to users wishing to manipulate jQuery Mobile enhanced page and child widget markup was to bind to the pagecreate event. In Beta 2 an internal change was made to decouple each of the widgets by binding to the pagecreate event in place of direct calls to the widget methods. As a result, users binding to the pagecreate in mobileinit would find their binding executing before the markup had been enhanced by each of the plugins. In keeping with the lifecycle of the jQuery UI Widget Factory, the initialization method is invoked after the create method, so the pageinit event provides the correct timing for post enhancement manipulation of the DOM and/or Javascript objects. - - In short, if you were previously using pagecreate to manipulate the enhanced markup before the page was shown its very likely you'll want to migrate to 'pageinit'. -

                - -

                Touch events

                -
                -
                tap
                -
                Triggers after a quick, complete touch event.
                - -
                taphold
                -
                Triggers after a held complete touch event (close to one second).
                - -
                swipe
                -

                Triggers when a horizontal drag of 30px or more (and less than 20px vertically) occurs within 1 second duration but these can be configured:

                -
                  -
                • scrollSupressionThreshold (default: 10px) – More than this horizontal displacement, and we will suppress scrolling
                • -
                • durationThreshold (default: 1000ms) – More time than this, and it isn’t a swipe
                • -
                • horizontalDistanceThreshold (default: 30px) – Swipe horizontal displacement must be more than this.
                • -
                • verticalDistanceThreshold (default: 75px) – Swipe vertical displacement must be less than this.
                • -
                -
                - -
                swipeleft
                -
                Triggers when a swipe event occurred moving in the left direction.
                - -
                swiperight
                -
                Triggers when a swipe event occurred moving in the right direction.
                -
                - -

                Virtual mouse events

                -

                We provide a set of "virtual" mouse events that attempt to abstract away mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. In touch environments, the plugin retains the order of event firing that is seen in traditional mouse environments, so for example, vmouseup is always dispatched before vmousedown, and vmousedown before vclick, etc. The virtual mouse events also normalize how coordinate information is extracted from the event, so in touch based environments, coordinates are available from the pageX, pageY, screenX, screenY, clientX, and clientY properties, directly on the event object.

                -
                -
                vmouseover
                -
                Normalized event for handling touch or mouseover events
                - -
                vmousedown
                -
                Normalized event for handling touchstart or mousedown events
                - -
                vmousemove
                -
                Normalized event for handling touchmove or mousemove events
                - -
                vmouseup
                -
                Normalized event for handling touchend or mouseup events
                - -
                vclick
                -
                Normalized event for handling touchend or mouse click events. On touch devices, this event is dispatched *AFTER* vmouseup.
                - -
                vmousecancel
                -
                Normalized event for handling touch or mouse mousecancel events
                -
                - -
                -

                Warning: Use vclick with caution

                -

                Use vclick with caution on touch devices. Webkit based browsers synthesize mousedown, mouseup, and click events roughly 300ms after the touchend event is dispatched. The target of the synthesized mouse events are calculated at the time they are dispatched and are based on the location of the touch events and, in some cases, implementation specific heuristics which leads to different target calculations on different devices and even different OS versions for the same device. This means the target element within the original touch events could be different from the target element within the synthesized mouse events.

                -

                We recommend using click instead of vclick anytime the action being triggered has the possibility of changing the content underneath the point that was touched on screen. This includes page transitions and other behaviors such as collapse/expand that could result in the screen shifting or content being completely replaced.

                -
                -

                 

                -
                -

                Canceling an elements default click behavior

                -

                Applications can call preventDefault() on a vclick event to cancel an element's default click behavior. On mouse based devices, calling preventDefault() on a vclick event equates to calling preventDefault() on the real click event during the bubble event phase. On touch based devices, it's a bit more complicated since the actual click event is dispatched about 300ms after the vclick event is dispatched. For touch devices, calling preventDefault() on a vclick event triggers some code in the vmouse plugin that attempts to catch the next click event that gets dispatched by the browser, during the capture event phase, and call preventDefault() and stopPropagation() on it. As mentioned in the warning above, it is sometimes difficult match up a touch event with its corresponding mouse event because the targets can differ. For this reason, the vmouse plugin also falls back to attempting to identify a corresponding click event by coordinates. There are still cases where both target and coordinate identification fail, which results in the click event being dispatched and either triggering the default action of the element, or in the case where content has been shifted or replaced, triggering a click on a different element. If this happens on a regular basis for a given element/control, we suggest you use click for triggering your action.

                -
                - -

                Orientation change event

                -
                -
                orientationchange
                -
                Triggers when a device orientation changes (by turning it vertically or horizontally). When bound to this event, your callback function can leverage a second argument, which contains an orientation property equal to either "portrait" or "landscape". These values are also added as classes to the HTML element, allowing you to leverage them in your CSS selectors. Note that we currently bind to the resize event when orientationChange is not natively supported, or when $.mobile.orientationChangeEnabled is set to false.
                -
                -

                orientationchange timing

                - - The timing of the orientationchange with relation to the change of the client height and width is different between browsers, though the current implementation will give you the correct value for event.orientation derived from window.orientation. This means that if your bindings are dependent on the height and width values you may want to disable orientationchange all together with $.mobile.orientationChangeEnabled = false to let the fallback resize code trigger your bindings. -
                -
                - -

                Scroll events

                -
                -
                scrollstart
                -
                Triggers when a scroll begins. Note that iOS devices freeze DOM manipulation during scroll, queuing them to apply when the scroll finishes. We're currently investigating ways to allow DOM manipulations to apply before a scroll starts.
                -
                -
                -
                scrollstop
                -
                Triggers when a scroll finishes.
                -
                - -

                Page load events

                -

                Whenever an external page is loaded into the application DOM, 2 events are fired. The first is pagebeforeload. The 2nd event will be either pageload or pageloadfailed.

                -
                -
                pagebeforeload
                -

                Triggered before any load request is made. Callbacks bound to this event can call preventDefault() on the event to indicate that they are handling the load request. Callbacks that do this *MUST* make sure they call resolve() or reject() on the deferred object reference contained in the data object passed to the callback.

                -

                The data object, passed as the 2nd arg to the callback function contains the following properties:

                -
                  -
                • url (string) -
                    -
                  • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                  • -
                  -
                • -
                • absUrl (string) -
                    -
                  • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                  • -
                  -
                • -
                • dataUrl (string) -
                    -
                  • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                  • -
                  -
                • -
                • deferred (object) -
                    -
                  • Callbacks that call preventDefault() on the event, *MUST* call resolve() or reject() on this object so that changePage() requests resume processing. Deferred object observers expect the deferred object to be resolved like this:

                    -
                    
                    -$( document ).bind( "pagebeforeload", function( event, data ){
                    -
                    -	// Let the framework know we're going to handle the load.
                    -
                    -	event.preventDefault();
                    -
                    -	// ... load the document then insert it into the DOM ...
                    -	// at some point, either in this callback, or through
                    -	// some other async means, call resolve, passing in
                    -	// the following args, plus a jQuery collection object
                    -	// containing the DOM element for the page.
                    -
                    -	data.deferred.resolve( data.absUrl, data.options, page );
                    -
                    -});
                    -

                    or rejected like this: -

                    
                    -$( document ).bind( "pagebeforeload", function( event, data ){
                    -
                    -	// Let the framework know we're going to handle the load.
                    -
                    -	event.preventDefault();
                    -
                    -	// ... load the document then insert it into the DOM ...
                    -	// at some point, if the load fails, either in this
                    -	// callback, or through some other async means, call
                    -	// reject like this:
                    -
                    -	data.deferred.reject( data.absUrl, data.options );
                    -
                    -});
                    -
                  • -
                  -
                • -
                • options (object) -
                    -
                  • This object contains the options that were passed into $.mobile.loadPage().
                  • -
                  -
                • -
                -
                -
                pageload
                -
                Triggered after the page is successfully loaded and inserted into the DOM. Callbacks bound to this event will be passed a data object as its 2nd arg. This object contains the following information: -
                  -
                • url (string) -
                    -
                  • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                  • -
                  -
                • -
                • absUrl (string) -
                    -
                  • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                  • -
                  -
                • -
                • dataUrl (string) -
                    -
                  • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                  • -
                  -
                • -
                • options (object) -
                    -
                  • This object contains the options that were passed into $.mobile.loadPage().
                  • -
                  -
                • -
                • xhr (object) -
                    -
                  • The jQuery XMLHttpRequest object used when attempting to load the page. This is what gets passed as the 3rd argument to the framework's $.ajax() success callback.
                  • -
                  -
                • -
                • textStatus (null or string) -
                    -
                  • According to the jQuery Core documentation, this will be a string describing the status. This is what gets passed as the 2nd argument to the framework's $.ajax() error callback.
                  • -
                  -
                • -
                -
                -
                pageloadfailed
                -
                Triggered if the page load request failed. By default, after dispatching this event, the framework will display a page failed message and call reject() on the deferred object contained within the event's data object. Callbacks can prevent this default behavior from executing by calling preventDefault() on the event. -

                The data object, passed as the 2nd arg to the callback function contains the following properties:

                -
                  -
                • url (string) -
                    -
                  • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                  • -
                  -
                • -
                • absUrl (string) -
                    -
                  • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                  • -
                  -
                • -
                • dataUrl (string) -
                    -
                  • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                  • -
                  -
                • -
                • deferred (object) -
                    -
                  • Callbacks that call preventDefault() on the event, *MUST* call resolve() or reject() on this object so that changePage() requests resume processing. Deferred object observers expect the deferred object to be resolved like this:

                    -
                    
                    -$( document ).bind( "pageloadfailed", function( event, data ){
                    -
                    -	// Let the framework know we're going to handle things.
                    -
                    -	event.preventDefault();
                    -
                    -	// ... attempt to load some other page ...
                    -	// at some point, either in this callback, or through
                    -	// some other async means, call resolve, passing in
                    -	// the following args, plus a jQuery collection object
                    -	// containing the DOM element for the page.
                    -
                    -	data.deferred.resolve( data.absUrl, data.options, page );
                    -
                    -});
                    -

                    or rejected like this: -

                    
                    -$( document ).bind( "pageloadfailed", function( event, data ){
                    -
                    -	// Let the framework know we're going to handle things.
                    -
                    -	event.preventDefault();
                    -
                    -	// ... attempt to load some other page ...
                    -	// at some point, if the load fails, either in this
                    -	// callback, or through some other async means, call
                    -	// reject like this:
                    -
                    -	data.deferred.reject( data.absUrl, data.options );
                    -
                    -});
                    -
                  • -
                  -
                • -
                • options (object) -
                    -
                  • This object contains the options that were passed into $.mobile.loadPage().
                  • -
                  -
                • -
                • xhr (object) -
                    -
                  • The jQuery XMLHttpRequest object used when attempting to load the page. This is what gets passed as the first argument to the framework's $.ajax() error callback.
                  • -
                  -
                • -
                • textStatus (null or string) -
                    -
                  • According to the jQuery Core documentation, possible values for this property, aside from null, are "timeout", "error", "abort", and "parsererror". This is what gets passed as the 2nd argument to the framework's $.ajax() error callback.
                  • -
                  -
                • -
                • errorThrown (null, string, object) -
                    -
                  • According to the jQuery Core documentation, this property may be an exception object if one occured, or if an HTTP error occured this will be set to the textual portion of the HTTP status. This is what gets passed as the 3rd argument to the framework's $.ajax() error callback.
                  • -
                  -
                • -
                -
                -
                -

                Page change events

                -

                Navigating between pages in the application is usually accomplished through a call to $.mobile.changePage(). This function is responsible for making sure that the page we are navigating to is loaded and inserted into the DOM, and then kicking off the transition animations between the current active page, and the page the caller wants to to make active. During this process, which is usually asynchronous, changePage() will fire off 2 events. The first is pagebeforechange. The second event depends on the success or failure of the change request. It will either be pagechange or pagechangefailed.

                -
                -
                pagebeforechange
                -
                This event is triggered prior to any page loading or transition. Callbacks can prevent execution of the changePage() function by calling preventDefault on the event object passed into the callback. The callback also recieves a data object as its 2nd arg. The data object has the following properties: -
                  -
                • toPage (object or string) -
                    -
                  • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                  • -
                  -
                • -
                • options (object) -
                    -
                  • This object contains the configuration options to be used for the current changePage() call.
                  • -
                  -
                • -
                -

                It should be noted that callbacks can modify both the toPage and options properties to alter the behavior of the current changePage() call. So for example, the toPage can be mapped to a different url from within a callback to do a sort of redirect.

                -
                -
                pagechange
                -
                This event is triggered after the changePage() request has finished loading the page into the DOM and all page transition animations have completed. Note that any pageshow or pagehide events will have fired *BEFORE* this event is triggered. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: -
                  -
                • toPage (object or string) -
                    -
                  • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                  • -
                  -
                • -
                • options (object) -
                    -
                  • This object contains the configuration options to be used for the current changePage() call.
                  • -
                  -
                • -
                -
                -
                pagechangefailed
                -
                This event is triggered when the changePage() request fails to load the page. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: -
                  -
                • toPage (object or string) -
                    -
                  • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                  • -
                  -
                • -
                • options (object) -
                    -
                  • This object contains the configuration options to be used for the current changePage() call.
                  • -
                  -
                • -
                -
                -
                -

                Page transition events

                -

                Page transitions are used to animate the change from the current active page (fromPage) to a new page (toPage). Events are triggered before and after these transitions so that observers can be notified whenever pages are shown or hidden. The events triggered are as follows:

                -
                -
                pagebeforeshow
                -
                Triggered on the "toPage" we are transitioning to, before the actual transition animation is kicked off. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: -
                  -
                • prevPage (object) -
                    -
                  • A jQuery collection object that contains the page DOM element that we are transitioning away from. Note that this collection is empty when the first page is transitioned in during application startup.
                  • -
                  -
                • -
                -
                - -
                pagebeforehide
                -
                Triggered on the "fromPage" we are transitioning away from, before the actual transition animation is kicked off. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: -
                  -
                • nextPage (object) -
                    -
                  • A jQuery collection object that contains the page DOM element that we are transitioning to.
                  • -
                  -
                • -
                -

                Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously active page.

                -
                - -
                pageshow
                -
                Triggered on the "toPage" after the transition animation has completed. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: -
                  -
                • prevPage (object) -
                    -
                  • A jQuery collection object that contains the page DOM element that we just transitioned away from. Note that this collection is empty when the first page is transitioned in during application startup.
                  • -
                  -
                • -
                -
                - -
                pagehide
                -
                Triggered on the "fromPage" after the transition animation has completed. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: -
                  -
                • nextPage (object) -
                    -
                  • A jQuery collection object that contains the page DOM element that we just transitioned to.
                  • -
                  -
                • -
                -

                Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously active page.

                -
                - -
                - -

                You can access the prevPage or nextPage properties via the second argument of a bound callback function. For example:

                -
                
                -$( 'div' ).live( 'pageshow',function(event, ui){
                -  alert( 'This page was just hidden: '+ ui.prevPage);
                -});
                -
                -$( 'div' ).live( 'pagehide',function(event, ui){
                -  alert( 'This page was just shown: '+ ui.nextPage);
                -});
                -
                -

                Also, for these handlers to be invoked during the initial page load, you must bind them before jQuery Mobile executes. This can be done in the mobileinit handler, as described on the global config page. -

                Page initialization events

                - -

                Internally, jQuery Mobile auto-initializes plugins based on the markup conventions found in a given "page". For example, an input element with a type of range will automatically generate a custom slider control.

                - -

                This auto-initialization is controlled by the "page" plugin, which dispatches events before and after it executes, allowing you to manipulate a page either pre-or-post initialization, or even provide your own intialization behavior and prevent the auto-initializations from occuring. Note that these events will only fire once per "page", as opposed to the show/hide events, which fire every time a page is shown and hidden.

                - -
                -
                pagebeforecreate
                -
                -

                Triggered on the page being initialized, before most plugin auto-initialization occurs.

                -
                
                -$( '#aboutPage' ).live( 'pagebeforecreate',function(event){
                -  alert( 'This page was just inserted into the dom!' );
                -});
                -
                -

                Note that by binding to pagebeforecreate, you can manipulate markup before jQuery Mobile's default widgets are auto-initialized. For example, say you want to add data-attributes via JavaScript instead of in the HTML source, this is the event you'd use.

                - -
                
                -$( '#aboutPage' ).live( 'pagebeforecreate',function(event){
                -  // manipulate this page before its widgets are auto-initialized
                -});
                -
                -
                - -
                pagecreate
                -
                -

                Triggered when the page has been created in the DOM (via ajax or other) but before all widgets have had an opportunity to enhance the contained markup. This event is most useful for user's wishing to create their own custom widgets for child markup enhancement as the jquery mobile widgets do.

                -
                
                -$( '#aboutPage' ).live( 'pagecreate',function(event){
                -  ( ":jqmData(role='sweet-plugin')" ).sweetPlugin();
                -});
                -
                -
                - -
                pageinit
                -
                -

                Triggered on the page being initialized, after initialization occurs. We recommend binding to this event instead of DOM ready() because this will work regardless of whether the page is loaded directly or if the content is pulled into another page as part of the Ajax navigation system.

                -
                
                -$( '#aboutPage' ).live( 'pageinit',function(event){
                -  alert( 'This page was just enhanced by jQuery Mobile!' );
                -});
                -
                -
                -
                - - - -

                Page remove events

                -

                By default, the framework removes any non active dynamically loaded external pages from the DOM as soon as the user navigates away to a different page. The pageremove event is dispatched just before the framework attempts to remove the a page from the DOM.

                -
                -
                pageremove
                -
                This event is triggered just before the framework attempts to remove an external page from the DOM. Event callbacks can call preventDefault on the event object to prevent the page from being removed. -
                -
                - -

                Layout events

                -

                Some components within the framework, such as collapsible and listview search, dynamically hide and show content based on user events. This hiding/showing of content affects the size of the page and may result in the browser adjusting/scrolling the viewport to accommodate the new page size. Since this has the potential to affect other components such as fixed headers and footers, components like collapsible and listview trigger a custom updatelayout event to notify other components that they may need to adjust their layouts in response to their content changes. Developers who are building dynamic applications that inject, hide, or remove content from the page, or manipulate it in any way that affects the dimensions of the page, can also manually trigger this updatelayout event to ensure components on the page update in response to the changes.

                -
                -
                updatelayout
                -
                This event is triggered by components within the framework that dynamically show/hide content, and is meant as a generic mechanism to notify other components that they may need to update their size or position. Within the framework, this event is fired on the component element whose content was shown/hidden, and bubbles all the way up to the document element. -
                
                -$( '#foo' ).hide().trigger( 'updatelayout' );
                -
                -
                -
                - -

                Animation Events

                -

                jQuery Mobile exposes the animationComplete plugin, which you can utilize after adding or removing a class that applies a CSS transition.

                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/globalconfig.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/globalconfig.html deleted file mode 100755 index 55745e8..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/globalconfig.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuring default settings - - - - - - - - - -
                - -
                -

                Configuring Defaults

                - Home -
                - -
                -
                - -

                Working with jQuery Mobile's Auto-initialization

                -

                Unlike other jQuery projects, such as jQuery and jQuery UI, jQuery Mobile automatically applies many markup enhancements as soon as it loads (long before document.ready event fires). These enhancements are applied based on jQuery Mobile's default configuration, which is designed to work with common scenarios, but may or may not match your particular needs. Fortunately, these settings are easy to configure.

                - -

                The mobileinit event

                -

                When the jQuery Mobile starts to execute, it triggers a mobileinit event on the document object, to which you can bind to apply overrides to jQuery Mobile's defaults.

                - -
                -				
                -$(document).bind("mobileinit", function(){
                -  //apply overrides here
                -});
                -				
                -			
                - -

                Because the mobileinit event is triggered immediately upon execution, you'll need to bind your event handler before jQuery Mobile is loaded. Thus, we recommend linking to your JavaScript files in the following order:

                - -
                -				
                -<script src="jquery.js"></script>
                -<script src="custom-scripting.js"></script>
                -<script src="jquery-mobile.js"></script>
                -				
                -			
                - -

                Within this event binding, you can configure defaults either by extending the $.mobile object using jQuery's $.extend method:

                - -
                -				
                -$(document).bind("mobileinit", function(){
                -  $.extend(  $.mobile , {
                -    foo: bar
                -  });
                -});
                -				
                -			
                - -

                ...or by setting them individually:

                -
                -				
                -$(document).bind("mobileinit", function(){
                -  $.mobile.foo = bar;
                -});
                -				
                -			
                - -

                To quickly preview these global configuration options in action, check out the config test pages.

                - -

                Configurable options

                -

                The following defaults are configurable via the $.mobile object:

                - -
                -
                ns string, default: ""
                -
                The namespace used in data- attributes, for example, data-role. Can be set to anything, including a blank string which is the default. When using, it's clearest if you include a trailing dash, such as "mynamespace-" which maps to data-mynamespace-foo="...". -

                NOTE: if you're using data- namespacing, you'll need to manually update/override one selector in the theme CSS. The following data selectors should incorporate the namespace you're using: -

                
                -.ui-mobile [data-mynamespace-role=page], .ui-mobile [data-mynamespace-role=dialog], .ui-page { ...
                -		
                -

                -
                - -
                autoInitializePage boolean, default: true
                -
                When the DOM is ready, the framework should automatically call $.mobile.initializePage. If false, page will not initialize, and will be visually hidden until until $.mobile.initializePage is manually called.
                - -
                subPageUrlKey string, default: "ui-page"
                -
                The url parameter used for referencing widget-generated sub-pages (such as those generated by nested listviews). Translates to to example.html&ui-page=subpageIdentifier. The hash segment before &ui-page= is used by the framework for making an Ajax request to the URL where the sub-page exists.
                - -
                activePageClass string, default: "ui-page-active"
                -
                The class assigned to page currently in view, and during transitions
                - - -
                activeBtnClass string, default: "ui-btn-active"
                -
                The class used for "active" button state, from CSS framework.
                - -
                ajaxEnabled boolean, default: true
                -
                jQuery Mobile will automatically handle link clicks and form submissions through Ajax, when possible. If false, url hash listening will be disabled as well, and urls will load as regular http requests.
                - -
                linkBindingEnabled boolean, default: true
                -
                jQuery Mobile will automatically bind the clicks on anchor tags in your document. Setting this options to false will prevent all anchor click handling including the addition of active button state and alternate link bluring. This should only be used when attempting to delegate the click management to another library or custom code.
                - -
                hashListeningEnabled boolean, default: true
                -
                jQuery Mobile will automatically listen and handle changes to the location.hash. Disabling this will prevent jQuery Mobile from handling hash changes, which allows you to handle them yourself, or simply to use simple deep-links within a document that scroll to a particular ID.
                - -
                pushStateEnabled boolean, default: true
                -
                Enhancement to use history.replaceState in supported browsers, to convert the hash-based Ajax URL into the full document path. Note that we recommend disabling this feature if Ajax is disabled or if extensive use of external links are used.
                - -
                defaultPageTransition string, default: 'slide'
                -
                Set the default transition for page changes that use Ajax. Set to 'none' for no transitions by default.
                - -
                touchOverflowEnabled boolean, default: false
                -
                Enable smoother page transitions and true fixed toolbars in devices that support both the overflow: and overflow-scrolling: touch; CSS properties.
                - -
                defaultDialogTransition string, default: 'pop'
                -
                Set the default transition for dialog changes that use Ajax. Set to 'none' for no transitions by default.
                - -
                minScrollBack string, default: 150
                -
                Minimum scroll distance that will be remembered when returning to a page.
                - -
                loadingMessage string, default: "loading"
                -
                Set the text that appears when a page is loading. If set to false, the message will not appear at all.
                - -
                pageLoadErrorMessage string, default: "Error Loading Page"
                -
                Set the text that appears when a page fails to load through Ajax.
                - -
                gradeA function that returns a boolean, default: a function returning the value of $.support.mediaquery
                -
                Any support conditions that must be met in order to proceed.
                - - -
                -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/index.html deleted file mode 100644 index 1ef5556..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/index.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - jQuery UI Mobile Framework - API - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/mediahelpers.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/mediahelpers.html deleted file mode 100755 index 0bf717c..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/mediahelpers.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - jQuery Mobile Docs - Responsive Layout Helpers - - - - - - - - - -
                - -
                -

                Responsive Layout Helpers

                - Home -
                - -
                - -
                -

                Media Query Helper Classes

                -

                Note: This feature was deprecated in beta, and removed in 1.0rc1. We recommend using CSS3 Media Queries instead. To support older versions of Internet Explorer, check out respond.js, a fast & lightweight polyfill for min/max-width CSS3 Media Queries.

                -

                If you still need this feature, you can find the code here: jquery.mobile.media.classes.js

                - -

                jQuery Mobile adds classes to the HTML element that mimic browser orientation and common min/max-width CSS media queries. These classes are updated on load, resize and orientationchange, allowing you to key off these classes in your CSS, to create responsive layouts - even in browsers that don't support media queries!

                - -

                Orientation Classes

                - -

                The HTML element will always have a class of either "portrait" or "landscape", depending on the orientation of the browser or device. You can utilize these in your CSS like this:

                -
                -			
                -.portrait {
                -	/* portrait orientation changes go here! */
                -}
                -.landscape {
                -	/* landscape orientation changes go here! */
                -}			
                -			
                -			
                - -

                Min/Max Width Breakpoint Classes

                -

                By default, we create min and max breakpoint classes at the following widths: 320,480,768,1024. These translate to classes that look like this: "min-width-320px", "max-width-480px", and are meant to be used as a replacement of (or in addition to) the media query equivalents they mimic.

                -
                -			
                -.myelement { 
                -	float: none;
                -}			
                -.min-width-480px .myelement {
                -	float: left;
                -}		
                -			
                -
                - -

                Many plugins in jQuery Mobile leverage these width breakpoints. For example, form elements float beside their labels when the browser is wider than 480 pixels. The CSS to support this behavior for form text inputs looks like this:

                - -
                -			
                -label.ui-input-text { 
                -	display: block; 
                -}
                -.min-width-480px label.ui-input-text { 
                -	display: inline-block; 
                -}
                -			
                -
                - -

                Adding Width Breakpoints

                -

                To utilize width breakpoints of your own, jQuery Mobile exposes the $.mobile.addResolutionBreakpoints function, which accepts either a single number or array of numbers that will be added to the min/max breakpoints whenever they apply.

                -
                -			
                -//add a min/max class for 1200 pixel widths			
                -$.mobile.addResolutionBreakpoints(1200);
                -
                -//add min/max classes for 1200, and 1440 pixel widths			
                -$.mobile.addResolutionBreakpoints([1200, 1440]);
                -			
                -
                - -

                Running Media Queries

                -

                jQuery Mobile provides a function that allows you to test whether a particular CSS Media Query applies. Simple call $.mobile.media() and pass a media type or query. If the browser supports that type or query, and it currently applies, the function will return true. If not, it'll return false.

                - -
                -			
                -//test for screen media type
                -$.mobile.media("screen");
                -
                -//test  a min-width media query
                -$.mobile.media("screen and (min-width: 480px)");
                -
                -//test for iOS retina display
                -$.mobile.media("screen and (-webkit-min-device-pixel-ratio: 2)");
                -
                -			
                -
                - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/methods.html deleted file mode 100755 index ebd2f78..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/methods.html +++ /dev/null @@ -1,566 +0,0 @@ - - - - - - jQuery Mobile Docs - Methods - - - - - - - - - -
                - -
                -

                Methods

                - Home -
                - -
                -
                - -

                jQuery Mobile exposes several methods and properties on the $.mobile object for use in your applications.

                - - -
                -
                $.mobile.changePage (method)
                -
                Programmatically change from one page to another. This method is used internally for the page loading and transitioning that occurs as a result of clicking a link or submitting a form, when those features are enabled.
                - -
                - -
                -
                · Arguments
                -
                to (string or object, required) -
                  -
                • String: Absolute or relative URL. ("about/us.html")
                • -
                • Object: jQuery collection object. ($("#about"))
                • -
                -
                - -
                options (object, optional) -
                  -
                • Properties: -
                    -
                  • allowSamePageTransition (boolean, default: false) By default, changePage() ignores requests to change to the current active page. Setting this option to true, allows the request to execute. Developers should note that some of the page transitions assume that the fromPage and toPage of a changePage request are different, so they may not animate as expected. Developers are responsible for either providing a proper transition, or turning it off for this specific case.
                  • -
                  • changeHash (boolean, default: true) Decides if the hash in the location bar should be updated.
                  • -
                  • data (object or string, default: undefined) The data to send with an Ajax page request. -
                      -
                    • Used only when the 'to' argument of changePage() is a URL.
                    • -
                    -
                  • -
                  • data-url (string, default: undefined) The URL to use when updating the browser location upon changePage completion. - If not specified, the value of the data-url attribute of the page element is used.
                  • -
                  • pageContainer (jQuery collection, default: $.mobile.pageContainer) Specifies the element that should contain the page.
                  • -
                  • reloadPage (boolean, default: false) Forces a reload of a page, even if it is already in the DOM of the page container. -
                      -
                    • Used only when the 'to' argument of changePage() is a URL.
                    • -
                    -
                  • -
                  • reverse (boolean, default: false) Decides what direction the transition will run when showing the page.
                  • -
                  • showLoadMsg (boolean, default: true) Decides whether or not to show the loading message when loading external pages.
                  • -
                  • role (string, default: undefined) The data-role value to be used when displaying the page. By default this is undefined which means rely on the value of the @data-role attribute defined on the element.
                  • -
                  • transition (string, default: $.mobile.defaultPageTransition) The transition to use when showing the page.
                  • -
                  • type (string, default: "get") Specifies the method ("get" or "post") to use when making a page request. -
                      -
                    • Used only when the 'to' argument of changePage() is a URL.
                    • -
                    -
                  • -
                  -
                • -
                -
                - -
                -
                - -
                Examples: -
                -			
                -//transition to the "about us" page with a slideup transition 			
                -$.mobile.changePage( "about/us.html", { transition: "slideup"} );	
                -
                -//transition to the "search results" page, using data from a form with an ID of "search"" 		
                -$.mobile.changePage( "searchresults.php", {
                -	type: "post", 
                -	data: $("form#search").serialize()
                -});		
                -
                -//transition to the "confirm" page with a "pop" transition without tracking it in history			
                -$.mobile.changePage( "../alerts/confirm.html", {
                -	transition: "pop",
                -	reverse: false,
                -	changeHash: false
                -});	
                -		
                -			
                -			
                - -
                - - -
                $.mobile.loadPage (method)
                -
                Load an external page, enhance its content, and insert it into the DOM. This method is called internally by the changePage() function when its first argument is a URL. This function does not affect the current active page so it can be used to load pages in the background. The function returns a deferred promise object that gets resolved after the page has been enhanced and inserted into the document.
                - -
                - -
                -
                · Arguments
                -
                url (string or object, required) A relative or absolute URL.
                - -
                options (object, optional) -
                  -
                • Properties: -
                    -
                  • data (object or string, default: undefined) The data to send with an Ajax page request.
                  • -
                  • loadMsgDelay (number (in ms), default: 50) Forced delay before the loading message is shown. This is meant to allow time for a page that has already been visited to be fetched from cache without a loading message.
                  • -
                  • pageContainer (jQuery collection, default: $.mobile.pageContainer) Specifies the element that should contain the page after it is loaded.
                  • -
                  • reloadPage (boolean, default: false) Forces a reload of a page, even if it is already in the DOM of the page container.
                  • -
                  • role (string, default: undefined) The data-role value to be used when displaying the page. By default this is undefined which means rely on the value of the @data-role attribute defined on the element.
                  • -
                  • type (string, default: "get") Specifies the method ("get" or "post") to use when making a page request. -
                  • -
                  -
                • -
                -
                - -
                -
                - -
                Examples: -
                -			
                -//load the "about us" page into the DOM			
                -$.mobile.loadPage( "about/us.html" );	
                -
                -//load a "search results" page, using data from a form with an ID of "search"" 		
                -$.mobile.loadPage( "searchresults.php", {
                -	type: "post", 
                -	data: $("form#search").serialize()
                -});				
                -			
                -			
                - -
                - - -
                jqmData(), jqmRemoveData() (method)
                -
                When working with jQuery Mobile, jqmData and jqmRemoveData should be used in place of jQuery core's data and removeData methods (note that this includes $.fn.data, $.fn.removeData, and the $.data, $.removeData, and $.hasData utilities), as they automatically incorporate getting and setting of namespaced data attributes (even if no namespace is currently in use).
                -
                -
                -
                · Arguments:
                -
                See jQuery's data and removeData methods
                - Note: Calling jqmData() with no argument will return undefined. This behavior is subject to change in future versions. -
                · Also:
                -
                When finding elements by their jQuery Mobile data attribute, please use the custom selector :jqmData(), as it automatically incorporates namespaced data attributes into the lookup when they are in use. For example, instead of calling $("div[data-role='page']"), you should use $("div:jqmData(role='page')"), which internally maps to $("div[data-"+ $.mobile.ns +"role='page']") without forcing you to concatenate a namespace into your selectors manually.
                -
                -
                - - - - -
                $.mobile.showPageLoadingMsg ()
                -
                Show the page loading message, which is configurable via $.mobile.loadingMessage.
                - -
                Example: -
                -			
                -//cue the page loader 			
                -$.mobile.showPageLoadingMsg();	
                -			
                -			
                - -
                - - - - -
                $.mobile.hidePageLoadingMsg ()
                -
                Hide the page loading message, which is configurable via $.mobile.loadingMessage.
                - -
                Example: -
                -			
                -//cue the page loader 			
                -$.mobile.hidePageLoadingMsg();	
                -			
                -			
                - -
                - -
                $.mobile.fixedToolbars.show (method)
                -
                Utility method for displaying the fixed header and/or footer of the current active page within the viewport. Note that fixed headers/footers are never really hidden. Toggling the show/hide state of a toolbar is really toggling whether or not they are inline within the page content, or displayed within the viewport as if they were fixed.
                -
                -
                -
                · Arguments
                -
                immediately (boolean, optional) If true, any fixed header or footer for the current active page is displayed immediately within the viewport. If false or unspecified, the fixed header/footer will fade-in after a 100 millisecond delay. Note that other events such as a document resize or scroll event can result in an additional delay before the start of the header/footer display animation.
                -
                -
                -
                Example: -
                -			
                -// Show fixed header/footer with a fade animation. 			
                -$.mobile.fixedToolbars.show();	
                -
                -// Show fixed header/footer immediately.
                -$.mobile.fixedToolbars.show(true);	
                -			
                -			
                - -
                - -
                $.mobile.fixedToolbars.hide (method)
                -
                Utility method for hiding the fixed header and/or footer of the current active page.
                -
                -
                -
                · Arguments
                -
                immediately (boolean, optional) If true, any fixed header or footer for the current active page is immediately placed inline (back in flow) with the page content, which means it will scroll along with the content and will only be visible when viewing the top or bottom of the page within the viewport. If false or unspecified, the fixed header/footer will fade-out after a 100 millisecond delay. Note that other events such as a document resize or scroll event can result in the header/footer being immediately hidden.
                -
                -
                -
                Example: -
                -			
                -// Hide fixed header/footer with a fade animation. 			
                -$.mobile.fixedToolbars.hide();	
                -
                -// Hide fixed header/footer immediately.
                -$.mobile.fixedToolbars.hide(true);	
                -			
                -			
                - -
                - -
                $.mobile.path.parseUrl (method)
                -
                Utility method for parsing a URL and its relative variants into an object that makes accessing the components of the URL easy. When parsing relative variants, the resulting object will contain empty string values for missing components (like protocol, host, etc). Also, when parsing URLs that have no authority, such as tel: urls, the pathname property of the object will contain the data after the protocol/scheme colon.
                - -
                - -
                -
                · Arguments
                -
                url (string, required) A relative or absolute URL.
                - -
                · Return Value
                -
                -

                This function returns an object that contains the various components of the URL as strings. The properties on the object mimic the browser's location object:

                -
                -
                hash
                -
                The fragment conponent of the URL, including the leading '#' character.
                -
                host
                -
                The host and port number of the URL.
                -
                hostname
                -
                The name of the host within the URL.
                -
                href
                -
                The original URL that was parsed.
                -
                pathname
                -
                The path of the file or directory referenced by the URL.
                -
                port
                -
                The port specified within the URL. Most URLs rely on the default port for the protocol used, so this may be an empty string most of the time.
                -
                protocol
                -
                The protocol for the URL including the trailing ':' character.
                -
                search
                -
                The query component of the URL including the leading '?' character.
                -
                -

                But it also contains additional properties that provide access to additional components as well as some common forms of the URL developers access:

                -
                -
                authority
                -
                The username, password, and host components of the URL
                -
                directory
                -
                The directory component of the pathname, minus any filename.
                -
                domain
                -
                The protocol and authority components of the URL.
                -
                filename
                -
                The filename within the pathname component, minus the directory.
                -
                hrefNoHash
                -
                The original URL minus the fragment (hash) components.
                -
                hrefNoSearch
                -
                The original URL minus the query (search) and fragment (hash) components.
                -
                password
                -
                The password contained within the authority component.
                -
                username
                -
                The username contained within the authority component.
                -
                -
                - -
                -
                - -
                Examples: -
                -			
                -// Parsing the Url below results an object that is returned with the
                -// following properties:
                -//
                -//  obj.href:         http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread#msg-content
                -//  obj.hrefNoHash:   http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread
                -//  obj.hrefNoSearch: http://jblas:password@mycompany.com:8080/mail/inbox
                -//  obj.domain:       http://jblas:password@mycompany.com:8080
                -//  obj.protocol:     http:
                -//  obj.authority:    jblas:password@mycompany.com:8080
                -//  obj.username:     jblas
                -//  obj.password:     password
                -//  obj.host:         mycompany.com:8080
                -//  obj.hostname:     mycompany.com
                -//  obj.port:         8080
                -//  obj.pathname:     /mail/inbox
                -//  obj.directory:    /mail/
                -//  obj.filename:     inbox
                -//  obj.search:       ?msg=1234&type=unread
                -//  obj.hash:         #msg-content
                -
                -var obj = $.mobile.path.parseUrl("http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234");
                -			
                -			
                - -
                - - -
                $.mobile.path.makePathAbsolute (method)
                -
                Utility method for converting a relative file or directory path into an absolute path.
                -
                -
                -
                · Arguments
                -
                relPath (string, required) A relative file or directory path.
                -
                absPath (string, required) An absolute file or relative path to resolve against.
                - -
                · Return Value
                -
                This function returns a string that is an absolute version of the relative path passed in.
                - -
                -
                -
                Examples: -
                -			
                -// Returns: /a/b/c/file.html
                -var absPath = $.mobile.path.makePathAbsolute("file.html", "/a/b/c/bar.html");
                -
                -// Returns: /a/foo/file.html
                -var absPath = $.mobile.path.makePathAbsolute("../../foo/file.html", "/a/b/c/bar.html");
                -
                -			
                -			
                -
                - - -
                $.mobile.path.makeUrlAbsolute (method)
                -
                Utility method for converting a relative URL to an absolute URL.
                -
                - -
                -
                Arguments
                -
                relUrl (string, required) A relative URL.
                -
                absUrl (string, required) An absolute URL to resolve against.
                - -
                Return Value
                -
                This function returns a string that is an absolute version of the relative URL passed in.
                - -
                -
                -
                Examples: -
                -			
                -// Returns: http://foo.com/a/b/c/file.html
                -var absUrl = $.mobile.path.makeUrlAbsolute("file.html", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: http://foo.com/a/foo/file.html
                -var absUrl = $.mobile.path.makeUrlAbsolute("../../foo/file.html", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: http://foo.com/bar/file.html
                -var absUrl = $.mobile.path.makeUrlAbsolute("//foo.com/bar/file.html", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: http://foo.com/a/b/c/test.html?a=1&b=2
                -var absUrl = $.mobile.path.makeUrlAbsolute("?a=1&b=2", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: http://foo.com/a/b/c/test.html#bar
                -var absUrl = $.mobile.path.makeUrlAbsolute("#bar", "http://foo.com/a/b/c/test.html");
                -
                -			
                -			
                - -
                - - -
                $.mobile.path.isSameDomain (method)
                -
                Utility method for comparing the domain of 2 URLs.
                -
                - -
                -
                · Arguments
                -
                url1 (string, required) A relative URL.
                -
                url2 (string, required) An absolute URL to resolve against.
                - -
                Return Value
                -
                This function returns a boolean true if the domains match, false if they don't.
                - -
                -
                -
                Examples: -
                -			
                -// Returns: true
                -var same = $.mobile.path.isSameDomain("http://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: false
                -var same = $.mobile.path.isSameDomain("file://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: false
                -var same = $.mobile.path.isSameDomain("https://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
                -
                -// Returns: false
                -var same = $.mobile.path.isSameDomain("http://foo.com/a/file.html", "http://bar.com/a/b/c/test.html");
                -
                -			
                -			
                - -
                - - -
                $.mobile.path.isRelativeUrl (method)
                -
                Utility method for determining if a URL is a relative variant.
                -
                - -
                -
                · Arguments
                -
                url (string, required) A relative or absolute URL.
                - -
                · Return Value
                -
                This function returns a boolean true if the URL is relative, false if it is absolute.
                - -
                -
                -
                Examples: -
                -			
                -// Returns: false
                -var isRel = $.mobile.path.isRelativeUrl("http://foo.com/a/file.html");
                -
                -// Returns: true
                -var isRel = $.mobile.path.isRelativeUrl("//foo.com/a/file.html");
                -
                -// Returns: true
                -var isRel = $.mobile.path.isRelativeUrl("/a/file.html");
                -
                -// Returns: true
                -var isRel = $.mobile.path.isRelativeUrl("file.html");
                -
                -// Returns: true
                -var isRel = $.mobile.path.isRelativeUrl("?a=1&b=2");
                -
                -// Returns: true
                -var isRel = $.mobile.path.isRelativeUrl("#foo");
                -
                -
                -			
                -			
                - -
                - - -
                $.mobile.path.isAbsoluteUrl (method)
                -
                Utility method for determining if a URL is absolute.
                -
                - -
                -
                · Arguments
                -
                url (string, required) A relative or absolute URL.
                - -
                · Return Value
                -
                This function returns a boolean true if the URL is absolute, false if it is absolute.
                - -
                -
                -
                Examples: -
                -			
                -// Returns: true
                -var isAbs = $.mobile.path.isAbsoluteUrl("http://foo.com/a/file.html");
                -
                -// Returns: false
                -var isAbs = $.mobile.path.isAbsoluteUrl("//foo.com/a/file.html");
                -
                -// Returns: false
                -var isAbs = $.mobile.path.isAbsoluteUrl("/a/file.html");
                -
                -// Returns: false
                -var isAbs = $.mobile.path.isAbsoluteUrl("file.html");
                -
                -// Returns: false
                -var isAbs = $.mobile.path.isAbsoluteUrl("?a=1&b=2");
                -
                -// Returns: false
                -var isAbs = $.mobile.path.isAbsoluteUrl("#foo");
                -
                -
                -			
                -			
                - -
                - - -
                $.mobile.base (methods, properties)
                -
                Utilities for working with generated base element. TODO: document as public API is finalized.
                - - - -
                $.mobile.silentScroll (method)
                -
                Scroll to a particular Y position without triggering scroll event listeners.
                -
                -
                -
                · Arguments:
                -
                yPos (number, defaults to 0). Pass any number to scroll to that Y location.
                -
                -
                - -
                Examples: -
                -			
                -//scroll to Y 100px 			
                -$.mobile.silentScroll(100);	
                -			
                -			
                - -
                - - - - - -
                $.mobile.activePage (property)
                -
                Reference to the page currently in view.
                - - - - -
                -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/api/themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/api/themes.html deleted file mode 100755 index 9c6f2d1..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/api/themes.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - jQuery Mobile Framework - Static Containers, States - - - - - - - - - -
                - -
                -

                Themes

                - Home -
                - -
                - -
                -

                Theming overview

                - -

                Every layout and widget in jQuery Mobile is designed around a new object-oriented CSS framework that makes it possible to apply a complete unified visual design Theme to sites and applications. The theming system is similar to the ThemeRoller system in jQuery UI, but adds a few important improvements:

                - -
                  -
                • It takes advantage of CSS3 properties to add rounded corners, box and text shadow and gradients instead of images, allowing the theme file to be very lightweight and reducing server requests.
                • -
                • Themes include multiple color "swatches" — each consisting of a header bar, content body, and button states that can be freely mixed and matched to create visual texture — to make richer designs possible
                • -
                • Open-ended theming allows for up to 26 unique swatches per theme, to add almost unlimited variety to designs
                • -
                • All backgrounds now use CSS3 gradients to dramatically reduce file size and number of server requests
                • -
                • A simplified icon set including those most commonly used for mobile, in a sprite to reduce image weight
                • -
                - -

                ThemeRoller

                - Themroller Mobile Logo - The easiest way to create custom themes is with the ThemeRoller tool. It allows you to build a theme, then download a custom CSS file, ready to be dropped into your project. - -

                Themes & swatches

                - -

                The key to the Theme system is separation of color and texture, from structural styles that define things like padding and dimensions. This allows theme colors and textures to be defined once in the stylesheet and be mixed, matched and combined to achieve a wide range of visual effects.

                - -

                Each Theme includes several global settings, including font family, drop shadows for overlays, and corner radius values for buttons and boxes. In addition, the Theme can include multiple color "swatches", each with color values for bars, content blocks, buttons and list items, and font text-shadow.

                - -

                jQuery Mobile's default Theme includes 5 swatches that are given letters (a, b, c, d, e) for quick reference. To make mapping of color swatches consistent across our widgets, we have followed the convention that swatch "a" is the highest level of visual priority (black in our default theme), "b" is secondary level (blue) and "c" is the baseline level (gray) that we use by default in many situations, "d" for an alternate secondary level and "e" as an accent swatch. Themes may have additional swatches for accent colors or specific situations. For example, you could add a new theme swatch "f" that has a red bar and button for use in error situations.

                - -

                A new ThemeRoller tool will launched with the jQuery Mobile 1.0 release in 2011. In the meantime, it's simple to manually edit the base swatches in the default theme and/or add additional swatches by editing the theme css file: copy a block of swatch styles, rename the classes with the new swatch letter name, and tweak colors.

                - - -

                Bars

                -

                The default theme contains the following five Bar styles:

                - -
                -
                Bar A - Link
                -
                Bar B - Link
                -
                Bar C - Link
                -
                Bar D - Link
                -
                Bar E - Link
                -
                - -

                By default, the framework assigns the "a" swatch to all headers and footers, because these are typically given high visual priority in an application. To set the color of a bar to a different swatch color, simply add the data-theme attribute to your header or footer and specify an alternate swatch letter ('b' or 'd', for example) and the specified theme swatch color will be applied. Learn more about toolbar theming.

                - - - -

                Content Blocks

                -

                The default theme also includes color swatch values for use in content blocks, designed to coordinate with the header color swatches in the theme.

                - -
                -
                Block A - Link
                -
                Block B - Link
                -
                Block C - Link
                -
                Block D - Link
                -
                Block E - Link
                -
                - - -

                If a theme isn't specified on a content block, the framework will default to "c" to maximize contrast against the default header "a", as shown here:

                - -
                - Back -

                Default Header

                -
                -
                -

                Default Theme Content Header

                -

                This is the default content color swatch and a preview of a link.

                - - -
                - Cache settings: - - - - -
                - Button -
                - - - -

                Learn more about content theming.

                - - -

                Lists & Buttons

                -

                Each swatch also includes default styles for interactive elements like list items and buttons.

                - - - - - - - - - - - -

                A button is included for each swatch in the theme. Each button has styles for normal, hover/focus and pressed states.

                - - - - -

                By default, any button that's placed in a bar is automatically assigned a swatch letter that matches its parent bar or content box, to visually integrate the button into the parent theme like a chameleon, as shown here:

                - -
                - - - - - -
                - -

                This default behavior makes it easy to ripple a theme change through a page by setting a theme swatch on a parent because you know the buttons will maintain the same relative visual weight across themes. Since form elements use the button styles, they will also adapt to their parent container too.

                - -

                If you want to add visual emphasis to a button and help it stand out visually from its parent toolbar, an alternate swatch color can be set by adding a data-theme="a" to the anchor. Once an alternate swatch color is set on a button in the markup, the framework won't override that color if the parent theme is changed, because you made a conscious decision to set it.

                - -
                -
                -
                - A - B - C - D - E -
                -
                -
                -
                - A - B - C - D - E -
                -
                -
                -
                - A - B - C - D - E -
                -
                -
                -
                - A - B - C - D - E -
                -
                -
                -
                - A - B - C - D - E -
                -
                - -
                - -

                Learn more about list theming and button theming.

                - -

                Global "Active" state

                -

                The jQuery Mobile framework uses a single Theme-level swatch called "active" (bright blue in the default theme) to consistently indicate the selected state, regardless of the individual swatch of the given widget. We apply this in navigation and form controls whenever there is a need to indicate what is currently selected. Because this theme swatch is designed for clear, consistent user feedback, it cannot be overridden via the markup; it is set once in the Theme and applied by the framework whenever a selected or active state is needed. The styling for this state is in the theme stylesheet under the ui-btn-active style rules.

                - -
                - Active is used for the on state of these toggles: - - - - -
                - - -

                Icons

                -

                There a core set of standard icons included in the framework that can be assigned to any button. To minimize the download size of the core icons, jQuery Mobile only includes these icons in white and automatically adds a semi-transparent black circle behind the icon to make sure it has good contrast on all background colors.

                - -

                Theme classes

                -

                Assigning color swatches through the data-theme attribute is one way to leverage the theme system, but it's also possible to apply any of the theme swatches directly to your markup through classes to apply the colors, textures and font formatting of your theme to any markup. This is especially useful when creating your own custom layout elements or UI widgets. Here are a few common theme classes, but many more are available in the theme stylesheet:

                -
                -
                ui-bar-(a-z)
                -
                Applies the toolbar theme styles for the selected swatch letter. Commonly used in conjunction with ui-bar structural class to add the standard bar padding styles.
                -
                ui-body-(a-z)
                -
                Applies the content body theme styles for the selected swatch letter. Commonly used in conjunction with ui-body structural class to add the standard content block padding styles.
                -
                ui-btn-up-(a-z)
                -
                Applies the button/clickable element theme styles for the selected swatch letter. Commonly used in with the ui-btn-hover-(a-z) and ui-btn-down-(a-z) interaction class states to provide visual feedback and ui-btn-active to indicate the selected or "on" state.
                -
                ui-corner-all
                -
                Applies the theme's global border-radius for rounded corners and is used for container or grouped items in the framework (inset lists, radiobutton sets). There are additional classes for all the possible combinations of rounded corners, for example: ui-corner-tl (top left only), -top (both top corners), -left (both left corners), etc. A second full set of corner classes is provided for buttons so these can have a different corner radius. These use classes with a similar naming convention, but with "btn-corner" instead of "corner", like this: .ui-btn-corner-all.
                -
                ui-shadow
                -
                Applies the theme's global drop shadow to any element using CSS box-shadow property.
                -
                ui-disabled
                -
                Applies the disabled look and feel which essentially reduces the opacity of any element with this class to 30%, hides the cursor, and sets pointer-events: none; which prevents any interaction in many modern browsers.
                -
                - -

                Overriding themes

                -

                The themes are meant as a solid starting point, but are meant to be customized to add the custom design elements that make your site or app unique. Since everything is controlled by CSS, it's easy to use a web inspector tool to identify the style properties you want to modify. The set of of theme classes (global) and semantic structural classes (widget-specific) added to elements provide a rich set of possible selectors to target style overrides against. We recommend adding an external stylesheet to the head, placed after the structure and theme stylesheet references, that contain all your style overrides. This allows you to easily update to newer versions of the library because overrides are kept separate from the library code.

                - - -

                Learn more about theming individual components:

                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/api-buttons.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/api-buttons.html deleted file mode 100755 index f8e1dbe..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/api-buttons.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - jQuery Mobile Docs - Buttons - - - - - - - - - -
                - -
                -

                Button API

                - Home -
                - -
                - -

                Dependencies

                -

                To be documented

                - -

                Options

                -

                To be documented

                - -

                Methods

                -

                To be documented

                - -

                Known Issues

                -

                To be documented

                - - - -
                -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-events.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-events.html deleted file mode 100644 index 9216603..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-events.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - jQuery Mobile Docs - Button events - - - - - - - - - -
                - -
                -

                Button basics

                - Home -
                - -
                -
                - -
                - -

                Button basics

                - - - -

                Bind events directly to the a, input, or button element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$( ".myButton" ).bind( "click", function(event, ui) {
                -  ...
                -});
                -
                - -

                The form button plugin has the following custom events:

                - -
                - -
                create triggered when a form button is created
                -
                - -
                
                -$('[type='submit']').button({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - -
                - -
                -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-grouped.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-grouped.html deleted file mode 100755 index ff6b9bc..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-grouped.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - jQuery Mobile Docs - Grouped Buttons - - - - - - - - - -
                - -
                -

                Grouped buttons

                - Home -
                - -
                -
                - -

                Occasionally, you may want to visually group a set of buttons together to form a single block that looks contained like a navigation component. To get this effect, wrap a set of buttons in a container with the data-role="controlgroup" attribute — the framework will create a vertical button group, remove all margins and drop shadows between the buttons, and only round the first and last buttons of the set to create the effect that they are grouped together.

                -
                
                -<div data-role="controlgroup">
                -<a href="index.html" data-role="button">Yes</a>
                -<a href="index.html" data-role="button">No</a>
                -<a href="index.html" data-role="button">Maybe</a>
                -</div>
                -
                - -

                By default, grouped buttons are presented as a vertical list:

                - -
                - Yes - No - Maybe -
                - -

                By adding the data-type="horizontal" attribute to the controlgroup container, you can swap to a horizontal-style group that floats the buttons side-by-side and sets the width to only be large enough to fit the content. (Be aware that these will wrap to multiple lines if the number of buttons or the overall text length is too wide for the screen.) - -

                Horizontal grouped buttons:

                -
                - Yes - No - Maybe -
                - -

                Horizontal grouped buttons with icons:

                -
                - Add - Delete -
                - -

                Horizontal grouped buttons, icon only:

                -
                - Up - Down - Delete -
                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-icons.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-icons.html deleted file mode 100755 index f148112..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-icons.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - jQuery Mobile Docs - Button icons - - - - - - - - - -
                - -
                -

                Button icons

                - Home -
                - -
                -
                - -

                Adding Icons to Buttons

                -

                The jQuery Mobile framework includes a selected set of icons most often needed for mobile apps. To minimize download size, jQuery Mobile includes a single white icon sprite, and automatically adds a semi-transparent black circle behind the icon to ensure that it has good contrast on any background color.

                - - -

                An icon can be added to a button by adding a data-icon attribute on the anchor specifying the icon to display. For example, the following markup:

                - - - <a href="index.html" data-role="button" data-icon="delete">Delete</a> - - -

                Creates this button with an icon:

                - Delete - -

                Icon set

                - -

                The following data-icon attributes can be referenced to create the icons shown below:

                - -

                Left arrow - data-icon="arrow-l"

                - My button -

                Right arrow - data-icon="arrow-r"

                - My button -

                Up arrow - data-icon="arrow-u"

                - My button -

                Down arrow - data-icon="arrow-d"

                - My button -

                Delete - data-icon="delete"

                - My button -

                Plus - data-icon="plus"

                - My button -

                Minus - data-icon="minus"

                - My button -

                Check - data-icon="check"

                - My button -

                Gear - data-icon="gear"

                - My button -

                Refresh - data-icon="refresh"

                - My button -

                Forward - data-icon="forward"

                - My button -

                Back - data-icon="back"

                - My button -

                Grid - data-icon="grid"

                - My button -

                Star - data-icon="star"

                - My button -

                Alert - data-icon="alert"

                - My button -

                Info - data-icon="info"

                - My button -

                Home - data-icon="home"

                - My button -

                Search - data-icon="search"

                - My button - - -

                Icon positioning

                -

                By default, all icons in buttons are placed to the left of the button text.

                - Delete - -

                This default may be overridden using the data-iconpos attribute to set the icon to the right, above (top) or below (bottom) the text. For example, the markup:

                - - -<a href="index.html" data-role="button" data-icon="delete" data-iconpos="right">Delete</a> - - -

                Creates this button with right-aligned icon:

                - Delete - -

                Icons can also be positioned above the text by specifying data-iconpos="top"

                - Delete - -

                Or icons can also be positioned below the text by specifying data-iconpos="bottom"

                - Delete - -

                You can also create an icon-only button, by setting the data-iconpos attribute to notext. The button plugin will hide the text on-screen, but add it as a title attribute on the link to provide context for screen readers and devices that support tooltips. For example, replacing data-iconpos="right" on the previous example with data-iconpos="notext":

                - - -<a href="index.html" data-role="button" data-icon="delete" data-iconpos="notext">Delete</a> - - -

                Creates this icon-only button:

                - Delete - -

                Custom Icons

                -

                To use custom icons, specify a data-icon value that has a unique name like myapp-email and the button plugin will generate a class by prefixing ui-icon- to the data-icon value and apply it to the button: ui-icon-myapp-email.

                -

                You can then write a CSS rule in your stylesheet that targets the ui-icon-myapp-email class to specify the icon background source. To maintain visual consistency with the rest of the icons, create a white icon 18x18 pixels saved as a PNG-8 with alpha transparency.

                -

                In this example, we're just pointing to a standalone icon image, but you could just as easily use an icon sprite and specify the positioning instead, just like the icon sprite we use in the framework.

                - -
                .ui-icon-myapp-email {
                -	background-image: url("app-icon-email.png");
                -}
                - -

                This will create the standard resolution icon, but many devices now have very high resolution displays, like the retina display on the iPhone 4. To add a HD icon, create an icon that is 36x36 pixels (exactly double the 18 pixel size), and add second rule that uses the -webkit-min-device-pixel-ratio: 2 media query to target a rule only to high resolution displays. Specify the background image for the HD icon file and set the background size to 18x18 pixels which will fit the 36 pixel icon into the same 18 pixel space. The media query block can wrap multiple icon rules:

                -
                
                -@media only screen and (-webkit-min-device-pixel-ratio: 2) {
                -	.ui-icon-myapp-email {
                -		background-image: url("app-icon-email-highres.png");
                -		background-size: 18px 18px;
                -	}
                -	...more HD icon rules go here...
                -}
                -
                - -

                Icons and themes

                -

                The semi-transparent black circle behind the white icon ensures good contrast on any background color so it works well with the jQuery Mobile theming system. Here are examples of the same icons sitting on top of a range of different color swatches in out theme.

                - - -

                Swatch "A" themed buttons

                - - - -

                Swatch "B" themed buttons

                - - - -

                Swatch "C" themed buttons

                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-inline.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-inline.html deleted file mode 100755 index b9662f1..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-inline.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - jQuery Mobile Docs - Inline buttons - - - - - - - - - -
                - -
                -

                Inline buttons

                - Home -
                - -
                -
                - -

                By default, all buttons in the body content are styled as block-level element so they fill the width of the screen:

                - - Button - - -

                However, if you want a more compact button that is only as wide as the text and icons inside, add the data-inline="true" attribute to the button:

                - - - Button - -

                If you have multiple buttons that should sit side-by-side on the same line, add the data-inline="true" attribute to each button. This will style the buttons to be the width of their content and float the buttons so they sit on the same line.

                - -
                
                -<a href="index.html" data-role="button" data-inline="true">Cancel</a>
                -<a href="index.html" data-role="button" data-inline="true" data-theme="b">Save</a>
                -
                - -

                The result is this:

                - - Cancel - Save - - -

                If you want buttons to sit side-by-side but stretch to fill the width of the screen, you can use the content column grids to put normal full-width buttons into 2- or 3-columns.

                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-methods.html deleted file mode 100644 index cba405a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-methods.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - jQuery Mobile Docs - Button methods - - - - - - - - - -
                - -
                -

                Button basics

                - Home -
                - -
                -
                - -
                - -

                Button basics

                - - - -

                The following methods apply only to form buttons. Link-based buttons do not have any associated methods.

                - -
                - -
                enable enable a disabled form button
                -
                -
                
                -$('[type='submit']').button('enable');			
                -				
                -
                - -
                disable disable a form button
                -
                -
                
                -$('[type='submit']').button('disable');			
                -				
                -
                - -
                refresh update the form button
                -
                -

                If you manipulate a form button via JavaScript, you must call the refresh method on it to update the visual styling.

                - -
                		
                -$('[type='submit']').button('refresh');
                -				
                -
                - -
                - -
                -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-options.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-options.html deleted file mode 100644 index d7e66c8..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-options.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - jQuery Mobile Docs - Button options - - - - - - - - - -
                - -
                -

                Button basics

                - Home -
                - -
                -
                - -
                - -

                Button basics

                - - - -

                The following options apply to all buttons:

                - -
                -
                corners boolean
                -
                -

                default: true

                -

                Applies the theme button border-radius if set to true. This option is also exposed as a data attribute: data-corners="false"

                -
                $('a').buttonMarkup({ corners: "false" });
                - No rounded corners -
                -
                icon string
                -
                -

                default: null

                -

                Applies an icon from the icon set. This option is also exposed as a data attribute: data-icon="star"

                -
                $('a').buttonMarkup({ icon: "star" });
                - Star icon -
                - -
                iconpos string
                -
                -

                default: "left"

                -

                Positions the icon in the button. Possible values: left, right, none, notext. The notext value will display an icon-only button with no text feedback. This option is also exposed as a data attribute: data-iconpos="left"

                -
                $('a').buttonMarkup({ iconpos: "right" });
                - Star icon -
                - -
                iconshadow boolean
                -
                -

                default: true

                -

                Applies the theme shadow to the button's icon if set to true. This option is also exposed as a data attribute: data-iconshadow="false"

                -
                $('a').buttonMarkup({ iconshadow: "false" });
                - No icon shadow -
                - -
                inline boolean
                -
                -

                default: null (false)

                -

                If set to true, this will make the button act like an inline button so the width is determined by the button's text. By default, this is null (false) so the button is full width, regardless of the feedback content. Possible values: true, false. This option is also exposed as a data attribute: data-inline="true"

                -
                $('a').buttonMarkup({ inline: "true" });
                - Inline -
                - -
                shadow boolean
                -
                -

                default: true

                -

                Applies the drop shadow style to the button if set to true. This option is also exposed as a data attribute: data-shadow="false"

                -
                $('a').buttonMarkup({ shadow: "false" });
                - No button shadow -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $('a').buttonMarkup({ theme: "a" });
                - Theme A -
                -
                - -
                -

                The following option applies only to form buttons, which are automatically initialized by the framework:

                -
                - -
                -
                initSelector CSS selector string
                -
                -

                default: "button, [type='button'], [type='submit'], [type='reset'], [type='image']"

                -

                This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as form buttons. To change which elements are initialized, bind this option to the mobileinit event:

                -
                $( document ).bind( "mobileinit", function(){
                -   $.mobile.button.prototype.options.initSelector = ".myButtons";
                -});
                -
                -
                -
                - - -
                -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-themes.html deleted file mode 100644 index 7659efe..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-themes.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming buttons - - - - - - - - - -
                - -
                -

                Theming buttons

                - Home -
                - -
                -
                - -

                Theming buttons

                - -

                jQuery Mobile has a rich theming system that gives you full control of how buttons are styled. When a link is added to a container, it is automatically assigned a theme swatch letter that matches its parent bar or content box to visually integrate the button into the parent container, like a chameleon. So a button placed inside a content container with a theme of "a" (black in the default theme) will be automatically assigned the button theme of "a" (charcoal in the default theme). Here are examples of the button theme pairings in the default theme. All buttons have the same HTML markup:

                - -

                A swatch

                Button
                -

                B swatch

                Button
                -

                C swatch

                Button
                -

                D swatch

                Button
                -

                E swatch

                Button
                - -

                Assigning theme swatches

                -

                Buttons can be manually assigned any of the button color swatches from the theme to add visual contrast with the container they sit inside by adding the data-theme attribute on the button markup and specifying a swatch letter.

                - -
                			
                -<a href="index.html" data-role="button" data-theme="a">Theme a</a>			
                -
                - -

                Here are 5 buttons with icons that have a different swatch letter assigned via the data-theme attribute.

                - - Theme a - Theme b - Theme c - Theme d - Theme e - -

                Theme variations

                - -

                "a" theme on container with themed buttons inside

                - - -

                "b" theme on container with themed buttons inside

                - - -

                "c" theme on container with themed buttons inside

                - - -

                "d" theme on container with themed buttons inside

                - - -

                "e" theme on container with themed buttons inside

                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-types.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-types.html deleted file mode 100755 index 74f392f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/buttons-types.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - jQuery Mobile Docs - Button types - - - - - - - - - -
                - -
                -

                Button basics

                - Home -
                - -
                -
                - -

                Button basics

                - - - - -

                Buttons are coded with standard HTML anchor and input elements, then enhanced by jQuery Mobile to make them more attractive and useable on a mobile device. Use anchor links (a elements) to mark up navigation buttons, and input or button elements for form submission. View the data- attribute reference to see all the possible attributes you can add to buttons.

                - -

                Styling links as buttons

                - -

                In the main content block of a page, you can style any anchor link as a button by adding the data-role="button" attribute. The framework will enhance the link with markup and classes to style the link as a button. For example, this markup:

                - - -<a href="index.html" data-role="button">Link button</a> - - -

                Produces this link-based button:

                - Link button - -

                Links styled like buttons have all the same visual options as true form-based buttons below, but there are a few important differences. Link-based buttons aren't part of the button plugin and only just use the underlying buttonMarkup plugin to generate the button styles so the form button methods (enable, disable, refresh) aren't supported. If you need to disable a link-based button (or any element), it's possible to apply the disabled class ui-disabled yourself with JavaScript to achieve the same effect.

                - -

                Form buttons

                -

                For ease of styling, the framework automatically converts any button or input element with a type of submit, reset, button, or image into a custom styled button — there is no need to add the data-role="button" attribute. However, if needed, you can directly call the button plugin on any selector, just like any jQuery plugin:

                - - -$('[type='submit']').button(); - - -

                To preserve events bound to the original button or input, the framework hides the original element by making it transparent and positioning it over the new button markup. When a user clicks on the the custom-styled button, they're actually clicking on the original element. To prevent a form button from being converted into an enhanced button, add the data-role="none" attribute and hte native control will be rendered.

                - -

                Button based button:

                - - -

                Input type="button" based button:

                - - -

                Input type="submit" based button:

                - - -

                Input type="reset" based button:

                - - -

                Input type="image" based button:

                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/buttons/index.html deleted file mode 100755 index 359e6c5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/buttons/index.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - jQuery Mobile Docs - Buttons - - - - - - - - - -
                - -
                -

                Buttons

                - Home -
                - -
                -

                Buttons are core widgets in jQuery Mobile, and are used within a wide range of other plugins.

                - - -
                -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/dialogTransition.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/dialogTransition.html deleted file mode 100644 index bf8acc7..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/dialogTransition.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                defaultDialogTransition is now "flip"

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - Or open a basic dialog - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/iOSFullscreen.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/iOSFullscreen.html deleted file mode 100644 index 1df52a7..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/iOSFullscreen.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                jQuery Mobile

                - Home -
                - -
                - -

                Fullscreen docs in iOS

                -

                First, hit Add to Home Screen to create a new shortcut icon on the home screen. Next, open the new shortcut and hit the button below to browse the docs as a fullscreen web app.

                - Browse docs - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/index.html deleted file mode 100644 index d44354c..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/index.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/jq17b1.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/jq17b1.html deleted file mode 100644 index e458351..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/jq17b1.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - -
                - -
                -

                jQuery version

                - Home -
                - -
                - -

                jQuery core version 1.7 Beta 1

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/loadingMessage.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/loadingMessage.html deleted file mode 100644 index e598788..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/loadingMessage.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                loadingMessage is now disabled

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/minScrollBack.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/minScrollBack.html deleted file mode 100644 index a2d3fba..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/minScrollBack.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                minScrollBack is now set to 999 (disabled)

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/pageLoadErrorMessage.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/pageLoadErrorMessage.html deleted file mode 100644 index b0887b5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/pageLoadErrorMessage.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                pageLoadErrorMessage is now "Yikes, we broke the internet!"

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - Or try this broken link - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/pageTransition.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/pageTransition.html deleted file mode 100644 index 9f4a692..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/pageTransition.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                defaultPageTransition is now "fade"

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/pushState.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/pushState.html deleted file mode 100644 index fd84f2f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/pushState.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                pushStateEnabled is now disabled

                -

                To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/config/touchOverflow.html b/libs/js/jquery-mobile-1.0.1pre/docs/config/touchOverflow.html deleted file mode 100644 index b9c82a2..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/config/touchOverflow.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - jQuery Mobile Docs - Configuration - - - - - - - - - - - -
                - -
                -

                Config applied

                - Home -
                - -
                - -

                touchOverflowEnabled is now active

                -

                The toolbar on this page should now be fixed, like a native toolbar. To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                - Browse docs - touchOverflow docs - -

                Some good pages to test out:

                - Fixed toolbars - Fullscreen toolbars - Fixed persistent footer - Dialogs & transitions - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/api-content.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/api-content.html deleted file mode 100755 index 88389bf..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/api-content.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - jQuery Mobile Docs - Content formatting - - - - - - - - -
                - -
                -

                Content formatting API

                -
                - -
                - -

                Dependencies

                -

                To be documented

                - -

                Options

                -

                To be documented

                - -

                Methods

                -

                To be documented

                - -

                Known Issues

                -

                To be documented

                - - - -
                -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-collapsible-set.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/content-collapsible-set.html deleted file mode 100644 index 000fb82..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-collapsible-set.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - jQuery Mobile Docs - Collapsible Content - - - - - - - - - -
                - -
                -

                Collapsible sets (Accordions)

                - Home -
                - -
                -
                - -

                Collapsible set markup

                -

                Collapsible sets start with the exact same markup as individual collapsibles. By adding a parent wrapper with a data-role="collapsible-set" attribute around a number of collapsibles, the framework will style these to looks like a visually grouped widget and make it behave like an accordion so only one section can be open at a time. View the data- attribute reference to see all the possible attributes you can add to collapsible sets.

                -

                By default, all the sections will be collapsed. To set a section to be open when the page loads, add the data-collapsed="false" attribute to the heading of the section you want expanded.

                - -
                		
                -<div data-role="collapsible-set">
                -
                -	<div data-role="collapsible" data-collapsed="false">
                -	<h3>Section 1</h3>
                -	<p>I'm the collapsible set content for section B.</p>
                -	</div>
                -	
                -	<div data-role="collapsible">
                -	<h3>Section 2</h3>
                -	<p>I'm the collapsible set content for section B.</p>
                -	</div>
                -	
                -</div>
                -	
                - - -

                Here is an example of a collapsible set with 5 sections.

                - -
                -
                -

                Section 1

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm open by default because I have the data-collapsed="false" attribute.

                -
                -
                -

                Section 2

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 3

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 4

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 5

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                - -

                Theming collapsible content

                -

                The standard data-theme attribute can be used to set the color of each collapsible in a set. To provide a clearer visual grouping of the content with the headers, add the data-content-theme attribute with a swatch letter. This adds a themed background color and border to the content block. For consistent theming, add these attributes to the parent collapsible set.

                - - -
                		
                -<div data-role="collapsible-set" data-theme="c" data-content-theme="d">
                -
                - - -
                -
                -

                Section 1

                -

                Collapsible content

                -
                -
                -

                Section 2

                -

                Collapsible content

                - -
                -
                -

                Section 3

                -

                Collapsible content

                -
                -
                - - -

                Theming individual sections

                -

                To have individual sections in a group styled differently, add data-theme and data-content-theme attributes to specific collapsibles.

                - -
                -
                -

                Section header, swatch B

                -

                Collapsible content, swatch B

                - -
                -
                -

                Section header, swatch A

                -

                Collapsible content, swatch A

                -
                -
                -

                Section header, swatch E

                -

                Collapsible content, swatch D

                -
                -
                - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-collapsible.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/content-collapsible.html deleted file mode 100755 index 9f033f5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-collapsible.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - jQuery Mobile Docs - Collapsible Content - - - - - - - - - -
                - -
                -

                Collapsible content

                - Home -
                - -
                -
                - -

                Collapsible content markup

                -

                To create a collapsible block of content, create a container and add the data-role="collapsible" attribute. Using data-content-theme attribute allows you to set a theme for the content of the collapsible. View the data- attribute reference to see all the possible attributes you can add to collapsibles.

                - -

                Directly inside this container, add any header element (H1-H6). The framework will style the header to look like a clickable button and add a "+" icon to the left to indicate it's expandable.

                - -

                After the header, add any HTML markup you want to be collapsible. The framework will wrap this markup in a container that will be hidden/shown when the heading is clicked.

                - -

                By default, the content will be collapsed.

                -
                		
                -<div data-role="collapsible">
                -   <h3>I'm a header</h3>
                -   <p>I'm the collapsible content. By default I'm closed, but you can click the header to open me.</p>
                -</div>
                -
                - - -
                -

                I'm a header

                -

                I'm the collapsible content. By default I'm closed, but you can click the header to open me.

                -
                - -

                Expanding collapsibles on load

                - -

                To expand the content when the page loads, add the data-collapsed="false" attribute to the wrapper.

                - - - <div data-role="collapsible" data-collapsed="false"> - - -

                This code will create a collapsible widget like this:

                - - -
                -

                I'm a header

                -

                I'm the collapsible content. I'm expanded by default because I have the "collapsed" state set to false.

                -
                - -

                Theming collapsible content

                - - -

                Collapsible content is minimally styled — we add only a bit of margin between the bar and content, and the header adopts the default Theme styles of the container it sits within.

                - -

                To provide a stronger visual connection between the collapsible header and content, add the data-content-theme attribute to the wrapper and specify a theme swatch letter. This will apply the swatch's border and flat background color (not the gradient) to the content block and changes the corner rounding to square off the bottom of the header and round the bottom of the content block instead to visually group these elements.

                - -
                		
                -<div data-role="collapsible" data-content-theme="c">
                -   <h3>Header swatch A</h3>
                -   <p>I'm the collapsible content with a themed content block set to "C".</p>
                -</div>
                -
                - -
                -

                Header swatch

                -

                I'm the collapsible content with a themed content block set to "C".

                -
                - -

                Theming collapsible headers

                -

                To set the theme on a collapsible header button, add the data-theme attribute to the wrapper and specify a swatch letter. Note that you can mix and match swatch letters between the header and content with these theme attributes.

                - -
                		
                -<div data-role="collapsible" data-theme="a" data-content-theme="a">
                -   <h3>Header swatch A</h3>
                -   <p>I'm the collapsible content with a themed content block set to "A".</p>
                -</div>
                -
                - -
                -

                Header swatch A

                -

                I'm the collapsible content with a themed content block set to "A".

                -
                - - - -
                -

                Header swatch B

                -

                I'm the collapsible content with a themed content block set to "D".

                -
                - - - -

                Nested Collapsibles

                - -

                Collapsibles can be nested inside each other if needed. In this example, we're setting the content theme to provide clearer visual connection between the levels.

                -
                -

                I'm a header

                -

                I'm the collapsible content. By default I'm open and displayed on the page, but you can click the header to hide me.

                - -
                -

                I'm a nested collapsible with a child collapsible

                -

                I'm a child collapsible.

                -
                -

                Nested inside again.

                -

                Three levels deep now.

                -
                -
                - - -
                -

                Section 3: Form elements

                -
                -
                - - -
                -
                - - -
                -
                -
                -
                -
                -
                -
                - -
                -

                Section 4: Collapsed list

                -

                Here is an inset list:

                - -
                -
                - - - -

                Collapsible sets (accordions)

                -

                It's possible to combine multiple collapsibles into a grouped sets that acts like an accordion widget. Learn more

                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-grids.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/content-grids.html deleted file mode 100644 index 35edb41..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-grids.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - jQuery Mobile Docs - Content Grids - - - - - - - - - -
                - -
                -

                Layout grids

                - Home -
                - -
                -
                - -

                Using multiple column layouts isn't generally recommended on a mobile device because of the narrow screen width, but there are times where you may need to place small elements side-by-side (like buttons or navigation tabs, for example).

                - -

                The jQuery Mobile framework provides a simple way to build CSS-based columns through a block style class convention called ui-grid.

                - -

                There are four preset configurations layouts that can be used in any situation that requires columns:

                -
                  -
                • two-column (using the ui-grid-a class)
                • -
                • three-column (using the ui-grid-b class)
                • -
                • four-column (using the ui-grid-c class)
                • -
                • five-column (using the ui-grid-d class)
                • -
                - -

                Grids are 100% width, completely invisible (no borders or backgrounds) and don't have padding or margins, so they shouldn't interfere with the styles of elements placed inside them.

                -

                Within the grid container, child elements are assigned ui-block-a/b/c/d in a sequential manner which makes each "block" element float side-by-side, forming the grid. The ui-block-a class essentially clears the floats which will start a new line (see multiple row grids, below).

                - -

                Two column grids

                -

                To build a two-column (50/50%) layout, start with a container with a class of ui-grid-a, and add two child containers inside it classed with ui-block-a for the first column and ui-block-b for the second:

                - -
                
                -<div class="ui-grid-a">
                -	<div class="ui-block-a"><strong>I'm Block A</strong> and text inside will wrap</div>
                -	<div class="ui-block-b"><strong>I'm Block B</strong> and text inside will wrap</div>
                -</div><!-- /grid-a -->
                -
                - - - -

                The above markup produces the following content layout:

                - -
                -
                I'm Block A and text inside will wrap.
                -
                I'm Block B and text inside will wrap.
                -
                - -

                As you see above, by default grid blocks have no visual styling; they simply present content side-by-side.

                - -

                Grid classes can be applied to any container. In this next example, we add ui-grid-a to a fieldset, and apply the ui-block classes to the two buttons inside to stretch them each to 50% of the screen width:

                - -
                
                -<fieldset class="ui-grid-a">
                -	<div class="ui-block-a"><button type="submit" data-theme="c">Cancel</button></div>
                -	<div class="ui-block-b"><button type="submit" data-theme="b">Submit</button></div>	   
                -</fieldset>
                -
                - -
                -
                -
                -
                - - -

                Theme classes (not data-theme attributes) from the theming system can be added to an element, including grids. On the blocks below, we're adding two classes: ui-bar to add the default bar padding and ui-bar-e to apply the background gradient and font styling for the "e" toolbar theme swatch. For illustration purposes, an inline style="height:120px" attribute is also added to each grid to set each to a standard height.

                - -
                -
                Block A
                -
                Block B
                -
                - -

                Three-column grids

                -

                The other grid layout configuration uses class=ui-grid-b on the parent, and 3 child container elements, each with its respective ui-block-a/b/c class, to create a three-column layout (33/33/33%). Note: These blocks are also styled with theme classes so the grid layout is clearly visible.

                - -
                
                -<div class="ui-grid-b">
                -	<div class="ui-block-a">Block A</div>
                -	<div class="ui-block-b">Block B</div>
                -	<div class="ui-block-c">Block C</div>
                -</div><!-- /grid-b -->
                -
                - -

                This will produce a 33/33/33% grid for our content.

                - -
                -
                Block A
                -
                Block B
                -
                Block C
                -
                - -

                And an example of a 3 column grid with buttons inside:

                - -
                -
                -
                -
                -
                - -

                Four-column grids

                - -

                A four-column, 25/25/25/25% grid is created by specifying class=ui-grid-c on the parent and adding a fourth block. Note: These blocks are also styled with theme classes so the grid layout is clearly visible.

                - -
                -
                A
                -
                B
                -
                C
                -
                D
                -
                - -

                Five-column grids

                -

                A five-column, 20/20/20/20/20% grid is created by specifying class=ui-grid-d on the parent and adding a fourth block. Note: These blocks are also styled with theme classes so the grid layout is clearly visible.

                - -
                -
                A
                -
                B
                -
                C
                -
                D
                -
                E
                -
                - -

                Multiple row grids

                - -

                Grids are designed to wrap to multiple rows of items. For example, if you specify a 3-column grid (ui-grid-b) on a container that has nine child blocks, it will wrap to 3 rows of 3 items each. There is a CSS rule to clear the floats and start a new line when the class=ui-block-a is seen so make sure to assign block classes in a repeating sequence (a, b, c, a, b, c, etc.) that maps to the grid type:

                - -
                -
                A
                -
                B
                -
                C
                -
                A
                -
                B
                -
                C
                -
                A
                -
                B
                -
                C
                -
                - - -

                Grids in toolbars

                -

                Grids are helpful for creating layouts within a toolbar. Here's a footer with a 3 column grid.

                - -
                -

                Settings

                -
                -
                -
                -
                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-html.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/content-html.html deleted file mode 100644 index 708a3b2..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-html.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - jQuery Mobile Docs - HTML formatting - - - - - - - - - -
                - -
                -

                HTML Formatting

                - Home -
                - -
                -
                - - - - - -

                The default approach to styling content in jQuery Mobile is simple: Use a light hand. Our goal is to let the browser's native rendering take precedence; we add a bit of padding for more comfortable readability, and use the theming system to apply the font family and colors.

                -

                Taking a light hand with content styling gives designers and developers a clean slate to work with, instead of fighting against a lot of complex style overhead.

                - -

                Default HTML markup styling

                -

                By default, jQuery Mobile themes use standard HTML styles and sizes for standard markup elements like headers, paragraph content, block quotes, anchor links, standard ordered, unordered and definition lists, and tables — as shown in the examples below:

                -
                - -

                H1 Heading

                -

                H2 Heading

                -

                H3 Heading

                -

                H4 Heading

                -
                H5 Heading
                -
                H6 Heading
                - -

                This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                - -
                How about some blockquote action with a cite
                - -

                This is another paragraph of text so you can see how HTML markup works in content. This is another paragraph of text so you can see how HTML markup works in content. This is another paragraph of text so you can see how HTML markup works in content.

                - -

                We add a few styles to tables and fieldsets to make them more legible, which are easily overridden with customs styles.

                - -
                  -
                • Unordered list item 1
                • -
                • Unordered list item 1
                • -
                • Unordered list item 1
                • -
                - -
                  -
                1. Ordered list item 1
                2. -
                3. Ordered list item 1
                4. -
                5. Ordered list item 1
                6. -
                - -
                -
                Definition term
                -
                I'm the definition text
                -
                Definition term
                -
                I'm the definition text
                -
                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                Travel Itinerary
                Flight:From:To:
                Total: 3 flights
                JetBlue 983Boston (BOS)New York (JFK)
                JetBlue 354San Francisco (SFO)Los Angeles (LAX)
                JetBlue 465New York (JFK)Portland (PDX)
                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/content-themes.html deleted file mode 100755 index b726793..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/content-themes.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - jQuery Mobile Docs - Content Themes - - - - - - - - - -
                - -
                -

                Theming content

                - Home -
                - -
                -
                -

                Theming the content area

                -

                The main content area of a page (container with the data-role="content" attribute) should be themed by adding the data-theme attribute to the data-role="page" container to ensure that the background colors are applied to the full page, regardless of the content length. (If you add the data-theme attribute to the content container, the background color will stop after the content. So there may be a gap in color between the content and fixed footer.)

                -

                Additionally, the content area of a collapsible can be themed to match the theme of the collapsible header using the data-content-theme attribute.

                - - -<div data-role="page" data-theme="a" data-content-theme="a"> - - -

                Theming collapsible blocks

                -

                To set the color of the collapsible header, add the data-theme attribute to the collapsible container. The icon and body are not currently themable through data attributes, but can be styled directly with custom css.

                - - -<div data-role="collapsible" data-collapsed="true" data-theme="a"> - -

                Themed examples

                - -

                A theme swatch on content & collapsible

                -
                -

                H1 Heading

                -

                This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                -
                -

                I'm a themed collapsible

                -

                I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                -

                I'm a themed collapsible with a themed content

                -

                I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                - -

                B theme swatch on content & collapsible

                -
                -

                H1 Heading

                -

                This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                -
                -

                I'm a themed collapsible

                -

                I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                -

                I'm a themed collapsible with a themed content

                -

                I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                - -

                C theme swatch on content & collapsible

                -
                -

                H1 Heading

                -

                This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                -
                -

                I'm a themed collapsible

                -

                I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                -

                I'm a themed collapsible with a themed content

                -

                I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                - -

                D theme swatch on content & collapsible

                -
                -

                H1 Heading

                -

                This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                -
                -

                I'm a themed collapsible

                -

                I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                -

                I'm a themed collapsible with a themed content

                -

                I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                - -

                E theme swatch on content & collapsible

                -
                -

                H1 Heading

                -

                This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                -
                -

                I'm a themed collapsible

                -

                I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                -

                I'm a themed collapsible with a themed content

                -

                I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                -
                -
                - - -
                - -
                - -
                - -

                More in this section

                - - -
                -
                - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/content/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/content/index.html deleted file mode 100755 index e6a722e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/content/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - jQuery Mobile Docs - Content formatting - - - - - - - - - -
                - -
                -

                Content formatting

                - Home -
                - -
                - -

                The content of pages in jQuery Mobile is completely open-ended, but the jQuery Mobile framework provides a number of helpful tools and widgets — such as collapsible panels and multiple-column grid layouts — to make it easy to format your content for mobile devices.

                - - - - - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/events.html deleted file mode 100644 index 0f0b96e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/events.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - jQuery Mobile Docs - Checkboxes - - - - - - - - - -
                - -
                -

                Checkboxes

                - Home -
                - -
                -
                - -
                - -

                Checkboxes

                - - - -

                Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$("input[type='checkbox']").bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The checkbox plugin has the following custom events:

                - -
                - -
                create triggered when a checkbox is created
                -
                - -
                
                -$("input[type='checkbox']").checkboxradio({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/index.html deleted file mode 100755 index 5de0491..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/index.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - jQuery Mobile Docs - Checkboxes - - - - - - - - - -
                - -
                -

                Checkboxes

                - Home -
                - -
                -
                - -
                - -

                Checkboxes

                - - - -

                Checkboxes are used to provide a list of options where more than one can be selected. Traditional desktop checkboxes are not optimized for touch input so in jQuery Mobile, we style the label for the checkboxes so they are larger and look clickable. A custom set of icons are added to the label to provide additional visual feedback.

                - -

                Both the radio and checkbox controls below use standard input/label markup, but are styled to be more touch-friendly. The styled control you see is actually the label element, which sits over the real input, so if images fail to load, you'll still have a functional control. In most browsers, clicking the label automatically triggers a click on the input, but we've had to trigger the update manually for a few mobile browsers that don't do this natively. On the desktop, these controls are keyboard and screen-reader accessible. View the data- attribute reference to see all the possible attributes you can add to checkboxes.

                - -

                To create a single checkbox, add an input with a type="checkbox" attribute and a corresponding label. Set the for attribute of the label to match the ID of the input so they are semantically associated.

                - -
                	
                -<input type="checkbox" name="checkbox-1" id="checkbox-0" class="custom" />
                -<label for="checkbox-0">I agree</label>
                -		
                - -

                This will produce a basic checkbox. The default styles will set the width of the element to 100% of the parent container.

                - - - - - - -

                Because checkboxes use the label element for the text displayed next to the checkbox form element, we recommend wrapping the checkbox in a fieldset element that has a legend which acts as the title for the question. Add the data-role="controlgroup" attribute to the fieldset so it can be styled in a parallel way as text inputs, selects or other form elements.

                - -

                Lastly, need to wrap the fieldset in a div with data-role="controlgroup" attribute to the fieldset so it can be styled in a parallel way as text inputs, selects or other form elements.

                - - -
                	
                -<div data-role="fieldcontain">
                -    <fieldset data-role="controlgroup">
                -	   <legend>Agree to the terms:</legend>
                -	   <input type="checkbox" name="checkbox-1" id="checkbox-1" class="custom" />
                -	   <label for="checkbox-1">I agree</label>
                -    </fieldset>
                -</div>
                -
                - -
                -
                - Agree to the terms: - - -
                -
                - -

                Vertically grouped checkboxes

                - -

                Typically, there are multiple checkboxes listed under a question title. To visually integrate multiple checkboxes into a grouped button set, the framework will automatically remove all margins between buttons and round only the top and bottom corners of the set if there is a data-role="controlgroup" attribute on the fie.

                - -
                -
                - Choose as many snacks as you'd like: - - - - - - - - - - - -
                -
                - -

                Horizontal toggle sets

                - -

                Checkboxes can also be used for grouped button sets where more than one button can be selected at once, such as the bold, italic and underline button group seen in word processors. To make a horizontal button set, add the data-type="horizontal" to the fieldset.

                - - -<fieldset data-role="controlgroup" data-type="horizontal"> - - -

                The framework will float the labels so they sit side-by-side on a line, hide the checkbox icons and only round the left and right edges of the group.

                - -
                -
                - Font styling: - - - - - - - - -
                -
                - - - - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/methods.html deleted file mode 100644 index 8550463..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/methods.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - jQuery Mobile Docs - Checkboxes - - - - - - - - - -
                - -
                -

                Checkboxes

                - Home -
                - -
                -
                - -
                - -

                Checkboxes

                - - - -

                The checkbox has the following methods:

                - -
                - -
                enable enable a disabled checkbox
                -
                -
                
                - $("input[type='checkbox']").checkboxradio('enable');
                -				
                -
                - -
                disable disable a select.
                -
                -
                
                -$("input[type='checkbox']").checkboxradio('disable');
                -				
                -
                - -
                refresh update the custom select
                -
                - If you manipulate a checkbox via JavaScript, you must call the refresh method on it to update the visual styling. -
                
                -$("input[type='checkbox']:first").attr("checked",true).checkboxradio("refresh");
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/options.html deleted file mode 100644 index 1a7a72e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/checkboxes/options.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - jQuery Mobile Docs - Checkboxes - - - - - - - - - -
                - -
                -

                Checkboxes

                - Home -
                - -
                -
                - -
                - -

                Checkboxes

                - - - -

                The checkbox has the following options:

                - -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $("input[type='checkbox']").checkboxradio({ theme: "a" });
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/docs-forms.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/docs-forms.html deleted file mode 100755 index 460b4b8..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/docs-forms.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - jQuery Mobile Docs - Forms - - - - - - - - - -
                - -
                -

                Forms

                - Home -
                - -
                -
                -

                jQuery Mobile provides a complete set of finger-friendly form elements that are based on native HTML form elements.

                - -

                Form structure

                - -

                All forms should be wrapped in a form tag that has an action and method that will handle the form data processing on the server.

                - - -<form action="form.php" method="post"> -... -</form> - - - -

                Markup conventions

                -

                When constructing forms to be used in jQuery Mobile, most of the standard guidelines used to create forms that submit via normal HTTP post or get still apply. However, one thing to keep in mind is that the id attributes of form controls need to be not only unique on a given page, but also unique across the pages in a site. This is because jQuery Mobile's single-page navigation model allows many different "pages" to be present in the DOM at the same time, so you must be careful to use unique id attributes so there will be only one of each in the DOM (and of course, be sure to pair them properly with label elements via the for attribute).

                - -

                Hiding labels accessibly

                -

                For the sake of accessibility, jQuery Mobile requires that all form elements be paired with a meaningful label. To hide labels in a way that leaves them visible to assistive technologies—for example, when letting an element’s placeholder attribute serve as a label—apply the helper class ui-hidden-accessible to the label itself:

                - -
                -<label for="username" class="ui-hidden-accessible">Username:</label>
                -<input type="text" name="username" id="username" value="" placeholder="Username"/>
                -
                -
                - -

                To hide labels within a field container and adjust the layout accordingly, add the class ui-hide-label to the field container as in the following:

                - - -
                -<div data-role="fieldcontain" class="ui-hide-label">
                -	<label for="username">Username:</label>
                -	<input type="text" name="username" id="username" value="" placeholder="Username"/>
                -</div>
                -
                -
                - -

                Both of the above examples will render as:

                -
                - - -
                - -

                While the label will no longer be visible, it will be available to assisitive technologies such as screen readers.

                - - -

                Disabling form elements

                -

                All jQuery Mobile widgets can be disabled in the markup by adding the standard disabled attribute to the element, just like you would with native controls. Each form widget also has standard disable and enable methods that are documented with each form widget. Here are a few examples of disabled widgets:

                - -
                - - -
                - -
                -
                - Gender: - - - - - -
                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -

                Note that you can disable buttons created from button or input-based markup, but not links with a role of button. Links don't have a parallel disabled feature in HTML, but if you need to disable a link-based button (or any element), it's possible to apply the disabled class ui-disabled yourself with JavaScript to achieve the same effect.

                - -

                Field containers

                -

                To improve the styling to labels and form elements on wider screens, we recommend wrapping a div or fieldset with the data-role="fieldcontain" attribute around each label/form element. This framework aligns the input and associated label side-by-side, and breaks to stacked block-level elements below ~480px. The framework will also add a thin bottom border to act as a field separator.

                - -

                For example:

                -
                
                -<div data-role="fieldcontain">
                -<label for="name">Text Input:</label>
                -<input type="text" name="name" id="name" value="" />
                -</div>
                -
                - -

                Will render as:

                - -
                - - -
                - -

                For additional examples, see the form elements gallery

                - - -

                Auto-initialization of form elements

                -

                By default, jQuery Mobile will automatically enhance certain native form controls into rich touch-friendly components. This is handled internally by finding form elements by tag name and running a plugin method on them, so for instance, a select element will be found and initialized with the "selectmenu" plugin, while an input element with a type="checkbox" will be enhanced with the "checkboxradio" plugin. Once initialized, you can address these enhanced components programmatically through their jQuery UI widget API methods - see options, methods and events listed on each form plugin's documentation page for details.

                - -

                Initializing groups of dynamically-injected form elements

                -

                If you should generate new markup client-side or load in content via AJAX and inject it into a page, you can trigger the create event to handle the auto-initialization for all the plugins contained within the new markup. This can be triggered on any element (even the page div itself), saving you the task of manually initializing each plugin (see below).

                - -

                For example, if a block of HTML markup (say a login form) was loaded in through Ajax, trigger the create event to automatically transform all the widgets it contains (inputs and buttons in this case) into the enhanced versions. The code for this scenario would be:

                - - - $( ...new markup that contains widgets... ).appendTo( ".ui-page" ).trigger( "create" ); - - -

                Refreshing form elements

                - -

                In jQuery Mobile, some enhanced form controls are simply styled (inputs), but others are custom controls (selects, sliders) built from, and kept in sync with, the native control. To programmatically update a form control with JavaScript, first manipulate the native control, then use the refresh method to tell the enhanced control to update itself to match the new state. Here are some examples of how to update common form controls, then call the refresh method:

                -

                Checkboxes:

                - - -$("input[type='checkbox']").prop("checked",true).checkboxradio("refresh"); - - -

                Radios:

                - -$("input[type='radio']").prop("checked",true).checkboxradio("refresh"); - - -

                Selects:

                -
                -var myselect = $("#selectfoo");
                -myselect[0].selectedIndex = 3;
                -myselect.selectmenu("refresh");
                -
                - -

                Sliders:

                - -$("input[type='range']").val(60).slider("refresh"); - - -

                Flip switches (they use slider):

                - -
                -var myswitch = $("#selectbar");
                -myswitch[0].selectedIndex = 1;
                -myswitch.slider("refresh");
                -
                - -

                Preventing auto-initialization of form elements

                -

                If you'd prefer that a particular form control be left untouched by jQuery Mobile, simply give that element the attribute data-role="none". For example:

                -
                
                -<label for="foo">
                -<select name="foo" id="foo"  data-role="none">
                -	<option value="a" >A</option>
                -	<option value="b" >B</option>
                -	<option value="c" >C</option>
                -</select>
                -
                - - -

                Or, if you'd like to prevent auto-initialization without adding attributes to your markup, you can customize the selector that is used for preventing auto-initialization by setting the page plugin's keepNative option (which defaults to [data-role="none"]. Be sure to configure this option inside an event handler bound to the mobileinit event, so that it applies to the first page as well as subsequent pages that are loaded.

                -
                
                -$(document).bind('mobileinit',function(){
                -	$.mobile.page.prototype.options.keepNative = "select, input.foo, textarea.bar";
                -});
                -		
                - -

                One special case is that of selects. The above sample will prevent any and all augmentation from taking place on select elements in the page if select is included. If you wish to retain the native performance, look/feel of the menu itself and benefit from the visual augmentation of the select button by jQuery Mobile you can set $.mobile.nativeSelectMenu to true in a mobileinit callback as a global setting or use data-native="true" on a case by case basis.

                - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-all-native.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-all-native.html deleted file mode 100755 index dfc77cc..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-all-native.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - jQuery Mobile Docs - Native Form Controls - - - - - - - - - -
                - -
                -

                Forms

                - Home -
                - -
                -
                - -
                - -

                Native form elements & buttons

                - -

                Although the framework automatically enhances form elements and buttons into touch input optimized controls to streamline development, it's easy to tell jQuery Mobile to leave these elements alone so the standard, native control can be used instead.

                -

                Adding the data-role="none" attribute to any form or button element tells the framework to not apply any enhanced styles or scripting. The examples below all have this attribute in place to demonstrate the effect. You may need to write custom styles to lay out your form controls because we try to leave all the default styling intact.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Choose as many snacks as you'd like: - - - - - - - - - - - -
                -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                -
                - Layout view: - - - - - - -
                -
                - -
                - - -
                - -
                - - -
                - - - - -

                Button based button:

                - - -

                Input type="button" based button:

                - - -

                Input type="submit" based button:

                - - -

                Input type="reset" based button:

                - - -

                Input type="image" based button:

                - - -
                - -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-all.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-all.html deleted file mode 100755 index 5633719..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-all.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - jQuery Mobile Docs - Gallery of Form Controls - - - - - - - - - -
                - -
                -

                Forms

                - Home -
                - -
                -
                - -
                - -

                Form elements

                - -

                This page contains various progressive-enhancement driven form controls. Native elements are sometimes hidden from view, but their values are maintained so the form can be submitted normally.

                - -

                Browsers that don't support the custom controls will still deliver a usable experience, because all are based on native form elements.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Choose as many snacks as you'd like: - - - - - - - - - - - -
                -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                -
                - Layout view: - - - - - - -
                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                -
                -
                -
                -
                -
                -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample-response.php b/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample-response.php deleted file mode 100755 index fd07c8e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample-response.php +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - jQuery Mobile Docs - Sample form response - - - - - - - - - -
                - -
                -

                Sample form response

                - Home -
                - -
                -
                - -
                - -

                You Chose:

                - -
                - - " . $_REQUEST['shipping'] . "

                "; - ?> - -
                - - Change shipping method - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample-selfsubmit.php b/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample-selfsubmit.php deleted file mode 100755 index 11e876c..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample-selfsubmit.php +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - jQuery Mobile Docs - Sample Form Submit to Self - - - - - - - - - -
                - -
                -

                Sample form submit to self

                - Home -
                - -
                -
                - -
                - -
                - Testing -
                - - /> - /> -
                -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample.html deleted file mode 100755 index 7c478b8..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-sample.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - jQuery Mobile Docs - Sample Form Submit - - - - - - - - - -
                - -
                -

                Forms

                - Home -
                - -
                -
                - -

                Ajax form submission

                - -

                In jQuery Mobile, form submissions are automatically handled using Ajax whenever possible, creating a smooth transition between the form and the result page. To ensure your form submits as intended, be sure to specify action and method properties on your form element. When unspecified, the method will default to get, and the action will default to the current page's relative path (found via $.mobile.path.get()

                -

                Forms also accept attributes for transitions just like anchors, such as data-transition="pop" and data-direction="reverse". To submit a form without Ajax, you can either disable Ajax form handling globally, or per form via the data-ajax="false" attribute. The target attribute (as in target="_blank") is respected on forms as well, and will default to the browser's handling of that target when the form submits. Note that unlike anchors, the rel attribute is not allowed on forms.

                - - -

                Default Ajax form example

                -

                This demonstrates automated ajax handling of form submissions. The form below is configured to send regular a get request to forms-sample-response.php. On submit, jQuery Mobile will make sure that the Url specified is able to be retrieved via Ajax, and handle it appropriately. Keep in mind that just like ordinary HTTP form submissions, jQuery Mobile allows get result pages to be bookmarked by updating the Url hash when the response returns successfully. Also like ordinary form submissions, post requests do not contain query parameters in the hash, so they are not bookmarkable.

                -
                -
                -
                - - -
                - -
                -
                - -

                Non-Ajax form example

                - -

                To prevent form submissions from being automatically handled with Ajax, add the data-ajax="false" attribute to the form element. You can also turn of Ajax form handling completely via the ajaxEnabled global config option.

                - -

                The form below is identical to the one above except for the addition of the data-ajax="false" attribute attribute. When the submit button is pressed, it will result in a full page refresh.

                -
                -
                -
                - - -
                - -
                -
                - -

                Self-submitting Forms

                -

                Just like in ordinary HTML, can also submit forms to the same URL you're currently viewing by setting the form's action attribute to that URL. This page demonstrates.

                -

                When a post request is submitted to a page that's already in the DOM (which would commonly happen when submitting a form to the same URL currently in view), the response URL will be identical to that existing page, as post requests do not append query string parameters to the URL. In this situation, jQuery Mobile will replace the page that submitted the form with the page returned in the response body.

                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-themes.html deleted file mode 100755 index 62e9889..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/forms-themes.html +++ /dev/null @@ -1,405 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Forms - - - - - - - - - -
                - -
                -

                Theming forms

                - Home -
                - -
                -
                - -

                Form themes

                -

                jQuery Mobile has a rich theming system that gives you full control of how pages and forms are styled. By default all form elements inside a container will automatically adopt the same theme color swatch as their parent. This allows form elements to blend into their layouts with minimal work. The data-theme attribute can be applied any individual form element to apply any of the lettered theme color swatches to create contrast and emphasis in your designs.

                - -

                All the form elements in the examples below use the same HTML code with no theme swatch specified on the individual form elements. The only difference between each example block code is a data-theme swatch color assigned to each parent container. This illustrates the way form elements automatically adopt the theme swatch of their parent.

                - - -

                Body swatch A

                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - -
                - -

                Body swatch B

                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - - -
                - - -

                Body swatch C

                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - - -
                - - - -

                Body swatch D

                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - - -
                - - -

                Body swatch E

                -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - - -
                - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/index.html deleted file mode 100755 index fbc2610..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/index.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - jQuery Mobile Docs - Forms - - - - - - - - - -
                - -
                -

                Form elements

                - Home -
                - -
                - -

                All form elements begin with standard html controls that are enhanced to make them more attractive and easy-to-use. In browsers that don't support the custom controls, they will still have a usable experience because these are all based on native form elements.

                - - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/plugin-eventsmethods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/plugin-eventsmethods.html deleted file mode 100755 index 31ae7a4..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/plugin-eventsmethods.html +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - jQuery Mobile Docs - Form Plugin Methods - - - - - - - - - -
                - -
                -

                Form Plugin Methods

                - Home -
                - -
                -
                - -
                -

                We've retired this page.

                - -

                Plugin events and methods are now documented separately for each component (see links on the left).

                -
                - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/events.html deleted file mode 100644 index 2fe4f98..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/events.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - jQuery Mobile Docs - Radio buttons - - - - - - - - - -
                - -
                -

                Radio buttons

                - Home -
                - -
                -
                - -
                - -

                Radio buttons

                - - - - -

                Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$("input[type='radio']").bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The radio button plugin has the following custom events:

                - -
                - -
                create triggered when a radio button is created
                -
                - - -
                
                -$("input[type='radio']").checkboxradio({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/index.html deleted file mode 100755 index 8b70276..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/index.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - jQuery Mobile Docs - Radio Buttons - - - - - - - - - -
                - -
                -

                Radio buttons

                - Home -
                - -
                -
                - -
                - -

                Radio buttons

                - - - -

                Radio buttons are used to provide a list of options where only a single items can be selected. Traditional desktop radio buttons are not optimized for touch input so in jQuery Mobile, we style the label for the radio buttons so they are larger and look clickable. A custom set of icons are added to the label to provide additional visual feedback.

                - -

                Both the radio and checkbox controls below use standard input/label markup, but are styled to be more touch-friendly. The styled control you see is actually the label element, which sits over the real input, so if images fail to load, you'll still have a functional control. In most browsers, clicking the label automatically triggers a click on the input, but we've had to trigger the update manually for a few mobile browsers that don't do this natively. On the desktop, these controls are keyboard and screen-reader accessible. View the data- attribute reference to see all the possible attributes you can add to radio buttons.

                - -

                Vertically grouped radio buttons

                - -

                To create a set of radio buttons, add an input with a type="radio" attribute and a corresponding label. Set the for attribute of the label to match the ID of the input so they are semantically associated.

                - -

                Because radio buttons use the label element for the text displayed next to the checkbox form element, we recommend wrapping the radio buttons in a fieldset element that has a legend which acts as the title for the question.

                - -

                To visually integrate multiple radio buttons into a vertically grouped button set, the framework will automatically remove all margins between buttons and round only the top and bottom corners of the set if there is a data-role="controlgroup" attribute on the container.

                - -
                	
                -<fieldset data-role="controlgroup">
                -	<legend>Choose a pet:</legend>
                -     	<input type="radio" name="radio-choice-1" id="radio-choice-1" value="choice-1" checked="checked" />
                -     	<label for="radio-choice-1">Cat</label>
                -
                -     	<input type="radio" name="radio-choice-1" id="radio-choice-2" value="choice-2"  />
                -     	<label for="radio-choice-2">Dog</label>
                -
                -     	<input type="radio" name="radio-choice-1" id="radio-choice-3" value="choice-3"  />
                -     	<label for="radio-choice-3">Hamster</label>
                -
                -     	<input type="radio" name="radio-choice-1" id="radio-choice-4" value="choice-4"  />
                -     	<label for="radio-choice-4">Lizard</label>
                -</fieldset>
                -
                - - -

                This will produce a vertically grouped radio button set. The default styles set the width of the button group to 100% of the parent container and stacks the label on a separate line.

                - - -
                - Choose a pet: - - - - - - - - - - - -
                - - -
                	
                -<div data-role="fieldcontain">
                -    <fieldset data-role="controlgroup">
                -    	<legend>Choose a pet:</legend>
                -         	<input type="radio" name="radio-choice-1" id="radio-choice-1" value="choice-1" checked="checked" />
                -         	<label for="radio-choice-1">Cat</label>
                -
                -         	<input type="radio" name="radio-choice-1" id="radio-choice-2" value="choice-2"  />
                -         	<label for="radio-choice-2">Dog</label>
                -
                -         	<input type="radio" name="radio-choice-1" id="radio-choice-3" value="choice-3"  />
                -         	<label for="radio-choice-3">Hamster</label>
                -
                -         	<input type="radio" name="radio-choice-1" id="radio-choice-4" value="choice-4"  />
                -         	<label for="radio-choice-4">Lizard</label>
                -    </fieldset>
                -</div>
                -	
                - - -

                To visually integrate multiple radio buttons into a vertically grouped button set, the framework will automatically remove all margins between buttons and round only the top and bottom corners of the set if there is a data-role="controlgroup" attribute on the container.

                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                -

                Horizontal radio button sets

                - -

                Radio buttons can also be used for grouped button sets only a single button can be selected at once, such as a view switcher control. To make a horizontal radio button set, add the data-type="horizontal" to the fieldset.

                - - - <fieldset data-role="controlgroup" data-type="horizontal" > - - -
                -
                - Layout view: - - - - - - -
                -
                - -

                The framework will float the labels so they sit side-by-side on a line, hides the radio button icons and only round the left and right edges of the group.

                - - - - - - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/methods.html deleted file mode 100644 index cb52d9c..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/methods.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - jQuery Mobile Docs - Radio buttons - - - - - - - - - -
                - -
                -

                Radio buttons

                - Home -
                - -
                -
                - -
                - -

                Radio buttons

                - - - -

                The radio button has the following methods:

                - -
                - -
                enable enable a disabled radio button
                -
                -
                
                - $("input[type='radio']").checkboxradio('enable');
                -				
                -
                - -
                disable disable a select.
                -
                -
                
                -$("input[type='radio']").checkboxradio('disable');
                -				
                -
                - -
                refresh update the custom select
                -
                - If you manipulate a radio button via JavaScript, you must call the refresh method on it to update the visual styling. -
                
                -$("input[type='radio']:first").attr("checked",true).checkboxradio("refresh");
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/options.html deleted file mode 100644 index 16f89d4..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/radiobuttons/options.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - jQuery Mobile Docs - Radio buttons - - - - - - - - - -
                - -
                -

                Radio buttons

                - Home -
                - -
                -
                - -
                - -

                Radio buttons

                - - - -

                The radio button has the following options:

                - -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $("input[type='radio']").checkboxradio({ theme: "a" });
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/events.html deleted file mode 100644 index e8f0f2b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/events.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - jQuery Mobile Docs - Search Input events - - - - - - - - - -
                - -
                -

                Search input

                - Home -
                - -
                -
                - -
                - -

                Search input

                - - - -

                Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$(".mySearchInput").bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The text input plugin has the following custom events:

                - -
                - -
                create triggered when a text input is created
                -
                - -
                
                -$( ".selector" ).textinput({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/index.html deleted file mode 100755 index 68b0de9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/index.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - jQuery Mobile Docs - Search input - - - - - - - - - -
                - -
                -

                Search input

                - Home -
                - -
                -
                - -
                - -

                Search input

                - - - -

                Search inputs are a new HTML type that is styled with pill-shaped corners and adds a "x" icon to clear the field once you start typing. Start with an input with a type="search" attribute in your markup. View the data- attribute reference to see all the possible attributes you can add to search inputs.

                - -

                Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                - -
                	
                -<label for="search-basic">Search Input:</label>
                -<input type="search" name="search" id="searc-basic" value="" />
                -				
                - -

                This will produce a basic search input. The default styles set the width of the input to 100% of the parent container and stacks the label on a separate line.

                - - - - -

                Optionally wrap the search input in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                - -
                	
                -<div data-role="fieldcontain">
                -    <label for="search">Search Input:</label>
                -    <input type="search" name="password" id="search" value="" />
                -</div>
                -
                - -

                The search input is now displayed like this:

                -
                - - -
                - -

                Themed variation:

                -
                - - -
                - - - -

                Calling the textinput plugin

                - -

                This plugin will auto initialize on any page that contains a text input with the type="search" attribute, no need for a data-role attribute in the markup. However, if needed you can directly call the textinput plugin on a selector, just like any jQuery plugin:

                -
                
                -$('.mySearchInput').textinput();			
                -
                - - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/methods.html deleted file mode 100644 index ab635fb..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/methods.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - jQuery Mobile Docs - Search Input methods - - - - - - - - - -
                - -
                -

                Search input

                - Home -
                - -
                -
                - -
                - -

                Search input

                - - - -

                The text input plugin has the following methods:

                - -
                - -
                enable enable a disabled text input
                -
                -
                
                -$('.selector').textinput('enable');			
                -				
                -
                - -
                disable disable a text input
                -
                -
                
                -$('.selector').textinput('disable');			
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/options.html deleted file mode 100644 index e1b6fef..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/search/options.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - jQuery Mobile Docs - Text Search options - - - - - - - - - -
                - -
                -

                Search input

                - Home -
                - -
                -
                - -
                - -

                Search input

                - - - -

                The text input plugin has the following options:

                - -
                -
                initSelector CSS selector string
                -
                -

                default: "input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input:not([type])"

                -

                This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as textinputs. To change which elements are initialized, bind this option to the mobileinit event:

                -
                $( document ).bind( "mobileinit", function(){
                -   $.mobile.textinput.prototype.options.initSelector = ".myInputs";
                -});
                -
                -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $('.selector').textinput({ theme: "a" });
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/custom.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/custom.html deleted file mode 100644 index 5f22064..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/custom.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - jQuery Mobile Docs - Select - - - - - - - - - -
                - -
                -

                Select Menus

                - Home -
                - -
                -
                - -

                Select menus

                - - - -

                Custom select menus

                -

                The framework is capable of building a custom menu based on the select element's list of options. We recommend using a custom menu when multiple selections are required, or when the menu itself must be styled with CSS.

                - -

                You can optionally use custom-styled select menus instead of the native OS menu. The custom menu supports disabled options and multiple selection (whereas native mobile OS support for both is inconsistent), adds an elegant way to handle placeholder values, and restores missing functionality on certain platforms such as optgroup support on Android (all explained below). In addition, the framework applies the custom button's theme to the menu to better match the look and feel and provide visual consistency across platforms. Lastly, custom menus often look better on desktop browsers because native desktop menus are smaller than their mobile counterparts and tend to look disproportionate.

                - -

                Keep in mind that there is overhead involved in parsing the native select to build a custom menu. If there are a lot of selects on a page, or a select has a long list of options, this can impact the performance of the page, so we recommend using custom menus sparingly.

                - -

                To use custom menus on a specific select, just add the data-native-menu="false" attribute. Alternately, this can also programmatically set the select menu's nativeMenu configuration option to false in a callback bound to the mobileinit event to achieve the same effect. This will globally make all selects use the custom menu by default. The following must be included in the page after jQuery is loaded but before jQuery Mobile is loaded.

                - - - -
                -$(document).bind('mobileinit',function(){
                -   $.mobile.selectmenu.prototype.options.nativeMenu = false;
                -});
                -
                -
                - -

                When the select has a small number of options that will fit on the device's screen, the menu will appear as a small overlay with a pop transition:

                - -
                - - -
                - -

                When it has too many options to show on the device's screen, the framework will automatically create a new "page" populated with a standard list view for the options. This allows us to use the native scrolling included on the device for moving through a long list. The text inside the label is used as the title for this page.

                - - -
                - - -
                - -

                Disabled options

                -

                jQuery Mobile will automatically disable and style option tags with the disabled attribute. In the demo below, the second option "Rush: 3 days" has been set to disabled.

                - -
                - - -
                - -

                Placeholder options

                -

                It's common for developers to include a "null" option in their select element to force a user to choose an option. If a placeholder option is present in your markup, jQuery Mobile will hide them in the overlay menu, showing only valid choices to the user, and display the placeholder text inside the menu as a header. A placeholder option is added when the framework finds:

                -
                  -
                • An option with no value attribute (or an empty value attribute)
                • -
                • An option with no text node
                • -
                • An option with a data-placeholder="true" attribute. (This allows you to use an option that has a value and a textnode as a placeholder option).
                • -
                - -

                You can disable this feature through the selectmenu plugin's hidePlaceholderMenuItems option, like this:

                -
                -	
                -$.mobile.selectmenu.prototype.options.hidePlaceholderMenuItems = false;
                -	
                -	
                - -

                Examples of various placeholder options:

                - - -
                - - -
                - - -
                - - -
                - - -
                - - -
                - - -

                Multiple selects

                -

                If the multiple attribute is present in your markup, jQuery Mobile will enhance the element with a few extra considerations:

                - -
                  -
                • A header element will be created inside the menu and display the placeholder text and a close button.
                • -
                • Clicking on an item inside the overlay menu will not close the widget.
                • -
                • A ghosted, unchecked icon will appear adjacent to each unselected item. When the item is selected the icon will change to a checkbox. Neither icon will appear inside a single select box.
                • -
                • Once 2+ items are selected, a counter element with the total number of selected items will appear inside the button.
                • -
                • The text of each selected item will appear inside the button as a list. If the button is not wide enough to display the entire list, it is truncated with an ellipses.
                • -
                • If no items are selected, the button's text will default to the placeholder text.
                • -
                • If no placeholder element exists, the default button text will be blank and the header will appear with just a close button. Because this isn't a friendly user experience, we recommended that you always specify a placeholder element when using multiple select boxes.
                • -
                - -
                - - -
                - -

                When a select is large enough to where the menu will open in a new page, the placeholder text is displayed in the button when no items are selected, and the label text is displayed in the menu's header. This differs from smaller overlay menus where the placeholder text is displayed in both the button and the header, and from full-page single selects where the placeholder text is not used at all.

                - -
                - - -
                - - - - - -

                Optgroup support

                -

                If a select menu contains optgroup elements, jQuery Mobile will create a divider & group items based on the label attribute's text:

                - -
                - - -
                - - - - - -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/events.html deleted file mode 100644 index 3ef377f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/events.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - jQuery Mobile Docs - Select events - - - - - - - - - -
                - -
                -

                Select Menus

                - Home -
                - -
                -
                - -
                - -

                Select menus

                - - - - -

                Bind events directly to the select element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$(".mySelect").bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The select menu plugin has the following custom events:

                - -
                - -
                create triggered when a select menu is created
                -
                - -
                
                -$( ".selector" ).selectmenu({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/index.html deleted file mode 100644 index 446c394..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/index.html +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - jQuery Mobile Docs - Select - - - - - - - - - -
                - -
                -

                Select Menus

                - Home -
                - -
                -
                - -
                - -

                Select menus

                - - - -

                The select menu is based on a native select element, which is hidden from view and replaced with a custom-styled select button that matches the look and feel of the jQuery Mobile framework. The select menu is ARIA-enabled and keyboard accessible on the desktop as well. View the data- attribute reference to see all the possible attributes you can add to selects.

                - -

                By default, the framework leverages the native OS options menu to use with the custom button. When the button is clicked, the native OS menu will open. When a value is selected and the menu closes, the custom button's text is updated to match the selected value.

                - -

                To add a select menu to your page, start with a standard select element populated with a set of option elements. Set the for attribute of the label to match the ID of the select so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                - -

                The framework will find all select elements and automatically enhance them into select menus, no need to apply a data-role attribute. To prevent the automatic enhancement of a select, add data-role="none" attribute to the select.

                - -
                
                -<label for="select-choice-0" class="select">Shipping method:</label>
                -<select name="select-choice-0" id="select-choice-1">
                -   <option value="standard">Standard: 7 day</option>
                -   <option value="rush">Rush: 3 days</option>
                -   <option value="express">Express: next day</option>
                -   <option value="overnight">Overnight</option>
                -</select>
                -			
                - -

                This will produce a basic select menu. The default styles set the width of the input to 100% of the parent container and stacks the label on a separate line.

                - - - - - -

                Optionally wrap the selects in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                -
                
                -<div data-role="fieldcontain">
                -   <label for="select-choice-1" class="select">Shipping method:</label>
                -   <select name="select-choice-1" id="select-choice-1">
                -      <option value="standard">Standard: 7 day</option>
                -      <option value="rush">Rush: 3 days</option>
                -      <option value="express">Express: next day</option>
                -      <option value="overnight">Overnight</option>
                -   </select>
                -</div>
                -
                - -

                The select input is now displayed like this:

                - - -
                - - -
                - -

                An example of a select with a long list of options:

                - -
                - - -
                - - - - -

                Vertically grouped select inputs

                - -

                To create a grouped set of select inputs, first add select and a corresponding label. Set the for attribute of the label to match the ID of the select so they are semantically associated.

                - -

                Because the label element will be associated with each individual select input, we recommend wrapping the selects in a fieldset element that has a legend which acts as the combined label for the grouped inputs.

                - -

                Lastly, one needs to wrap the fieldset in a div with data-role="controlgroup" attribute, so it can be styled as a group.

                - -
                	
                -<div data-role="fieldcontain">
                -<fieldset data-role="controlgroup">
                -	<legend>Date of Birth:</legend>
                -
                -    <label for="select-choice-month">Month</label>
                -<select name="select-choice-month" id="select-choice-month">
                -	<option>Month</option>
                -	<option value="jan">January</option>
                -	<!-- etc. -->
                -</select>
                -
                -	<label for="select-choice-day">Day</label>
                -<select name="select-choice-day" id="select-choice-day">
                -	<option>Day</option>
                -	<option value="1">1</option>
                -	<!-- etc. -->
                -</select>
                -
                -<label for="select-choice-year">Year</label>
                -<select name="select-choice-year" id="select-choice-year">
                -	<option>Year</option>
                -	<option value="2011">2011</option>
                -	<!-- etc. -->
                -</select>
                -</fieldset>
                -</div>
                -
                - -
                -
                - Date of Birth: - - - - - - - - - -
                - -
                - -

                Horizontally grouped select inputs

                -

                Select inputs can also be used for grouped sets with more than one related selections. To make a horizontal button set, add the data-type="horizontal" to the fieldset. Note that the buttons which trigger the select will resize depending on the currently selected option’s value. Note that browsers without support for display: inline-block; will group the selects vertically, as above.

                - - -<fieldset data-role="controlgroup" data-type="horizontal"> - - -
                - Date of Birth: - - - - - - - - - -
                - -

                Calling the select menu plugin

                -

                The select menu plugin will auto initialize on any page that contains a select menu, no need for a data-role attribute in the markup. However, you can directly call the select menu plugin on any selector, just like any normal jQuery plugin:

                -
                
                -$('select').selectmenu();			
                -
                - -
                - - -

                Theming selects

                -

                You can specify any jQuery Mobile button data- attribute on a select element, too. In this example, we're setting the theme, icon and inline properties:

                - -
                - - -
                - -

                The data-overlay-theme attribute can be added a select element to set the color of the overlay layer that the dialog-based custom select menus and the outer border of the smaller custom menus. By default, the content block colors for swatch A will be used for the overlays.

                - -
                - - -
                - -
                - - -
                - -

                Custom select menus

                -

                For the sake of advanced styling, the framework also offers a method of generating custom menus from existing select menu markup instead of the native OS menu. The custom menu supports disabled options and multiple selection (whereas native mobile OS support for both is inconsistent), adds an elegant way to handle placeholder values, and restores missing functionality on certain platforms such as optgroup support on Android. - - Custom select menu docs -

                - -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/methods.html deleted file mode 100644 index 19f9507..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/methods.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - jQuery Mobile Docs - Select methods - - - - - - - - - -
                - -
                -

                Select Menus

                - Home -
                - -
                -
                - -
                - -

                Select menus

                - - - -

                The select menu plugin has the following methods:

                - -
                - -
                close close an open select menu
                -
                -
                
                -$('select').selectmenu('close');			
                -				
                -
                - -
                enable enable a disabled select
                -
                -
                
                -$('select').selectmenu('enable');			
                -				
                -
                - -
                disable disable a select.
                -
                -
                
                -$('select').selectmenu('disable');			
                -				
                -
                - -
                open open a closed select menu
                -
                -
                
                -$('select').selectmenu('open');			
                -				
                -
                - -
                refresh update the custom select
                -
                - This is used to update the custom select to reflect the native select element's value.If the number of options in the select are different than the number of items in the custom menu, it'll rebuild the custom menu. Also, if you pass a true argument you can force the rebuild to happen. -
                
                -//refresh value			
                -$('select').selectmenu('refresh');
                -
                -//refresh and force rebuild
                -$('select').selectmenu('refresh', true);
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/options.html deleted file mode 100644 index 29e88cf..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/selects/options.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - jQuery Mobile Docs - Select options - - - - - - - - - -
                - -
                -

                Select Menus

                - Home -
                - -
                -
                - -
                - -

                Select menus

                - - - -

                The select menu plugin has the following options:

                - - -
                - -
                corners boolean
                -
                -

                default: true

                -

                Applies the theme button border-radius to the select button if set to true. This option is also exposed as a data attribute: data-corners="false"

                -
                $('select').selectmenu({ corners: "false" });
                -
                -
                icon string
                -
                -

                default: "arrow-down"

                -

                Applies an icon from the icon set to the custom button. This option is also exposed as a data attribute: data-icon="star"

                -
                $('select').selectmenu({ icon: "star" });
                -
                - -
                iconpos string
                -
                -

                default: "right"

                -

                Position of the icon in the select button. Possible values: left, right, none, notext. The notext value will display the select as an icon-only button with no text feedback. This option is also exposed as a data attribute: data-iconpos="left"

                -
                $('select').selectmenu({ iconpos: "left" });
                -
                - -
                iconshadow boolean
                -
                -

                default: true

                -

                Applies the theme shadow to the select button if set to true. This option is also exposed as a data attribute: data-iconshadow="false"

                -
                $('select').selectmenu({ iconshadow: "false" });
                -
                - -
                initSelector CSS selector string
                -
                -

                default: "select:not(:jqmData(role='slider'))"

                -

                This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as select menus. To change which elements are initialized, bind this option to the mobileinit event:

                -
                $( document ).bind( "mobileinit", function(){
                -	$.mobile.selectmenu.prototype.options.initSelector = ".myselect";
                -});
                -
                -
                - -
                inline boolean
                -
                -

                default: null (false)

                -

                If set to true, this will make the select button act like an inline button so the width is determined by the button's text. By default, this is null (false) so the select button is full width, regardless of the feedback content. Possible values: true, false. This option is also exposed as a data attribute: data-inline="true"

                -
                $('select').selectmenu({ inline: "true" });
                -
                - -
                nativeMenu boolean
                -
                -

                default: true

                -

                When set to true, clicking the custom-styled select menu will open the native select menu which is best for performance. If set to false, the custom select menu style will be used instead of the native menu. This option is also exposed as a data attribute: data-native-menu="false"

                -
                $('select').selectmenu({ nativeMenu: "false" });
                -
                - -
                shadow boolean
                -
                -

                default: true

                -

                Applies the drop shadow style to the select button if set to true. This option is also exposed as a data attribute: data-shadow="false"

                -
                $('select').selectmenu({ shadow: "false" });
                -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $('select').selectmenu({ theme: "a" });
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/events.html deleted file mode 100644 index 08bc5fe..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/events.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider events - - - - - - - - - -
                - -
                -

                Slider

                - Home -
                - -
                -
                - -
                - -

                Slider

                - - - -

                Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$( ".selector" ).bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The slider plugin has the following custom event:

                - -
                - -
                create triggered when a slider is created
                -
                - -
                
                -$( ".selector" ).slider({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/index.html deleted file mode 100644 index 97cf96e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/index.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider - - - - - - - - - -
                - -
                -

                Slider

                - Home -
                - -
                -
                - -
                -

                Slider

                - - - -

                To add a slider widget to your page, use a standard input with the type="range" attribute. The input's value is used to configure the starting position of the handle and the value is populated in the text input. Specify min and max attribute values to set the slider's range. The framework will parse these attributes to configure the slider widget. View the data- attribute reference to see all the possible attributes you can add to sliders.

                - -

                As you drag the slider's handle, the framework will update the native input's value (and vice-versa) so they are always in sync; this ensures that the value is submitted with the form.

                -

                Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                - -

                The framework will find all input elements with a type="range" and automatically enhance them into a slider with an accompanying input, no need to apply a data-role attribute. To prevent the automatic enhancement of this input into a slider, add data-role="none" attribute to the input and wrap them in a div with the data-role="fieldcontain" attribute to group them.

                - -
                
                -   <label for="slider-0">Input slider:</label>
                -   <input type="range" name="slider" id="slider-0" value="25" min="0" max="100"  />
                -
                - -

                The default slider is displayed like this:

                - - - -

                Optionally wrap the slider markup in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                - - -
                
                -<div data-role="fieldcontain">
                -   <label for="slider">Input slider:</label>
                -   <input type="range" name="slider" id="slider" value="25" min="0" max="100"  />
                -</div>
                -
                - -

                The slider is now displayed like this:

                -
                - - -
                - -

                Sliders also respond to key commands. Right Arrow, Up Arrow and Page Up keys increase the value; Left Arrow, Down Arrow and Page Down keys decrease it. To move the slider to its minimum or maximum value, use the Home or End key, respectively.

                - - -

                Calling the slider plugin

                - -

                This plugin will auto initialize on any page that contains a text input with the type="range" attribute. However, if needed you can directly call the slider plugin on any selector, just like any jQuery plugin:

                -
                
                -$('input').slider();			
                -
                - - -

                Theming the slider

                -

                To set the theme swatch for the slider, add a data-theme attribute to the input which will apply the theme to both the input, handle and track. The track swatch can be set separately by adding the data-track-theme attribute to apply the down state version of the selected button swatch.

                - -
                
                -<div data-role="fieldcontain">
                -	<label for="slider-2">Input slider:</label>
                -	<input type="range" name="slider-2" id="slider-2" value="25" min="0" max="100" data-theme="a" data-track-theme="b" />
                -</div>
                -		
                - -

                This will produce a themed slider:

                -
                - - -
                -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/methods.html deleted file mode 100644 index 0198da1..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/methods.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider methods - - - - - - - - - -
                - -
                -

                Slider

                - Home -
                - -
                -
                - -
                - -

                Slider

                - - - -

                The slider plugin has the following methods:

                - -
                -
                enable enable a disabled slider
                -
                -
                
                -$('.selector').slider('enable');			
                -				
                -
                - -
                disable disable a slider
                -
                -
                
                -$('.selector').slider('disable');			
                -				
                -
                - -
                refresh update the slider
                -
                -

                If you manipulate a slider via JavaScript, you must call the refresh method on it to update the visual styling.

                - -
                			
                -$('.selector').slider('refresh');
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/options.html deleted file mode 100644 index 12bd75f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/slider/options.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider options - - - - - - - - - -
                - -
                -

                Slider

                - Home -
                - -
                -
                - -
                - -

                Slider

                - - - -

                The slider plugin has the following options:

                - -
                -
                disabled string
                -
                -

                default: false

                -

                Sets the default state of the slider to disabled when "true".

                -
                $('.selector').slider({ disabled: "true" });
                -
                - -
                initSelector CSS selector string
                -
                -

                default: "input[type='range'], :jqmData(type='range'), :jqmData(role='slider')"

                -

                This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as sliders. To change which elements are initialized, bind this option to the mobileinit event:

                -
                $( document ).bind( "mobileinit", function(){
                -   $.mobile.slider.prototype.options.initSelector = ".myslider";
                -});
                -
                -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $('.selector').slider({ theme: "a" });
                -
                - -
                trackTheme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for the slider's track, specifically. It accepts a single letter from a-z that maps to the swatches included in your theme.

                -
                $('.selector').slider({ theme: "a" });
                -

                This option can be overridden in the markup by assigning a data attribute to the input, e.g. data-track-theme="a".

                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/events.html deleted file mode 100644 index 84a3b03..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/events.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider events - - - - - - - - - -
                - -
                -

                Flip Toggle Switch

                - Home -
                - -
                -
                - -
                - -

                Flip toggle switch

                - - - -

                Bind events directly to the select element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$( ".selector" ).bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The slider plugin has the following custom event:

                - -
                - -
                create triggered when a slider is created
                -
                - -
                
                -$( ".selector" ).slider({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/index.html deleted file mode 100644 index d3a111e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/index.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - jQuery Mobile Docs - Sliders - - - - - - - - - -
                - -
                -

                Flip Toggle Switch

                - Home -
                - -
                -
                - -
                -

                Flip toggle switch

                - - - -

                A binary "flip" switch is a common UI element on mobile devices that is used for binary on/off or true/false data input. You can either drag the flip handle like a slider or tap one side of the switch.

                - -

                To create a flip toggle, start with a select with two options. The first option will be styled as the "on" state switch and the second will be styled as the "off" state so write your options accordingly. View the data- attribute reference to see all the possible attributes you can add to flip switches.

                - -

                Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                - -
                	
                -<label for="flip-a">Select slider:</label>
                -<select name="slider" id="flip-a" data-role="slider">
                -	<option value="off">Off</option>
                -	<option value="on">On</option>
                -</select> 
                -
                - -

                This will produce a basic flip toggle switch input. The default styles set the width of the switch to 100% of the parent container and stacks the label on a separate line.

                - - - - -

                Optionally wrap the switch markup in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                - -
                	
                -<div data-role="fieldcontain">
                -<label for="flip-b">Flip switch:</label>
                -	<select name="slider" id="flip-b" data-role="slider">
                -		<option value="no">No</option>
                -		<option value="yes">Yes</option>
                -	</select> 
                -</div>
                -
                -

                The flip toggle switch is now displayed like this:

                -
                - - -
                - - -

                Theming the flip switch

                - -

                Like all form elements, this widget will automatically inherit the theme from it's parent container. TO choose a specific theme color swatch, specify the data-theme attribute on the select and specify a swatch letter.

                - -
                	
                -<div data-role="fieldcontain">
                -	<label for="flip-c">Flip switch:</label>
                -	<select name="slider" id="flip-c" data-role="slider" data-theme="a">
                -		<option value="no">No</option>
                -		<option value="yes">Yes</option>
                -	</select> 
                -</div>
                -
                -

                This results in a switch with the A swatch colors for the handle. Note that the lefthand "on" state gets the active state color.

                -
                - - -
                - -

                Here is a E swatch variation:

                -
                - - -
                - -

                Calling the switch plugin

                - -

                This plugin will auto initialize on any page that contains a select with the data-role="slider" attribute. However, if needed you can directly call the slider plugin on any selector, just like any jQuery plugin:

                -
                
                -$('select').slider();			
                -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/methods.html deleted file mode 100644 index b78cbd9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/methods.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider methods - - - - - - - - - -
                - -
                -

                Flip Toggle Switch

                - Home -
                - -
                -
                - -
                - -

                Flip toggle switch

                - - - -

                The slider plugin has the following methods:

                - -
                -
                enable enable a disabled slider
                -
                -
                
                -$('.selector').slider('enable');			
                -				
                -
                - -
                disable disable a slider
                -
                -
                
                -$('.selector').slider('disable');			
                -				
                -
                - -
                refresh update the slider
                -
                -

                If you manipulate a slider via JavaScript, you must call the refresh method on it to update the visual styling.

                - -
                			
                -$('.selector').slider('refresh');
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/options.html deleted file mode 100644 index c64b6d4..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/switch/options.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - jQuery Mobile Docs - Slider options - - - - - - - - - -
                - -
                -

                Flip Toggle Switch

                - Home -
                - -
                -
                - -
                - -

                Flip toggle switch

                - - - -

                The slider plugin has the following options:

                - -
                -
                disabled string
                -
                -

                default: false

                -

                Sets the default state of the slider to disabled when "true".

                -
                $('.selector').slider({ disabled: "true" });
                -
                - -
                initSelector CSS selector string
                -
                -

                default: "input[type='range'], :jqmData(type='range'), :jqmData(role='slider')"

                -

                This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as sliders. To change which elements are initialized, bind this option to the mobileinit event:

                -
                $( document ).bind( "mobileinit", function(){
                -   $.mobile.slider.prototype.options.initSelector = ".myslider";
                -});
                -
                -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $('.selector').slider({ theme: "a" });
                -
                - -
                trackTheme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for the slider's track, specifically. It accepts a single letter from a-z that maps to the swatches included in your theme.

                -
                $('.selector').slider({ theme: "a" });
                -

                This option can be overridden in the markup by assigning a data attribute to the input, e.g. data-track-theme="a".

                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/events.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/events.html deleted file mode 100644 index b5d6add..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/events.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - jQuery Mobile Docs - Text Input events - - - - - - - - - -
                - -
                -

                Text inputs

                - Home -
                - -
                -
                - -
                - -

                Text inputs

                - - - -

                Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                -
                 
                -$( ".selector" ).bind( "change", function(event, ui) {
                -  ...
                -});
                -
                - -

                The text input plugin has the following custom events:

                - -
                - -
                create triggered when a text input is created
                -
                - -
                
                -$( ".selector" ).textinput({
                -   create: function(event, ui) { ... }
                -});		
                -			
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/index.html deleted file mode 100755 index 819a7f0..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/index.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - jQuery Mobile Docs - Text inputs - - - - - - - - - -
                - -
                -

                Text inputs

                - Home -
                - -
                -
                - -
                - -

                Text inputs & Textareas

                - - - -

                Text inputs and textareas are coded with standard HTML elements, then enhanced by jQuery Mobile to make them more attractive and useable on a mobile device. View the data- attribute reference to see all the possible attributes you can add to text inputs.

                - -

                Text inputs

                -

                To collect standard alphanumeric text, use an input with a type="text" attribute. Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                - -
                	
                -    <label for="basic">Text Input:</label>
                -    <input type="text" name="name" id="basic" value=""  />
                -
                - -

                This will produce a basic text input. The default styles set the width of the input to 100% of the parent container and stacks the label on a separate line.

                - - - - -

                Optionally wrap the text input in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                - -
                	
                -<div data-role="fieldcontain">
                -    <label for="name">Text Input:</label>
                -    <input type="text" name="name" id="name" value=""  />
                -</div>	
                -
                - -

                The text input is now displayed like this:

                -
                - - -
                - - -

                More text input types

                -

                In jQuery Mobile, you can use existing and new HTML5 input types such as password, email, tel, number, and more. Some type values are rendered differently across browsers — for example, Chrome displays the range input renders as a slider — so we standardize their appearance by dynamically changing their type to text (currently, this applies to range and search). You can configure which input types are degraded to text with the page plugin's options.

                - -

                One major advantage of using these more specific input types if that on mobile devices, specialized keyboards that speed data entry are offered in place of the standard text keyboard. Try the followin inputs on a mobile device to see which display custom keyboards on various platforms.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - - -

                Textareas

                -

                For multi-line text inputs, use a textarea element. The framework will auto-grow the height of the textarea to avoid the need for an internal scrollbar.

                -

                Set the for attribute of the label to match the ID of the textarea so they are semantically associated, and wrap them in a div with the data-role="fieldcontain" attribute to group them.

                - -
                	
                -<label for="textarea-a">Textarea:</label>
                -<textarea name="textarea" id="textarea-a">
                -I'm a basic textarea. If this is pre-populated with content, the height will be automatically adjusted to fit without needing to scroll. That is a pretty handy usability feature.
                -</textarea>
                -
                - -

                This will produce a basic textarea with the width set to 100% of the parent container and the label stacked on a separate line.The textarea will grow to fit new lines as you type:

                - - - -
                	
                -<div data-role="fieldcontain">
                -<label for="textarea">Textarea:</label>
                -	<textarea name="textarea" id="textarea"></textarea>
                -</div>
                -
                - -

                The textarea is displayed like this and will grow to fit new lines as you type:

                -
                - - -
                - - -

                Calling the textinput plugin

                - -

                This plugin will auto initialize on any page that contains a textarea or any of the text input types listed above, no need for a data-role attribute in the markup. However, if needed you can directly call the textinput plugin on any selector, just like any jQuery plugin:

                -
                
                -$('input').textinput();			
                -			
                - - -

                Degraded input types

                -

                jQuery Mobile degrades several HTML5 input types back to type=text, or type=number after adding enhanced controls. For example, inputs with a type of range are enhanced with a custom slider control, and their type is set to number to offer a usable form input alongside that slider. Inputs with a type of search are degraded back to type=text after we add our own themable search input styling.

                -

                The page plugin contains a list of input types that are set to either true which means they'll degrade to type=text, false which means they'll be left alone, or a string such as "number", which means they'll be converted to that type (such as the case of type=range).

                - -

                You can configure which types are changed via the page plugin's degradeInputs option, which can be manipulated externally via $.mobile.page.prototype.options.degradeInputs, which has properties: color, date, datetime, "datetime-local", email, month, number, range, search, tel, time, url, and week. Be sure to configure this inside an event handler bound to the mobileinit event, so that it applies to the first page as well as subsequent pages that are loaded.

                - - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/methods.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/methods.html deleted file mode 100644 index eb0f893..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/methods.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - jQuery Mobile Docs - Text Input methods - - - - - - - - - -
                - -
                -

                Text inputs

                - Home -
                - -
                -
                - -
                - -

                Text inputs

                - - - -

                The text input plugin has the following methods:

                - -
                - -
                enable enable a disabled text input
                -
                -
                
                -$('.selector').textinput('enable');			
                -				
                -
                - -
                disable disable a text input
                -
                -
                
                -$('.selector').textinput('disable');			
                -				
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/options.html b/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/options.html deleted file mode 100644 index e4dc601..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/forms/textinputs/options.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - jQuery Mobile Docs - Text Input options - - - - - - - - - -
                - -
                -

                Text inputs

                - Home -
                - -
                -
                - -
                - -

                Text inputs

                - - - -

                The text input plugin has the following options:

                - -
                -
                initSelector CSS selector string
                -
                -

                default: "input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input:not([type])"

                -

                This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as textinputs. To change which elements are initialized, bind this option to the mobileinit event:

                -
                $( document ).bind( "mobileinit", function(){
                -   $.mobile.textinput.prototype.options.initSelector = ".myInputs";
                -});
                -
                -
                - -
                theme string
                -
                -

                default: null, inherited from parent

                -

                Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                -
                $('.selector').textinput({ theme: "a" });
                -
                - -
                - -
                -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/index.html deleted file mode 100755 index 0173f5b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/index.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - jQuery UI Mobile Framework - Documentation - - - - - - - - - - -
                - -
                -

                jQuery Mobile Docs

                - Home -
                - -
                - -

                Nothing to see here folks.

                -View the documentation home page - -
                - -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/docs-lists.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/docs-lists.html deleted file mode 100755 index 805ecf3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/docs-lists.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists Overview - - - - - - - - - -
                - -
                -

                Lists

                - Home -
                - -
                -
                -

                Basic linked lists

                -

                A list view is coded as a simple unordered list containing linked list items with a data-role="listview" attribute. jQuery Mobile will apply all the necessary styles to transform the list into a mobile-friendly list view with right arrow indicator that fills the full width of the browser window. When you tap on the list item, the framework will trigger a click on the first link inside the list item, issue an AJAX request for the URL in the link, create the new page in the DOM, then kick off a page transition. View the data- attribute reference to see all the possible attributes you can add to listviews.

                -

                Here is the HTML markup for a basic linked list.

                - -
                
                -<ul data-role="listview" data-theme="g">
                -	<li><a href="acura.html">Acura</a></li>
                -	<li><a href="audi.html">Audi</a></li>
                -	<li><a href="bmw.html">BMW</a></li>
                -</ul>
                -
                - - Basic list example - -

                Style note on non-inset lists: all standard, non-inset lists have a -15px margin to negate the 15px of padding on the content area to make lists fill to the edges of the screen. If you add other widgets above or below a list, the negative margin may make these elements overlap so you'll need to add additional spacing in your custom CSS.

                -

                Nested lists

                -

                By nesting child ul or ol inside list items, you can create nested lists. When a list item with a child list is clicked, the framework will generate a new ui-page populated with the title of the parent in the header and the list of child elements. These dynamic nested lists are styled with the "b" theme swatch (blue in the default theme) to indicate that you are in a secondary level of navigation. Lists can be nested multiple levels deep and all pages and linking will be automatically handled by the framework.

                -

                To set the swatch color of the child list views, set the data-theme attribute on each list inside.

                - Nested list example - -

                Numbered lists

                -

                Lists can also be created from ordered lists (ol) which is useful when presenting items that are in a sequence such as search results or a movie queue. When the enhanced markup is applied to the list view, jQuery Mobile will try to first use CSS to add numbers to the list and, if not supported, will fall back to injecting numbers with JavaScript.

                - - Numbered list example - -

                Read-only lists

                -

                List views can also be used to display a non-interactive list of items, usually as an inset list. This list is built from an unordered or ordered list that don't have linked list items. The framework defaults to styling these list with the "c" theme swatch and sets the text size to a smaller size than the clickable lists to save a bit of space.

                - - Read-only list example - -

                Split button lists

                -

                In cases where there is more than one possible action per list item, a split button can be used to offer two independently clickable items -- the list item and a small arrow icon in the far right. To make a split list item, simply add a second link inside the li and the framework will add a vertical divider line, style the link as an icon-only arrow button, and set the title attribute of the link to the text the link for accessibility.

                -

                You can set the icon for the right split icon by specifying a data-split-icon attribute with the icon name you want. The theme swatch color of the split button can be set by specifying a swatch letter in the data-split-theme attribute

                - - Split list example - - -

                List dividers

                -

                List items can be turned into dividers to organize and group the list items. This is done by adding the data-role="list-divider" to any list item. These items are styled with the body swatch "b" by default (light gray in the default theme) but you can specify a theme for dividers by adding the data-dividertheme attribute to the list element (ul or ol) and specifying a theme swatch letter.

                - - List divider example - - -

                Search filter

                -

                jQuery Mobile provides a very easy way to filter a list with a simple client-side search feature. To make a list filterable, simply add the data-filter="true" attribute to the list. The framework will then append a search box above the list and add the behavior to filter out list items that don't contain the current search string as the user types. The input's placeholder text defaults to "Filter items...". To configure the placeholder text in the search input, you can either bind to the mobileinit event and set the $.mobile.listview.prototype.options.filterPlaceholder option to a string of your choosing, or use the data-attribute data-filter-placeholder on your listview. By default the search box will inherit its theme from its parent. The search box theme can be configured using the data-attribute data-filter-theme on your listview.

                - - Search filter example - -

                If you want to change the way in which list items are filtered, ie fuzzy search or matching from the beginning of the string, you can configure the callback used internally by defining $.mobile.listview.prototype.options.filterCallback during mobileinit or after the widget has been created with $("#mylist").listview('option', 'filterCallback', yourFilterFunction). Any function defined for the callback will be provided two arguments. First, the text of the current list item and second, the value being searched for. A truthy value will result in a hidden list item. The default callback which filters entries without the searchValue as a substring is described below: -

                - -
                -        
                -function( text, searchValue ){
                -  return text.toLowerCase().indexOf( searchValue ) === -1;
                -};
                -        
                -      
                - -

                Text formatting & counts

                -

                The framework includes text formatting conventions for common list patterns like header/descriptions, secondary information and counts through semantic HTML markup.

                - -
                  -
                • To add a count indicator to the right of the list item, wrap the number in an element with a class of ui-li-count
                • -
                • To add text hierarchy, use headings to increase font emphasis and use paragraphs to reduce emphasis.
                • -
                • Supplemental information can be added to the right of each list item by wrapping content in an element with a class of ui-li-aside
                • -
                - List with count bubbles - List with text formatting - -

                Thumbnails & icons

                -

                To add thumbnails to the left of a list item, simply add an image inside a list item as the first child element. The framework will scale the image to 80 pixels square. To use standard 16x16 pixel icons in list items, add the class of ui-li-icon to the image element.

                - List with thumbnail images - List with icon images - -

                Inset lists

                -

                If lists are embedded in a page with other types of content, an inset list packages the list into a block that sits inside the content area with a bit of margin and rounded corners (theme controlled). By adding the data-inset="true" attribute to the list (ul or ol), applies the inset appearance.

                - - Inset list example - -

                Calling the listview plugin

                -

                You can directly call the listview plugin on any selector, just like any jQuery plugin:

                - $('#mylist').listview(); - -

                Updating lists

                -

                If you add items to a listview, you'll need to call the refresh() method on it to update the styles and create any nested lists that are added. For example:

                - $('#mylist').listview('refresh'); - -

                Note that the refresh() method only affects new nodes appended to a list. This is done for performance reasons. Any list items already enhanced will be ignored by the refresh process. This means that if you change the contents or attributes on an already enhanced list item, these won't be reflected. If you want a list item to be updated, replace it with fresh markup before calling refresh.

                - - -
                - - - -
                - - - -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/index.html deleted file mode 100755 index ad97a3a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/index.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists - - - - - - - - - -
                - -
                -

                Lists

                - Home -
                - -
                - -

                Lists are used for data display, navigation, result lists, and data entry so jQuery Mobile includes a wide range of list types and formatting examples to cover most common design patterns.

                - - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-all-full.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-all-full.html deleted file mode 100644 index 7582d85..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-all-full.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists - - - - - - - - - -
                - -
                -

                Linked list samples

                - Home -
                - -
                - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-count.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-count.html deleted file mode 100755 index 8bc7c4a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-count.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists Count Bubbles - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-divider.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-divider.html deleted file mode 100755 index e5a4f54..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-divider.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - jQuery Mobile Docs - List Dividers - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-formatting.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-formatting.html deleted file mode 100755 index c0d3b72..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-formatting.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - jQuery Mobile Docs - List Formatting - - - - - - - - - -
                - -
                -

                List formatting

                - Home -
                - -
                - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-forms-inset.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-forms-inset.html deleted file mode 100644 index cbfeece..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-forms-inset.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - jQuery Mobile Docs - Inset Lists with Forms - - - - - - - - - -
                - -
                -

                Inset with Forms

                - Home -
                - -
                -
                -
                -
                  -
                • - - -
                • -
                • - - -
                • -
                • - - -
                • -
                • - - -
                • -
                • - - -
                • -
                • -
                  - Choose as many snacks as you'd like: - - - - - - - - - - - -
                  -
                • - -
                • -
                  - Font styling: - - - - - - - - -
                  -
                • -
                • -
                  - Choose a pet: - - - - - - - - - - - -
                  -
                • - - -
                • -
                  - Layout view: - - - - -
                  -
                • - -
                • - - -
                • - -
                • - - -
                • - -
                • - - -
                • - -
                • -
                  -
                  -
                  -
                  -
                • - -
                - - - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-forms.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-forms.html deleted file mode 100644 index 9be9025..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-forms.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists with Forms - - - - - - - - - -
                - -
                -

                Lists with Forms

                - Home -
                - -
                -
                -
                -
                  -
                • - - -
                • -
                • - - -
                • -
                • - - -
                • -
                • - - -
                • -
                • - - -
                • -
                • -
                  - Choose as many snacks as you'd like: - - - - - - - - - - - -
                  -
                • - -
                • -
                  - Font styling: - - - - - - - - -
                  -
                • -
                • -
                  - Choose a pet: - - - - - - - - - - - -
                  -
                • - - -
                • -
                  - Layout view: - - - - - - -
                  -
                • - -
                • - - -
                • - -
                • - - -
                • - -
                • - - -
                • - -
                • -
                  -
                  -
                  -
                  -
                • - -
                - -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-icons.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-icons.html deleted file mode 100755 index ea09f89..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-icons.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - jQuery Mobile Docs - List Icons - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-inset.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-inset.html deleted file mode 100755 index a639541..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-inset.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists with Form Controls - - - - - - - - - -
                - -
                -

                Inset list samples

                - Home -
                - -
                - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-nested.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-nested.html deleted file mode 100755 index 00f20a0..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-nested.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - jQuery Mobile Docs - Nested Lists - - - - - - - - - -
                - -
                -

                Nested list

                - Home -
                - -
                -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-ol.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-ol.html deleted file mode 100755 index d4fd075..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-ol.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - jQuery Mobile Docs - Ordered Lists - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-performance.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-performance.html deleted file mode 100755 index 6a1ac73..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-performance.html +++ /dev/null @@ -1,575 +0,0 @@ - - - - - - jQuery Mobile Docs - List Performance Test - - - - - - - - - -
                - -
                -

                500 item list

                - Home -
                - -
                -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-readonly-inset.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-readonly-inset.html deleted file mode 100644 index 281c393..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-readonly-inset.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - jQuery Mobile Docs - Readonly Inset Lists - - - - - - - - - -
                - -
                -

                Readonly Inset Lists

                - Home -
                - -
                -
                -

                Simple list

                - -
                  -
                • Acura
                • -
                • Audi
                • -
                • BMW
                • -
                • Cadillac
                • -
                • Ferrari
                • -
                - -

                Count bubbles

                -
                  -
                • Inbox 12
                • -
                • Outbox 0
                • -
                • Drafts 4
                • -
                • Sent 328
                • -
                • Trash 62
                • -
                - -

                Numbered list

                -
                  -
                1. The Godfather
                2. -
                3. Inception
                4. -
                5. The Good, the Bad and the Ugly
                6. -
                7. Pulp Fiction
                8. -
                9. Schindler's List
                10. -
                - -

                Divided, formatted content

                -
                  -
                • -

                  Stephen Weber

                  -

                  You've been invited to a meeting at Filament Group in Boston, MA

                  -

                  Hey Stephen, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

                  -

                  6:24PM

                  -
                • -
                • -

                  jQuery Team

                  -

                  Boston Conference Planning

                  -

                  In preparation for the upcoming conference in Boston, we need to start gathering a list of sponsors and speakers.

                  -

                  9:18AM

                  -
                • -
                - - - - -

                Icon list

                -
                  -
                • FranceFrance 4
                • -
                • GermanyGermany 4
                • -
                • Great BritainGreat Britain 0
                • -
                • FinlandFinland 12
                • -
                • NorwayNorway 328
                • -
                • United StatesUnited States 62
                • -
                - -

                Thumbnail list

                - -
                  -
                • - -

                  Broken Bells

                  -

                  Broken Bells

                  -
                • -
                • - -

                  Warning

                  -

                  Hot Chip

                  -
                • -
                • - -

                  Wolfgang Amadeus Phoenix

                  -

                  Phoenix

                  -
                • -
                - -

                Divided, filterable list

                -
                  -
                • A
                • -
                • Adam Kinkaid
                • -
                • Alex Wickerham
                • -
                • Avery Johnson
                • -
                • B
                • -
                • Bob Cabot
                • -
                • C
                • -
                • Caleb Booth
                • -
                • Christopher Adams
                • -
                - - - - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-readonly.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-readonly.html deleted file mode 100644 index 05c0e8d..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-readonly.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - jQuery Mobile Docs - Inset Readonly Lists - - - - - - - - - -
                - - - -
                -

                Readonly lists

                - Home -
                - -
                -
                -

                Here is a variety of full-width lists that are read-only. If a list has the data-role="listview" attribute, but the contents aren't linked, it will display as read-only. These look like normal lists, except they don't have a right arrow and the text is set to a smaller size to save space. - -

                Simple list

                - -
                  -
                • Acura
                • -
                • Audi
                • -
                • BMW
                • -
                • Cadillac
                • -
                • Ferrari
                • -
                - -

                Count bubbles

                -
                  -
                • Inbox 12
                • -
                • Outbox 0
                • -
                • Drafts 4
                • -
                • Sent 328
                • -
                • Trash 62
                • -
                - -

                Numbered list

                -
                  -
                1. The Godfather
                2. -
                3. Inception
                4. -
                5. The Good, the Bad and the Ugly
                6. -
                7. Pulp Fiction
                8. -
                9. Schindler's List
                10. -
                - -

                Divided, formatted content

                -
                  -
                • -

                  Stephen Weber

                  -

                  You've been invited to a meeting at Filament Group in Boston, MA

                  -

                  Hey Stephen, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

                  -

                  6:24PM

                  -
                • -
                • -

                  jQuery Team

                  -

                  Boston Conference Planning

                  -

                  In preparation for the upcoming conference in Boston, we need to start gathering a list of sponsors and speakers.

                  -

                  9:18AM

                  -
                • -
                - - - - -

                Icon list

                -
                  -
                • FranceFrance 4
                • -
                • GermanyGermany 4
                • -
                • Great BritainGreat Britain 0
                • -
                • FinlandFinland 12
                • -
                • NorwayNorway 328
                • -
                • United StatesUnited States 62
                • -
                - -

                Thumbnail list

                - -
                  -
                • - -

                  Broken Bells

                  -

                  Broken Bells

                  -
                • -
                • - -

                  Warning

                  -

                  Hot Chip

                  -
                • -
                • - -

                  Wolfgang Amadeus Phoenix

                  -

                  Phoenix

                  -
                • -
                - -

                Divided, filterable list

                -
                  -
                • A
                • -
                • Adam Kinkaid
                • -
                • Alex Wickerham
                • -
                • Avery Johnson
                • -
                • B
                • -
                • Bob Cabot
                • -
                • C
                • -
                • Caleb Booth
                • -
                • Christopher Adams
                • -
                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search-inset.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search-inset.html deleted file mode 100755 index 8fc0381..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search-inset.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - jQuery Mobile Docs - Filtered Inset Lists - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search-with-dividers.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search-with-dividers.html deleted file mode 100644 index 4440095..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search-with-dividers.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - jQuery Mobile Docs - Filtered Lists with Dividers - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search.html deleted file mode 100755 index c134f04..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-search.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - jQuery Mobile Docs - Filtered Lists - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-split-purchase.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-split-purchase.html deleted file mode 100755 index ab46e83..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-split-purchase.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - jQuery Mobile Docs - Sample Dialog - - - - - - - - - - -
                - -
                -

                Purchase?

                -
                - -
                -

                This album costs $10.99 and includes 9 tracks.

                -

                Your download will begin immediately on your mobile device and all tracks will by added your your library next time you sync.

                - Purchase album - No thanks - -
                - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-split.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-split.html deleted file mode 100755 index 6993d41..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-split.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - jQuery Mobile Docs - Split Button Lists - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-themes.html deleted file mode 100755 index 9801537..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-themes.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Lists - - - - - - - - - -
                - -
                -

                Theming lists

                - Home -
                - -
                -
                - -

                All the standard button swatches can be applied to lists. The framework assigns a default list theme swatch of "c" (silver in the default theme) and swatch "b" (blue in default theme) for dividers. Below is a default themed list.

                - - -<ul data-role="listview" data-inset="true"> - - - -

                Theming list items

                -

                The list item color scheme can be changed to any button color theme swatch by adding the data-theme attribute to the list, and setting the letter theme swatch. Here is the same list above with the "a" swatch applied.

                - - -<ul data-role="listview" data-inset="true" data-theme="d"> - - - - -

                data-theme attributes also work at the LI-level, for styling a single item.

                - - - -

                Theming dividers

                - -

                The theme for list dividers can be set by adding the data-divider-theme to the list and specifying a swatch letter. Here is an example of the same list above with swatch "d" set on the dividers.

                - - -<ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="e"> - - - - -

                Theming count bubbles

                - -

                The theme for count bubbles can be set by adding the data-count-theme to the list and specifying a swatch letter. Here is an example with swatch "e" set on the dividers.

                - - -<ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="e" data-count-theme="b"> - - - - -

                Theming icons

                - -

                The default icon for each list item is arrow-r. To override this, set the data-icon attribute on the desired list item to the name of a standard icon. To prevent icons from appearing altogether, set the data-icon attribute to "false".

                -
                -
                -<li data-icon="info"><a href="#">Notices</a></li>
                -<li data-icon="alert"><a href="#">Alerts</a></li>
                -<li data-icon="false"><a href="#">No icon</a></li>
                -
                -
                - - - -

                Theming split buttons

                - -

                For split lists which a second button, the framework default to "b" for the theme swatch (blue in the default theme) Here is a default split list:

                - - - - -<ul data-role="listview" data-inset="true" data-split-theme="a"> - -

                To specify the color swatch for the icon button on the right, add the data-split-theme to the list and specify a swatch letter. This attribute can also be added to individual split inside list items by adding a data-theme attribute to specific links (see second list item).

                - - -

                The icon for the split theme can set at the list level by adding the data-split-icon to the list and specifying a standard icon. This attribute can also be added to individual split inside list items by adding a data-icon attribute to specific links (see second list item).

                - - -<ul data-role="listview" data-inset="true" data-split-theme="d" data-split-icon="delete"> - - - - - - -

                Examples of all basic list swatches

                - -

                A swatch

                - - -

                B swatch

                - - -

                C swatch

                - - -

                D swatch

                - - -

                E swatch

                - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-thumbnails.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-thumbnails.html deleted file mode 100755 index d4d748e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-thumbnails.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists with Thumbnails - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-ul.html b/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-ul.html deleted file mode 100755 index f55703e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/lists/lists-ul.html +++ /dev/null @@ -1,98 +0,0 @@ - -Home - - - - - jQuery Mobile Docs - Basic Lists - - - - - - - - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-alt.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-alt.html deleted file mode 100644 index 3773ba9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-alt.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example - - - - - - - - - -
                -
                -

                Dialog

                - -
                - -
                -

                I'm colorful

                -

                This is a regular page, styled as a dialog. To create a dialog, just link to a normal page and include a transition and data-rel="dialog" attribute.

                - Good for you - Don't care, really -
                -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-buttons.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-buttons.html deleted file mode 100644 index 0358b6b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-buttons.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example - - - - - - - - - -
                - - - -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-overlay.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-overlay.html deleted file mode 100644 index 41bff2f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-overlay.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example - - - - - - - - - -
                -
                -

                Dialog

                -
                - -
                -

                Custom overlay

                -

                This dialog adds data-overlay-theme="e" to the page container to set the overlay swatch color.

                - I like it -
                - -
                -
                - - -
                -
                -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-success.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-success.html deleted file mode 100644 index bf66de9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-success.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example - - - - - - - - - -
                - - -
                -

                Flickr upload:

                -

                Photos posted successfully

                - - View photo page - Done -
                -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-with-select.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-with-select.html deleted file mode 100644 index eac9d54..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog-with-select.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example with Select - - - - - - - - - - -
                - -
                -

                Dialog select test

                -
                - - -
                - - - - - - - -
                - -
                -

                Sample Dialogs

                -
                - -
                - -
                -
                - - -
                - -
                - - -
                - - Real Submit Would go here -
                - Cancel -
                -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog.html deleted file mode 100644 index a8dcfbf..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dialog.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example - - - - - - - - - -
                - -
                -

                Dialog

                - -
                - -
                -

                Delete page?

                -

                This is a regular page, styled as a dialog. To create a dialog, just link to a normal page and include a transition and data-rel="dialog" attribute.

                - Sounds good - Cancel -
                -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/docs-links-urltest/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/docs-links-urltest/index.html deleted file mode 100644 index ecf6d8d..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/docs-links-urltest/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - jQuery Mobile Framework - Test URL Example - - - - - - - - - -
                -
                -

                URL Test Page

                -
                -
                -

                This is a regular page that updated the url with a different value than was requested.

                -
                -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/animals.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/animals.html deleted file mode 100644 index cc7ee82..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/animals.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - -Animals - - - - - - -
                -

                Animals

                -
                -

                All your favorites from aardvarks to zebras.

                -
                  -
                • Pets
                • -
                • Farm Animals
                • -
                • Wild Animals
                • -
                -
                -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/category.php b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/category.php deleted file mode 100644 index e698057..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/category.php +++ /dev/null @@ -1,150 +0,0 @@ - array( - name => "Animals", - description => "All your favorites from aardvarks to zebras.", - items => array( - array( - name => "Pets", - ), - array( - name => "Farm Animals", - ), - array( - name => "Wild Animals", - ) - ) - ), - colors => array( - name => "Colors", - description => "Fresh colors from the magic rainbow.", - items => array( - array( - name => "Blue", - ), - array( - name => "Green", - ), - array( - name => "Orange", - ), - array( - name => "Purple", - ), - array( - name => "Red", - ), - array( - name => "Yellow", - ), - array( - name => "Violet", - ) - ) - ), - vehicles => array( - name => "Vehicles", - description => "Everything from cars to planes.", - items => array( - array( - name => "Cars", - ), - array( - name => "Planes", - ), - array( - name => "Construction", - ) - ) - ) -); - -// Get the name of the category to display from -// the query params for the script. - -$category_name = ''; -if ( $_GET[ 'id' ] ) { - $category_name = $_GET[ 'id' ]; -} - -// Now get the category data, by name, from our in-memory -// dictionary. This is the part where a script normally fetches -// the data from a database. - -$category_obj = $category_data[ $category_name ]; - -// Now figure out how the script is being called. If it's being -// called via XmlHttpRequest, then send the data back as JSON. -// If not, then send it back as a list in an HTML document. - -if( $_SERVER[ "HTTP_X_REQUESTED_WITH" ] && $_SERVER[ "HTTP_X_REQUESTED_WITH" ] ==="XMLHttpRequest" ) { - // Data should be written out as JSON. - header("Content-type: application/json"); - if ( !$category_obj ) { - echo 'null'; - } else { - echo '{"name":"' . $category_obj[ 'name' ] - . '","description":"' . $category_obj[ 'description' ] - . '","items":['; - - $arr = $category_obj[ 'items' ]; - $count = count($arr); - for ( $i = 0; $i < $count; $i++ ) { - if ( $i ) { - echo ","; - } - echo '{"name":"' . $arr[ $i ][ 'name' ] . '"}'; - } - echo "]}"; - } -} else { - // Data should be written out as HTML. - header("Content-type: text/html"); -?> - - - - - -Vehicles - - - - - -
                -

                -
                - -

                No matches found.

                - -

                -
                  -" . $arr[ $i ][ 'name' ] . "\n"; - } -?> -
                - -
                -
                - - - - - - - -Colors - - - - - - -
                -

                Colors

                -
                -

                Fresh colors from the magic rainbow.

                -
                  -
                • Blue
                • -
                • Green
                • -
                • Orange
                • -
                • Purple
                • -
                • Red
                • -
                • Yellow
                • -
                • Violet
                • -
                -
                -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/index.html deleted file mode 100644 index 46bc19c..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/index.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -Dynamic Page Samples - - - - - - -
                -

                Categories

                - -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/sample-reuse-page-external.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/sample-reuse-page-external.html deleted file mode 100644 index f511c6a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/sample-reuse-page-external.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - -changePage JSON Sample - - - - - - - -
                -

                Categories

                -
                -

                Select a Category Below:

                - -
                -
                -
                -

                -
                -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/sample-reuse-page.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/sample-reuse-page.html deleted file mode 100644 index 74da990..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/sample-reuse-page.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - -changePage JSON Sample - - - - - - - -
                -

                Categories

                -
                -

                Select a Category Below:

                - -
                - -
                -
                -

                -
                -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/vehicles.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/vehicles.html deleted file mode 100644 index 736a288..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/dynamic-samples/vehicles.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - -Vehicles - - - - - - -
                -

                Vehicles

                -
                -

                Everything from cars to planes.

                -
                  -
                • Cars
                • -
                • Planes
                • -
                • Destruction
                • -
                -
                -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/index.html deleted file mode 100755 index 0ebbebb..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - jQuery Mobile Docs - Pages - - - - - - - - - -
                - -
                -

                Pages

                - Home -
                - -
                - -

                jQuery Mobile includes automatic AJAX page loading of external pages with back button history support, a set of animated page transitions and simple tools for displaying pages as dialogs.

                - - - - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/multipage-template.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/multipage-template.html deleted file mode 100755 index 6ca8320..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/multipage-template.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - Multi-page template - - - - - - - - - -
                - -
                -

                Multi-page

                -
                - -
                -

                One

                - -

                I have an id of "one" on my page container. I'm first in the source order so I'm shown when the page loads.

                - -

                This is a multi-page boilerplate template that you can copy to build you first jQuery Mobile page. This template contains multiple "page" containers inside, unlike a single page template that has just one page within it.

                -

                Just view the source and copy the code to get started. All the CSS and JS is linked to the jQuery CDN versions so this is super easy to set up. Remember to include a meta viewport tag in the head to set the zoom level.

                -

                You link to internal pages by referring to the ID of the page you want to show. For example, to link to the page with an ID of "two", my link would have a href="#two" in the code.

                - -

                Show internal pages:

                -

                Show page "two"

                -

                Show page "popup" (as a dialog)

                -
                - -
                -

                Page Footer

                -
                -
                - - - -
                - -
                -

                Two

                -
                - -
                -

                Two

                -

                I have an id of "two" on my page container. I'm the second page container in this multi-page template.

                -

                Notice that the theme is different for this page because we've added a few data-theme swatch assigments here to show off how flexible it is. You can add any content or widget to these pages, but we're keeping these simple.

                -

                Back to page "one"

                - -
                - -
                -

                Page Footer

                -
                -
                - - - - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-anatomy.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-anatomy.html deleted file mode 100644 index 3558595..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-anatomy.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - jQuery Mobile Docs - Anatomy of a Page - - - - - - - - - -
                - -
                -

                Anatomy of a Page

                - Home -
                - -
                -
                -

                The jQuery Mobile "page" structure is optimized to support either single pages, or local internal linked "pages" within a page.

                - -

                The goal of this model is to allow developers to create websites using best practices — where ordinary links will "just work" without any special configuration — while creating a rich, native-like experience that can't be achieved with standard HTTP requests.

                - -

                Mobile page structure

                - -

                A jQuery Mobile site must start with an HTML5 'doctype' to take full advantage of all of the framework's features. (Older devices with browsers that don't understand HTML5 will safely ignore the 'doctype' and various custom attributes.) In the 'head', references to jQuery, jQuery Mobile and the mobile theme CSS are all required to start things off. We recommend linking to the files hosted on the jQuery CDN for best performance:

                - -
                
                -<!DOCTYPE html> 
                -<html> 
                -	<head> 
                -	<title>Page Title</title> 
                -	
                -	<meta name="viewport" content="width=device-width, initial-scale=1"> 
                -
                -	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
                -	<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
                -	<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
                -</head> 
                -
                -<body> 
                -...content goes here...
                -</body>
                -</html>
                -
                - -

                Viewport meta tag

                -

                Note above that there is a meta viewport tag in the head to specify how the browser should display the page zoom level and dimensions. If this isn't set, many mobile browsers will use a "virtual" page width around 900 pixels to make it work well with exisitng desktop sites but the screens may look zoomed out and too wide. By setting the viewport attributes to content="width=device-width, initial-scale=1", the width will be set to the pixel width of the device screen.

                - -
                <meta name="viewport" content="width=device-width, initial-scale=1"> 
                - -

                These settings do not disable the user's ability to zoom the pages, which is nice from an accessibility perspective. There is a minor issue in iOS that doesn't properly set the width when changing orientations with these viewport settings, but this will hopefully be fixed a a future release. You can set other viewport values to disable zooming if required since this is part of your page content, not the library.

                - -

                Inside the body: Pages

                -

                Inside the <body> tag, each view or "page" on the mobile device is identified with an element (usually a div) with the data-role="page" attribute. View the data- attribute reference to see all the possible attributes you can add to pages.

                - -
                -
                <div data-role="page"> 
                -	...
                -</div> 
                -
                -
                - -

                Within the "page" container, any valid HTML markup can be used, but for typical pages in jQuery Mobile, the immediate children of a "page" are divs with data-roles of "header", "content", and "footer".

                - -
                -
                <div data-role="page"> 
                -	<div data-role="header">...</div> 
                -	<div data-role="content">...</div> 
                -	<div data-role="footer">...</div> 
                -</div> 
                -
                -
                - - -

                Putting it together: Basic single page template

                - -

                Putting it all together, this is the standard boilerplate page template you should start with on a project:

                - -
                
                -<!DOCTYPE html> 
                -<html> 
                -	<head> 
                -	<title>Page Title</title> 
                -	
                -	<meta name="viewport" content="width=device-width, initial-scale=1"> 
                -
                -	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
                -	<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
                -	<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
                -</head> 
                -<body> 
                -
                -<div data-role="page">
                -
                -	<div data-role="header">
                -		<h1>Page Title</h1>
                -	</div><!-- /header -->
                -
                -	<div data-role="content">	
                -		<p>Page content goes here.</p>		
                -	</div><!-- /content -->
                -
                -	<div data-role="footer">
                -		<h4>Page Footer</h4>
                -	</div><!-- /footer -->
                -</div><!-- /page -->
                -
                -</body>
                -</html>
                -
                - - View boilerplate template - - -

                Multi-page template structure

                - -

                A single HTML document can contain multiple 'pages' that are loaded together by stacking multiple divs with a data-role of "page". Each 'page' block needs a unique ID (id="foo") that will be used to link internally between 'pages' (href="#foo"). When a link is clicked, the framework will look for an internal 'page' with the ID and transition it into view.

                - -

                Here is an example of a 2 "page" site built with two jQuery Mobile divs navigated by linking to an ID placed on each page wrapper. Note that the IDs on the page wrappers are only needed to support the internal page linking, and are optional if each page is a separate HTML document. Here is what two pages look inside the body element.

                - -
                
                -<body> 
                -
                -<!-- Start of first page -->
                -<div data-role="page" id="foo">
                -
                -	<div data-role="header">
                -		<h1>Foo</h1>
                -	</div><!-- /header -->
                -
                -	<div data-role="content">	
                -		<p>I'm first in the source order so I'm shown as the page.</p>		
                -		<p>View internal page called <a href="#bar">bar</a></p>	
                -	</div><!-- /content -->
                -
                -	<div data-role="footer">
                -		<h4>Page Footer</h4>
                -	</div><!-- /footer -->
                -</div><!-- /page -->
                -
                -
                -<!-- Start of second page -->
                -<div data-role="page" id="bar">
                -
                -	<div data-role="header">
                -		<h1>Bar</h1>
                -	</div><!-- /header -->
                -
                -	<div data-role="content">	
                -		<p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my ID is beeing clicked.</p>		
                -		<p><a href="#foo">Back to foo</a></p>	
                -	</div><!-- /content -->
                -
                -	<div data-role="footer">
                -		<h4>Page Footer</h4>
                -	</div><!-- /footer -->
                -</div><!-- /page -->
                -</body>
                -
                - - View multi-page template - -

                - -

                PLEASE NOTE: Since we are using the hash to track navigation history for all the Ajax 'pages', it's not currently possible to deep link to an anchor (index.html#foo) on a page in jQuery Mobile, because the framework will look for a 'page' with an ID of #foo instead of the native behavior of scrolling to the content with that ID.

                - - -

                Conventions, not requirements

                - -

                Although the page structure outlined above is a recommended approach for a standard web app built with jQuery Mobile, the framework is very flexible with document structure. The page, header, content, and footer data-role elements are optional and are mostly helpful for providing some basic formatting and structure. The page wrapper that used to be required for auto-initialization to work is now optional for single page documents, so there isn't any required markup at all. For a web page with a custom layout, all of these structural elements can be omitted and the Ajax navigation and all widgets will work just like they do in the boilerplate structure. Behind the scenes, the framework will inject the page wrapper if it's not included in the markup because it’s needed for managing pages, but the starting markup can now be extremely simple.

                - -

                Note that in a multi-page setup, you are required to have page wrappers in your markup in order to group the content into multiple pages.

                - - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-cache.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-cache.html deleted file mode 100644 index 833af07..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-cache.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - jQuery Mobile Docs - Prefetching & caching pages - - - - - - - - - -
                - -
                -

                Prefetching & caching pages

                - Home -
                - -
                -
                - - -

                Prefetching pages

                - -

                Usually, it's a good idea to store your app's pages in several single-page templates instead of one large multi-page template. This minimizes the size of the page's DOM.

                - -

                When using single-page templates, you can prefetch pages into the DOM so that they're available instantly when the user visits them. To prefetch a page, add the data-prefetch attribute to a link that points to the page. jQuery Mobile then loads the target page in the background after the primary page has loaded and the pagecreate event has triggered. For example:

                - -
                
                -<a href="prefetchThisPage.html" data-prefetch> ... </a>
                -
                - -

                You can prefetch as many linked pages as you like. Just add data-prefetch to all the links you want to prefetch.

                - -

                Alternatively, you can prefetch a page programmatically using $.mobile.loadPage():

                - -
                
                -$.mobile.loadPage( pageUrl, { showLoadMsg: false } );
                -
                - -

                Another advantage of prefetching a page is that the user doesn't see the Ajax loading message when visiting the prefetched page. The Ajax loading message only appears if the framework hasn't finished prefetching the page by the time the link is followed.

                - -

                Prefetching pages naturally creates additional HTTP requests and uses bandwidth, so it's wise to use this feature only in situations where it's highly likely that the prefetched page will be visited. A common scenario is a photo gallery, where you can prefetch the "previous" and "next" photo pages so that the user can move quickly between photos.

                - - -

                DOM size management

                - -

                For animated page transitions to work, the pages you're transitioning from and to both need to be in the DOM. However, keeping old pages in the DOM quickly fills the browser's memory, and can cause some mobile browsers to slow down or even crash.

                - -

                jQuery Mobile therefore has a simple mechanism to keep the DOM tidy. Whenever it loads a page via Ajax, jQuery Mobile flags the page to be removed from the DOM when you navigate away from it later (technically, on the pagehide event). If you revisit a removed page, the browser may be able to retrieve the page's HTML file from its cache. If not, it refetches the file from the server. (In the case of nested list views, jQuery Mobile removes all the pages that make up the nested list once you navigate to a page that's not part of the list.)

                - -

                Pages inside a multi-page template aren't affected by this feature at all - jQuery Mobile only removes pages loaded via Ajax.

                - - -

                Caching pages in the DOM

                - -

                If you prefer, you can tell jQuery Mobile to keep previously-visited pages in the DOM instead of removing them. This lets you cache pages so that they're available instantly if the user returns to them.

                - -

                To keep all previously-visited pages in the DOM, set the domCache option on the page plugin to true, like this:

                - -
                
                -$.mobile.page.prototype.options.domCache = true;
                -
                - -

                Alternatively, to cache just a particular page, you can add the data-dom-cache="true" attribute to the page's container:

                - -
                
                -<div data-role="page" id="cacheMe" data-dom-cache="true">
                -
                - -

                You can also cache a page programmatically like this:

                - -
                
                -pageContainerElement.page({ domCache: true });
                -
                - -

                The drawback of DOM caching is that the DOM can get very large, resulting in slowdowns and memory issues on some devices. If you enable DOM caching, take care to manage the DOM yourself and test thoroughly on a range of devices.

                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-dialogs.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-dialogs.html deleted file mode 100755 index 73138f3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-dialogs.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - jQuery Mobile Docs - Dialogs - - - - - - - - - -
                - -
                -

                Dialogs

                - Home -
                - -
                -
                -

                Creating dialogs

                -

                Any page can be presented as a modal dialog by adding the data-rel="dialog" attribute to the page anchor link. When the "dialog" attribute is applied, the framework adds styles to add rounded corners, margins around the page and a dark background to make the "dialog" appear to be suspended above the page.

                - -

                - - <a href="foo.html" data-rel="dialog">Open dialog</a> - -

                - - Open dialog - - - -

                Transitions

                -

                By default, the dialog will open with a 'pop' transition. Like all pages, you can specify any page transition you want on the dialog by adding the data-transition attribute to the link. To make it feel more dialog-like, we recommend specifying a transition of "pop", "slideup" or "flip".

                - - -<a href="foo.html" data-rel="dialog" data-transition="pop">Open dialog</a> - - - - - -

                Closing dialogs

                -

                When any link is clicked within in a dialog, the framework will automatically close the dialog and transition to the requested page, just as if the dialog were a normal page. To create a "cancel" button in a dialog, just link to the page that triggered the dialog to open and add the data-rel="back" attribute to your link. This pattern of linking to the previous page is also usable in non-JS devices as well.

                -

                For JavaScript-generated links, you can simply set the href attribute to "#" and use the data-rel="back" attribute. You can also call the dialog's close() method to programmatically close dialogs, for example: $('.ui-dialog').dialog('close').

                - -

                Setting the close button text

                -

                Just like the page plugin, you can set a dialog's close button text through an option or data attribute. The option can be configured for all dialogs by binding to the mobileinit event and setting the $.mobile.dialog.prototype.options.closeBtnText property to a string of your choosing, or you can place the data attribute data-close-btn-text to configure the text from your markup.

                - -

                History & Back button behavior

                -

                Since dialogs are typically used to support actions within a page, the framework does not include dialogs in the hash state history tracking. This means that dialogs will not appear in your browsing history chronology when the Back button is clicked. For example, if you are on a page, click a link to open a dialog, close the dialog, then navigate to another page, if you were to click the browser's Back button at that point you will navigate back to the first page, not the dialog.

                - -

                Styling & theming

                -

                Dialogs can be styled with different theme swatches, just like any page by adding data-theme attributes to the header, content, or footer containers. Here is an example of a different dialog design:

                - An alternate color scheme - -

                Dialogs appear to be floating above an overlay layer. This overlay adopts the swatch A content color by default, but the data-overlay-theme attribute can be added to the page wrapper to set the overlay to any swatch letter. Here is an example of a dialog with the overlay set to swatch e:

                - Custom overlay swatch - - -

                Dialogs can also be used more like a control sheet to offer multiple buttons by removing the header:

                - Share photos... - -

                Dialog width and margins

                -

                For the sake of readability, dialogs have a default max-width of 500 pixels (plus 15px padding on each side). There is also a 10% top margin to give dialogs larger top margin on larger screens, but collapse to a small margin on smartphones. To override these styles, add the following CSS override rule to your stylesheet and tweak as needed:

                - -
                -.ui-dialog .ui-header, 
                -.ui-dialog .ui-content, 
                -.ui-dialog .ui-footer { 
                -	max-width: 500px; 
                -	margin: 10% auto 15px auto; 
                -}
                -
                - - - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-dynamic.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-dynamic.html deleted file mode 100644 index 80d70a6..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-dynamic.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - jQuery Mobile Docs - Dynamically Injecting Pages - - - - - - - - - -
                - -
                -

                Dynamically Injecting Pages

                - Home -
                - -
                -
                -

                jQuery Mobile and Dynamic Page Generation

                -

                jQuery Mobile allows pages to be pulled into the DOM dynamically via its default click hijacking behavior, or through manual calls to $.mobile.changePage(). This is great for applications that generate HTML pages/fragments on the server-side, but there are sometimes cases where an application needs to dynamically generate page content on the client-side from JSON or some other format. This may be necessary for bandwidth/performance reasons, or because it is the data format of choice for the server they are interacting with.

                -

                For applications that need to generate page markup on the client-side, it's important to know about the notifications that are triggered during a $.mobile.changePage() call because they can be used as hooks into the navigation system that will allow you to generate your content at the appropriate time.

                -

                A call to changePage() will usually trigger the following event notifications:

                -
                  -
                • pagebeforechange -
                    -
                  • Fired off before any page loading or transition.
                  • -
                  • NOTE: This event was formerly known as "beforechangepage".
                  • -
                  -
                • -
                • pagechange -
                    -
                  • Fired off after all page loading and transitions.
                  • -
                  • NOTE: this event was formerly known as "changepage".
                  • -
                  -
                • -
                • pagechangefailed -
                    -
                  • Fired off if an error has occurred while attempting to dynamically load a new page.
                  • -
                  -
                • -
                -

                These notifications are triggered on the parent container element ($.mobile.pageContainer) of pages, and will bubble all the way up to the document element and window.

                -

                For applications wishing to inject pages, or radically modify the content of an existing page, based on some non-HTML data, such as JSON or in-memory JS object, the pagebeforechange event is very useful since it gives you a hook for analyzing the URL or page element the application is being asked to load or switch to, and short-circuit the default changePage() behavior by simply calling preventDefault() on the pagebeforechange event.

                -

                To illustrate this technique, take a look at this working sample. In this sample, the main page starts off with a list of categories that the user can navigate into. The actual items in each category are stored in a JavaScript object in memory, for illustrative purposes, but the data can really come from anywhere.

                -
                
                -var categoryData = {
                -	animals: {
                -		name: "Animals",
                -		description: "All your favorites from aardvarks to zebras.",
                -		items: [
                -			{
                -				name: "Pets",
                -			},
                -			{
                -				name: "Farm Animals",
                -			},
                -			{
                -				name: "Wild Animals",
                -			}
                -		]
                -	},
                -	colors: {
                -		name: "Colors",
                -		description: "Fresh colors from the magic rainbow.",
                -		items: [
                -			{
                -				name: "Blue",
                -			},
                -			{
                -				name: "Green",
                -			},
                -			{
                -				name: "Orange",
                -			},
                -			{
                -				name: "Purple",
                -			},
                -			{
                -				name: "Red",
                -			},
                -			{
                -				name: "Yellow",
                -			},
                -			{
                -				name: "Violet",
                -			}
                -		]
                -	},
                -	vehicles: {
                -		name: "Vehicles",
                -		description: "Everything from cars to planes.",
                -		items: [
                -			{
                -				name: "Cars",
                -			},
                -			{
                -				name: "Planes",
                -			},
                -			{
                -				name: "Construction",
                -			}
                -		]
                -	}
                -};
                -
                -

                The application uses links with urls that contain a hash that tells the application what category items to display:

                -
                -
                -  	<h2>Select a Category Below:</h2>
                -  	<ul data-role="listview" data-inset="true">
                -    	<li><a href="#category-items?category=animals">Animals</a></li>
                -    	<li><a href="#category-items?category=colors">Colors</a></li>
                -    	<li><a href="#category-items?category=vehicles">Vehicles</a></li>
                -    </ul>
                -
                -
                -

                Internally, when the user clicks on one of these links, the application intercepts the internal $.mobile.changePage() call that is invoked by the frameworks' default link hijacking behavior. It then analyzes the URL for the page about to be loaded, and then decides whether or not it should handle the loading itself, or to let the normal changePage() code handle things.

                -

                The application was able to insert itself into the changePage() flow by binding to the "pagebeforechange" event at the document level:

                -
                -
                -// Listen for any attempts to call changePage().
                -$(document).bind( "pagebeforechange", function( e, data ) {
                -
                -	// We only want to handle changePage() calls where the caller is
                -	// asking us to load a page by URL.
                -	if ( typeof data.toPage === "string" ) {
                -
                -		// We are being asked to load a page by URL, but we only
                -		// want to handle URLs that request the data for a specific
                -		// category.
                -		var u = $.mobile.path.parseUrl( data.toPage ),
                -			re = /^#category-item/;
                -
                -		if ( u.hash.search(re) !== -1 ) {
                -
                -			// We're being asked to display the items for a specific category.
                -			// Call our internal method that builds the content for the category
                -			// on the fly based on our in-memory category data structure.
                -			showCategory( u, data.options );
                -
                -			// Make sure to tell changePage() we've handled this call so it doesn't
                -			// have to do anything.
                -			e.preventDefault();
                -		}
                -	}
                -});
                -
                -
                -

                So why listen at the document level? In short, because of deep-linking. We need our binding to be active before the jQuery Mobile framework initializes and decides how to process the initial URL that invoked the application.

                -

                When the callback for the "pagebeforechange" binding is invoked, the 2nd argument to the callback will be a data object that contains the arguments that were passed to the initial $.mobile.changePage() call. The properties of this object are as follows:

                -
                  -
                • toPage -
                    -
                  • Can be either a jQuery collection object containing the page to be transitioned to, *OR* a URL reference for a page to be loaded/transitioned to.
                  • -
                  -
                • -
                • options -
                    -
                  • Object containing the options that were passed in by the caller of the $.mobile.changePage() function.
                  • -
                  • A list of the options can be found here.
                  • -
                  -
                • -
                -

                For our sample application, we are only interested in changePage() calls where URLs are initially passed in, so the first thing our callback does is check the type for the toPage. Next, with the help of some URL parsing utilities, it checks to make sure if the URL contains a hash that we are interested in handling ourselves. If so, it then calls an application function called showCategory() which will dynamically create the content for the category specified by the URL hash, and then it calls preventDefault() on the event.

                -

                Calling preventDefault() on a pagebeforechange event causes the originating $.mobile.changePage() call to exit without performing any work. Calling the preventDefault() method on the event is the equivalent of telling jQuery Mobile that you have handled the changePage() request yourself.

                -

                If preventDefault() is not called, changePage() will continue on processing as it normally does. One thing to point out about the data object that is passed into our callback, is that any changes you make to the toPage property, or options properties, will affect changePage() processing if preventDefault() is not called. So for example, if I wanted to redirect or map a specific URL to another internal/external page, my callback could simply set the data.toPage property in the callback to the URL or DOM element of the page to redirect to. Likewise, I could set, or un-set any option from within my callback, and changePage() would use the new settings.

                -

                So now that we know how to intercept changePage() calls, let's take a closer look at how this sample actually generates the markup for a page. Our example actually uses, or I should say, re-uses the same page to display each of the categories. Each time one of our special links is clicked, the function showCategory() gets invoked:

                -
                
                -// Load the data for a specific category, based on
                -// the URL passed in. Generate markup for the items in the
                -// category, inject it into an embedded page, and then make
                -// that page the current active page.
                -function showCategory( urlObj, options )
                -{
                -	var categoryName = urlObj.hash.replace( /.*category=/, "" ),
                -
                -		// Get the object that represents the category we
                -		// are interested in. Note, that at this point we could
                -		// instead fire off an ajax request to fetch the data, but
                -		// for the purposes of this sample, it's already in memory.
                -		category = categoryData[ categoryName ],
                -
                -		// The pages we use to display our content are already in
                -		// the DOM. The id of the page we are going to write our
                -		// content into is specified in the hash before the '?'.
                -		pageSelector = urlObj.hash.replace( /\?.*$/, "" );
                -
                -	if ( category ) {
                -		// Get the page we are going to dump our content into.
                -		var $page = $( pageSelector ),
                -
                -			// Get the header for the page.
                -			$header = $page.children( ":jqmData(role=header)" ),
                -
                -			// Get the content area element for the page.
                -			$content = $page.children( ":jqmData(role=content)" ),
                -
                -			// The markup we are going to inject into the content
                -			// area of the page.
                -			markup = "<p>" + category.description + "</p><ul data-role='listview' data-inset='true'>",
                -
                -			// The array of items for this category.
                -			cItems = category.items,
                -
                -			// The number of items in the category.
                -			numItems = cItems.length;
                -
                -		// Generate a list item for each item in the category
                -		// and add it to our markup.
                -		for ( var i = 0; i < numItems; i++ ) {
                -			markup += "<li>" + cItems[i].name + "</li>";
                -		}
                -		markup += "</ul>";
                -
                -		// Find the h1 element in our header and inject the name of
                -		// the category into it.
                -		$header.find( "h1" ).html( category.name );
                -
                -		// Inject the category items markup into the content element.
                -		$content.html( markup );
                -
                -		// Pages are lazily enhanced. We call page() on the page
                -		// element to make sure it is always enhanced before we
                -		// attempt to enhance the listview markup we just injected.
                -		// Subsequent calls to page() are ignored since a page/widget
                -		// can only be enhanced once.
                -		$page.page();
                -
                -		// Enhance the listview we just injected.
                -		$content.find( ":jqmData(role=listview)" ).listview();
                -
                -		// We don't want the data-url of the page we just modified
                -		// to be the url that shows up in the browser's location field,
                -		// so set the dataUrl option to the URL for the category
                -		// we just loaded.
                -		options.dataUrl = urlObj.href;
                -
                -		// Now call changePage() and tell it to switch to
                -		// the page we just modified.
                -		$.mobile.changePage( $page, options );
                -	}
                -}
                -
                -

                In our sample app, the hash of the URL we handle contains 2 parts:

                -
                
                -#category-items?category=vehicles
                -
                -

                The first part, before the '?' is actually the id of the page to write content into, the part after the '?' is info the app uses to figure out what data it should use when generating the markup for the page. The first thing showCategory() does is deconstruct this hash to extract out the id of the page to write content into, and the name of the category it should use to get the correct set of data from our in-memory JavaScript category object. After it figures out what category data to use, it then generates the markup for the category, and then injects it into the header and content area of the page, wiping out any other markup that previously existed in those elements.

                -

                After it injects the markup, it then calls the appropriate jQuery Mobile widget calls to enhance the list markup it just injected. This is what turns the normal list markup into a fully styled listview with all its behaviors.

                -

                Once that's done, it then calls $.mobile.changePage(), passing it the DOM element of the page we just modified, to tell the framework that it wants to show that page.

                -

                Now an interesting problem here is that jQuery Mobile typically updates the browser's location hash with the URL associated with the page it is showing. Because we are re-using the same page for each category, this wouldn't be ideal, because the URL for that page has no specific category info associated with it. To get around this problem, showCategory() simply sets the dataUrl property on the options object it passes into changePage() to tell it to display our original URL instead.

                -

                That's the sample in a nutshell. It should be noted that this particular sample and its usage is not a very good example of an app that degrades gracefully when JavaScript is turned off. That means it probably won't work very well on C-Grade browsers. We will be posting other examples that demonstrate how to degrade gracefully in the future. Check this page for updates.

                -
                - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-links.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-links.html deleted file mode 100755 index b82f83a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-links.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - jQuery Mobile Docs - Linking Pages - - - - - - - - - -
                - -
                -

                Linking pages

                - Home -
                - -
                -
                -

                Linking pages

                - -

                jQuery Mobile is designed to work with simple page linking conventions. Essentially, you can link pages and assets as you normally would, and jQuery Mobile will automatically handle page requests in a single-page model, using Ajax when possible. When Ajax isn't possible (such as a non-same-domain url, or if specified using certain attributes on the link), a normal http request is used instead.

                - -

                The goal of this model is to allow developers to create websites using best practices — where ordinary links will "just work" without any special configuration — while creating a rich, native-like experience that can't be achieved with standard HTTP requests.

                - -

                Default link behavior: Ajax

                - -

                To enable animated page transitions, all links that point to an external page (ex. products.html) will be loaded via Ajax. To do this unobtrusively, the framework parses the link's href to formulate an Ajax request (Hijax) and displays the loading spinner. All this happens automatically by jQuery Mobile.

                - -

                If the Ajax request is successful, the new page content is added to the DOM, all mobile widgets are auto-initialized, then the new page is animated into view with a page transition.

                - -

                If the Ajax request fails, the framework will display a small error message overlay (styled in the "e" swatch) that disappears after a brief time so this doesn't break the navigation flow. View an example of the error message.

                - -

                Note: that you cannot link to multipage document with Ajax navigation active because the framework will only load the first page it finds, not the full set of internal pages. In these cases, you must link without Ajax (see next section) for a full page refresh to prevent potential hash collisions. There is currently a subpage plugin that makes it possible to load in multi-page documents.

                - - -

                Linking without Ajax

                - -

                Links that point to other domains or that have rel="external", data-ajax="false" or target attributes will not be loaded with Ajax. Instead, these links will cause a full page refresh with no animated transition. Both attributes (rel="external" and data-ajax="false") have the same effect, but a different semantic meaning: rel="external" should be used when linking to another site or domain, while data-ajax="false" is useful for simply opting a page within your domain from being loaded via Ajax. Because of security restrictions, the framework always opts links to external domains out of the Ajax behavior.

                - -

                Note: When building a jQuery Mobile application where the Ajax navigation system is disabled globally or frequently disabled on individual links, we recommend disabling the $.mobile.pushStateEnabled global configuration option to avoid inconsistent navigation behavior in some browsers.

                - - - -

                Linking within a multi-page document

                - -

                A single HTML document can contain one or many 'page' containers simply by stacking multiple divs with a data-role of "page". This allows you to build a small site or application within a single HTML document; jQuery Mobile will simply display the first 'page' it finds in the source order when the page loads.

                - -

                If a link in a multi-page document points to an anchor (#foo), the framework will look for a page wrapper with that ID (id="foo"). If it finds a page in the HTML document, it will transition the new page into view. You can seamlessly navigate between local, internal "pages" and external pages in jQuery Mobile. Both will look the same to the end user except that external pages will display the Ajax spinner while loading. In either situation, jQuery Mobile updates the page's URL hash to enable Back button support, deep-linking and bookmarking.

                - -

                It's important to note that if you are linking from a mobile page that was loaded via Ajax to a page that contains multiple internal pages, you need to add a rel="external" or data-ajax="false" to the link. This tells the framework to do a full page reload to clear out the Ajax hash in the URL. This is critical because Ajax pages use the hash (#) to track the Ajax history, while multiple internal pages use the hash to indicate internal pages so there will be conflicts in the hash between these two modes.

                - -

                For example, a link to a page containing multiple internal pages would look like this:

                - - <a href="multipage.html" rel="external">Multi-page link</a> - - - -

                "Back" button links

                -

                If you use the attribute data-rel="back" on an anchor, any clicks on that anchor will mimic the back button, going back one history entry and ignoring the anchor's default href. This is particularly useful when generating "back" buttons with JavaScript, such as a button to close a dialog. When using this feature in your source markup, although browsers that support this feature will not use the specified href attribute, be sure to still provide a meaningful value that actually points to the URL of the referring page to allow the feature to work for users in C-Grade browsers. If users can reach this page from more than one referring pages, specify a sensible href so that the navigation remains logical for all users. Also, please keep in mind that if you just want a reverse transition without actually going back in history, you should use the data-direction="reverse" attribute instead.

                - - -

                Redirects and linking to directories

                - -

                When linking to directory indexes (such as href="typesofcats/" instead of href="typesofcats/index.html"), you must provide a trailing slash. This is because jQuery Mobile assumes the section after the last "/" character in a url is a filename, and it will remove that section when creating base urls from which future pages will be referenced.

                - -

                However, you can work around this issue by returning your page div with a data-url attribute already specified. When you do this, jQuery Mobile will use that attribute's value for updating the URL, instead of the url used to request that page. This also allows you to return urls that change as the result of a redirect, for example, you might post a form to "/login.html" but return a page from the url "/account" after a successful submission. This tool allows you to take control of the jQuery Mobile history stack in these situations. Here's an example:

                - -

                The following link points to "docs-links-urltest/index.html": Test Link which is a directory with an index page. The return page will update the hash as "/docs/pages/docs-links-urltest/" with a trailing slash. This is done via the data-url attribute in that page's source. Keep in mind that the value will replace the entire hash, and it is up to you to replace it with a URL that actually resolves to the correct page when requested via refresh or deep link.

                - -

                Learn more about the technical details of the navigation model and Ajax, hashes and history in jQuery mobile.

                - - - -

                Link examples

                -

                All standard HTML link types are supported in jQuery Mobile in addition to the types outlined above. Here is a sampler of many common link types:

                - - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-navmodel.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-navmodel.html deleted file mode 100644 index 13a9a72..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-navmodel.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - jQuery Mobile Docs - Ajax, hashes & history - - - - - - - - - -
                - -
                -

                Ajax, hashes & history

                - Home -
                - -
                -
                -

                jQuery Mobile's navigation model

                - -

                A "page" in jQuery Mobile consists of an element (usually a div) with a data-role attribute set to "page", which generally contains div elements with roles of "header", "content", and "footer", each containing common markup, forms, and custom jQuery Mobile widgets.

                - -

                The basic workflow with page loading is as follows: first, a page is requested with a normal HTTP request, and subsequent "pages" are then requested and injected into that page's DOM. Because of this, the DOM may have a number of "pages" in it at a time, each of which can be re-visited by linking to its data-url attribute.

                - -

                When a url is initially requested, there may be one or more "pages" in the response, and only the first one will be shown. The advantage of storing more than one "page" is that it allows you to pre-fetch static pages that are likely to be visited.

                - -

                Hash and Ajax driven page navigation

                - -

                By default all navigation within jQuery Mobile is based on changes and updates to location.hash. Whenever possible, page changes will use a smooth transition between the current "page" and the next, whether it is either already present in the DOM, or is automatically loaded via Ajax.

                - -

                Hash values created by jQuery Mobile are normalized as full paths relative to the URL of the first "real" page that was loaded. The hash is always maintained as a valid URL, so any "page" in jQuery mobile can be bookmarked or referenced in a link. To retrieve a non-hash-based URL, simply remove the # from the address and refresh the page.

                - -

                In general, hash changes are created whenever a link is clicked in jQuery mobile. When a link is clicked, jQuery mobile will make sure that the link is referencing a local URL, and if so, it'll prevent the link's default click behavior from occurring and request the referenced url via Ajax instead. When the page returns successfully, it will set the location.hash to the new page's relative url.

                - -

                Hash changes that occur independently of a click, such as when a user clicks the back button, are handled through the hashchange event, which is bound to the window object using Ben Alman's hashchange special event plugin (included in jQuery Mobile). When a hash change occurs (and also when the first page loads), the hashchange event handler will send the location.hash to the $.mobile.changePage() function, which in turn either loads or reveals the referenced page.

                - - -

                Once the referenced page is present in the DOM, the $.mobile.changePage() function applies a transition between the current active page and the new page. Page transitions happen through adding and removing classes that apply CSS animations. For example, in a slide-left transition, the exiting page is given the classes "slideleft" and "out", and the entering page is given the classes "slideleft" and "in", as well as a class of "ui-page-active" to mark it as the new "active" page being viewed. When the animation is complete, the "in" and "out" classes are removed, and the exited page loses its "ui-page-active" class.

                - -

                pushState plugin

                - -

                There is an optional feature that converts the longer, hash-based URLs mentioned in the previous section into the full document path which is cleaner and makes the Ajax tracking transparent in the URL structure. This is built as an enhancement on top of the hash-based URL system for Ajax links. Note that despite the name, this feature technically converts hash-based urls by using history.replaceState (not history.pushState) in the current release because this works more reliably across our target platforms. For browsers that do not support history.replaceState, or if this feature is disabled, hash-based URLs will be used instead.

                - -

                Since the plugin initializes when the DOM is fully loaded you can enable and disable it manually by setting $.mobile.pushStateEnabled global configuration option to false anytime before document ready.

                - -
                -

                Important: rel="external" and $.mobile.ajaxEnabled=false

                -

                Slightly different implementations of the replaceState API in various browsers can cause odd behavior in specific scenarios. For example, some browser implementations (including desktop browsers) implement the popstate event differently when linking externally and moving back to a page onto which state has already been pushed/replaced. When building a jQuery Mobile application where the ajax navigation is being explicitly disabled, either through the frequent use of rel="external" on links or by disabling Ajax navigation completely via the $.mobile.ajaxEnabled=false, we recommend disabling the pushState feature to fall back to the hash based navigation for more consistent behavior.

                -
                - -

                changePage

                - -

                Within the framework, page changes - both for pages already in the DOM and for pages that need to be loaded via Ajax - use the $.mobile.changePage() function. $.mobile.changePage() contains all of the logic for finding pages to transition to and from, and how to handle various response conditions such as a page not found. $.mobile.changePage() can be called externally and accepts the following arguments (to, transition, back, changeHash). The to argument can accept either a string (such as a file url or local element's ID), an array (in which the first array item is any local page you'd like to transition from, and the second array item is the to page), or an object (with expected properties: url, type ("get" or "post"), and data (for serialized parameters)), the latter of which is useful for loading pages that expect form data. The transition argument accepts a string representing a named transition, such as "slide". The back argument accepts a boolean representing whether the transition should go forward or in reverse. Lastly, the changeHash argument accepts a boolean for whether you'd like the url to be updated upon a successful page change.

                - -

                The $.mobile.changePage() function is used in a number of places in jQuery Mobile. For example, when a link is clicked, its href attribute is normalized and then $.mobile.changePage() handles the rest. When forms are submitted, jQuery Mobile simply gathers a few of the form's attributes, serializes its data, and once again, $.mobile.changePage() is used to handle the submission and response. Also, links that create dialogs use $.mobile.changePage()to open a referenced page without updating the hash, which is useful for keeping dialogs out of history tracking.

                - -

                Base element

                - -

                Another key ingredient to jQuery Mobile's page navigation model is the base element, which is injected into the head and modified on every page change to ensure that any assets (images, CSS, JS, etc.) referenced on that page will be requested from a proper path. In browsers that don't support dynamic updates to the base element (such as Firefox 3.6), jQuery Mobile loops through all of the referenced assets on the page and prefixes their href and src attributes with the base path.

                - - -

                Developer explanation of base url management:

                - -

                jQuery Mobile manages http requests using a combination of generated absolute URL paths and manipulating a generated <base> element's href attribute. The combination of these two approaches allows us to create URLs that contain full path information for loading pages, and a base element to properly direct asset requests made by those loaded pages (such as images and stylesheets).

                - -

                TODO: update description of internal base and urlHistory objects

                - -

                Data-url storage

                - -

                The navigation model maintains a data-url attribute on all data-role="page" elements. This data-url attribute is used to track the origin of the page element. Pages embedded within the main application document all have their data-url parameter set to the ID of their element with data-role="page". The only exception to this is the first-page in the document. The first-page is special because it can be addressed by its id if it has one, or by the document or base URL (with no hash fragment).

                - -

                Pages that are external to the application document get pulled in dynamically via ajax, and their data-url is set to the site relative path to the external page. If you are running in an environment where loading an external page from a different domain is allowed, then the data-url is set to the absolute URL.

                - -

                Auto-generated pages and sub-hash urls

                - -

                Some plugins may choose to dynamically break a page's content into separate navigable pages, which can then be reached via deep links. One example of this would be the Listview plugin, which will break a nested UL (or OL) into separate pages, which are each given a data-url attribute so they can be linked to like any normal "page" in jQuery Mobile. However, in order to link to these pages, the page that generates them must first be requested from the server. To make this work, pages that are auto-generated by plugins use the following special data-url structure: - <div data-url="page.html&subpageidentifier">

                - -

                So, for example, a page generated by the listview plugin may have a data-url attribute like this: data-url="artists.html&ui-page=listview-1"

                - -

                When a page is requested, jQuery Mobile knows to split the URL at "&ui-page" and make an HTTP request to the portion of the URL before that key. In the case of the listview example mentioned above, the URL would look like this: http://example.com/artists.html&ui-page=listview-1 - ...and jQuery Mobile would request artists.html, which would then generate its sub-pages, creating the div with data-url="artists.html&ui-page=listview-1", which it will then display as the active page.

                - -

                Note that the data-url attribute of the element contains the full URL path, not just the portion after &ui-page=. This allows jQuery Mobile to use a single consistent mechanism that matches URLs to page data-url attributes.

                - -

                Cases when Ajax navigation will not be used

                - -

                Under certain conditions, normal http requests will be used instead of Ajax requests. One case where this is true is when linking to pages on external websites. You can also specify that a normal http request be made through the following link attributes:

                - -
                  -
                • rel=external

                • -
                • target (with any value, such as "_blank")

                • - -

                Form submissions

                - -

                Form submissions are handled automatically through the navigation model as well. Visit the forms section for more information.

                - -

                Using the Application Cache

                - -

                When using the application cache with jQuery Mobile there is at least one important issue to consider. Some browsers, when making requests to the cache will report an http status of 0 on success. This causes jQuery Core's $.ajax to trigger error handlers. The suggested workaround for users leveraging the application cache is to use a jQuery ajax pre-filter. Something like the following (credit to jammus for the snippet):

                - -
                
                -
                -$.ajaxPrefilter( function(options, originalOptions, jqXHR) {
                -	if ( applicationCache &&
                -		 applicationCache.status != applicationCache.UNCACHED &&
                -		 applicationCache.status != applicationCache.OBSOLETE ) {
                -		 // the important bit
                -		 options.isLocal = true;
                -	}
                -});
                -
                -			
                - -

                Setting isLocal to true for your ajax requests will alert jQuery Core that it should handle the 0 return values differently. Local requests exhibit similar behavior (ie 0 statuses), and Core will then fall back to determining success based on the presence of content in the xhr responseText attribute.

                - -

                One important issue to note with the above is that it will set isLocal to true for all requests made via ajax regardless of whether they are in the manifest or not so long as the cache is valid. This works for now because Core only consults the isLocal value when the status is in fact 0 which doesn't affect uncached results. There is no long term guarantee that isLocal will remain isolated in its purpose for handling 0 status values. If that changes it may break your application.

                - -

                Known limitations

                - -

                The non-standard environment created by jQuery Mobile's page navigation model introduces some conditions of which you should be aware when building pages:

                - -
                  -
                • When linking to directories, without a filename url, (such as href="typesofcats/" instead of href="typesofcats/index.html"), you must provide a trailing slash. This is because jQuery Mobile assumes the section after the last "/" character in a url is a filename, and it will remove that section when creating base urls from which future pages will be referenced.

                • -
                • Documents loaded via Ajax will select the first page in the DOM of that document to be loaded as a JQM page element. As a result the developer must make sure to manage the ID attributes of the loaded page and child elements to prevent confusion when manipulating the DOM.

                • -
                • If you link to multipage document, you must use a data-ajax="false" attribute on the link to cause a full page refresh due to the limitation above where we only load the first page node in an Ajax request due to potential hash collisions. There is currently a subpage plugin that makes it possible to load in multi-page documents.

                • -
                • Any unique assets referenced by pages in a jQuery Mobile-driven site should be placed inside the "page" element (the element with a data-role attribute of "page"). For example, links to styles and scripts that are specific to a particular page can be referenced inside that div. However, a better approach is to use jQuery Mobile's page events to trigger specific scripting when certain pages load. Note: you can return a page from the server with a data-url already specified in the markup, and jQuery Mobile will use that for the hash update. This allows you to ensure directory paths resolve with a trailing slash and will therefore be used in the base url path for future requests.

                • -
                • Conversely, any non-unique assets (those used site-wide) should be referenced in the <head> section of an HTML document, or at the very least, outside of the "page" element, to prevent running scripts more than once.

                • -
                • The "ui-page" key name used in sub-hash url references can be set to any value you'd like, so as to blend into your URL structure. This value is stored in jQuery.mobile.subPageUrlKey.

                • -
                • When traveling back to a previously loaded jQuery Mobile document from an external or internal document with the push state plugin enabled, some browsers load and trigger the popstate event on the wrong document or for the wrong reasons (two edge cases recorded so far). If you are regularly linking to external documents and find the application behaving erratically try disabling pushstate support.

                • -
                • jQuery Mobile does not support query parameter passing to internal/embedded pages but there are two plugins that you can add to your project to support this feature. There is a lightweight page params plugin and a more fully featured jQuery Mobile router plugin for use with backbone.js or spine.js.

                • -
                • Since we use the URL hash to preserve Back button behavior, using page anchors to jump down to a position on the page isn't supported by using the traditional anchor link (#foo). Use the silentScroll method to scroll to a particular Y position without triggering scroll event listeners. You can pass in a yPos arguments to scroll to that Y location.

                • -
                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-scripting.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-scripting.html deleted file mode 100644 index 230dc0e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-scripting.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - jQuery Mobile Docs - Scripting pages - - - - - - - - - -
                - -
                -

                Scripting pages

                - Home -
                - -
                -
                -

                Since jQuery Mobile uses an Ajax-powered navigation system, there are a few helpful things to know when writing scripts that manipulate your content. You can explore the mobile API in more detail by reading up on global configuration options, events, and methods or dig into the technical details of the Ajax navigation model.

                - -

                Scripts & styles in the head

                - -

                When the user clicks a link in a jQuery Mobile-driven site, the default behavior of the navigation system is to use that link's href to formulate an Ajax request (instead of allowing the browser's default link behavior of requesting that href with full page load). When that Ajax request goes out, the framework will receive its entire text content, but it will only inject the contents of the response's body element (or more specifically the data-role="page" element, if it's provided), meaning nothing in the head of the page will be used (with the exception of the page title, which is fetched specifically).

                - -

                This means that any scripts and styles referenced the head of a page won't have any effect when a page is loaded via Ajax, but they will execute if the page is requested normally via HTTP. When scripting jQuery Mobile sites, both scenarios need to be considered. The reason that the head of a page is ignored when requested via Ajax is that the potential of re-executing the same JavaScript is very high (it's common to reference the same scripts in every page of a site). Due to the complexity of attempting to work around that issue, we leave the task of executing page-specific scripts to the developer, and assume head scripts are only expected to execute once per browsing session.

                - -

                The simplest approach when building a jQuery Mobile site is to reference the same set of stylesheets and scripts in the head of every page. If you need to load in specific scripts or styles for a particular page, we recommend binding logic to the pagecreate event (details below) to run necessary code when a specific page is created (which can be determined by its id attribute, or a number of other ways). Following this approach will ensure that the code executes if the page is loaded directly or is pulled in and shown via Ajax.

                - -

                Another approach for page-specific scripting would be to include scripts at the end of the body element. If you include your custom scripting this way, be aware that these scripts will execute when that page is loaded via Ajax or regular HTTP, so if these scripts are the same on every page, you'll likely run into problems. If you're including scripts this way, we'd recommend enclosing your page content in a data-role="page" element, and placing scripts that are referenced on every page outside of that element. Scripts that are unique to that page can be placed in that element, to ensure that they execute when the page is fetched via Ajax.

                - -

                pagecreate = DOM ready

                - -

                One of the first things people learn in jQuery is to use the $(document).ready() function for executing DOM-specific code as soon as the DOM is ready (which often occurs long before the onload event). However, in jQuery Mobile site and apps, pages are requested and injected into the same DOM as the user navigates, so the DOM ready event is not as useful, as it only executes for the first page. To execute code whenever a new page is loaded and created in jQuery Mobile, you can bind to the pagecreate event.

                - -

                The pagecreate event is triggered on a page when it is initialized, right after initialization occurs. Most of jQuery Mobile's official widgets auto-initialize themselves based on this event, and you can set up your code to do the same.

                -
                
                -$( document ).delegate("#aboutPage", "pagecreate", function() {
                -  alert('A page with an ID of "aboutPage" was just created by jQuery Mobile!');
                -});
                -
                - -

                If you'd like to manipulate a page's contents before the pagecreate event fires and widgets are auto-initialized, you can instead bind to the pagebeforecreate event:

                - -
                
                -$( document ).delegate("#aboutPage", "pagebeforecreate", function() {
                -  alert('A page with an ID of "aboutPage" is about to be created by jQuery Mobile!');
                -});
                -
                - -

                Changing pages

                -

                If you want to change the current active page with JavaScript, you can use the changePage method. There are a lot of methods and properties that you can set when changing pages, but here are two simple examples:

                -
                
                -//transition to the "about us" page with a slideup transition 			
                -$.mobile.changePage( "about/us.html", { transition: "slideup"} );	
                -
                -//transition to the "search results" page, using data from a form with an ID of "search"" 		
                -$.mobile.changePage( "searchresults.php", {
                -	type: "post", 
                -	data: $("form#search").serialize()
                -});		
                -
                - -

                Loading pages

                -

                To load an external page, enhance its content, and insert it into the DOM, use the loadPage method. There are a lot of methods and properties that you can set when loading pages, but here is a simple example:

                -
                
                -//load the "about us" page into the DOM			
                -$.mobile.loadPage( "about/us.html" );	
                -
                - -

                Enhancing new markup

                -

                The page plugin dispatches a pagecreate event, which most widgets use to auto-initialize themselves. As long as a widget plugin script is referenced, it will automatically enhance any instances of the widgets it finds on the page.

                -

                However, if you generate new markup client-side or load in content via Ajax and inject it into a page, you can trigger the create event to handle the auto-initialization for all the plugins contained within the new markup. This can be triggered on any element (even the page div itself), saving you the task of manually initializing each plugin (listview button, select, etc.).

                -

                For example, if a block of HTML markup (say a login form) was loaded in through Ajax, trigger the create event to automatically transform all the widgets it contains (inputs and buttons in this case) into the enhanced versions. The code for this scenario would be:

                -
                $( ...new markup that contains widgets... ).appendTo( ".ui-page" ).trigger( "create" );
                -
                - -

                Create vs. refresh: An important distinction

                -

                Note that there is an important difference between the create event and refresh method that some widgets have. The create event is suited for enhancing raw markup that contains one or more widgets. The refresh method should be used on existing (already enhanced) widgets that have been manipulated programmatically and need the UI be updated to match.

                - -

                For example, if you had a page where you dynamically appended a new unordered list with data-role=listview attribute after page creation, triggering create on a parent element of that list would transform it into a listview styled widget. If more list items were then programmatically added, calling the listview’s refresh method would update just those new list items to the enhanced state and leave the existing list items untouched.

                - - -

                Scrolling to a position within a page

                -

                Since we use the URL hash to preserve Back button behavior, using page anchors to jump down to a position on the page isn't supported by using the traditional anchor link (#foo). Use the silentScroll method to scroll to a particular Y position without triggering scroll event listeners. You can pass in a yPos arguments to scroll to that Y location. For example:

                -
                
                -//scroll to Y 300px 			
                -$.mobile.silentScroll(300);	
                -
                - -

                Binding to mouse and touch events

                -

                One inportant consideration in mobile is handling mouse and touch events. These events differ significantly across mobile platforms, but the common denominator is that click events will work everywhere, but usually after a significant delay of 500-700ms. This delay is necessary for the browser to wait for double tap, scroll and extended hold tap events to potentially occur. To avoid this delay, it's possible to bind to touch events (ex. touchstart) but the issue with this approach is that some mobile platforms (WP7, Blackberry) don't support touch. To compound this issue, some platforms will emit both touch and mouse events so if you bind to both types, duplicate events will be fired for a single interaction.

                -

                Our solution is to create a set of virtual events that normalize mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. This still retains the order of event firing in the traditional mouse environment, should multiple handlers be registered on the same element for different events. The virtual mouse system exposes the following virtual events to jQuery bind methods: vmouseover, vmousedown, vmousemove, vmouseup, vclick, and vmousecancel

                - - -

                Passing parameters between pages

                -

                jQuery Mobile does not support query parameter passing to internal/embedded pages. For example, if the framework sees a link to "#somePage?someId=1" it interpret that as "#somePage" and navigate to the internal page div with an ID of somePage and apply a data-url of #somePage?someId=1 to that page container. Subsequent calls to other params such as "#somePage?someId=2" will find the same div because jQuery Mobile refers to the data-url on the div which is only set once and will remain at #somePage?someId=1.

                - -

                There are two plugins that you can add to your project if query parameters are needed between pages. There is a lightweight page params plugin and a more fully featured jQuery Mobile router plugin for use with backbone.js or spine.js.

                - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-template.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-template.html deleted file mode 100755 index ad8522f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-template.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - Single page template - - - - - - - -
                - -
                -

                Single page

                -
                - -
                -

                This is a single page boilerplate template that you can copy to build you first jQuery Mobile page. Each link or form from here will pull a new page in via Ajax to support the animated page transitions.

                -

                Just view the source and copy the code to get started. All the CSS and JS is linked to the jQuery CDN versions so this is super easy to set up. Remember to include a meta viewport tag in the head to set the zoom level.

                -

                This template is standard HTML document with a single "page" container inside, unlike a multi-page template that has multiple pages within it. We strongly recommend building your site or app as a series of separate pages like this because it's cleaner, more lightweight and works better without JavaScript.

                -
                - -
                -

                Footer content

                -
                - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-titles.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-titles.html deleted file mode 100644 index 4744729..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-titles.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - jQuery Mobile Docs - Page titles - - - - - - - - - -
                - -
                -

                Page titles

                - Home -
                - -
                -
                - -

                Titles in Ajax navigation

                - -

                When you load the first page of a jQuery Mobile based site, then click a link or submit a form, Ajax is used to pull in the content of the requested page. Having both pages in the DOM is essential to enable the animated page transitions, but one downside of this approach is that the page title is always that of the first page, not the subsequent page you’re viewing.

                -

                To remedy this, jQuery Mobile automatically parses the title of the page pulled via Ajax and changes the title attribute of the parent document to match.

                - -

                Titles in multi-page templates

                - -

                On multi-page documents, we follow a similiar convention, but since all the pages share a common title, we have a data-title attribute that can be added to each page container within a multi-page template to manually define a title. The title of the HTML document will be automatically updated to match the data-title of the page currently in view.

                - -
                
                -<div data-role="page" id="foo" data-title="Page Foo">
                -
                -</div><!-- /page -->
                -
                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-transitions.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-transitions.html deleted file mode 100755 index b4093d9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/page-transitions.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - jQuery Mobile Docs - Transitions - - - - - - - - - -
                - -
                -

                Transitions

                - Home -
                - -
                -
                -

                Page transitions

                - -

                The jQuery Mobile framework includes a set of six CSS-based transition effects that can be applied to any page link or form submission with Ajax navigation:

                - - -
                - -
                - pop - fade - flip* -
                -
                - -

                Transitions from jQtouch (with small modifications): Built by David Kaneda and maintained by Jonathan Stark.

                - -

                NOTE: The flip transition isn't rendered correctly on most versions of Android because it lacks 3D CSS transform capabilities. Unfortunately, instead of ignoring the flip, Android makes the page "cartwheel" away by rotating instead of flipping. We recommend using this transition sparingly until support improves.

                - - -

                Setting a transition on a link or form submit

                -

                By default, the framework applies the right to left slide transition. To set a custom transition effect, add the data-transition attribute to the link.

                - - -<a href="index.html" data-transition="pop">I'll pop</a> - - -

                When the Back button is pressed, the framework will automatically apply the reverse version of the transition that was used to show the page. To specify that the reverse version of a transition should be used, add the data-direction="reverse" attribute to a link. Note: (this was formerly data-back="true", which will remain supported until 1.0)

                - -

                For smoother page transitions, consider enabling the touchOverflow feature.

                - -

                Global configuration of transitions

                - -

                Set the defaultPageTransition global option if you'd prefer a different default transition. Dialogs have a different option called defaultDialogTransition that can also set configured.

                - - - - -

                Creating custom CSS-based transitions

                - - -

                To create a custom CSS transition, select a class name that corresponds to the name of your transition, for example "slide", and then define your "in" and "out" CSS rules to take advantage of transitions or animation keyframes:

                - -
                .slide.in {
                -	    -webkit-transform: translateX(0);
                -	    -webkit-animation-name: slideinfromright;
                -	}
                -
                -	.slide.out {
                -	    -webkit-transform: translateX(-100%);
                -	    -webkit-animation-name: slideouttoleft;
                -	}
                -
                -	@-webkit-keyframes slideinfromright {
                -	    from { -webkit-transform: translateX(100%); }
                -	    to { -webkit-transform: translateX(0); }
                -	}
                -	@-webkit-keyframes slideouttoleft {
                -	    from { -webkit-transform: translateX(0); }
                -	    to { -webkit-transform: translateX(-100%); }
                -	}
                -		
                - -

                During a CSS-based page transition, jQuery Mobile will place the class name of the transition on both the "from" and "to" pages involved in the transition. It then places an "out" class on the "from" page, and "in" class on the "to" page. The presence of these classes on the "from" and "to" page elements then triggers the animation CSS rules defined above.

                - -

                If your transition supports a reverse direction, you need to create CSS rules that use the reverse class in addition to the transition class name and the "in" and "out" classes:

                - -
                .slide.in.reverse {
                -		    -webkit-transform: translateX(0);
                -		    -webkit-animation-name: slideinfromleft;
                -		}
                -
                -		.slide.out.reverse {
                -		    -webkit-transform: translateX(100%);
                -		    -webkit-animation-name: slideouttoright;
                -		}
                -
                -		@-webkit-keyframes slideinfromleft {
                -		    from { -webkit-transform: translateX(-100%); }
                -		    to { -webkit-transform: translateX(0); }
                -		}
                -
                -		@-webkit-keyframes slideouttoright {
                -		    from { -webkit-transform: translateX(0); }
                -		    to { -webkit-transform: translateX(100%); }
                -		}
                -		
                - -

                After the CSS rules are in place, you simply specify the name of your transition within the @data-transition attribute of a navigation link:

                - -
                <a href="#page2" data-transition="slide">Page 2</a>
                -		
                - -

                When the user clicks on the navigation link, jQuery Mobile will invoke your transition when it navigates to the page mentioned within the link.

                - -

                In case you were wondering why none of the CSS rules above specified any easing or duration, it's because the CSS for jQuery Mobile defines the default easing and duration in the following rules:

                - -
                
                -.in, .out {
                -    -webkit-animation-timing-function: ease-in-out;
                -    -webkit-animation-duration: 350ms;
                -}
                -		
                - -

                If you need to specify a different easing or duration, simply add the appropriate CSS3 property to your custom page transition rules.

                - -

                Creating custom JavaScript-based transitions

                - -

                When a user clicks on a link within a page, jQuery Mobile checks if the link specifies a @data-transition attribute. The value of this attribute is the name of the transition to use when displaying the page referred to by the link. If there is no @data-transition attribute, the transition name specified by the configuration option $.mobile.defaultPageTransition is used for pages, and $.mobile.defaultDialogTransition is used for dialogs.

                - -

                After the new page is loaded, the $.mobile.transitionHandlers dictionary is used to see if any transition handler function is registered for the given transition name. If a handler is found, that handler is invoked to start and manage the transition. If no handler is found the handler specified by the configuration option $.mobile.defaultTransitionHandler is invoked.

                - -

                By default, the $.mobile.transitionHandlers dictionary is only populated with a single handler entry called "none". This handler simply removes the "ui-page-active" class from the page we are transitioning "from", and places it on the page we are transitioning "to". The transition is instantaneous; no animation, no fanfare.

                - -

                The $.defaultTransitionHandler points to a handler function that assumes the name is a CSS class name, and implements the "Pure CSS3 Based Transitions" section above.

                - -

                Both the "none" and "css3" transition handlers are available off of the $.mobile namespace:

                - -
                
                -$.mobile.noneTransitionHandler
                -$.mobile.css3TransitionHandler
                -		
                - -

                Transition Handlers

                - -

                A transition handler is a function with the following call signature:

                - -
                function myTransitionHandler(name, reverse, $to, $from)
                -{
                -    var deferred = new $.Deferred();
                -
                -    // Perform any actions or set-up necessary to kick-off
                -    // your transition here. The only requirement is that
                -    // whenever the transition completes, your code calls
                -    // deferred.resolve(name, reverse, $to, $from).
                -
                -    // Return a promise.
                -    return deferred.promise();
                -}
                -		
                - -

                Your handler must create a Deferred object and return a promise to the caller. The promise is used to communicate to the caller when your transition is actually complete. It is up to you to call deferred.resolve() at the correct time. If you are new to Deferred objects, you can find documentation here.

                - -

                Registering and Invoking Your Transition Handler

                - -

                Once you have created a transition handler function, you need to tell jQuery Mobile about it. To do this, simply add your handler to the $.mobile.transitionHandlers dictionary. Remember, the key used should be the name of your transition. This name is also the same name that will be used within the @data-transition attribute of any navigation links.

                - -
                // Define your transition handler:
                -
                -function myTransitionHandler(name, reverse, $to, $from)
                -{
                -    var deferred = new $.Deferred();
                -
                -    // Perform any actions or set-up necessary to kick-off
                -    // your transition here. The only requirement is that
                -    // whenever the transition completes, your code calls
                -    // deferred.resolve(name, reverse, $to, $from).
                -
                -    // Return a promise.
                -    return deferred.promise();
                -}
                -
                -// Register it with jQuery Mobile:
                -
                -$.mobile.transitionHandlers["myTransition"] = myTransitionHandler;
                -		
                - -

                Once you've registered your handler, you can invoke your transition by placing a data-transition attribute on a link:

                - -
                <a href="#page2" data-transition="myTransition">Page 2</a>
                -		
                - -

                When the user clicks the link above, your transition handler will be invoked after the page is loaded and it is ready to be shown.

                - -

                Overriding a CSS Transition With Your Own Handler

                - -

                As previously mentioned the default transition handler assumes that any transition name other than "none" is a CSS class to be placed on the "from" and "to" elements to kick off a CSS3 animation. If you would like to override one of these built-in CSS transitions, you simply register your own handler with the same name as the CSS page transition you want to override. So for example, if I wanted to override the built-in "slide" CSS transition with my own JavaScript based transition, I would simply do the following:

                - -
                // Define your transition handler:
                -
                -function myTransitionHandler(name, reverse, $to, $from)
                -{
                -    var deferred = new $.Deferred();
                -
                -    // Perform any actions or set-up necessary to kick-off
                -    // your transition here. The only requirement is that
                -    // whenever the transition completes, your code calls
                -    // deferred.resolve(name, reverse, $to, $from).
                -
                -    // Return a promise.
                -    return deferred.promise();
                -}
                -
                -// Register it with jQuery Mobile:
                -
                -$.mobile.transitionHandlers["slide"] = myTransitionHandler;
                -		
                - -

                Once you do this, anytime the "slide" transition is invoked, your handler, instead of the default one, will be called to perform the transition.

                - -

                Overriding the Default Transition Handler

                - -

                The $.mobile.css3TransitionHandler function is the default transition handler that gets invoked when a transition name is used and not found in the $.mobile.transitionHandlers dictionary. If you want to install your own custom default handler, you simply set the $.mobile.defaultTransitionHandler to your handler:

                - -
                // Define your default transition handler:
                -
                -function myTransitionHandler(name, reverse, $to, $from)
                -{
                -    var deferred = new $.Deferred();
                -
                -    // Perform any actions or set-up necessary to kick-off
                -    // your transition here. The only requirement is that
                -    // whenever the transition completes, your code calls
                -    // deferred.resolve(name, reverse, $to, $from).
                -
                -    // Return a promise.
                -    return deferred.promise();
                -}
                -
                -$.mobile.defaultTransitionHandler = myTransitionHandler;
                -		
                - -

                Once you do this, your handler will be invoked any time a transition name is used but not found within the $.mobile.transitionHandlers dictionary.

                - - -
                - - - -
                - - - -
                - - - - - -
                - -
                -

                Ta-da!

                -
                - -
                -

                That was an animated page transition effect that we added with a data-transition attribute on the link.

                -

                Since it uses CSS transforms, this should be hardware accelerated on many mobile devices.

                -

                What do you think?

                - I like it -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes.html deleted file mode 100755 index 748d20f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Pages - - - - - - - - - -
                - -
                -

                Theming pages

                - Home -
                - -
                -
                - - - -

                Page Theming

                - -

                jQuery Mobile has a rich theming system that gives you full control of how pages are styled. There is detailed theming documentation within each page widget, but let's look at a few high-level examples of how theming is applied.

                - -

                The data-theme attribute can be applied to the header and footer containers to apply any of the lettered theme color swatches. While the data-theme attribute could be added to the content container, we recommend adding it instead to div or container that has been assigned the data-role="page" attribute to ensure that the background color is applied to the full page. When this is done, all widgets on the page will also inherit the theme specified in the page container. However, headers and footers will default to theme "a". If you want to have a page with, for example, only theme "b" for all its elements, including its header and footer, you will need to specify data-theme="b" to the page div as well as the header and footer divs.

                - -

                The default Theme mixes styles from multiple swatches to create visual texture and present the various elements in optimal contrast to one another:

                - -
                -

                Default Theme

                -
                - -
                -

                Default Theme Content Header

                -

                This is the default content color swatch and a preview of a link.

                - - Button -
                - -

                And each of the five "swatches" applies its style consistently across all page elements, as shown below:

                - -

                Swatch A

                -
                -

                Header A

                -
                - - -
                -

                Header

                -

                This is content color swatch "A" and a preview of a link.

                - Button -
                - - -

                Swatch B

                -
                -

                Header B

                -
                -
                -

                Header

                -

                This is content color swatch "B" and a preview of a link.

                - Button -
                - -

                Swatch C

                -
                -

                Header C

                -
                -
                -

                Header

                -

                This is content color swatch "C" and a preview of a link.

                - Button -
                - -

                Swatch D

                -
                -

                Header D

                -
                -
                -

                Header

                -

                This is content color swatch "D" and a preview of a link.

                - Button -
                - -

                Swatch E

                -
                -

                Header E

                -
                -
                -

                Header

                -

                This is content color swatch "E" and a preview of a link.

                - Button -
                - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-a.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-a.html deleted file mode 100644 index 6755478..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-a.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Pages - - - - - - - - - -
                - -
                -

                Theming pages

                - Home -
                - -
                -
                - - - -

                Theme A Sample Page

                - -

                This is an example of data-theme="a" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - -

                Collapsible Sets

                -
                -
                -

                Section 1

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                -
                -
                -

                Section 2

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 3

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                - -

                Inset List

                - - -
                - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-b.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-b.html deleted file mode 100644 index 4502e50..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-b.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Pages - - - - - - - - - -
                - -
                -

                Theming pages

                - Home -
                - -
                -
                - - - -

                Theme B Sample Page

                - -

                This is an example of data-theme="b" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - -

                Collapsible Sets

                -
                -
                -

                Section 1

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                -
                -
                -

                Section 2

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 3

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                - -

                Inset List

                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-c.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-c.html deleted file mode 100644 index 3c16bfb..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-c.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Pages - - - - - - - - - -
                - -
                -

                Theming pages

                - Home -
                - -
                -
                - - - -

                Theme C Sample Page

                - -

                This is an example of data-theme="c" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - -

                Collapsible Sets

                -
                -
                -

                Section 1

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                -
                -
                -

                Section 2

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 3

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                - -

                Inset List

                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-d.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-d.html deleted file mode 100644 index f820cd9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-d.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Pages - - - - - - - - - -
                - -
                -

                Theming pages

                - Home -
                - -
                -
                - - - -

                Theme D Sample Page

                - -

                This is an example of data-theme="d" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - -

                Collapsible Sets

                -
                -
                -

                Section 1

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                -
                -
                -

                Section 2

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 3

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                - -

                Inset List

                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-e.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-e.html deleted file mode 100644 index 6e89ce6..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/pages-themes/theme-e.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - jQuery Mobile Docs - Theming Pages - - - - - - - - - -
                - -
                -

                Theming pages

                - Home -
                - -
                -
                - - - -

                Theme E Sample Page

                - -

                This is an example of data-theme="e" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                -
                - Font styling: - - - - - - - - -
                -
                - -
                -
                - Choose a pet: - - - - - - - - - - - -
                -
                - -
                - - -
                - -

                Collapsible Sets

                -
                -
                -

                Section 1

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                -
                -
                -

                Section 2

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                -

                Section 3

                -

                I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                - -
                -
                - -

                Inset List

                - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/phonegap.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/phonegap.html deleted file mode 100644 index 4e43dcc..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/phonegap.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - jQuery Mobile Docs - Phonegap - - - - - - - - - -
                - -
                -

                Dynamically Injecting Pages

                - Home -
                - -
                -
                - - -

                Building PhoneGap apps with jQuery Mobile

                - -

                PhoneGap is an HTML5 app platform that allows developers to author native applications with web technologies and get access to APIs and app stores. Applications are built as normal HTML pages and packaged up to run as a native application within a UIWebView or WebView (a chromeless browser, referred to hereafter as a webview). Since PhoneGap is frequently used in conjunction with jQuery Mobile, we wanted to offer a few tips and recommendations to help you get staretd.

                - -

                The initial application document is loaded by the PhoneGap application by a local file:// URL. This means that if you want to pull in pages from your company's remote server (phone home) you will have to refer to them with absolute URLs to your server. Because your document originates from a file:// URL, loading pages or assets from your remote server is considered a cross-domain request that can be blocked in certain scenarios.

                - -

                Your ability to access cross-domain pages from within a Phone Gap jQuery Mobile application is controlled by two key things: $.support.cors and $.mobile.allowCrossDomainPages, and can also be influenced by the white list feature in later builds of PhoneGap.

                - -

                $.support.cors

                - -

                In jQuery core, there is a $.support.cors boolean that indicates whether or not jQuery thinks the browser supports the W3C "Cross-Origin Resource Sharing" feature to support cross-domain requests.

                - -

                Since jQuery Mobile relies on jQuery core's $.ajax() functionality, $.support.cors must be set to true to tell $.ajax to load cross-domain pages. We've heard reports that webviews on some platforms, like BlackBerry, support cross-domain loading, but that jQuery core incorrectly sets $.support.cors value to false which disables cross-domain $.ajax() requests and will cause the page or assets to fail to load.

                - -

                $.mobile.allowCrossDomainPages

                - -

                When jQuery Mobile attempts to load an external page, the request runs through $.mobile.loadPage(). This will only allow cross-domain requests if the $.mobile.allowCrossDomainPages configuration option is set to true. Because the jQuery Mobile framework tracks what page is being viewed within the browser's location hash, it is possible for a cross-site scripting (XSS) attack to occur if the XSS code in question can manipulate the hash and set it to a cross-domain URL of its choice. This is the main reason that the default setting for $.mobile.allowCrossDomainPages is set to false.

                - -

                So in PhoneGap apps that must "phone home" by loading assets off a remote server, both the $.support.cors AND $.mobile.allowCrossDomainPages must be set to true. The $.mobile.allowCrossDomainPages option must be set before any cross-domain request is made so we recommend wrapping this in a mobileinit handler:

                - -
                $( document ).bind( "mobileinit", function() {
                -    // Make your jQuery Mobile framework configuration changes here!
                -
                -    $.mobile.allowCrossDomainPages = true;
                -});
                - -

                PhoneGap White Listing

                - -

                PhoneGap 1.0 introduced the idea of white-listing servers that its internal webview is allowed to make cross-domain requests to. You can find info about it here on the PhoneGap wiki:

                - -

                However, not all platforms support this white-listing feature so check the PhoneGap documentation for details. Older versions of PhoneGap prior to 1.0 defaulted to allowing cross-domain requests to any server.

                - -

                Still having issues?

                - -

                Here are a few more tips that aren't specifically related to PhoneGap but are good to know:

                - -

                We recommend disabling the pushState feature for installed apps because there are edge cases where this feature can cause unexpected navigation behavior and since URLs aren't visible in a webview, it's not worth keeping this active in these situations.

                - -

                Android enforces a timeout when loading URLs in a webview which may be too short for your needs. You can change this timeout by editing a Java class generated by the Eclipse plugin for Android:

                - - super.setIntegerProperty("loadUrlTimeoutValue", 60000); - - - -
                - - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/touchoverflow.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/touchoverflow.html deleted file mode 100644 index ec41a1a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/touchoverflow.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - jQuery Mobile Docs - touchOverflow - - - - - - - - - -
                - -
                -

                touchOverflow

                - Home -
                - -
                -
                - -

                touchOverflow: Dramatically improved page transitions and true fixed toolbars

                - -

                Currently, both the page you're viewing and the one you're navigating to are sitting next to each other in the viewport, which lets us leverage native scrolling for the broadest possible device support. The downside to this approach is that since both pages share the same viewport, when a page transition starts, we must first scroll to the top of the document, then start animating to ensure that the pages are lined up vertically. If you hit the Back button, we need to scroll up, transition, then restore the previous scroll position. Since mobile browsers are pretty slow, these scroll movements can detract from the flow of the experience.

                - -

                The way to really improve this situation is to have both pages in separate containers, each with its own internal scroll bar. The means no more scrolling the document or needing to restore scroll positions for a smoother experience. It also has the benefit of making fixed toolbars very easy to implement by simply placing them outside the containers with internal scrolling.

                - -

                How it works

                - -

                To leverage iOS5′s support for a touch-targeted version of overflow:auto which allows for internal scrolling regions with the native momentum scrolling, we've added a feature called touchOverflow that leverages these new CSS capabilities to enable us to bring both true “fixed” toolbars and super smooth transitions to iOS5, all by using web standards and very little additional code.

                - -

                A feature called touchOverflowEnabled is designed to leverage the upcoming wave of browsers that support overflow scrolling in CSS. Note that this feature is off by default to give us more time to test and debug this for best performance but we hope to turn it on by default at a later point. Here's how to enable this global option:

                - -
                <script>
                -$(document).bind("mobileinit", function(){
                -  $.mobile.touchOverflowEnabled = true;
                -});
                -</script>
                - -

                When this feature is activated, the framework looks for browser support for both the overflow: and -webkit-overflow-scrolling:touch CSS properties. In browsers that support both, it switches to a dual page container model with native overflow: scrolling within each, which brings true fixed toolbars smooth transitions. Coupled with iOS’s already excellent hardware-accelerated transitions, it's now possible to build interfaces that are very close to native performance.

                - -

                To demo this feature, check out this page in iOS5.

                - -

                A few downsides

                - -

                Nothing is perfect, especially a new feature, so there are a few downsides to keep in mind. When activating this feature:

                - -
                  -
                • Sometimes child elements like lists and forms wouldn't render when embedded in a page with overflow: in iOS5. This was a pretty random phenomenon but is not acceptable so we've added a translate-z CSS property which forces iOS to render the contents. The downside with this fix is that when a transform is applied, all elements are set to position:relative which can cause issues in your layout.
                • -
                • The -webkit-overflow-scrolling:touch property seems to disable the events to scroll you to the top of the page when the time is tapped in the status bar. We hope Apple fixes this because it's a very useful feature.
                • -
                • When overflow: and -webkit-overflow-scrolling:touch properties are set, iOS appears to ignore any overflow:hidden properties on the parent, which is the page in our case. So if you have an image or code block that is wider than the viewport, horizontal scrolling will be seen.
                • -
                • When this feature is active, we are disabling user zoom by manipulating the meta viewport tag because both the toolbars and page content can easily be zoomed to an odd size and it's very difficult to zoom back out. Even though we believe in allowing users to zoom the page, alleviating the usability concerns we have with fixed toolbars and overflow containers is more important.
                • -
                • Scroll position can be lost when going back to a page that has been re-loaded. If DOM caching is on, this shouldn't be as much of an issue.
                • -
                • This is still an experimental feature, so not all the kinks have been worked out yet. Use with caution and test thoroughly.
                • -
                - - - -

                Don’t other mobile platforms already support overflow?

                -

                Yes, but there’s a catch. Both Android Honeycomb and the Blackberry PlayBook support overflow: properties, but we found in testing that their implementation of overflow wasn't smooth enough, so pages would stutter and hang during scrolling, leading to an unusable experience. We're working with device makers to ensure that they are included when performance improves.

                -

                More importantly, targeting overflow correctly is a major issue. If we simply placed an overflow: auto CSS rule on the pages, other popular mobile platforms like older versions of Android and iOS would essentially just clip off the content and make it effectively inaccessible (yes, you can can do a two-finger scroll gesture in iOS but nobody knows that). The smart thing about Apple’s implementation for iOS5 is that they added an additional CSS property -webkit-overflow-scrolling:touch that allows us to test for this touch scrolling property and, if supported, add in the overflow rules for just those browsers. This is the only safe way to target overflow without resorting to complex and unmaintainable user agent detection.

                -

                We will be working with device and browser makers to encourage support for both these CSS-based properties because we strongly believe that this a critical piece needed to build rich mobile web apps. The project will add any vendor-prefixed additions to touch scrolling property if, for example, Opera, Firefox or Microsoft added this support. Once people see how much better page transitions and fixed toolbars are on iOS5, we’re hoping this will be supported quickly by other browsers. JS-based scroller scripts may still have a place in this new world as a polyfill for browsers that don’t yet support these new CSS capabilities but we see this as a brief, interim tool in the evolution of the mobile web.

                - - - -
                - - - -
                - - - -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/pages/transition-success.html b/libs/js/jquery-mobile-1.0.1pre/docs/pages/transition-success.html deleted file mode 100644 index e23f80b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/pages/transition-success.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - jQuery Mobile Framework - Dialog Example - - - - - - - - - -
                - -
                -

                Ta-da!

                -
                - -
                -

                That was an animated page transition effect that we added with a data-transition attribute on the link.

                -

                Since it uses CSS transforms, this should be hardware accelerated on many mobile devices.

                -

                What do you think?

                - I like it -
                -
                - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-fixed.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-fixed.html deleted file mode 100755 index b3c8ca2..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-fixed.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - jQuery Mobile Framework - Fixed Toolbars - - - - - - - - - -
                - -
                - -

                Fixed toolbars

                - Home -
                - -
                -
                -

                Fixed toolbars

                -

                This is a demo of the "fixed" headers and footers used in the jQuery Mobile framework. The page content flows naturally, allowing us to take advantage of native scrolling instead of a scripting a faux-scrolling workaround. The header and footer divs are right in the flow of the document, but whenever they are out of view the framework will dynamically re-position them into view if the browser supports this feature, otherwise they will simply stay inline.

                -

                To enable this behavior on a header or footer, add the data-position="fixed" attribute to the toolbar container.

                - - -

                Tap to toggle visibility

                -

                To toggle the visibility of fixed toolbars, tap the screen. For example, if the fixed toolbars are visible, tap the screen to hide the toolbars and take full advantage of the screen real estate for content. Tapping again will bring the toolbars back into view.

                -

                It's possible to turn off the the tap to toggle visibility behavior like this:

                -
                
                -$.mobile.fixedToolbars
                -   .setTouchToggleEnabled(false);
                -
                - -

                Updating toolbar positioning

                -

                If the height of the page changes, either through dynamic injection of markup, or by widgets that hide or collapse content, it can throw off the dynamic positioning of the toolbars. To manually tell the toolbars to re-position themselves then fade in, use $.mobile.fixedToolbars.show();. To have them appear immediately without the fade:

                -
                
                -$.mobile.fixedToolbars
                -   .show(true);
                -
                - -

                There is also an updatelayout event that can be used to trigger the toolbars to re-position. Developers who are building dynamic applications that inject content into the current page can also manually trigger this updatelayout event to ensure components on the page update in response to the new content that was just added. This event is used internally in the collapsible and listview filter plugins and is powerful because it's not toolbar-specific -- any widget can be built to listen for the updatelayout event to update the widget in response.

                - - -

                Known limitations

                - -

                jQuery Mobile uses dynamically re-positioned toolbars for the fixed header effect because very few mobile browsers support the position:fixed CSS property. Although our fixed toolbar feature works fairly well, there are a number of technical limitations that can cause the toolbars to appear to scroll with the page. Most of these rendering issues are due to the fact many mobile platforms (iOS, Android, etc.) essentially take a static screenshot of the page and display this image during scrolling instead of the actual rendered HTML. This improves scrolling performance, but when scrolling happens quickly, the toolbars will be "burned" into the page screenshot before our script can hide them so they appear to scroll with the page. We have optimized this as much as we possibly can, but there are going to be situations where fixed toolbars won't work perfectly due to browser limitations, so this is important to note when considering whether to use this feature.

                - -

                True fixed toolbars: touchOverflowEnabled

                - -

                In order to achieve true fixed toolbars, a browser needs to either support position:fixed or overflow:auto. Fortunately, this support is coming to mobile platforms so we can achieve this with web standards. In jQuery Mobile, we have added a global feature called touchOverflowEnabled that leverages the overflow:auto CSS property on supported platforms like iOS5. When enabled, the framework wraps each page in a container with it's own internal scrolling. This allows us to position the toolbars outside the scrolling body so they truly stay fixed in place at all times. Learn more about this feature on the global options page or demo this feature (currently iOS5 only, other browsers will fall back to dynamically re-positioned fixed toolbars).

                - -
                - - -

                The rest of the page is just sample content to make the page very long

                - -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                - -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                - - -

                And an inset list

                - - - -
                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                - -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                - - -

                Embedded form

                - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - -
                - - -
                - - -
                - - -
                - - -
                -
                -
                -
                -
                -
                -
                - -

                A bit more text

                - -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                - - - - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-fullscreen.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-fullscreen.html deleted file mode 100755 index 305b221..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-fullscreen.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - jQuery Mobile Framework - Fullscreen Fixed toolbars - - - - - - - - - -
                - -
                -

                Fullscreen fixed header

                - Home -
                - -
                -
                - Photo Run - -

                This page demonstrates the "fullscreen" toolbar mode. This toolbar treatment is used in special cases where you want the content to fill the whole screen, and you want the header and footer toolbars to appear and disappear when the page is clicked responsively — a common scenario for photo, image or video viewers.

                - -

                To enable this toolbar feature type, you apply a data-fullscreen="true" attribute to the div container that has the attribute data-role="page", and the data-position="fixed" attribute to both the header and footer div elements.

                - -

                Keep in mind that the toolbars in this mode will sit over page content, so not all content will be accessible with the toolbars open, just as shown in this demo.

                - - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-themes.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-themes.html deleted file mode 100644 index 3c66711..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/bars-themes.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - jQuery Mobile Framework - Theming Toolbars - - - - - - - - - -
                - -
                -

                Bar theming

                - Home -
                - - -
                -
                -

                Both the header and footer bars will be styled by default with the theme's "a" color swatch (black in the default theme) because these bars are typically primary in the visual hierarchy of a page.

                - - -

                Theming headers and footers

                -

                To set the header or footer bars to a different color in your theme, add the data-theme attribute and specify the letter of the theme swatch (a, b, c, etc.). For example, this will set the bar to swatch "b" (blue in the default theme):

                - -
                -
                -<div data-role="header" data-theme="b"> 
                -	<h1>Page Title</h1> 
                -</div> 
                -
                -
                - - -

                Theming buttons in toolbars

                - -

                Any link added inside the header block will be automatically styled as a button that matches the color of the bar's theme swatch. To make a button stand out as a primary call to action, the data-theme attribute can be used to specify a contrasting button color from a different theme swatch. For example, if we set the header to theme "c" (light gray), both buttons would be styled as the "c" button by default. If we wanted the Save button to visually pop, we can override the color by setting the data-theme attribute to "b" (blue in our default theme) on the Save button's anchor.

                - -
                -
                -<a href="add-user.php" data-theme="b">Save</a> 
                -
                -
                - - - -

                Theme variations

                -

                This is a demo of the variation that can be achieved by tweaking the theme swatches and buttons inside the headers and footers.

                -

                Headers

                - - -
                -

                Bar theme "a"

                - New -
                - -
                - Cancel -

                Bar theme "a"

                - Save -
                - -
                -

                Bar theme "b"

                - New -
                - -
                - Cancel -

                Bar theme "b"

                - Save -
                - -
                -

                Bar theme "c"

                - New -
                - -
                - Cancel -

                Bar theme "c"

                - Save -
                - -
                -

                Bar theme "d"

                - New -
                - -
                - Cancel -

                Bar theme "d"

                - Save -
                - -

                Footers

                -

                These are examples of a footer with link buttons inside. Note that footers do not have the same prescriptive markup contentions as headers with button slots so use layout grids or custom styles to achieve the design you want.

                - - - -
                - left - right - up - down -
                - -
                - left - right - up - down -
                - -
                - left - right - up - down -
                - -
                - left - right - up - down -
                - -
                - left - right - up - down -
                - - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-bars.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-bars.html deleted file mode 100755 index b211903..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-bars.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - jQuery Mobile Docs - Toolbar Basics - - - - - - - - - -
                - -
                -

                Toolbar basics

                - Home -
                - -
                -
                -

                Toolbar types

                - -

                In jQuery Mobile, there are two standard types of toolbars: Headers and Footers.

                - -
                • The Header bar serves as the page title, is usually the first element inside each mobile page, and typically contains a page title and up to two buttons.
                • - -
                • The Footer bar is usually the last element inside each mobile page, and tends to be more freeform than the header in terms of content and functionality, but typically contains a combination of text and buttons.
                • -
                - -

                It's very common to have a horizontal navigation or tab bar inside the header and/or footer; jQuery Mobile includes a navbar widget that turns an unordered list of links into a horizontal button bar, which works well in these instances.

                - -

                View the data- attribute reference to see all the possible attributes you can add to toolbars.

                - - -

                Toolbar positioning options

                - -

                Header and footers can be positioned on the page in a few different ways. By default, the toolbars use the "inline" positioning mode. In this mode, the headers and footer sit in the natural document flow (the default HTML behavior), which ensures that they are visible on all devices, regardless of JavaScript and CSS positioning support.

                - -

                A "fixed" positioning mode provides the convenience of static toolbars without the drawbacks of implementing faux-scrolling in JavaScript. The toolbars start in their natural positions on the page, like the "inline" mode, but when a bar scrolls out of the viewport, the framework animates the bar back into view by dynamically re-positioning the bar to the top or bottom of the viewport.

                -

                At any time, tapping the screen will toggle the visibility of the fixed toolbars: tapping the page when the toolbars aren't visible brings them into view, tapping again hides them until you tap again. This gives users the option to hide the toolbars until needed to maximize screen real estate.

                -

                To set this behavior on a header or footer, add the data-position="fixed" attribute to the toolbar container.

                - -

                A "fullscreen" position mode works just like the fixed mode except that the toolbars aren't shown at the top and bottom of the page and only appear when the page is clicked. This is useful for immersive apps like photo or video viewers where you want the content to fill the whole screen and toolbars can be summoned to appear by tapping the screen. Keep in mind that the toolbars in this mode will sit over page content so this is best used for specific situations.

                - - - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-footers.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-footers.html deleted file mode 100755 index 4ad8be7..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-footers.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - jQuery Mobile Docs - Footer Configuration - - - - - - - - - -
                - -
                -

                Footer configuration

                - Home -
                - -
                -
                -

                Footer bar structure

                - -

                The footer bar has the same basic structure as the header except it uses the data-role attribute value of footer.

                - -
                -
                -<div data-role="footer"> 
                -	<h4>Footer content</h4> 
                -</div> 
                -
                -
                - - -

                The footer toolbar will be be themed with the "a" swatch by default (black in the default theme) but you can easily set the theme swatch color.

                - -
                -

                Footer content

                -
                - -

                The page footer is very similar to the header in terms of options and configuration. The primary differences are that the footer is designed to be less structured than the header to allow for more flexibility, so the framework doesn't automatically place buttons to the left or right based on source order as it does in the header. Since footers do not have the same prescriptive markup contentions as headers, use layout grids or custom styles to achieve the design you want in a footer.

                - - - -

                Adding buttons

                - -

                Any link or valid button markup added to the footer will automatically be turned into a button. To save space, buttons in toolbars are automatically set to inline styling so the button is only as wide as the text and icons it contains.

                - -

                By default, toolbars don't have any padding to accommodate nav bars and other widgets. To include padding on the bar, add a class="ui-bar" to the footer.

                - - -
                
                -<div data-role="footer" class="ui-bar">
                -	<a href="index.html" data-role="button" data-icon="delete">Remove</a>
                -	<a href="index.html" data-role="button" data-icon="plus">Add</a>
                -	<a href="index.html" data-role="button" data-icon="arrow-u">Up</a>
                -	<a href="index.html" data-role="button" data-icon="arrow-d">Down</a>
                -</div>
                -
                - -

                This creates this toolbar with buttons sitting in a row

                - - -
                - Remove - Add - Up - Down -
                - -

                To group buttons together into a button set, wrap the links in a wrapper with data-role="controlgroup" and data-type="horizontal" attributes.

                - -<div data-role="controlgroup" data-type="horizontal"> - -

                This creates a grouped set of buttons:

                - -
                -
                - Remove - Add - Up - Down -
                -
                - - - -

                Adding form elements

                - -

                Form elements and other content can also be added to toolbars. Here is an example of a select menu inside a footer bar:

                - - -
                - - -
                - - - - - - -

                Persistent footers

                -

                In situations where the footer is a global navigation element, you may want it to appear fixed in place between page transitions. This can be accomplished by using the persistent footer feature included in jQuery Mobile.

                - -

                To make a footer stay in place between transitions, add the data-id attribute to the footer of all relevant pages and use the same id value for each. For example, by adding data-id="myfooter" to the current page and the target page, the framework will keep the footer anchors in the same spot during the page animation. PLEASE NOTE: This effect will only work correctly if the header and footer toolbars are set to data-position="fixed" so they are in view during the transition.

                - - - - - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-headers.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-headers.html deleted file mode 100644 index c9ef476..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-headers.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - jQuery Mobile Docs - Header Bars - - - - - - - - - -
                - -
                -

                Header bars

                - Home -
                - -
                -
                -

                Header structure

                -

                The header is a toolbar at the top of the page that usually contains the page title text and optional buttons positioned to the the left and/or right of the title for navigation or actions.

                - -

                The title text is normally an H1 heading element but it's possible to use any heading level (H1-H6) to allow for semantic flexibility. For example, a page containing multiple mobile 'pages' may use a H1 element on the home 'page' and a H2 element on the secondary pages. All heading levels are styled identically by default to maintain visual consistency.

                - -
                -
                -<div data-role="header"> 
                -	<h1>Page Title</h1> 
                -</div> 
                -
                -
                - -

                Default header features

                -

                The header toolbar is themed with the "a" swatch by default (black in the default theme) but you can easily set the theme swatch color.

                - - - -
                -

                Page title

                -
                - - -

                Adding buttons

                - - - - - -

                In the standard header configuration, there are slots for buttons on either side of the text heading. Each button is typically an anchor element, but any valid button markup will work. To save space, buttons in toolbars are set to inline styling so the button is only as wide as the text and icons it contains.

                - - - - -

                Default button positioning

                - -

                The header plugin looks for immediate children of the header container, and automatically sets the first link in the left button slot and the second link in the right. In this example, the 'Cancel' button will appear in the left slot and 'Save' will appear in the right slot based on their sequence in the source order.

                - - -
                			
                -<div data-role="header" data-position="inline">
                -	<a href="index.html" data-icon="delete">Cancel</a>
                -	<h1>Edit Contact</h1>
                -	<a href="index.html" data-icon="check">Save</a>
                -</div>
                -
                - - -
                - Cancel -

                Edit Contact

                - Save -
                -

                Buttons automatically adopt the swatch color of the bar they sit in, so a link in a header bar with the "a" color will also be styled as "a" colored buttons. It's simple to make a button visually stand out — here, we add the data-theme attribute and set the color swatch for the button to "b" to make the "Save" button pop.

                - -
                			
                -<div data-role="header" data-position="inline">
                -	<a href="index.html" data-icon="delete">Cancel</a>
                -	<h1>Edit Contact</h1>
                -	<a href="index.html" data-icon="check" data-theme="b">Save</a>
                -</div>
                -
                - - -
                - Cancel -

                Edit Contact

                - Save -
                - -

                Controlling button position with classes

                - -

                The button position can also be controlled by adding classes to the button anchors, rather than relying on source order. This is especially useful if you only want a button in the right slot. To specify the button position, add the class of ui-btn-left or ui-btn-right to the anchor.

                - - - - -
                -
                
                -<div data-role="header" data-position="inline" 
                -	<h1>Page Title</h1>
                -	<a href="index.html" data-icon="gear" class="ui-btn-right">Options</a>
                -</div>
                -
                -
                - -
                -

                Page Title

                - Options -
                - - -

                Adding Back buttons

                - -

                jQuery Mobile has a feature to automatically create and append "back" buttons to any header, though it is disabled by default. This is primarily useful in chromeless installed applications, such as those running in a native app web view. The framework automatically generates a "back" button on a header when the page plugin's addBackBtn option is true. This can also be set via markup if the page div has a data-add-back-btn="true" attribute.

                - - -

                If you use the attribute data-rel="back" on an anchor, any clicks on that anchor will mimic the back button, going back one history entry and ignoring the anchor's default href. This is particularly useful when linking back to a named page, such as a link that says "home", or when generating "back" buttons with JavaScript, such as a button to close a dialog. When using this feature in your source markup, be sure to provide a meaningful href that actually points to the URL of the referring page (this will allow the feature to work for users in C-Grade browsers. Also, please keep in mind that if you just want a reverse transition without actually going back in history, you should use the data-direction="reverse" attribute instead.

                - -

                Customizing the back button text

                - -

                If you'd like to configure the back button text, you can either use the data-back-btn-text="previous" attribute on your page element, or set it programmatically via the page plugin's options:
                $.mobile.page.prototype.options.backBtnText = "previous";

                - -

                Default back button style

                -

                If you'd like to configure the back button role-theme, you can use:
                $.mobile.page.prototype.options.backBtnTheme = "a";
                - If you're doing this programmatically, set this option inside the mobileinit event handler.

                - -

                Custom header configurations

                -

                If you need to to create a header that doesn't follow the default configuration, simply wrap your custom styled markup in a container div inside the header container and the plugin won't apply the automatic button logic so you can write custom styles for laying out the content in your header.

                - -

                It's also possible to create custom bars without using the header data-role at all. For example, start with any container and add the ui-bar class to apply standard bar padding and add the ui-bar-b class to assign the bar swatch styles from your theme (the "b" can be any swatch letter).

                - -
                
                -<div class="ui-bar ui-bar-b">
                -	<h3>I'm just a div with bar classes and a <a href="#" data-role="button">Button</a></h3>
                -</div>
                -			
                - -

                This will produce this bar:

                -
                -

                I'm just a div with bar classes and a Button

                -
                - -

                By writing some simple styles, it's easy to build little message bars like this:

                - -
                -

                This is an alert message with dismiss button.

                - -

                And here's some additional text in a paragraph.

                -
                -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-navbar.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-navbar.html deleted file mode 100755 index 8091ac6..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/docs-navbar.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - jQuery Mobile Docs - Navbar - - - - - - - - - -
                - -
                -

                Navbar

                - Home -
                - -
                -
                -

                Simple navbar

                - -

                jQuery Mobile has a very basic navbar widget that is useful for providing up to 5 buttons with optional icons in a bar, typically within a header or footer. There is also a persistent navbar variation that works more like a tab bar that stays fixed as you navigate across pages.

                -

                A navbar is coded as an unordered list of links wrapped in a container element that has the data-role="navbar" attribute. To set one of links to the active (selected) state, add class="ui-btn-active" to the anchor. In this example, we have a two-button navbar in the footer with the "One" item set to active:

                - -
                
                -<div data-role="navbar">
                -	<ul>
                -		<li><a href="a.html" class="ui-btn-active">One</a></li>
                -		<li><a href="b.html">Two</a></li>
                -	</ul>
                -</div><!-- /navbar -->
                -
                - -

                The navbar items are set to divide the space evenly so in this case, each button is 1/2 the width of the browser window:

                - - -
                - -
                - - -

                Adding a third item will automatically make each button 1/3 the width of the browser window:

                - - -
                - -
                - - -

                Adding a fourth more item will automatically make each button 1/4 the width of the browser window:

                - - -
                - -
                - - -

                The navbar maxes out with 5 items, each 1/5 the width of the browser window:

                - - -
                - -
                - - -

                If more than 5 items are added, the navbar will simply wrap to multiple lines:

                - -
                - -
                - -

                As a fallback, navbars with 1 item will simply render as 100%.

                - -
                - -
                - -

                Navbars in headers

                - -

                If you want to add a navbar to the top of the page, you can still have a page title and buttons. Just add the navbar container inside the header block, right after the title and buttons in the source order.

                - -
                -

                I'm a header

                - Options - -
                - -
                -
                - -

                Navbars in footers

                - -

                If you want to add a navbar to the bottom of the page so it acts more like a tab bar, simply wrap the navbar in a container with a data-role="footer"

                -
                
                -<div data-role="footer">		
                -	<div data-role="navbar">
                -		<ul>
                -			<li><a href="#">One</a></li>
                -			<li><a href="#">Two</a></li>
                -			<li><a href="#">Three</a></li>
                -		</ul>
                -	</div><!-- /navbar -->
                -</div><!-- /footer -->
                -
                -
                -
                - -
                -
                - -

                Icons in navbars

                - -

                Icons can be added to navbar items by adding the data-icon attribute specifying a standard mobile icon to each anchor. By default, icons are added above the text (data-iconpos="top"). The following examples add icons to a navbar in a footer.

                - -
                -
                - -
                -
                - -

                The icon position is set on the navbar container instead of for individual links within for visual consistency. For example, to place the icons below the labels, add the data-iconpos="bottom" attribute to the navbar container.

                -
                
                -<div data-role="navbar" data-iconpos="bottom">
                -
                -

                This will result in a bottom icon alignment:

                -
                -
                - -
                -
                - -

                The icon position can be set to data-iconpos="left":

                - -
                -
                - -
                -
                - -

                Or the icon position can be set to data-iconpos="right":

                - -
                -
                - -
                -
                - -

                Using 3rd party icon sets

                - -

                You can add any of the popular icon libraries like Glyphish to achieve the iOS style tab that has large icons stacked on top of text labels. All that is required is a bit of custom styles to link to the icons and position them in the navbar. Here is an example using Glyphish icons and custom styles (view page source for styles) in our navbar:

                - - - - - - -

                Icons by Joseph Wain / glyphish.com. Licensed under the Creative Commons Attribution 3.0 United States License.

                - - -

                Theming navbars

                - -

                Navbars inherit the theme swatch from their parent container, just like buttons. If a navbar is placed in the header or footer toolbar, it will inherit the default toolbar swatch (A) for bars unless you set this in the markup.

                -

                Here are a few examples of navbars in various container swatches that automatically inheriting their parent's swatch letter. Note that in these examples, instead of using a data-theme attribute, we're manually adding the swatch classes to apply the body swatch (ui-body-a) and the class to add the standard body padding (ui-body), but the inheritance works the same way:

                - -
                -

                Swatch A

                -
                - -
                -
                - -
                -

                Swatch B

                -
                - -
                -
                - -

                To set to the theme color for a navbar item, add the data-theme attribute to the individual links and specify a theme swatch. Note that applying a theme swatch to the navbar container is not supported.

                -
                -
                - -
                -
                - - -
                - - - -
                - - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-a.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-a.html deleted file mode 100755 index 7a76e98..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-a.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - jQuery Mobile Framework - Persistent footer A - - - - - - - - - -
                - -
                -

                Friends

                - Home -
                - -
                -
                -

                This page is a demo of a persistent footer navigation bar. At the foot of the page, you'll see a persistent horizontal navigation bar. Click on any of the links, and you'll see the page content transition but the footer remains fixed: The footer sticks persistently even when transitioning to a new HTML page, because the footer on all four HTML pages has the same data-id attribute. Note: If you'd like an active button in your navbar to remain active when you return to the page displaying this active button, add a class of ui-state-persist in addition to ui-btn-active to the corresponding anchor.

                - - - - - - - - - - - - -
                - - - -
                - -
                -
                - -
                -
                - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-b.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-b.html deleted file mode 100755 index e44e3d1..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-b.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - jQuery Mobile Framework - Persistent footer B - - - - - - - - - - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-c.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-c.html deleted file mode 100755 index cedcfa2..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/footer-persist-c.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - jQuery Mobile Framework - Persistent footer C - - - - - - - - - -
                - -
                -

                Inbox

                - Home -
                - -
                - - - - -
                - -
                -
                - -
                -
                - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/index.html b/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/index.html deleted file mode 100755 index 9b114ab..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/index.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - jQuery Mobile Docs - Toolbars - - - - - - - - - -
                - -
                -

                Toolbars

                - Home -
                - -
                - -

                Toolbars are used for headers, footers and utility bars throughout a mobile sites and applications, so jQuery Mobile provides a standard set of bars and navigation tools to cover most standard scenarios.

                - - - - -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/.htaccess b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/.htaccess deleted file mode 100644 index 2622705..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/.htaccess +++ /dev/null @@ -1 +0,0 @@ -AddType text/cache-manifest .manifest \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/application.js b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/application.js deleted file mode 100644 index 4dd4143..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/application.js +++ /dev/null @@ -1,80 +0,0 @@ -$(function() { - var symbols = { - "USD": "$", - "EUR": "€", - "GBP": "£", - "Miles": "m", - "Kilometer": "km", - "inch": "\"", - "centimeter": "cm" - }; - - function list() { - var ul = $( "#conversions" ).empty(), - ulEdit = $( "#edit-conversions" ).empty(); - $.each( all, function( index, conversion ) { - // if last update was less then a minute ago, don't update - if ( conversion.type === "currency" && !conversion.rate || conversion.updated && conversion.updated + 60000 < +new Date) { - var self = conversion; - var url = "http://query.yahooapis.com/v1/public/yql?q=select%20rate%2Cname%20from%20csv%20where%20url%3D'http%3A%2F%2Fdownload.finance.yahoo.com%2Fd%2Fquotes%3Fs%3D" + conversion.from + conversion.to + "%253DX%26f%3Dl1n'%20and%20columns%3D'rate%2Cname'&format=json&diagnostics=true&callback=?"; - $.getJSON( url, function( result ) { - self.rate = parseFloat( result.query.results.row.rate ); - $( "#term" ).keyup(); - self.updated = +new Date; - conversions.store(); - }); - } - $( "#conversion-field" ).tmpl( conversion, { - symbols: symbols - }).appendTo( ul ); - $( "#conversion-edit-field" ).tmpl( conversion, { - symbols: symbols - }).appendTo( ulEdit ); - }); - ul.add(ulEdit).listview("refresh"); - $( "#term" ).keyup(); - } - var all = conversions.all(); - $( "#term" ).keyup(function() { - var value = this.value; - $.each( all, function( index, conversion ) { - $( "#" + conversion.from + conversion.to ).text( conversion.rate - ? Math.ceil( value * conversion.rate * 100 ) / 100 - : "Rate not available, yet." - ); - }); - }).focus(); - list(); - $( "form" ).submit(function() { - $( "#term" ).blur(); - return false; - }); - $( "#add" ).click(function() { - all.push({ - type: "currency", - from: $( "#currency-options-from" ).val(), - to: $( "#currency-options-to" ).val() - }); - conversions.store(); - list(); - }); - $( "#clear" ).click(function() { - conversions.clear(); - list(); - return false; - }); - $( "#restore" ).click(function() { - conversions.restore(); - list(); - return false; - }); - - $( "#edit-conversions" ).click(function( event ) { - var target = $( event.target ).closest( ".deletebutton" ); - if ( target.length ) { - conversions.remove( target.prev( "label" ).attr( "for" ) ); - list(); - } - return false; - }); -}); diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/cache.manifest b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/cache.manifest deleted file mode 100644 index c375d51..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/cache.manifest +++ /dev/null @@ -1,5 +0,0 @@ -CACHE MANIFEST -index.html -../../css/themes/default -../../js/ -jquery.tmpl.js \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/converter.css b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/converter.css deleted file mode 100644 index 4947107..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/converter.css +++ /dev/null @@ -1,14 +0,0 @@ -ul li { clear:both; } -li p.currency-from { padding-top:23px; font-size: 180%; font-weight:bold; } -li p.currency-from a:link, li p.units a:visited { padding-top:26px; font-size: 90%; } -span.unit { opacity:0.5; } - -li p.subtext { margin-top:2px; } -li p.ui-li-aside { font-size:190%; width:60%; } - - - -form#curr-form { border-width: 0; overflow: hidden; margin: 2px -15px 2px -15px } -form#curr-form .ui-input-search { margin: 5px; width: auto; display: block; } - -.add-row { font-weight:bold; font-size:110%; } \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/index.html b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/index.html deleted file mode 100644 index ab3e546..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/index.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - jQuery Mobile Framework - Converter Demo Application - - - - - - - - -
                - - - - - - - - -
                - Edit -

                Currency converter

                -
                -
                -
                - - -
                -
                -
                -
                  -
                -
                -
                - -
                - -
                -

                Edit conversions

                - Done -
                - -
                -
                  -
                -
                - -
                - -
                -
                -

                Add new

                - Cancel -
                - -
                -

                Select currencies to convert:

                -
                - - -
                -
                - - -
                - -
                -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/jquery.tmpl.js b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/jquery.tmpl.js deleted file mode 100644 index 8aeef23..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/jquery.tmpl.js +++ /dev/null @@ -1,487 +0,0 @@ -/* - * Copy of http://github.com/nje/jquery-tmpl/raw/master/jquery.tmpl.js at f827fb68417bc14ab9f6ae889421d5fea4cb2859 - * jQuery Templating Plugin - * Copyright 2010, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - */ -(function( jQuery, undefined ){ - var oldManip = jQuery.fn.domManip, tmplItmAtt = "_tmplitem", htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /, - newTmplItems = {}, wrappedItems = {}, appendToTmplItems, topTmplItem = { key: 0, data: {} }, itemKey = 0, cloneIndex = 0, stack = []; - - function newTmplItem( options, parentItem, fn, data ) { - // Returns a template item data structure for a new rendered instance of a template (a 'template item'). - // The content field is a hierarchical array of strings and nested items (to be - // removed and replaced by nodes field of dom elements, once inserted in DOM). - var newItem = { - data: data || (parentItem ? parentItem.data : {}), - _wrap: parentItem ? parentItem._wrap : null, - tmpl: null, - parent: parentItem || null, - nodes: [], - calls: tiCalls, - nest: tiNest, - wrap: tiWrap, - html: tiHtml, - update: tiUpdate - }; - if ( options ) { - jQuery.extend( newItem, options, { nodes: [], parent: parentItem } ); - } - if ( fn ) { - // Build the hierarchical content to be used during insertion into DOM - newItem.tmpl = fn; - newItem._ctnt = newItem._ctnt || newItem.tmpl( jQuery, newItem ); - newItem.key = ++itemKey; - // Keep track of new template item, until it is stored as jQuery Data on DOM element - (stack.length ? wrappedItems : newTmplItems)[itemKey] = newItem; - } - return newItem; - } - - // Override appendTo etc., in order to provide support for targeting multiple elements. (This code would disappear if integrated in jquery core). - jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" - }, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var ret = [], insert = jQuery( selector ), elems, i, l, tmplItems, - parent = this.length === 1 && this[0].parentNode; - - appendToTmplItems = newTmplItems || {}; - if ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) { - insert[ original ]( this[0] ); - ret = this; - } else { - for ( i = 0, l = insert.length; i < l; i++ ) { - cloneIndex = i; - elems = (i > 0 ? this.clone(true) : this).get(); - jQuery.fn[ original ].apply( jQuery(insert[i]), elems ); - ret = ret.concat( elems ); - } - cloneIndex = 0; - ret = this.pushStack( ret, name, insert.selector ); - } - tmplItems = appendToTmplItems; - appendToTmplItems = null; - jQuery.tmpl.complete( tmplItems ); - return ret; - }; - }); - - jQuery.fn.extend({ - // Use first wrapped element as template markup. - // Return wrapped set of template items, obtained by rendering template against data. - tmpl: function( data, options, parentItem ) { - return jQuery.tmpl( this[0], data, options, parentItem ); - }, - - // Find which rendered template item the first wrapped DOM element belongs to - tmplItem: function() { - return jQuery.tmplItem( this[0] ); - }, - - // Consider the first wrapped element as a template declaration, and get the compiled template or store it as a named template. - template: function( name ) { - return jQuery.template( name, this[0] ); - }, - - domManip: function( args, table, callback, options ) { - // This appears to be a bug in the appendTo, etc. implementation - // it should be doing .call() instead of .apply(). See #6227 - if ( args[0] && args[0].nodeType ) { - var dmArgs = jQuery.makeArray( arguments ), argsLength = args.length, i = 0, tmplItem; - while ( i < argsLength && !(tmplItem = jQuery.data( args[i++], "tmplItem" ))) {} - if ( argsLength > 1 ) { - dmArgs[0] = [jQuery.makeArray( args )]; - } - if ( tmplItem && cloneIndex ) { - dmArgs[2] = function( fragClone ) { - // Handler called by oldManip when rendered template has been inserted into DOM. - jQuery.tmpl.afterManip( this, fragClone, callback ); - }; - } - oldManip.apply( this, dmArgs ); - } else { - oldManip.apply( this, arguments ); - } - cloneIndex = 0; - if ( !appendToTmplItems ) { - jQuery.tmpl.complete( newTmplItems ); - } - return this; - } - }); - - jQuery.extend({ - // Return wrapped set of template items, obtained by rendering template against data. - tmpl: function( tmpl, data, options, parentItem ) { - var ret, topLevel = !parentItem; - if ( topLevel ) { - // This is a top-level tmpl call (not from a nested template using {{tmpl}}) - parentItem = topTmplItem; - tmpl = jQuery.template[tmpl] || jQuery.template( null, tmpl ); - wrappedItems = {}; // Any wrapped items will be rebuilt, since this is top level - } else if ( !tmpl ) { - // The template item is already associated with DOM - this is a refresh. - // Re-evaluate rendered template for the parentItem - tmpl = parentItem.tmpl; - newTmplItems[parentItem.key] = parentItem; - parentItem.nodes = []; - if ( parentItem.wrapped ) { - updateWrapped( parentItem, parentItem.wrapped ); - } - // Rebuild, without creating a new template item - return jQuery( build( parentItem, null, parentItem.tmpl( jQuery, parentItem ) )); - } - if ( !tmpl ) { - return []; // Could throw... - } - if ( typeof data === "function" ) { - data = data.call( parentItem || {} ); - } - if ( options && options.wrapped ) { - updateWrapped( options, options.wrapped ); - } - ret = jQuery.isArray( data ) ? - jQuery.map( data, function( dataItem ) { - return dataItem ? newTmplItem( options, parentItem, tmpl, dataItem ) : null; - }) : - [ newTmplItem( options, parentItem, tmpl, data ) ]; - - return topLevel ? jQuery( build( parentItem, null, ret ) ) : ret; - }, - - // Return rendered template item for an element. - tmplItem: function( elem ) { - var tmplItem; - if ( elem instanceof jQuery ) { - elem = elem[0]; - } - while ( elem && elem.nodeType === 1 && !(tmplItem = jQuery.data( elem, "tmplItem" )) && (elem = elem.parentNode) ) {} - return tmplItem || topTmplItem; - }, - - // Set: - // Use $.template( name, tmpl ) to cache a named template, - // where tmpl is a template string, a script element or a jQuery instance wrapping a script element, etc. - // Use $( "selector" ).template( name ) to provide access by name to a script block template declaration. - - // Get: - // Use $.template( name ) to access a cached template. - // Also $( selectorToScriptBlock ).template(), or $.template( null, templateString ) - // will return the compiled template, without adding a name reference. - // If templateString includes at least one HTML tag, $.template( templateString ) is equivalent - // to $.template( null, templateString ) - template: function( name, tmpl ) { - if (tmpl) { - // Compile template and associate with name - if ( typeof tmpl === "string" ) { - // This is an HTML string being passed directly in. - tmpl = buildTmplFn( tmpl ) - } else if ( tmpl instanceof jQuery ) { - tmpl = tmpl[0] || {}; - } - if ( tmpl.nodeType ) { - // If this is a template block, use cached copy, or generate tmpl function and cache. - tmpl = jQuery.data( tmpl, "tmpl" ) || jQuery.data( tmpl, "tmpl", buildTmplFn( tmpl.innerHTML )); - } - return typeof name === "string" ? (jQuery.template[name] = tmpl) : tmpl; - } - // Return named compiled template - return name ? (typeof name !== "string" ? jQuery.template( null, name ): - (jQuery.template[name] || - // If not in map, treat as a selector. (If integrated with core, use quickExpr.exec) - jQuery.template( null, htmlExpr.test( name ) ? name : jQuery( name )))) : null; - }, - - encode: function( text ) { - // Do HTML encoding replacing < > & and ' and " by corresponding entities. - return ("" + text).split("<").join("<").split(">").join(">").split('"').join(""").split("'").join("'"); - } - }); - - jQuery.extend( jQuery.tmpl, { - tag: { - "tmpl": { - _default: { $2: "null" }, - open: "if($notnull_1){_=_.concat($item.nest($1,$2));}" - // tmpl target parameter can be of type function, so use $1, not $1a (so not auto detection of functions) - // This means that {{tmpl foo}} treats foo as a template (which IS a function). - // Explicit parens can be used if foo is a function that returns a template: {{tmpl foo()}}. - }, - "wrap": { - _default: { $2: "null" }, - open: "$item.calls(_,$1,$2);_=[];", - close: "call=$item.calls();_=call._.concat($item.wrap(call,_));" - }, - "each": { - _default: { $2: "$index, $value" }, - open: "if($notnull_1){$.each($1a,function($2){with(this){", - close: "}});}" - }, - "if": { - open: "if(($notnull_1) && $1a){", - close: "}" - }, - "else": { - _default: { $1: "true" }, - open: "}else if(($notnull_1) && $1a){" - }, - "html": { - // Unecoded expression evaluation. - open: "if($notnull_1){_.push($1a);}" - }, - "=": { - // Encoded expression evaluation. Abbreviated form is ${}. - _default: { $1: "$data" }, - open: "if($notnull_1){_.push($.encode($1a));}" - }, - "!": { - // Comment tag. Skipped by parser - open: "" - } - }, - - // This stub can be overridden, e.g. in jquery.tmplPlus for providing rendered events - complete: function( items ) { - newTmplItems = {}; - }, - - // Call this from code which overrides domManip, or equivalent - // Manage cloning/storing template items etc. - afterManip: function afterManip( elem, fragClone, callback ) { - // Provides cloned fragment ready for fixup prior to and after insertion into DOM - var content = fragClone.nodeType === 11 ? - jQuery.makeArray(fragClone.childNodes) : - fragClone.nodeType === 1 ? [fragClone] : []; - - // Return fragment to original caller (e.g. append) for DOM insertion - callback.call( elem, fragClone ); - - // Fragment has been inserted:- Add inserted nodes to tmplItem data structure. Replace inserted element annotations by jQuery.data. - storeTmplItems( content ); - cloneIndex++; - } - }); - - //========================== Private helper functions, used by code above ========================== - - function build( tmplItem, nested, content ) { - // Convert hierarchical content into flat string array - // and finally return array of fragments ready for DOM insertion - var frag, ret = content ? jQuery.map( content, function( item ) { - return (typeof item === "string") ? - // Insert template item annotations, to be converted to jQuery.data( "tmplItem" ) when elems are inserted into DOM. - (tmplItem.key ? item.replace( /(<\w+)(?=[\s>])(?![^>]*_tmplitem)([^>]*)/g, "$1 " + tmplItmAtt + "=\"" + tmplItem.key + "\" $2" ) : item) : - // This is a child template item. Build nested template. - build( item, tmplItem, item._ctnt ); - }) : - // If content is not defined, insert tmplItem directly. Not a template item. May be a string, or a string array, e.g. from {{html $item.html()}}. - tmplItem; - if ( nested ) { - return ret; - } - - // top-level template - ret = ret.join(""); - - // Support templates which have initial or final text nodes, or consist only of text - // Also support HTML entities within the HTML markup. - ret.replace( /^\s*([^<\s][^<]*)?(<[\w\W]+>)([^>]*[^>\s])?\s*$/, function( all, before, middle, after) { - frag = jQuery( middle ).get(); - - storeTmplItems( frag ); - if ( before ) { - frag = unencode( before ).concat(frag); - } - if ( after ) { - frag = frag.concat(unencode( after )); - } - }); - return frag ? frag : unencode( ret ); - } - - function unencode( text ) { - // Use createElement, since createTextNode will not render HTML entities correctly - var el = document.createElement( "div" ); - el.innerHTML = text; - return jQuery.makeArray(el.childNodes); - } - - // Generate a reusable function that will serve to render a template against data - function buildTmplFn( markup ) { - return new Function("jQuery","$item", - "var $=jQuery,call,_=[],$data=$item.data;" + - - // Introduce the data as local variables using with(){} - "with($data){_.push('" + - - // Convert the template into pure JavaScript - jQuery.trim(markup) - .replace( /([\\'])/g, "\\$1" ) - .replace( /[\r\t\n]/g, " " ) - .replace( /\$\{([^\}]*)\}/g, "{{= $1}}" ) - .replace( /\{\{(\/?)(\w+|.)(?:\(((?:.(?!\}\}))*?)?\))?(?:\s+(.*?)?)?(\((.*?)\))?\s*\}\}/g, - function( all, slash, type, fnargs, target, parens, args ) { - var tag = jQuery.tmpl.tag[ type ], def, expr, exprAutoFnDetect; - if ( !tag ) { - throw "Template command not found: " + type; - } - def = tag._default || []; - if ( parens && !/\w$/.test(target)) { - target += parens; - parens = ""; - } - if ( target ) { - target = unescape( target ); - args = args ? ("," + unescape( args ) + ")") : (parens ? ")" : ""); - // Support for target being things like a.toLowerCase(); - // In that case don't call with template item as 'this' pointer. Just evaluate... - expr = parens ? (target.indexOf(".") > -1 ? target + parens : ("(" + target + ").call($item" + args)) : target; - exprAutoFnDetect = parens ? expr : "(typeof(" + target + ")==='function'?(" + target + ").call($item):(" + target + "))"; - } else { - exprAutoFnDetect = expr = def.$1 || "null"; - } - fnargs = unescape( fnargs ); - return "');" + - tag[ slash ? "close" : "open" ] - .split( "$notnull_1" ).join( target ? "typeof(" + target + ")!=='undefined' && (" + target + ")!=null" : "true" ) - .split( "$1a" ).join( exprAutoFnDetect ) - .split( "$1" ).join( expr ) - .split( "$2" ).join( fnargs ? - fnargs.replace( /\s*([^\(]+)\s*(\((.*?)\))?/g, function( all, name, parens, params ) { - params = params ? ("," + params + ")") : (parens ? ")" : ""); - return params ? ("(" + name + ").call($item" + params) : all; - }) - : (def.$2||"") - ) + - "_.push('"; - }) + - "');}return _;" - ); - } - function updateWrapped( options, wrapped ) { - // Build the wrapped content. - options._wrap = build( options, true, - // Suport imperative scenario in which options.wrapped can be set to a selector or an HTML string. - jQuery.isArray( wrapped ) ? wrapped : [htmlExpr.test( wrapped ) ? wrapped : jQuery( wrapped ).html()] - ).join(""); - } - - function unescape( args ) { - return args ? args.replace( /\\'/g, "'").replace(/\\\\/g, "\\" ) : null; - } - function outerHtml( elem ) { - var div = document.createElement("div"); - div.appendChild( elem.cloneNode(true) ); - return div.innerHTML; - } - - // Store template items in jQuery.data(), ensuring a unique tmplItem data data structure for each rendered template instance. - function storeTmplItems( content ) { - var keySuffix = "_" + cloneIndex, elem, elems, newClonedItems = {}, i, l, m; - for ( i = 0, l = content.length; i < l; i++ ) { - if ( (elem = content[i]).nodeType !== 1 ) { - continue; - } - elems = elem.getElementsByTagName("*"); - for ( m = elems.length - 1; m >= 0; m-- ) { - processItemKey( elems[m] ); - } - processItemKey( elem ); - } - function processItemKey( el ) { - var pntKey, pntNode = el, pntItem, tmplItem, key; - // Ensure that each rendered template inserted into the DOM has its own template item, - if ( (key = el.getAttribute( tmplItmAtt ))) { - while ((pntNode = pntNode.parentNode).nodeType === 1 && !(pntKey = pntNode.getAttribute( tmplItmAtt ))) { } - if ( pntKey !== key ) { - // The next ancestor with a _tmplitem expando is on a different key than this one. - // So this is a top-level element within this template item - pntNode = pntNode.nodeType === 11 ? 0 : (pntNode.getAttribute( tmplItmAtt ) || 0); - if ( !(tmplItem = newTmplItems[key]) ) { - // The item is for wrapped content, and was copied from the temporary parent wrappedItem. - tmplItem = wrappedItems[key]; - tmplItem = newTmplItem( tmplItem, newTmplItems[pntNode]||wrappedItems[pntNode], null, true ); - tmplItem.key = ++itemKey; - newTmplItems[itemKey] = tmplItem; - } - if ( cloneIndex ) { - cloneTmplItem( key ); - } - } - el.removeAttribute( tmplItmAtt ); - } else if ( cloneIndex && (tmplItem = jQuery.data( el, "tmplItem" )) ) { - // This was a rendered element, cloned during append or appendTo etc. - // TmplItem stored in jQuery data has already been cloned in cloneCopyEvent. We must replace it with a fresh cloned tmplItem. - cloneTmplItem( tmplItem.key ); - newTmplItems[tmplItem.key] = tmplItem; - pntNode = jQuery.data( el.parentNode, "tmplItem" ); - pntNode = pntNode ? pntNode.key : 0; - } - if ( tmplItem ) { - pntItem = tmplItem; - // Find the template item of the parent element. - // (Using !=, not !==, since pntItem.key is number, and pntNode may be a string) - while ( pntItem && pntItem.key != pntNode ) { - // Add this element as a top-level node for this rendered template item, as well as for any - // ancestor items between this item and the item of its parent element - pntItem.nodes.push( el ); - pntItem = pntItem.parent; - } - // Delete content built during rendering - reduce API surface area and memory use, and avoid exposing of stale data after rendering... - delete tmplItem._ctnt; - delete tmplItem._wrap; - // Store template item as jQuery data on the element - jQuery.data( el, "tmplItem", tmplItem ); - } - function cloneTmplItem( key ) { - key = key + keySuffix; - tmplItem = newClonedItems[key] = - (newClonedItems[key] || newTmplItem( tmplItem, newTmplItems[tmplItem.parent.key + keySuffix] || tmplItem.parent, null, true )); - } - } - } - - //---- Helper functions for template item ---- - - function tiCalls( content, tmpl, data, options ) { - if ( !content ) { - return stack.pop(); - } - stack.push({ _: content, tmpl: tmpl, item:this, data: data, options: options }); - } - - function tiNest( tmpl, data, options ) { - // nested template, using {{tmpl}} tag - return jQuery.tmpl( jQuery.template( tmpl ), data, options, this ); - } - - function tiWrap( call, wrapped ) { - // nested template, using {{wrap}} tag - var options = call.options || {}; - options.wrapped = wrapped; - // Apply the template, which may incorporate wrapped content, - return jQuery.tmpl( jQuery.template( call.tmpl ), call.data, options, call.item ); - } - - function tiHtml( filter, textOnly ) { - var wrapped = this._wrap; - return jQuery.map( - jQuery( jQuery.isArray( wrapped ) ? wrapped.join("") : wrapped ).filter( filter || "*" ), - function(e) { - return textOnly ? - e.innerText || e.textContent : - e.outerHTML || outerHtml(e); - }); - } - - function tiUpdate() { - var coll = this.nodes; - jQuery.tmpl( null, null, null, this).insertBefore( coll[0] ); - jQuery( coll ).remove(); - } -})( jQuery ); diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/storage.js b/libs/js/jquery-mobile-1.0.1pre/experiments/converter/storage.js deleted file mode 100644 index 46e572f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/converter/storage.js +++ /dev/null @@ -1,70 +0,0 @@ -(function() { - -var defaults = [ - { - type: "currency", - from: "USD", - to: "EUR" - }, - { - type: "currency", - from: "GBP", - to: "EUR" - } - // TODO add back in as defaults once its possible to add other conversions, not just currencies - /*, - { - type: "distance", - from: "Miles", - to: "Kilometer", - rate: 1.609344 - }, - { - type: "distance", - from: "inch", - to: "centimeter", - rate: 2.54 - }*/ -]; - -// TODO fallback to whatever else when localStorage isn't available -function get() { - return JSON.parse( localStorage.getItem( "conversions" ) ); -} -function set( value ) { - localStorage.setItem( "conversions", JSON.stringify( value ) ); -} - -var conversions = get( "conversions" ); -if ( !conversions ) { - conversions = defaults.slice(); - set( conversions ); -} -window.conversions = { - store: function() { - set( conversions ); - }, - all: function() { - return conversions; - }, - clear: function() { - conversions.length = 0; - this.store(); - }, - restore: function() { - conversions.length = 0; - $.extend( conversions, defaults ); - this.store(); - }, - remove: function( tofrom ) { - $.each( conversions, function( index, conversion ) { - if ( ( conversion.from + conversion.to ) === tofrom ) { - conversions.splice( index, 1 ); - return false; - } - }); - this.store(); - } -}; - -})(); diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/index.html b/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/index.html deleted file mode 100644 index 138651b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - Main Page - - - - - - - - - - -
                -

                Google maps view

                -
                -

                If you're linking to a map page with jQuery Mobile's Ajax behavior, be sure to load google maps in the first real page's head, since it uses document.write and can not be included in the data-role=page div like normal scripts can. View map

                -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.css b/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.css deleted file mode 100644 index 0bb9a86..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.css +++ /dev/null @@ -1 +0,0 @@ -.page-map, .ui-content, #map-canvas { width: 100%; height: 100%; padding: 0; } \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.html b/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.html deleted file mode 100644 index 290569f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - Main Page - - - - - - - - - - -
                - - - -

                Map View

                -
                -
                - -
                -
                -
                - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.js b/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.js deleted file mode 100644 index 54d6a24..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/google-maps/map.js +++ /dev/null @@ -1,48 +0,0 @@ - -//thx @elroyjetson for the code example - -// When map page opens get location and display map -$('.page-map').live("pagecreate", function() { - - //boston :) - var lat = 42.35843, - lng = -71.059773; - - //try to get GPS coords - if( navigator.geolocation ) { - - //redirect function for successful location - function gpsSuccess(pos){ - if( pos.coords ){ - lat = pos.coords.latitude; - lng = pos.coords.longitude; - } - else{ - lat = pos.latitude; - lng = pos.longitude; - } - } - - function gpsFail(){ - //Geo-location is supported, but we failed to get your coordinates. Workaround here perhaps? - } - - navigator.geolocation.getCurrentPosition(gpsSuccess, gpsFail, {enableHighAccuracy:true, maximumAge: 300000}); - } - - /* - if not supported, you might attempt to use google loader for lat,long - $.getScript('http://www.google.com/jsapi?key=YOURAPIKEY',function(){ - lat = google.loader.ClientLocation.latitude; - lng = google.loader.ClientLocation.longitude; - }); - */ - - var latlng = new google.maps.LatLng(lat, lng); - var myOptions = { - zoom: 10, - center: latlng, - mapTypeId: google.maps.MapTypeId.ROADMAP - }; - var map = new google.maps.Map(document.getElementById("map-canvas"),myOptions); -}); diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/index.html b/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/index.html deleted file mode 100644 index ee5d914..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - jQuery Mobile: Scrollview Demos and Tests - - - - - - - - - - - - - -
                -
                -

                jQuery Mobile Framework

                -

                A few examples tweaked to make use of the scrollview component.

                -

                Alpha Release

                -
                - - -
                - - diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/lists-divider.html b/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/lists-divider.html deleted file mode 100644 index 9a9ea0b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/lists-divider.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists - - - - - - - - - - - - - -
                - -
                -

                List dividers

                -
                - - -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview-direction.html b/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview-direction.html deleted file mode 100644 index 26859af..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview-direction.html +++ /dev/null @@ -1,779 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists - - - - - - - - - - - - - -
                - -
                -

                Scroll View Direction Locking

                -
                - -
                -

                Scrollview

                -

                To turn an element into a scrollview, simply add a data-scroll="true" to the element. By default, a scrollview can scroll in both the horizontal and vertical directions. If the user drags the view horizontally (left or right), or vertically (up or down), scrolling will be locked so that it only scrolls in that one dimension. If the user drags the view diagonally, he will be able to scroll in both directions at the same time.

                -
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                -

                When there are nested scrollviews, if the user drags in a single dimension and hits either end of the view, the drag will be propagated up to the next outer scrollview that can handle a drag in that dimension. So for example, if you drag the scrollview above so that it reaches the top of its view, the entire page will start to scroll upward if you continue dragging. This is because the drag was propagated from the scrollview with the letters in it, out to the scrollview containing the entire content for the page.

                -

                Horizontal Scrollview

                -

                A scrollview can be set up so that it only scrolls in the horizontal direction. Simply place a data-scroll="x" on the element you want to scroll:

                -
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                -

                Vertical Scrollview

                -

                A scrollview can be set up so that it only scrolls in the vertical direction. Simply place a data-scroll="y" on the element you want to scroll:

                -
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                -

                Scrollview Paging

                -

                A scrollview can be set up so that it scrolls by pages. This feature is only enabled for horizontal or vertical scrollviews. Use data-scroll="xp" or data-scroll="yp" to turn on paging. The following scrollview pages horizontally.

                -
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                z
                -
                0
                -
                1
                -
                2
                -
                3
                -
                4
                -
                5
                -
                6
                -
                7
                -
                8
                -
                9
                -
                a
                -
                b
                -
                c
                -
                d
                -
                e
                -
                f
                -
                g
                -
                h
                -
                i
                -
                j
                -
                k
                -
                l
                -
                m
                -
                n
                -
                o
                -
                p
                -
                q
                -
                r
                -
                s
                -
                t
                -
                u
                -
                v
                -
                w
                -
                x
                -
                y
                -
                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                -

                 

                -

                -
                -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview-nested.html b/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview-nested.html deleted file mode 100644 index 35f8285..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview-nested.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - jQuery Mobile Docs - Lists - - - - - - - - - - - - - -
                - -
                -

                Nested Scrollviews

                -
                - -
                -

                Example 1

                -

                In the following example the #4 is actually a vertical scrollview embedded within a horizontal scrollview.

                -
                -
                -
                1
                -
                2
                -
                3
                -
                -
                -
                4
                -
                A
                -
                B
                -
                -
                -
                C
                -
                @
                -
                #
                -
                $
                -
                %
                -
                &
                -
                *
                -
                -
                -
                D
                -
                E
                -
                F
                -
                -
                -
                5
                -
                6
                -
                7
                -
                -
                -

                Example 2

                -

                In the following example the #4 is actually a nested horizontal scrollview embedded within a horizontal scrollview. The idea here is that if you drag-scroll the nested scrollview, once it reaches either end of its view, it should start scrolling the outer view.

                -
                -
                -
                1
                -
                2
                -
                3
                -
                -
                -
                4
                -
                A
                -
                B
                -
                C
                -
                D
                -
                E
                -
                F
                -
                -
                -
                5
                -
                6
                -
                7
                -
                -
                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                -

                Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                -

                 

                -

                -
                -
                - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/sv-test-01.html b/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/sv-test-01.html deleted file mode 100644 index 4c60b94..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/sv-test-01.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - -Scrollview Test 1 - Form Element Event Test - - - - - - - - -
                -
                -

                Form Element Event Test

                -
                - - -
                -

                The form elements on this page are wrapped by a special div that has event handlers for touchstart, touchmove and touchstop. The checkboxes below control how the event within these handlers is treated when they fire. Use this page to figure out how the various event treatments impact the form elements on you mobile device, then add to the notes at the bottom of the page.

                -

                All scrolling on this page is performed by the native viewport, there are no scrollviews on this page.

                -
                -
                - - - - - - - - - - - - -
                -
                -
                -
                -

                Form elements

                -
                - - -
                -
                - - -
                -
                - - -
                -
                - - -
                -
                - - -
                -
                -
                - Choose as many snacks as you'd like: - - - - - - - - -
                -
                -
                -
                - Font styling: - - - - - - -
                -
                -
                -
                - Choose a pet: - - - - - - - - -
                -
                -
                -
                - Layout view: - - - - - - -
                -
                -
                - - -
                -
                - - -
                -
                -
                -
                - -
                -
                - -
                -
                -
                -
                -
                -

                Notes

                -
                  -
                • iOS -
                    -
                  • None
                  • -
                  -
                • -
                • Android -
                    -
                  • HTC Incredible - Android 2.1 (HTC Sense) -
                      -
                    • Calling preventDefault() on the touchstart event prevents te following elements from working properly: -
                        -
                      • Textfield
                      • -
                      • Textarea
                      • -
                      • Checkbox
                      • -
                      • Radio
                      • -
                      • Button
                      • -
                      -
                    • -
                    -
                  • -
                  • Motorola Droid X - Android 2.2 ()
                  • -
                  -
                • -
                • Black Berry OS 6 -
                    -
                  • None
                  • -
                  -
                • -
                -
                - -
                - - - - \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/themeswitcher/jquery.mobile.themeswitcher.js b/libs/js/jquery-mobile-1.0.1pre/experiments/themeswitcher/jquery.mobile.themeswitcher.js deleted file mode 100644 index 91e7642..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/themeswitcher/jquery.mobile.themeswitcher.js +++ /dev/null @@ -1,37 +0,0 @@ -//quick & dirty theme switcher, written to potentially work as a bookmarklet -(function($){ - $.themeswitcher = function(){ - if( $('[data-'+ $.mobile.ns +'-url=themeswitcher]').length ){ return; } - var themesDir = 'http://jquerymobile.com/test/css/themes/', - themes = ['default','valencia'], - currentPage = $.mobile.activePage, - menuPage = $( '
                ' + - '
                ' + - '
                Switch Theme:
                '+ - '
                '+ - '
                  '+ - '
                  ' ) - .appendTo( $.mobile.pageContainer ), - menu = menuPage.find('ul'); - - //menu items - $.each(themes, function( i ){ - $('
                • ' + themes[ i ].charAt(0).toUpperCase() + themes[ i ].substr(1) + '
                • ') - .bind("vclick", function(){ - addTheme( themes[i] ); - menuPage.dialog( "close" ); - return false; - }) - .appendTo(menu); - }); - - //remover, adder - function addTheme(theme){ - $('head').append( '' ); - } - - //create page, listview - menuPage.page(); - - }; -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/weather/index.php b/libs/js/jquery-mobile-1.0.1pre/experiments/weather/index.php deleted file mode 100644 index c61080a..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/experiments/weather/index.php +++ /dev/null @@ -1,89 +0,0 @@ -xpath("/xml_api_reply/weather/forecast_information"); -$current = $xml->xpath("/xml_api_reply/weather/current_conditions"); -$forecast_list = $xml->xpath("/xml_api_reply/weather/forecast_conditions"); -?> - - - - - - jQuery Mobile Framework - Weather for <?php echo $information[0]->city['data']; ?> - - - - - - - - -
                  - -
                  - - - -
                  - - -
                  -

                  Currently in city['data']; ?>:

                  -
                  - - weather -

                  - temp_f['data']; ?>° F, - condition['data']; ?> - -

                  -
                  - - -
                    -
                  • This week's forecast
                  • - - -
                  • - -

                    day_of_week['data']; ?>

                    -

                    - low['data']; ?>° F - high['data']; ?>° F, - condition['data']; ?> -

                    -
                  • - - -
                  -
                  - - -
                  - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/index.html b/libs/js/jquery-mobile-1.0.1pre/index.html deleted file mode 100755 index 95615bd..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - jQuery Mobile: Demos and Documentation - - - - - - - - - -
                  -
                  -

                  Beta Release

                  - - -
                  - -
                  -

                  jQuery Mobile Framework

                  -

                  A Touch-Optimized Web Framework for Smartphones & Tablets

                  -
                  - - -

                  Welcome. Browse the jQuery Mobile components and learn how to make rich, accessible, touch-friendly websites and apps.

                  - - - -
                  - - - - - -
                  - - - -
                  - - diff --git a/libs/js/jquery-mobile-1.0.1pre/jquery.mobile.js b/libs/js/jquery-mobile-1.0.1pre/jquery.mobile.js deleted file mode 100644 index 9b70413..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/jquery.mobile.js +++ /dev/null @@ -1,6951 +0,0 @@ -/* -* jQuery Mobile Framework Git Build: SHA1: aa52a6bc2b9702b0f7f7f90af65e61fe9a9d26b6 <> Date: Thu Nov 17 09:30:35 2011 -0800 -* http://jquerymobile.com -* -* Copyright 2011 (c) jQuery Project -* Dual licensed under the MIT or GPL Version 2 licenses. -* http://jquery.org/license -* -*/ -/*! - * jQuery UI Widget @VERSION - * - * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ - -(function( $, undefined ) { - -// jQuery 1.4+ -if ( $.cleanData ) { - var _cleanData = $.cleanData; - $.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - $( elem ).triggerHandler( "remove" ); - } - _cleanData( elems ); - }; -} else { - var _remove = $.fn.remove; - $.fn.remove = function( selector, keepData ) { - return this.each(function() { - if ( !keepData ) { - if ( !selector || $.filter( selector, [ this ] ).length ) { - $( "*", this ).add( [ this ] ).each(function() { - $( this ).triggerHandler( "remove" ); - }); - } - } - return _remove.call( $(this), selector, keepData ); - }); - }; -} - -$.widget = function( name, base, prototype ) { - var namespace = name.split( "." )[ 0 ], - fullName; - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName ] = function( elem ) { - return !!$.data( elem, name ); - }; - - $[ namespace ] = $[ namespace ] || {}; - $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without initializing for simple inheritance - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - - var basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from -// $.each( basePrototype, function( key, val ) { -// if ( $.isPlainObject(val) ) { -// basePrototype[ key ] = $.extend( {}, val ); -// } -// }); - basePrototype.options = $.extend( true, {}, basePrototype.options ); - $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { - namespace: namespace, - widgetName: name, - widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, - widgetBaseClass: fullName - }, prototype ); - - $.widget.bridge( name, $[ namespace ][ name ] ); -}; - -$.widget.bridge = function( name, object ) { - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = Array.prototype.slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.extend.apply( null, [ true, options ].concat(args) ) : - options; - - // prevent calls to internal methods - if ( isMethodCall && options.charAt( 0 ) === "_" ) { - return returnValue; - } - - if ( isMethodCall ) { - this.each(function() { - var instance = $.data( this, name ); - if ( !instance ) { - throw "cannot call methods on " + name + " prior to initialization; " + - "attempted to call method '" + options + "'"; - } - if ( !$.isFunction( instance[options] ) ) { - throw "no such method '" + options + "' for " + name + " widget instance"; - } - var methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, name ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - $.data( this, name, new object( options, this ) ); - } - }); - } - - return returnValue; - }; -}; - -$.Widget = function( options, element ) { - // allow instantiation without initializing for simple inheritance - if ( arguments.length ) { - this._createWidget( options, element ); - } -}; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - options: { - disabled: false - }, - _createWidget: function( options, element ) { - // $.widget.bridge stores the plugin instance, but we do it anyway - // so that it's stored even before the _create function runs - $.data( element, this.widgetName, this ); - this.element = $( element ); - this.options = $.extend( true, {}, - this.options, - this._getCreateOptions(), - options ); - - var self = this; - this.element.bind( "remove." + this.widgetName, function() { - self.destroy(); - }); - - this._create(); - this._trigger( "create" ); - this._init(); - }, - _getCreateOptions: function() { - var options = {}; - if ( $.metadata ) { - options = $.metadata.get( element )[ this.widgetName ]; - } - return options; - }, - _create: function() {}, - _init: function() {}, - - destroy: function() { - this.element - .unbind( "." + this.widgetName ) - .removeData( this.widgetName ); - this.widget() - .unbind( "." + this.widgetName ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetBaseClass + "-disabled " + - "ui-state-disabled" ); - }, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.extend( {}, this.options ); - } - - if (typeof key === "string" ) { - if ( value === undefined ) { - return this.options[ key ]; - } - options = {}; - options[ key ] = value; - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var self = this; - $.each( options, function( key, value ) { - self._setOption( key, value ); - }); - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - [ value ? "addClass" : "removeClass"]( - this.widgetBaseClass + "-disabled" + " " + - "ui-state-disabled" ) - .attr( "aria-disabled", value ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _trigger: function( type, event, data ) { - var callback = this.options[ type ]; - - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - data = data || {}; - - // copy original event properties over to the new event - // this would happen if we could call $.event.fix instead of $.Event - // but we don't have a way to force an event to be fixed multiple times - if ( event.originalEvent ) { - for ( var i = $.event.props.length, prop; i; ) { - prop = $.event.props[ --i ]; - event[ prop ] = event.originalEvent[ prop ]; - } - } - - this.element.trigger( event, data ); - - return !( $.isFunction(callback) && - callback.call( this.element[0], event, data ) === false || - event.isDefaultPrevented() ); - } -}; - -})( jQuery ); -/* -* widget factory extentions for mobile -*/ - -(function( $, undefined ) { - -$.widget( "mobile.widget", { - // decorate the parent _createWidget to trigger `widgetinit` for users - // who wish to do post post `widgetcreate` alterations/additions - // - // TODO create a pull request for jquery ui to trigger this event - // in the original _createWidget - _createWidget: function() { - $.Widget.prototype._createWidget.apply( this, arguments ); - this._trigger( 'init' ); - }, - - _getCreateOptions: function() { - - var elem = this.element, - options = {}; - - $.each( this.options, function( option ) { - - var value = elem.jqmData( option.replace( /[A-Z]/g, function( c ) { - return "-" + c.toLowerCase(); - }) - ); - - if ( value !== undefined ) { - options[ option ] = value; - } - }); - - return options; - }, - - enhanceWithin: function( target ) { - // TODO remove dependency on the page widget for the keepNative. - // Currently the keepNative value is defined on the page prototype so - // the method is as well - var page = $(target).closest(":jqmData(role='page')").data( "page" ), - keepNative = (page && page.keepNativeSelector()) || ""; - - $( this.options.initSelector, target ).not( keepNative )[ this.widgetName ](); - } -}); - -})( jQuery ); -/* -* a workaround for window.matchMedia -*/ - -(function( $, undefined ) { - -var $window = $( window ), - $html = $( "html" ); - -/* $.mobile.media method: pass a CSS media type or query and get a bool return - note: this feature relies on actual media query support for media queries, though types will work most anywhere - examples: - $.mobile.media('screen') //>> tests for screen media type - $.mobile.media('screen and (min-width: 480px)') //>> tests for screen media type with window width > 480px - $.mobile.media('@media screen and (-webkit-min-device-pixel-ratio: 2)') //>> tests for webkit 2x pixel ratio (iPhone 4) -*/ -$.mobile.media = (function() { - // TODO: use window.matchMedia once at least one UA implements it - var cache = {}, - testDiv = $( "
                  " ), - fakeBody = $( "" ).append( testDiv ); - - return function( query ) { - if ( !( query in cache ) ) { - var styleBlock = document.createElement( "style" ), - cssrule = "@media " + query + " { #jquery-mediatest { position:absolute; } }"; - - //must set type for IE! - styleBlock.type = "text/css"; - - if ( styleBlock.styleSheet ){ - styleBlock.styleSheet.cssText = cssrule; - } else { - styleBlock.appendChild( document.createTextNode(cssrule) ); - } - - $html.prepend( fakeBody ).prepend( styleBlock ); - cache[ query ] = testDiv.css( "position" ) === "absolute"; - fakeBody.add( styleBlock ).remove(); - } - return cache[ query ]; - }; -})(); - -})(jQuery); -/* -* support tests -*/ - -(function( $, undefined ) { - -var fakeBody = $( "" ).prependTo( "html" ), - fbCSS = fakeBody[ 0 ].style, - vendors = [ "Webkit", "Moz", "O" ], - webos = "palmGetResource" in window, //only used to rule out scrollTop - operamini = window.operamini && ({}).toString.call( window.operamini ) === "[object OperaMini]", - bb = window.blackberry; //only used to rule out box shadow, as it's filled opaque on BB - -// thx Modernizr -function propExists( prop ) { - var uc_prop = prop.charAt( 0 ).toUpperCase() + prop.substr( 1 ), - props = ( prop + " " + vendors.join( uc_prop + " " ) + uc_prop ).split( " " ); - - for ( var v in props ){ - if ( fbCSS[ props[ v ] ] !== undefined ) { - return true; - } - } -} - -// Test for dynamic-updating base tag support ( allows us to avoid href,src attr rewriting ) -function baseTagTest() { - var fauxBase = location.protocol + "//" + location.host + location.pathname + "ui-dir/", - base = $( "head base" ), - fauxEle = null, - href = "", - link, rebase; - - if ( !base.length ) { - base = fauxEle = $( "", { "href": fauxBase }).appendTo( "head" ); - } else { - href = base.attr( "href" ); - } - - link = $( "" ).prependTo( fakeBody ); - rebase = link[ 0 ].href; - base[ 0 ].href = href || location.pathname; - - if ( fauxEle ) { - fauxEle.remove(); - } - return rebase.indexOf( fauxBase ) === 0; -} - - -// non-UA-based IE version check by James Padolsey, modified by jdalton - from http://gist.github.com/527683 -// allows for inclusion of IE 6+, including Windows Mobile 7 -$.mobile.browser = {}; -$.mobile.browser.ie = (function() { - var v = 3, - div = document.createElement( "div" ), - a = div.all || []; - - while ( div.innerHTML = "", a[ 0 ] ); - - return v > 4 ? v : !v; -})(); - - -$.extend( $.support, { - orientation: "orientation" in window && "onorientationchange" in window, - touch: "ontouchend" in document, - cssTransitions: "WebKitTransitionEvent" in window, - pushState: "pushState" in history && "replaceState" in history, - mediaquery: $.mobile.media( "only all" ), - cssPseudoElement: !!propExists( "content" ), - touchOverflow: !!propExists( "overflowScrolling" ), - boxShadow: !!propExists( "boxShadow" ) && !bb, - scrollTop: ( "pageXOffset" in window || "scrollTop" in document.documentElement || "scrollTop" in fakeBody[ 0 ] ) && !webos && !operamini, - dynamicBaseTag: baseTagTest() -}); - -fakeBody.remove(); - - -// $.mobile.ajaxBlacklist is used to override ajaxEnabled on platforms that have known conflicts with hash history updates (BB5, Symbian) -// or that generally work better browsing in regular http for full page refreshes (Opera Mini) -// Note: This detection below is used as a last resort. -// We recommend only using these detection methods when all other more reliable/forward-looking approaches are not possible -var nokiaLTE7_3 = (function(){ - - var ua = window.navigator.userAgent; - - //The following is an attempt to match Nokia browsers that are running Symbian/s60, with webkit, version 7.3 or older - return ua.indexOf( "Nokia" ) > -1 && - ( ua.indexOf( "Symbian/3" ) > -1 || ua.indexOf( "Series60/5" ) > -1 ) && - ua.indexOf( "AppleWebKit" ) > -1 && - ua.match( /(BrowserNG|NokiaBrowser)\/7\.[0-3]/ ); -})(); - -$.mobile.ajaxBlacklist = - // BlackBerry browsers, pre-webkit - window.blackberry && !window.WebKitPoint || - // Opera Mini - operamini || - // Symbian webkits pre 7.3 - nokiaLTE7_3; - -// Lastly, this workaround is the only way we've found so far to get pre 7.3 Symbian webkit devices -// to render the stylesheets when they're referenced before this script, as we'd recommend doing. -// This simply reappends the CSS in place, which for some reason makes it apply -if ( nokiaLTE7_3 ) { - $(function() { - $( "head link[rel='stylesheet']" ).attr( "rel", "alternate stylesheet" ).attr( "rel", "stylesheet" ); - }); -} - -// For ruling out shadows via css -if ( !$.support.boxShadow ) { - $( "html" ).addClass( "ui-mobile-nosupport-boxshadow" ); -} - -})( jQuery ); -/* -* "mouse" plugin -*/ - -// This plugin is an experiment for abstracting away the touch and mouse -// events so that developers don't have to worry about which method of input -// the device their document is loaded on supports. -// -// The idea here is to allow the developer to register listeners for the -// basic mouse events, such as mousedown, mousemove, mouseup, and click, -// and the plugin will take care of registering the correct listeners -// behind the scenes to invoke the listener at the fastest possible time -// for that device, while still retaining the order of event firing in -// the traditional mouse environment, should multiple handlers be registered -// on the same element for different events. -// -// The current version exposes the following virtual events to jQuery bind methods: -// "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel" - -(function( $, window, document, undefined ) { - -var dataPropertyName = "virtualMouseBindings", - touchTargetPropertyName = "virtualTouchID", - virtualEventNames = "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split( " " ), - touchEventProps = "clientX clientY pageX pageY screenX screenY".split( " " ), - activeDocHandlers = {}, - resetTimerID = 0, - startX = 0, - startY = 0, - didScroll = false, - clickBlockList = [], - blockMouseTriggers = false, - blockTouchTriggers = false, - eventCaptureSupported = "addEventListener" in document, - $document = $( document ), - nextTouchID = 1, - lastTouchID = 0; - -$.vmouse = { - moveDistanceThreshold: 10, - clickDistanceThreshold: 10, - resetTimerDuration: 1500 -}; - -function getNativeEvent( event ) { - - while ( event && typeof event.originalEvent !== "undefined" ) { - event = event.originalEvent; - } - return event; -} - -function createVirtualEvent( event, eventType ) { - - var t = event.type, - oe, props, ne, prop, ct, touch, i, j; - - event = $.Event(event); - event.type = eventType; - - oe = event.originalEvent; - props = $.event.props; - - // copy original event properties over to the new event - // this would happen if we could call $.event.fix instead of $.Event - // but we don't have a way to force an event to be fixed multiple times - if ( oe ) { - for ( i = props.length, prop; i; ) { - prop = props[ --i ]; - event[ prop ] = oe[ prop ]; - } - } - - // make sure that if the mouse and click virtual events are generated - // without a .which one is defined - if ( t.search(/mouse(down|up)|click/) > -1 && !event.which ){ - event.which = 1; - } - - if ( t.search(/^touch/) !== -1 ) { - ne = getNativeEvent( oe ); - t = ne.touches; - ct = ne.changedTouches; - touch = ( t && t.length ) ? t[0] : ( (ct && ct.length) ? ct[ 0 ] : undefined ); - - if ( touch ) { - for ( j = 0, len = touchEventProps.length; j < len; j++){ - prop = touchEventProps[ j ]; - event[ prop ] = touch[ prop ]; - } - } - } - - return event; -} - -function getVirtualBindingFlags( element ) { - - var flags = {}, - b, k; - - while ( element ) { - - b = $.data( element, dataPropertyName ); - - for ( k in b ) { - if ( b[ k ] ) { - flags[ k ] = flags.hasVirtualBinding = true; - } - } - element = element.parentNode; - } - return flags; -} - -function getClosestElementWithVirtualBinding( element, eventType ) { - var b; - while ( element ) { - - b = $.data( element, dataPropertyName ); - - if ( b && ( !eventType || b[ eventType ] ) ) { - return element; - } - element = element.parentNode; - } - return null; -} - -function enableTouchBindings() { - blockTouchTriggers = false; -} - -function disableTouchBindings() { - blockTouchTriggers = true; -} - -function enableMouseBindings() { - lastTouchID = 0; - clickBlockList.length = 0; - blockMouseTriggers = false; - - // When mouse bindings are enabled, our - // touch bindings are disabled. - disableTouchBindings(); -} - -function disableMouseBindings() { - // When mouse bindings are disabled, our - // touch bindings are enabled. - enableTouchBindings(); -} - -function startResetTimer() { - clearResetTimer(); - resetTimerID = setTimeout(function(){ - resetTimerID = 0; - enableMouseBindings(); - }, $.vmouse.resetTimerDuration ); -} - -function clearResetTimer() { - if ( resetTimerID ){ - clearTimeout( resetTimerID ); - resetTimerID = 0; - } -} - -function triggerVirtualEvent( eventType, event, flags ) { - var ve; - - if ( ( flags && flags[ eventType ] ) || - ( !flags && getClosestElementWithVirtualBinding( event.target, eventType ) ) ) { - - ve = createVirtualEvent( event, eventType ); - - $( event.target).trigger( ve ); - } - - return ve; -} - -function mouseEventCallback( event ) { - var touchID = $.data(event.target, touchTargetPropertyName); - - if ( !blockMouseTriggers && ( !lastTouchID || lastTouchID !== touchID ) ){ - var ve = triggerVirtualEvent( "v" + event.type, event ); - if ( ve ) { - if ( ve.isDefaultPrevented() ) { - event.preventDefault(); - } - if ( ve.isPropagationStopped() ) { - event.stopPropagation(); - } - if ( ve.isImmediatePropagationStopped() ) { - event.stopImmediatePropagation(); - } - } - } -} - -function handleTouchStart( event ) { - - var touches = getNativeEvent( event ).touches, - target, flags; - - if ( touches && touches.length === 1 ) { - - target = event.target; - flags = getVirtualBindingFlags( target ); - - if ( flags.hasVirtualBinding ) { - - lastTouchID = nextTouchID++; - $.data( target, touchTargetPropertyName, lastTouchID ); - - clearResetTimer(); - - disableMouseBindings(); - didScroll = false; - - var t = getNativeEvent( event ).touches[ 0 ]; - startX = t.pageX; - startY = t.pageY; - - triggerVirtualEvent( "vmouseover", event, flags ); - triggerVirtualEvent( "vmousedown", event, flags ); - } - } -} - -function handleScroll( event ) { - if ( blockTouchTriggers ) { - return; - } - - if ( !didScroll ) { - triggerVirtualEvent( "vmousecancel", event, getVirtualBindingFlags( event.target ) ); - } - - didScroll = true; - startResetTimer(); -} - -function handleTouchMove( event ) { - if ( blockTouchTriggers ) { - return; - } - - var t = getNativeEvent( event ).touches[ 0 ], - didCancel = didScroll, - moveThreshold = $.vmouse.moveDistanceThreshold; - didScroll = didScroll || - ( Math.abs(t.pageX - startX) > moveThreshold || - Math.abs(t.pageY - startY) > moveThreshold ), - flags = getVirtualBindingFlags( event.target ); - - if ( didScroll && !didCancel ) { - triggerVirtualEvent( "vmousecancel", event, flags ); - } - - triggerVirtualEvent( "vmousemove", event, flags ); - startResetTimer(); -} - -function handleTouchEnd( event ) { - if ( blockTouchTriggers ) { - return; - } - - disableTouchBindings(); - - var flags = getVirtualBindingFlags( event.target ), - t; - triggerVirtualEvent( "vmouseup", event, flags ); - - if ( !didScroll ) { - var ve = triggerVirtualEvent( "vclick", event, flags ); - if ( ve && ve.isDefaultPrevented() ) { - // The target of the mouse events that follow the touchend - // event don't necessarily match the target used during the - // touch. This means we need to rely on coordinates for blocking - // any click that is generated. - t = getNativeEvent( event ).changedTouches[ 0 ]; - clickBlockList.push({ - touchID: lastTouchID, - x: t.clientX, - y: t.clientY - }); - - // Prevent any mouse events that follow from triggering - // virtual event notifications. - blockMouseTriggers = true; - } - } - triggerVirtualEvent( "vmouseout", event, flags); - didScroll = false; - - startResetTimer(); -} - -function hasVirtualBindings( ele ) { - var bindings = $.data( ele, dataPropertyName ), - k; - - if ( bindings ) { - for ( k in bindings ) { - if ( bindings[ k ] ) { - return true; - } - } - } - return false; -} - -function dummyMouseHandler(){} - -function getSpecialEventObject( eventType ) { - var realType = eventType.substr( 1 ); - - return { - setup: function( data, namespace ) { - // If this is the first virtual mouse binding for this element, - // add a bindings object to its data. - - if ( !hasVirtualBindings( this ) ) { - $.data( this, dataPropertyName, {}); - } - - // If setup is called, we know it is the first binding for this - // eventType, so initialize the count for the eventType to zero. - var bindings = $.data( this, dataPropertyName ); - bindings[ eventType ] = true; - - // If this is the first virtual mouse event for this type, - // register a global handler on the document. - - activeDocHandlers[ eventType ] = ( activeDocHandlers[ eventType ] || 0 ) + 1; - - if ( activeDocHandlers[ eventType ] === 1 ) { - $document.bind( realType, mouseEventCallback ); - } - - // Some browsers, like Opera Mini, won't dispatch mouse/click events - // for elements unless they actually have handlers registered on them. - // To get around this, we register dummy handlers on the elements. - - $( this ).bind( realType, dummyMouseHandler ); - - // For now, if event capture is not supported, we rely on mouse handlers. - if ( eventCaptureSupported ) { - // If this is the first virtual mouse binding for the document, - // register our touchstart handler on the document. - - activeDocHandlers[ "touchstart" ] = ( activeDocHandlers[ "touchstart" ] || 0) + 1; - - if (activeDocHandlers[ "touchstart" ] === 1) { - $document.bind( "touchstart", handleTouchStart ) - .bind( "touchend", handleTouchEnd ) - - // On touch platforms, touching the screen and then dragging your finger - // causes the window content to scroll after some distance threshold is - // exceeded. On these platforms, a scroll prevents a click event from being - // dispatched, and on some platforms, even the touchend is suppressed. To - // mimic the suppression of the click event, we need to watch for a scroll - // event. Unfortunately, some platforms like iOS don't dispatch scroll - // events until *AFTER* the user lifts their finger (touchend). This means - // we need to watch both scroll and touchmove events to figure out whether - // or not a scroll happenens before the touchend event is fired. - - .bind( "touchmove", handleTouchMove ) - .bind( "scroll", handleScroll ); - } - } - }, - - teardown: function( data, namespace ) { - // If this is the last virtual binding for this eventType, - // remove its global handler from the document. - - --activeDocHandlers[ eventType ]; - - if ( !activeDocHandlers[ eventType ] ) { - $document.unbind( realType, mouseEventCallback ); - } - - if ( eventCaptureSupported ) { - // If this is the last virtual mouse binding in existence, - // remove our document touchstart listener. - - --activeDocHandlers[ "touchstart" ]; - - if ( !activeDocHandlers[ "touchstart" ] ) { - $document.unbind( "touchstart", handleTouchStart ) - .unbind( "touchmove", handleTouchMove ) - .unbind( "touchend", handleTouchEnd ) - .unbind( "scroll", handleScroll ); - } - } - - var $this = $( this ), - bindings = $.data( this, dataPropertyName ); - - // teardown may be called when an element was - // removed from the DOM. If this is the case, - // jQuery core may have already stripped the element - // of any data bindings so we need to check it before - // using it. - if ( bindings ) { - bindings[ eventType ] = false; - } - - // Unregister the dummy event handler. - - $this.unbind( realType, dummyMouseHandler ); - - // If this is the last virtual mouse binding on the - // element, remove the binding data from the element. - - if ( !hasVirtualBindings( this ) ) { - $this.removeData( dataPropertyName ); - } - } - }; -} - -// Expose our custom events to the jQuery bind/unbind mechanism. - -for ( var i = 0; i < virtualEventNames.length; i++ ){ - $.event.special[ virtualEventNames[ i ] ] = getSpecialEventObject( virtualEventNames[ i ] ); -} - -// Add a capture click handler to block clicks. -// Note that we require event capture support for this so if the device -// doesn't support it, we punt for now and rely solely on mouse events. -if ( eventCaptureSupported ) { - document.addEventListener( "click", function( e ){ - var cnt = clickBlockList.length, - target = e.target, - x, y, ele, i, o, touchID; - - if ( cnt ) { - x = e.clientX; - y = e.clientY; - threshold = $.vmouse.clickDistanceThreshold; - - // The idea here is to run through the clickBlockList to see if - // the current click event is in the proximity of one of our - // vclick events that had preventDefault() called on it. If we find - // one, then we block the click. - // - // Why do we have to rely on proximity? - // - // Because the target of the touch event that triggered the vclick - // can be different from the target of the click event synthesized - // by the browser. The target of a mouse/click event that is syntehsized - // from a touch event seems to be implementation specific. For example, - // some browsers will fire mouse/click events for a link that is near - // a touch event, even though the target of the touchstart/touchend event - // says the user touched outside the link. Also, it seems that with most - // browsers, the target of the mouse/click event is not calculated until the - // time it is dispatched, so if you replace an element that you touched - // with another element, the target of the mouse/click will be the new - // element underneath that point. - // - // Aside from proximity, we also check to see if the target and any - // of its ancestors were the ones that blocked a click. This is necessary - // because of the strange mouse/click target calculation done in the - // Android 2.1 browser, where if you click on an element, and there is a - // mouse/click handler on one of its ancestors, the target will be the - // innermost child of the touched element, even if that child is no where - // near the point of touch. - - ele = target; - - while ( ele ) { - for ( i = 0; i < cnt; i++ ) { - o = clickBlockList[ i ]; - touchID = 0; - - if ( ( ele === target && Math.abs( o.x - x ) < threshold && Math.abs( o.y - y ) < threshold ) || - $.data( ele, touchTargetPropertyName ) === o.touchID ) { - // XXX: We may want to consider removing matches from the block list - // instead of waiting for the reset timer to fire. - e.preventDefault(); - e.stopPropagation(); - return; - } - } - ele = ele.parentNode; - } - } - }, true); -} -})( jQuery, window, document ); -/* -* "events" plugin - Handles events -*/ - -(function( $, window, undefined ) { - -// add new event shortcuts -$.each( ( "touchstart touchmove touchend orientationchange throttledresize " + - "tap taphold swipe swipeleft swiperight scrollstart scrollstop" ).split( " " ), function( i, name ) { - - $.fn[ name ] = function( fn ) { - return fn ? this.bind( name, fn ) : this.trigger( name ); - }; - - $.attrFn[ name ] = true; -}); - -var supportTouch = $.support.touch, - scrollEvent = "touchmove scroll", - touchStartEvent = supportTouch ? "touchstart" : "mousedown", - touchStopEvent = supportTouch ? "touchend" : "mouseup", - touchMoveEvent = supportTouch ? "touchmove" : "mousemove"; - -function triggerCustomEvent( obj, eventType, event ) { - var originalType = event.type; - event.type = eventType; - $.event.handle.call( obj, event ); - event.type = originalType; -} - -// also handles scrollstop -$.event.special.scrollstart = { - - enabled: true, - - setup: function() { - - var thisObject = this, - $this = $( thisObject ), - scrolling, - timer; - - function trigger( event, state ) { - scrolling = state; - triggerCustomEvent( thisObject, scrolling ? "scrollstart" : "scrollstop", event ); - } - - // iPhone triggers scroll after a small delay; use touchmove instead - $this.bind( scrollEvent, function( event ) { - - if ( !$.event.special.scrollstart.enabled ) { - return; - } - - if ( !scrolling ) { - trigger( event, true ); - } - - clearTimeout( timer ); - timer = setTimeout(function() { - trigger( event, false ); - }, 50 ); - }); - } -}; - -// also handles taphold -$.event.special.tap = { - setup: function() { - var thisObject = this, - $this = $( thisObject ); - - $this.bind( "vmousedown", function( event ) { - - if ( event.which && event.which !== 1 ) { - return false; - } - - var origTarget = event.target, - origEvent = event.originalEvent, - timer; - - function clearTapTimer() { - clearTimeout( timer ); - } - - function clearTapHandlers() { - clearTapTimer(); - - $this.unbind( "vclick", clickHandler ) - .unbind( "vmouseup", clearTapTimer ) - .unbind( "vmousecancel", clearTapHandlers ); - } - - function clickHandler(event) { - clearTapHandlers(); - - // ONLY trigger a 'tap' event if the start target is - // the same as the stop target. - if ( origTarget == event.target ) { - triggerCustomEvent( thisObject, "tap", event ); - } - } - - $this.bind( "vmousecancel", clearTapHandlers ) - .bind( "vmouseup", clearTapTimer ) - .bind( "vclick", clickHandler ); - - timer = setTimeout(function() { - triggerCustomEvent( thisObject, "taphold", $.Event( "taphold" ) ); - }, 750 ); - }); - } -}; - -// also handles swipeleft, swiperight -$.event.special.swipe = { - scrollSupressionThreshold: 10, // More than this horizontal displacement, and we will suppress scrolling. - - durationThreshold: 1000, // More time than this, and it isn't a swipe. - - horizontalDistanceThreshold: 30, // Swipe horizontal displacement must be more than this. - - verticalDistanceThreshold: 75, // Swipe vertical displacement must be less than this. - - setup: function() { - var thisObject = this, - $this = $( thisObject ); - - $this.bind( touchStartEvent, function( event ) { - var data = event.originalEvent.touches ? - event.originalEvent.touches[ 0 ] : event, - start = { - time: ( new Date() ).getTime(), - coords: [ data.pageX, data.pageY ], - origin: $( event.target ) - }, - stop; - - function moveHandler( event ) { - - if ( !start ) { - return; - } - - var data = event.originalEvent.touches ? - event.originalEvent.touches[ 0 ] : event; - - stop = { - time: ( new Date() ).getTime(), - coords: [ data.pageX, data.pageY ] - }; - - // prevent scrolling - if ( Math.abs( start.coords[ 0 ] - stop.coords[ 0 ] ) > $.event.special.swipe.scrollSupressionThreshold ) { - event.preventDefault(); - } - } - - $this.bind( touchMoveEvent, moveHandler ) - .one( touchStopEvent, function( event ) { - $this.unbind( touchMoveEvent, moveHandler ); - - if ( start && stop ) { - if ( stop.time - start.time < $.event.special.swipe.durationThreshold && - Math.abs( start.coords[ 0 ] - stop.coords[ 0 ] ) > $.event.special.swipe.horizontalDistanceThreshold && - Math.abs( start.coords[ 1 ] - stop.coords[ 1 ] ) < $.event.special.swipe.verticalDistanceThreshold ) { - - start.origin.trigger( "swipe" ) - .trigger( start.coords[0] > stop.coords[ 0 ] ? "swipeleft" : "swiperight" ); - } - } - start = stop = undefined; - }); - }); - } -}; - -(function( $, window ) { - // "Cowboy" Ben Alman - - var win = $( window ), - special_event, - get_orientation, - last_orientation; - - $.event.special.orientationchange = special_event = { - setup: function() { - // If the event is supported natively, return false so that jQuery - // will bind to the event using DOM methods. - if ( $.support.orientation && $.mobile.orientationChangeEnabled ) { - return false; - } - - // Get the current orientation to avoid initial double-triggering. - last_orientation = get_orientation(); - - // Because the orientationchange event doesn't exist, simulate the - // event by testing window dimensions on resize. - win.bind( "throttledresize", handler ); - }, - teardown: function(){ - // If the event is not supported natively, return false so that - // jQuery will unbind the event using DOM methods. - if ( $.support.orientation && $.mobile.orientationChangeEnabled ) { - return false; - } - - // Because the orientationchange event doesn't exist, unbind the - // resize event handler. - win.unbind( "throttledresize", handler ); - }, - add: function( handleObj ) { - // Save a reference to the bound event handler. - var old_handler = handleObj.handler; - - - handleObj.handler = function( event ) { - // Modify event object, adding the .orientation property. - event.orientation = get_orientation(); - - // Call the originally-bound event handler and return its result. - return old_handler.apply( this, arguments ); - }; - } - }; - - // If the event is not supported natively, this handler will be bound to - // the window resize event to simulate the orientationchange event. - function handler() { - // Get the current orientation. - var orientation = get_orientation(); - - if ( orientation !== last_orientation ) { - // The orientation has changed, so trigger the orientationchange event. - last_orientation = orientation; - win.trigger( "orientationchange" ); - } - } - - // Get the current page orientation. This method is exposed publicly, should it - // be needed, as jQuery.event.special.orientationchange.orientation() - $.event.special.orientationchange.orientation = get_orientation = function() { - var isPortrait = true, elem = document.documentElement; - - // prefer window orientation to the calculation based on screensize as - // the actual screen resize takes place before or after the orientation change event - // has been fired depending on implementation (eg android 2.3 is before, iphone after). - // More testing is required to determine if a more reliable method of determining the new screensize - // is possible when orientationchange is fired. (eg, use media queries + element + opacity) - if ( $.support.orientation ) { - // if the window orientation registers as 0 or 180 degrees report - // portrait, otherwise landscape - isPortrait = window.orientation % 180 == 0; - } else { - isPortrait = elem && elem.clientWidth / elem.clientHeight < 1.1; - } - - return isPortrait ? "portrait" : "landscape"; - }; - -})( jQuery, window ); - - -// throttled resize event -(function() { - - $.event.special.throttledresize = { - setup: function() { - $( this ).bind( "resize", handler ); - }, - teardown: function(){ - $( this ).unbind( "resize", handler ); - } - }; - - var throttle = 250, - handler = function() { - curr = ( new Date() ).getTime(); - diff = curr - lastCall; - - if ( diff >= throttle ) { - - lastCall = curr; - $( this ).trigger( "throttledresize" ); - - } else { - - if ( heldCall ) { - clearTimeout( heldCall ); - } - - // Promise a held call will still execute - heldCall = setTimeout( handler, throttle - diff ); - } - }, - lastCall = 0, - heldCall, - curr, - diff; -})(); - - -$.each({ - scrollstop: "scrollstart", - taphold: "tap", - swipeleft: "swipe", - swiperight: "swipe" -}, function( event, sourceEvent ) { - - $.event.special[ event ] = { - setup: function() { - $( this ).bind( sourceEvent, $.noop ); - } - }; -}); - -})( jQuery, this ); -// Script: jQuery hashchange event -// -// *Version: 1.3, Last updated: 7/21/2010* -// -// Project Home - http://benalman.com/projects/jquery-hashchange-plugin/ -// GitHub - http://github.com/cowboy/jquery-hashchange/ -// Source - http://github.com/cowboy/jquery-hashchange/raw/master/jquery.ba-hashchange.js -// (Minified) - http://github.com/cowboy/jquery-hashchange/raw/master/jquery.ba-hashchange.min.js (0.8kb gzipped) -// -// About: License -// -// Copyright (c) 2010 "Cowboy" Ben Alman, -// Dual licensed under the MIT and GPL licenses. -// http://benalman.com/about/license/ -// -// About: Examples -// -// These working examples, complete with fully commented code, illustrate a few -// ways in which this plugin can be used. -// -// hashchange event - http://benalman.com/code/projects/jquery-hashchange/examples/hashchange/ -// document.domain - http://benalman.com/code/projects/jquery-hashchange/examples/document_domain/ -// -// About: Support and Testing -// -// Information about what version or versions of jQuery this plugin has been -// tested with, what browsers it has been tested in, and where the unit tests -// reside (so you can test it yourself). -// -// jQuery Versions - 1.2.6, 1.3.2, 1.4.1, 1.4.2 -// Browsers Tested - Internet Explorer 6-8, Firefox 2-4, Chrome 5-6, Safari 3.2-5, -// Opera 9.6-10.60, iPhone 3.1, Android 1.6-2.2, BlackBerry 4.6-5. -// Unit Tests - http://benalman.com/code/projects/jquery-hashchange/unit/ -// -// About: Known issues -// -// While this jQuery hashchange event implementation is quite stable and -// robust, there are a few unfortunate browser bugs surrounding expected -// hashchange event-based behaviors, independent of any JavaScript -// window.onhashchange abstraction. See the following examples for more -// information: -// -// Chrome: Back Button - http://benalman.com/code/projects/jquery-hashchange/examples/bug-chrome-back-button/ -// Firefox: Remote XMLHttpRequest - http://benalman.com/code/projects/jquery-hashchange/examples/bug-firefox-remote-xhr/ -// WebKit: Back Button in an Iframe - http://benalman.com/code/projects/jquery-hashchange/examples/bug-webkit-hash-iframe/ -// Safari: Back Button from a different domain - http://benalman.com/code/projects/jquery-hashchange/examples/bug-safari-back-from-diff-domain/ -// -// Also note that should a browser natively support the window.onhashchange -// event, but not report that it does, the fallback polling loop will be used. -// -// About: Release History -// -// 1.3 - (7/21/2010) Reorganized IE6/7 Iframe code to make it more -// "removable" for mobile-only development. Added IE6/7 document.title -// support. Attempted to make Iframe as hidden as possible by using -// techniques from http://www.paciellogroup.com/blog/?p=604. Added -// support for the "shortcut" format $(window).hashchange( fn ) and -// $(window).hashchange() like jQuery provides for built-in events. -// Renamed jQuery.hashchangeDelay to and -// lowered its default value to 50. Added -// and properties plus document-domain.html -// file to address access denied issues when setting document.domain in -// IE6/7. -// 1.2 - (2/11/2010) Fixed a bug where coming back to a page using this plugin -// from a page on another domain would cause an error in Safari 4. Also, -// IE6/7 Iframe is now inserted after the body (this actually works), -// which prevents the page from scrolling when the event is first bound. -// Event can also now be bound before DOM ready, but it won't be usable -// before then in IE6/7. -// 1.1 - (1/21/2010) Incorporated document.documentMode test to fix IE8 bug -// where browser version is incorrectly reported as 8.0, despite -// inclusion of the X-UA-Compatible IE=EmulateIE7 meta tag. -// 1.0 - (1/9/2010) Initial Release. Broke out the jQuery BBQ event.special -// window.onhashchange functionality into a separate plugin for users -// who want just the basic event & back button support, without all the -// extra awesomeness that BBQ provides. This plugin will be included as -// part of jQuery BBQ, but also be available separately. - -(function($,window,undefined){ - '$:nomunge'; // Used by YUI compressor. - - // Reused string. - var str_hashchange = 'hashchange', - - // Method / object references. - doc = document, - fake_onhashchange, - special = $.event.special, - - // Does the browser support window.onhashchange? Note that IE8 running in - // IE7 compatibility mode reports true for 'onhashchange' in window, even - // though the event isn't supported, so also test document.documentMode. - doc_mode = doc.documentMode, - supports_onhashchange = 'on' + str_hashchange in window && ( doc_mode === undefined || doc_mode > 7 ); - - // Get location.hash (or what you'd expect location.hash to be) sans any - // leading #. Thanks for making this necessary, Firefox! - function get_fragment( url ) { - url = url || location.href; - return '#' + url.replace( /^[^#]*#?(.*)$/, '$1' ); - }; - - // Method: jQuery.fn.hashchange - // - // Bind a handler to the window.onhashchange event or trigger all bound - // window.onhashchange event handlers. This behavior is consistent with - // jQuery's built-in event handlers. - // - // Usage: - // - // > jQuery(window).hashchange( [ handler ] ); - // - // Arguments: - // - // handler - (Function) Optional handler to be bound to the hashchange - // event. This is a "shortcut" for the more verbose form: - // jQuery(window).bind( 'hashchange', handler ). If handler is omitted, - // all bound window.onhashchange event handlers will be triggered. This - // is a shortcut for the more verbose - // jQuery(window).trigger( 'hashchange' ). These forms are described in - // the section. - // - // Returns: - // - // (jQuery) The initial jQuery collection of elements. - - // Allow the "shortcut" format $(elem).hashchange( fn ) for binding and - // $(elem).hashchange() for triggering, like jQuery does for built-in events. - $.fn[ str_hashchange ] = function( fn ) { - return fn ? this.bind( str_hashchange, fn ) : this.trigger( str_hashchange ); - }; - - // Property: jQuery.fn.hashchange.delay - // - // The numeric interval (in milliseconds) at which the - // polling loop executes. Defaults to 50. - - // Property: jQuery.fn.hashchange.domain - // - // If you're setting document.domain in your JavaScript, and you want hash - // history to work in IE6/7, not only must this property be set, but you must - // also set document.domain BEFORE jQuery is loaded into the page. This - // property is only applicable if you are supporting IE6/7 (or IE8 operating - // in "IE7 compatibility" mode). - // - // In addition, the property must be set to the - // path of the included "document-domain.html" file, which can be renamed or - // modified if necessary (note that the document.domain specified must be the - // same in both your main JavaScript as well as in this file). - // - // Usage: - // - // jQuery.fn.hashchange.domain = document.domain; - - // Property: jQuery.fn.hashchange.src - // - // If, for some reason, you need to specify an Iframe src file (for example, - // when setting document.domain as in ), you can - // do so using this property. Note that when using this property, history - // won't be recorded in IE6/7 until the Iframe src file loads. This property - // is only applicable if you are supporting IE6/7 (or IE8 operating in "IE7 - // compatibility" mode). - // - // Usage: - // - // jQuery.fn.hashchange.src = 'path/to/file.html'; - - $.fn[ str_hashchange ].delay = 50; - /* - $.fn[ str_hashchange ].domain = null; - $.fn[ str_hashchange ].src = null; - */ - - // Event: hashchange event - // - // Fired when location.hash changes. In browsers that support it, the native - // HTML5 window.onhashchange event is used, otherwise a polling loop is - // initialized, running every milliseconds to - // see if the hash has changed. In IE6/7 (and IE8 operating in "IE7 - // compatibility" mode), a hidden Iframe is created to allow the back button - // and hash-based history to work. - // - // Usage as described in : - // - // > // Bind an event handler. - // > jQuery(window).hashchange( function(e) { - // > var hash = location.hash; - // > ... - // > }); - // > - // > // Manually trigger the event handler. - // > jQuery(window).hashchange(); - // - // A more verbose usage that allows for event namespacing: - // - // > // Bind an event handler. - // > jQuery(window).bind( 'hashchange', function(e) { - // > var hash = location.hash; - // > ... - // > }); - // > - // > // Manually trigger the event handler. - // > jQuery(window).trigger( 'hashchange' ); - // - // Additional Notes: - // - // * The polling loop and Iframe are not created until at least one handler - // is actually bound to the 'hashchange' event. - // * If you need the bound handler(s) to execute immediately, in cases where - // a location.hash exists on page load, via bookmark or page refresh for - // example, use jQuery(window).hashchange() or the more verbose - // jQuery(window).trigger( 'hashchange' ). - // * The event can be bound before DOM ready, but since it won't be usable - // before then in IE6/7 (due to the necessary Iframe), recommended usage is - // to bind it inside a DOM ready handler. - - // Override existing $.event.special.hashchange methods (allowing this plugin - // to be defined after jQuery BBQ in BBQ's source code). - special[ str_hashchange ] = $.extend( special[ str_hashchange ], { - - // Called only when the first 'hashchange' event is bound to window. - setup: function() { - // If window.onhashchange is supported natively, there's nothing to do.. - if ( supports_onhashchange ) { return false; } - - // Otherwise, we need to create our own. And we don't want to call this - // until the user binds to the event, just in case they never do, since it - // will create a polling loop and possibly even a hidden Iframe. - $( fake_onhashchange.start ); - }, - - // Called only when the last 'hashchange' event is unbound from window. - teardown: function() { - // If window.onhashchange is supported natively, there's nothing to do.. - if ( supports_onhashchange ) { return false; } - - // Otherwise, we need to stop ours (if possible). - $( fake_onhashchange.stop ); - } - - }); - - // fake_onhashchange does all the work of triggering the window.onhashchange - // event for browsers that don't natively support it, including creating a - // polling loop to watch for hash changes and in IE 6/7 creating a hidden - // Iframe to enable back and forward. - fake_onhashchange = (function(){ - var self = {}, - timeout_id, - - // Remember the initial hash so it doesn't get triggered immediately. - last_hash = get_fragment(), - - fn_retval = function(val){ return val; }, - history_set = fn_retval, - history_get = fn_retval; - - // Start the polling loop. - self.start = function() { - timeout_id || poll(); - }; - - // Stop the polling loop. - self.stop = function() { - timeout_id && clearTimeout( timeout_id ); - timeout_id = undefined; - }; - - // This polling loop checks every $.fn.hashchange.delay milliseconds to see - // if location.hash has changed, and triggers the 'hashchange' event on - // window when necessary. - function poll() { - var hash = get_fragment(), - history_hash = history_get( last_hash ); - - if ( hash !== last_hash ) { - history_set( last_hash = hash, history_hash ); - - $(window).trigger( str_hashchange ); - - } else if ( history_hash !== last_hash ) { - location.href = location.href.replace( /#.*/, '' ) + history_hash; - } - - timeout_id = setTimeout( poll, $.fn[ str_hashchange ].delay ); - }; - - // vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv - // vvvvvvvvvvvvvvvvvvv REMOVE IF NOT SUPPORTING IE6/7/8 vvvvvvvvvvvvvvvvvvv - // vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv - $.browser.msie && !supports_onhashchange && (function(){ - // Not only do IE6/7 need the "magical" Iframe treatment, but so does IE8 - // when running in "IE7 compatibility" mode. - - var iframe, - iframe_src; - - // When the event is bound and polling starts in IE 6/7, create a hidden - // Iframe for history handling. - self.start = function(){ - if ( !iframe ) { - iframe_src = $.fn[ str_hashchange ].src; - iframe_src = iframe_src && iframe_src + get_fragment(); - - // Create hidden Iframe. Attempt to make Iframe as hidden as possible - // by using techniques from http://www.paciellogroup.com/blog/?p=604. - iframe = $(' - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/index.html deleted file mode 100644 index 0cff9c3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/index.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - jQuery Mobile Init Test Suite - - - - - - - - - - - - - - - - - -

                  jQuery Mobile Init Test Suite

                  -

                  -

                  -
                    -
                  - -
                  -
                  - -
                  -
                  - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/init_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/init_core.js deleted file mode 100644 index 171d9a9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/init_core.js +++ /dev/null @@ -1,268 +0,0 @@ -/* - * mobile init tests - */ -(function($){ - var mobilePage = undefined, - libName = 'jquery.mobile.init.js', - coreLib = 'jquery.mobile.core.js', - extendFn = $.extend, - setGradeA = function(value) { $.mobile.gradeA = function(){ return value; }; }, - reloadCoreNSandInit = function(){ - $.testHelper.reloadLib(coreLib); - $.testHelper.reloadLib("jquery.setNamespace.js"); - $.testHelper.reloadLib(libName); - }; - - - module(libName, { - setup: function(){ - // NOTE reset for gradeA tests - $('html').removeClass('ui-mobile'); - - // TODO add post reload callback - $('.ui-loader').remove(); - }, - teardown: function(){ - $.extend = extendFn; - - // NOTE reset for showPageLoadingMsg/hidePageLoadingMsg tests - $('.ui-loader').remove(); - - // clear the classes added by reloading the init - $("html").attr('class', ''); - } - }); - - // NOTE important to use $.fn.one here to make sure library reloads don't fire - // the event before the test check below - $(document).one("mobileinit", function(){ - mobilePage = $.mobile.page; - }); - - // NOTE for the following two tests see index html for the binding - test( "mobile.page is available when mobile init is fired", function(){ - ok( mobilePage !== undefined, "$.mobile.page is defined" ); - }); - - $.testHelper.excludeFileProtocol(function(){ - asyncTest( "loading the init library triggers mobilinit on the document", function(){ - var initFired = false; - expect( 1 ); - - $(window.document).one('mobileinit', function(event){ - initFired = true; - }); - - $.testHelper.reloadLib(libName); - - setTimeout(function(){ - ok(initFired, "init fired"); - start(); - }, 1000); - }); - - test( "enhancments are skipped when the browser is not grade A", function(){ - setGradeA(false); - $.testHelper.reloadLib(libName); - - //NOTE easiest way to check for enhancements, not the most obvious - ok(!$("html").hasClass("ui-mobile"), "html elem doesn't have class ui-mobile"); - }); - - test( "enhancments are added when the browser is grade A", function(){ - setGradeA(true); - $.testHelper.reloadLib(libName); - - ok($("html").hasClass("ui-mobile"), "html elem has class mobile"); - }); - - asyncTest( "useFastClick is configurable via mobileinit", function(){ - $(document).one( "mobileinit", function(){ - $.mobile.useFastClick = false; - start(); - }); - - $.testHelper.reloadLib(libName); - - same( $.mobile.useFastClick, false , "fast click is set to false after init" ); - $.mobile.useFastClick = true; - }); - - - - var findFirstPage = function() { - return $(":jqmData(role='page')").first(); - }; - - test( "active page and start page should be set to the fist page in the selected set", function(){ - expect( 2 ); - $.testHelper.reloadLib(libName); - var firstPage = findFirstPage(); - - same($.mobile.firstPage[0], firstPage[0]); - same($.mobile.activePage[0], firstPage[0]); - }); - - test( "mobile viewport class is defined on the first page's parent", function(){ - expect( 1 ); - $.testHelper.reloadLib(libName); - var firstPage = findFirstPage(); - - ok(firstPage.parent().hasClass("ui-mobile-viewport"), "first page has viewport"); - }); - - test( "mobile page container is the first page's parent", function(){ - expect( 1 ); - $.testHelper.reloadLib(libName); - var firstPage = findFirstPage(); - - same($.mobile.pageContainer[0], firstPage.parent()[0]); - }); - - asyncTest( "hashchange triggered on document ready with single argument: true", function(){ - $.testHelper.sequence([ - function(){ - location.hash = "#foo"; - }, - - // delay the bind until the first hashchange - function(){ - $(window).one("hashchange", function(ev, arg){ - same(arg, true); - start(); - }); - }, - - function(){ - $.testHelper.reloadLib(libName); - } - ], 1000); - }); - - test( "pages without a data-url attribute have it set to their id", function(){ - same($("#foo").jqmData('url'), "foo"); - }); - - test( "pages with a data-url attribute are left with the original value", function(){ - same($("#bar").jqmData('url'), "bak"); - }); - - asyncTest( "showPageLoadingMsg doesn't add the dialog to the page when loading message is false", function(){ - expect( 1 ); - $.mobile.loadingMessage = false; - $.mobile.showPageLoadingMsg(); - - setTimeout(function(){ - ok(!$(".ui-loader").length, "no ui-loader element"); - start(); - }, 500); - }); - - asyncTest( "hidePageLoadingMsg doesn't add the dialog to the page when loading message is false", function(){ - expect( 1 ); - $.mobile.loadingMessage = true; - $.mobile.hidePageLoadingMsg(); - - setTimeout(function(){ - same($(".ui-loading").length, 0, "page should not be in the loading state"); - start(); - }, 500); - }); - - asyncTest( "showPageLoadingMsg adds the dialog to the page when loadingMessage is true", function(){ - expect( 1 ); - $.mobile.loadingMessage = true; - $.mobile.showPageLoadingMsg(); - - setTimeout(function(){ - same($(".ui-loading").length, 1, "page should be in the loading state"); - start(); - }, 500); - }); - - asyncTest( "page loading should contain default loading message", function(){ - expect( 1 ); - reloadCoreNSandInit(); - $.mobile.showPageLoadingMsg(); - - setTimeout(function(){ - same($(".ui-loader h1").text(), "loading"); - start(); - }, 500); - }); - - asyncTest( "page loading should contain custom loading message", function(){ - $.mobile.loadingMessage = "foo"; - $.testHelper.reloadLib(libName); - $.mobile.showPageLoadingMsg(); - - setTimeout(function(){ - same($(".ui-loader h1").text(), "foo"); - start(); - }, 500); - }); - - asyncTest( "page loading should contain custom loading message when set during runtime", function(){ - $.mobile.loadingMessage = "bar"; - $.mobile.showPageLoadingMsg(); - - setTimeout(function(){ - same($(".ui-loader h1").text(), "bar"); - start(); - }, 500); - }); - - - - // NOTE: the next two tests work on timeouts that assume a page will be created within 2 seconds - // it'd be great to get these using a more reliable callback or event - - asyncTest( "page does auto-initialize at domready when autoinitialize option is true (default) ", function(){ - - $( "
                  ", { "data-nstest-role": "page", "id": "autoinit-on" } ).prependTo( "body" ) - - $(document).one("mobileinit", function(){ - $.mobile.autoInitializePage = true; - }); - - location.hash = ""; - - reloadCoreNSandInit(); - - setTimeout(function(){ - same( $( "#autoinit-on.ui-page" ).length, 1 ); - - start(); - }, 2000); - }); - - - asyncTest( "page does not initialize at domready when autoinitialize option is false ", function(){ - $(document).one("mobileinit", function(){ - $.mobile.autoInitializePage = false; - }); - - $( "
                  ", { "data-nstest-role": "page", "id": "autoinit-off" } ).prependTo( "body" ) - - location.hash = ""; - - - reloadCoreNSandInit(); - - setTimeout(function(){ - same( $( "#autoinit-off.ui-page" ).length, 0 ); - - $(document).bind("mobileinit", function(){ - $.mobile.autoInitializePage = true; - }); - - reloadCoreNSandInit(); - - start(); - }, 2000); - }); - - - - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/nopage.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/nopage.html deleted file mode 100644 index 218b01c..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/nopage.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - jQuery Mobile Init Test Suite - - - - - - - - - - - - - - -

                  jQuery Mobile Init Test Suite

                  -

                  -

                  -
                    -
                  - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/index.html deleted file mode 100644 index 02ccb42..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/index.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - jQuery Mobile Listview Integration Test - - - - - - - - - - - - - - - -

                  jQuery Mobile Listview Integration Test

                  -

                  -

                  -
                    -
                  - - -
                  - - - - -
                  -
                  -

                  Basic List View

                  -
                  -
                  -
                    -
                  • Groups of animals -
                      -
                    • pod of whales
                    • -
                    • quiver of cobras
                    • -
                    • troop of baboons
                    • -
                    -
                  • -
                  • - - More animals - - -
                      -
                    • Shoal of Bass
                    • -
                    • Rhumba of rattlesnakes
                    • -
                    -
                  • -
                  -
                  -
                  - - -
                  -
                  -

                  Basic multiple lists view

                  -
                  -
                  -
                    -
                  • Item 1
                  • -
                  • Item 2
                  • -
                  • Item 3 -
                      -
                    • Item A-3-0
                    • -
                    • Item A-3-1
                    • -
                    • Item A-3-2
                    • -
                    -
                  • -
                  -
                    -
                  • Item 1
                  • -
                  • Item 2
                  • -
                  • Item 3 -
                      -
                    • Item B-3-0 -
                        -
                      • Item B-3-0-0
                      • -
                      • Item B-3-0-1 -
                          -
                        • Item B-3-0-1-0
                        • -
                        • Item B-3-0-1-1
                        • -
                        • Item B-3-0-1-2
                        • -
                        -
                      • -
                      • Item B-3-0-2
                      • -
                      -
                    • -
                    • Item B-3-1 -
                        -
                      • Item B-3-1-0
                      • -
                      • Item B-3-1-1
                      • -
                      • Item B-3-1-2
                      • -
                      -
                    • -
                    • Item B-3-2
                    • -
                    -
                  • -
                  -
                  -
                  - - -
                  -
                  -

                  Basic List View

                  -
                  -
                  -
                    -
                  1. Number 1
                  2. -
                  3. Number 2
                  4. -
                  5. Number 3
                  6. -
                  -
                  -
                  - -
                  -
                  -

                  Numbered List

                  -
                  -
                  - - -
                  -
                  -

                  Basic List View

                  -
                  -
                  -
                    -
                  • Read
                  • -
                  • Only
                  • -
                  • List
                  • -
                  • View
                  • -
                  -
                  -
                  - - -
                  -
                  -

                  Split List View

                  -
                  - -
                  - -
                  -
                  -

                  Split List view 1

                  -
                  -
                  - -
                  -
                  -

                  Split List view 2

                  -
                  -
                  - - -
                  -
                  -

                  List Divider Test

                  -
                  -
                  -
                    -
                  • a is for aquaman
                  • -
                  • b is for batman
                  • -
                  • This is a list divider
                  • -
                  • c is for catwoman
                  • -
                  • This is another list divider
                  • -
                  • d is for darkwing
                  • -
                  -
                  -
                  - - -
                  -
                  -

                  Split List View

                  -
                  -
                  -
                    -
                  • a is for aquaman
                  • -
                  • b is for batman
                  • -
                  • c is for catwoman
                  • -
                  • d is for darkwing
                  • -
                  -
                  -
                  - - -
                  -
                  -

                  Split List View

                  -
                  -
                  -
                    -
                  • a
                  • -
                  • a is for aquaman
                  • -
                  • b
                  • -
                  • b is for batman
                  • -
                  • c
                  • -
                  • c is for catwoman
                  • -
                  • d
                  • -
                  • d is for darkwing
                  • -
                  -
                  -
                  - - -
                  -
                  -

                  Inset Filter List View

                  -
                  -
                  -
                    -
                  • a is for aquaman
                  • -
                  • b is for batman
                  • -
                  • c is for catwoman
                  • -
                  • d is for darkwing
                  • -
                  -
                  -
                  - - -
                  -
                    -
                    - - -
                    -
                    -

                    Basic List View

                    -
                    -
                    -
                      -
                    • Item 1
                    • -
                    • Item 2
                    • -
                    • Item 3
                    • -
                    • Item 4
                    • -
                    -
                    -
                    - - -
                    -
                    -

                    Basic List View

                    -
                    -
                    -
                      -
                    -
                    -
                    - -
                    - -
                    - -
                    -
                      -
                    • foo
                    • -
                    -
                    - -
                    -
                    -

                    Right padding on item 1 is OK (75px).

                    -

                    Right padding on items 2 & 3 should probably be around 30 or 35 (not 25).

                    -

                    Right padding on item 4 should be 15px to match the left side.

                    -
                      -
                    1. Link LI with counter --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------123
                    2. -
                    3. Link LI without counter -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                    4. -
                    5. Page1 Link LI without counter -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                    6. -
                    7. Static LI with counter ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------123
                    8. -
                    9. Static LI without counter ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                    10. -
                    -
                    -
                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/listview_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/listview_core.js deleted file mode 100755 index 21cc8d5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/listview_core.js +++ /dev/null @@ -1,784 +0,0 @@ -/* - * mobile listview unit tests - */ - -// TODO split out into seperate test files -(function($){ - var home = $.mobile.path.parseUrl( location.href ).pathname; - - $.mobile.defaultTransition = "none"; - - module( "Basic Linked list", { - setup: function(){ - $.testHelper.openPage( "#basic-linked-test" ); - } - }); - - asyncTest( "The page should enhanced correctly", function(){ - setTimeout(function() { - ok($('#basic-linked-test .ui-li').length, ".ui-li classes added to li elements"); - start(); - }, 800); - }); - - asyncTest( "Slides to the listview page when the li a is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#basic-linked-test"); - }, - - function(){ - $('#basic-linked-test li a').first().click(); - }, - - function(){ - ok($('#basic-link-results').hasClass('ui-page-active')); - start(); - } - ]); - }); - - asyncTest( "Slides back to main page when back button is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#basic-link-results"); - }, - - function(){ - window.history.back(); - }, - - function(){ - ok($('#basic-linked-test').hasClass('ui-page-active')); - start(); - } - ]); - }); - - asyncTest( "Presence of ui-li-has- classes", function(){ - $.testHelper.pageSequence( [ - function() { - $.testHelper.openPage( "#ui-li-has-test" ); - }, - - function() { - var page = $( ".ui-page-active" ), - items = page.find( "li" ); - - ok( items.eq( 0 ).hasClass( "ui-li-has-count"), "First LI should have ui-li-has-count class" ); - ok( items.eq( 0 ).hasClass( "ui-li-has-arrow"), "First LI should have ui-li-has-arrow class" ); - ok( !items.eq( 1 ).hasClass( "ui-li-has-count"), "Second LI should NOT have ui-li-has-count class" ); - ok( items.eq( 1 ).hasClass( "ui-li-has-arrow"), "Second LI should have ui-li-has-arrow class" ); - ok( !items.eq( 2 ).hasClass( "ui-li-has-count"), "Third LI should NOT have ui-li-has-count class" ); - ok( !items.eq( 2 ).hasClass( "ui-li-has-arrow"), "Third LI should NOT have ui-li-has-arrow class" ); - ok( items.eq( 3 ).hasClass( "ui-li-has-count"), "Fourth LI should have ui-li-has-count class" ); - ok( !items.eq( 3 ).hasClass( "ui-li-has-arrow"), "Fourth LI should NOT have ui-li-has-arrow class" ); - ok( !items.eq( 4 ).hasClass( "ui-li-has-count"), "Fifth LI should NOT have ui-li-has-count class" ); - ok( !items.eq( 4 ).hasClass( "ui-li-has-arrow"), "Fifth LI should NOT have ui-li-has-arrow class" ); - start(); - } - ]); - }); - - module('Nested List Test'); - - asyncTest( "Changes page to nested list test and enhances", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#nested-list-test"); - }, - - function(){ - ok($('#nested-list-test').hasClass('ui-page-active'), "makes nested list test page active"); - ok($(':jqmData(url="nested-list-test&ui-page=0-0")').length == 1, "Adds first UL to the page"); - ok($(':jqmData(url="nested-list-test&ui-page=0-1")').length == 1, "Adds second nested UL to the page"); - start(); - } - ]); - }); - - asyncTest( "change to nested page when the li a is clicked", function() { - - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#nested-list-test"); - }, - - function(){ - $('.ui-page-active li:eq(1) a:eq(0)').click(); - }, - - function(){ - var $new_page = $(':jqmData(url="nested-list-test&ui-page=0-0")'); - - ok($new_page.hasClass('ui-page-active'), 'Makes the nested page the active page.'); - ok($('.ui-listview', $new_page).find(":contains('Rhumba of rattlesnakes')").length == 1, "The current page should have the proper text in the list."); - ok($('.ui-listview', $new_page).find(":contains('Shoal of Bass')").length == 1, "The current page should have the proper text in the list."); - start(); - } - ]); - }); - - asyncTest( "should go back to top level when the back button is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#nested-list-test&ui-page=0-0"); - }, - - function(){ - window.history.back(); - }, - - function(){ - ok($('#nested-list-test').hasClass('ui-page-active'), 'Transitions back to the parent nested page'); - start(); - } - ]); - }); - - test( "nested list title should use first text node, regardless of line breaks", function(){ - ok($('#nested-list-test .linebreaknode').text() === "More animals", 'Text should be "More animals"'); - }); - - asyncTest( "Multiple nested lists on a page with same labels", function() { - $.testHelper.pageSequence([ - function(){ - // https://github.com/jquery/jquery-mobile/issues/1617 - $.testHelper.openPage("#nested-lists-test"); - }, - - function(){ - // Click on the link of the third li element - $('.ui-page-active li:eq(2) a:eq(0)').click(); - }, - - function(){ - equal($('.ui-page-active .ui-content .ui-listview li').text(), "Item A-3-0Item A-3-1Item A-3-2", 'Text should be "Item A-3-0Item A-3-1Item A-3-2"'); - start(); - } - ]); - }); - - module('Ordered Lists'); - - asyncTest( "changes to the numbered list page and enhances it", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#numbered-list-test"); - }, - - function(){ - var $new_page = $('#numbered-list-test'); - ok($new_page.hasClass('ui-page-active'), "Makes the new page active when the hash is changed."); - ok($('.ui-link-inherit', $new_page).first().text() == "Number 1", "The text of the first LI should be Number 1"); - start(); - } - ]); - }); - - asyncTest( "changes to number 1 page when the li a is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $('#numbered-list-test li a').first().click(); - }, - - function(){ - ok($('#numbered-list-results').hasClass('ui-page-active'), "The new numbered page was transitioned correctly."); - start(); - } - ]); - }); - - asyncTest( "takes us back to the numbered list when the back button is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage('#numbered-list-test'); - }, - - function(){ - $.testHelper.openPage('#numbered-list-results'); - }, - - function(){ - window.history.back(); - }, - - function(){ - ok($('#numbered-list-test').hasClass('ui-page-active')); - start(); - } - ]); - }); - - module('Read only list'); - - asyncTest( "changes to the read only page when hash is changed", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#read-only-list-test"); - }, - - function(){ - var $new_page = $('#read-only-list-test'); - ok($new_page.hasClass('ui-page-active'), "makes the read only page the active page"); - ok($('li', $new_page).first().text() === "Read", "The first LI has the proper text."); - start(); - } - ]); - }); - - module('Split view list'); - - asyncTest( "changes the page to the split view list and enhances it correctly.", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#split-list-test"); - }, - - function(){ - var $new_page = $('#split-list-test'); - ok($('.ui-li-link-alt', $new_page).length == 3); - ok($('.ui-link-inherit', $new_page).length == 3); - start(); - } - ]); - }); - - asyncTest( "change the page to the split view page 1 when the first link is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#split-list-test"); - }, - - function(){ - $('.ui-page-active .ui-li a:eq(0)').click(); - }, - - function(){ - ok($('#split-list-link1').hasClass('ui-page-active')); - start(); - } - ]); - }); - - asyncTest( "Slide back to the parent list view when the back button is clicked", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#split-list-test"); - }, - - function(){ - $('.ui-page-active .ui-listview a:eq(0)').click(); - }, - - function(){ - history.back(); - }, - - function(){ - ok($('#split-list-test').hasClass('ui-page-active')); - start(); - } - ]); - }); - - asyncTest( "Clicking on the icon (the second link) should take the user to other a href of this LI", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#split-list-test"); - }, - - function(){ - $('.ui-page-active .ui-li-link-alt:eq(0)').click(); - }, - - function(){ - ok($('#split-list-link2').hasClass('ui-page-active')); - start(); - } - ]); - }); - - module( "List Dividers" ); - - asyncTest( "Makes the list divider page the active page and enhances it correctly.", function() { - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#list-divider-test"); - }, - - function(){ - var $new_page = $('#list-divider-test'); - ok($new_page.find('.ui-li-divider').length == 2); - ok($new_page.hasClass('ui-page-active')); - start(); - } - ]); - }); - - module( "Search Filter"); - - var searchFilterId = "#search-filter-test"; - - - asyncTest( "Filter downs results when the user enters information", function() { - var $searchPage = $(searchFilterId); - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage(searchFilterId); - }, - - function() { - $searchPage.find('input').val('at'); - $searchPage.find('input').trigger('change'); - - same($searchPage.find('li.ui-screen-hidden').length, 2); - start(); - } - ]); - }); - - asyncTest( "Redisplay results when user removes values", function() { - var $searchPage = $(searchFilterId); - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage(searchFilterId); - }, - - function() { - $searchPage.find('input').val('a'); - $searchPage.find('input').trigger('change'); - - same($searchPage.find("li[style^='display: none;']").length, 0); - start(); - } - ]); - }); - - asyncTest( "Filter works fine with \\W- or regexp-special-characters", function() { - var $searchPage = $(searchFilterId); - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage(searchFilterId); - }, - - function() { - $searchPage.find('input').val('*'); - $searchPage.find('input').trigger('change'); - - same($searchPage.find('li.ui-screen-hidden').length, 4); - start(); - } - ]); - }); - - test( "Refresh applies thumb styling", function(){ - var ul = $('.ui-page-active ul'); - - ul.append("
                  • "); - ok(!ul.find("#fiz img").hasClass("ui-li-thumb")); - ul.listview('refresh'); - ok(ul.find("#fiz img").hasClass("ui-li-thumb")); - }); - - asyncTest( "Filter downs results and dividers when the user enters information", function() { - var $searchPage = $("#search-filter-with-dividers-test"); - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#search-filter-with-dividers-test"); - }, - - // wait for the page to become active/enhanced - function(){ - $searchPage.find('input').val('at'); - $searchPage.find('input').trigger('change'); - setTimeout(function() { - //there should be four hidden list entries - same($searchPage.find('li.ui-screen-hidden').length, 4); - - //there should be two list entries that are list dividers and hidden - same($searchPage.find('li.ui-screen-hidden:jqmData(role=list-divider)').length, 2); - - //there should be two list entries that are not list dividers and hidden - same($searchPage.find('li.ui-screen-hidden:not(:jqmData(role=list-divider))').length, 2); - start(); - }, 1000); - } - ]); - }); - - asyncTest( "Redisplay results when user removes values", function() { - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#search-filter-with-dividers-test"); - }, - - function() { - $('.ui-page-active input').val('a'); - $('.ui-page-active input').trigger('change'); - - setTimeout(function() { - same($('.ui-page-active input').val(), 'a'); - same($('.ui-page-active li[style^="display: none;"]').length, 0); - start(); - }, 1000); - } - ]); - }); - - asyncTest( "Dividers are hidden when preceding hidden rows and shown when preceding shown rows", function () { - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#search-filter-with-dividers-test"); - }, - - function() { - var $page = $('.ui-page-active'); - - $page.find('input').val('at'); - $page.find('input').trigger('change'); - - setTimeout(function() { - same($page.find('li:jqmData(role=list-divider):hidden').length, 2); - same($page.find('li:jqmData(role=list-divider):hidden + li:not(:jqmData(role=list-divider)):hidden').length, 2); - same($page.find('li:jqmData(role=list-divider):not(:hidden) + li:not(:jqmData(role=list-divider)):not([:hidden)').length, 2); - start(); - }, 1000); - } - ]); - }); - - asyncTest( "Inset List View should refresh corner classes after filtering", 4 * 2, function () { - var checkClasses = function() { - var $page = $( ".ui-page-active" ), - $li = $page.find( "li:visible" ); - ok($li.first().hasClass( "ui-corner-top" ), $li.length+" li elements: First visible element should have class ui-corner-top"); - ok($li.last().hasClass( "ui-corner-bottom" ), $li.length+" li elements: Last visible element should have class ui-corner-bottom"); - }; - - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#search-filter-inset-test"); - }, - - function() { - var $page = $('.ui-page-active'); - $.testHelper.sequence([ - function() { - checkClasses(); - - $page.find('input').val('man'); - $page.find('input').trigger('change'); - }, - - function() { - checkClasses(); - - $page.find('input').val('at'); - $page.find('input').trigger('change'); - }, - - function() { - checkClasses(); - - $page.find('input').val('catwoman'); - $page.find('input').trigger('change'); - }, - - function() { - checkClasses(); - start(); - } - ], 50); - } - ]); - }); - - module( "Programmatically generated list items", { - setup: function(){ - var item, - data = [ - { - id: 1, - label: "Item 1" - }, - { - id: 2, - label: "Item 2" - }, - { - id: 3, - label: "Item 3" - }, - { - id: 4, - label: "Item 4" - } - ]; - - $( "#programmatically-generated-list-items" ).html(""); - - for ( var i = 0, len = data.length; i < len; i++ ) { - item = $( '
                  • ' ); - label = $( "" + data[i].label + "").appendTo( item ); - $( "#programmatically-generated-list-items" ).append( item ); - } - } - }); - - asyncTest( "Corner styling on programmatically created list items", function() { - // https://github.com/jquery/jquery-mobile/issues/1470 - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage( "#programmatically-generated-list" ); - }, - function() { - ok(!$( "#programmatically-generated-list-items li:first-child" ).hasClass( "ui-corner-bottom" ), "First list item should not have class ui-corner-bottom" ); - start(); - } - ]); - }); - - module("Programmatic list items manipulation"); - - asyncTest("Removing list items", 4, function() { - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#removing-items-from-list-test"); - }, - - function() { - var ul = $('#removing-items-from-list-test ul'); - ul.find("li").first().remove(); - equal(ul.find("li").length, 3, "There should be only 3 list items left"); - - ul.listview('refresh'); - ok(ul.find("li").first().hasClass("ui-corner-top"), "First list item should have class ui-corner-top"); - - ul.find("li").last().remove(); - equal(ul.find("li").length, 2, "There should be only 2 list items left"); - - ul.listview('refresh'); - ok(ul.find("li").last().hasClass("ui-corner-bottom"), "Last list item should have class ui-corner-bottom"); - start(); - } - ]); - }); - - module("Rounded corners"); - - asyncTest("Top and bottom corners rounded in inset list", 14, function() { - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#corner-rounded-test"); - }, - - function() { - var ul = $('#corner-rounded-test ul'); - - for( var t = 0; t<3; t++){ - ul.append("
                  • Item " + t + "
                  • "); - ul.listview('refresh'); - equals(ul.find(".ui-corner-top").length, 1, "There should be only one element with class ui-corner-top"); - equals(ul.find("li:visible").first()[0], ul.find(".ui-corner-top")[0], "First list item should have class ui-corner-top in list with " + ul.find("li").length + " item(s)"); - equals(ul.find(".ui-corner-bottom").length, 1, "There should be only one element with class ui-corner-bottom"); - equals(ul.find("li:visible").last()[0], ul.find(".ui-corner-bottom")[0], "Last list item should have class ui-corner-bottom in list with " + ul.find("li").length + " item(s)"); - } - - ul.find( "li" ).first().hide(); - ul.listview( "refresh" ); - equals(ul.find("li:visible").first()[0], ul.find(".ui-corner-top")[0], "First visible list item should have class ui-corner-top"); - - ul.find( "li" ).last().hide(); - ul.listview( "refresh" ); - equals(ul.find("li:visible").last()[0], ul.find(".ui-corner-bottom")[0], "Last visible list item should have class ui-corner-bottom"); - - start(); - } - ]); - }); - - test( "Listview will create when inside a container that receives a 'create' event", function(){ - ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-listview").length, "did not have enhancements applied" ); - ok( $("#enhancetest").trigger("create").find(".ui-listview").length, "enhancements applied" ); - }); - - module( "Cached Linked List" ); - - var findNestedPages = function(selector){ - return $( selector + " #topmost" ).listview( 'childPages' ); - }; - - asyncTest( "nested pages are removed from the dom by default", function(){ - $.testHelper.pageSequence([ - function(){ - //reset for relative url refs - $.testHelper.openPage( "#" + home ); - }, - - function(){ - $.testHelper.openPage( "#cache-tests/uncached-nested.html" ); - }, - - function(){ - ok( findNestedPages( "#uncached-nested-list" ).length > 0, "verify that there are nested pages" ); - $.testHelper.openPage( "#" + home ); - }, - - function() { - $.testHelper.openPage( "#cache-tests/clear.html" ); - }, - - function(){ - same( findNestedPages( "#uncached-nested-list" ).length, 0 ); - start(); - } - ]); - }); - - asyncTest( "nested pages preserved when parent page is cached", function(){ - - $.testHelper.pageSequence([ - function(){ - //reset for relative url refs - $.testHelper.openPage( "#" + home ); - }, - - function(){ - $.testHelper.openPage( "#cache-tests/cached-nested.html" ); - }, - - function(){ - ok( findNestedPages( "#cached-nested-list" ).length > 0, "verify that there are nested pages" ); - $.testHelper.openPage( "#" + home ); - }, - - function() { - $.testHelper.openPage( "#cache-tests/clear.html" ); - }, - - function(){ - ok( findNestedPages( "#cached-nested-list" ).length > 0, "nested pages remain" ); - start(); - } - ]); - }); - - asyncTest( "parent page is not removed when visiting a sub page", function(){ - $.testHelper.pageSequence([ - function(){ - //reset for relative url refs - $.testHelper.openPage( "#" + home ); - }, - - function(){ - $.testHelper.openPage( "#cache-tests/cached-nested.html" ); - }, - - function(){ - same( $("#cached-nested-list").length, 1 ); - $.testHelper.openPage( "#" + home ); - }, - - function() { - $.testHelper.openPage( "#cache-tests/clear.html" ); - }, - - function(){ - same( $("#cached-nested-list").length, 1 ); - start(); - } - ]); - }); - - asyncTest( "filterCallback can be altered after widget creation", function(){ - var listPage = $( "#search-filter-test" ); - expect( listPage.find("li").length ); - - $.testHelper.pageSequence( [ - function(){ - //reset for relative url refs - $.testHelper.openPage( "#" + home ); - }, - - function() { - $.testHelper.openPage( "#search-filter-test" ); - }, - - function() { - // set the listview instance callback - listPage.find( "ul" ).listview( "option", "filterCallback", function() { - ok(true, "custom callback invoked"); - }); - - // trigger a change in the search filter - listPage.find( "input" ).val( "foo" ).trigger( "change" ); - - //NOTE beware a poossible issue with timing here - start(); - } - ]); - }); - - asyncTest( "nested pages hash key is always in the hash (replaceState)", function(){ - $.testHelper.pageSequence([ - function(){ - //reset for relative url refs - $.testHelper.openPage( "#" + home ); - }, - - function(){ - // https://github.com/jquery/jquery-mobile/issues/1617 - $.testHelper.openPage("#nested-lists-test"); - }, - - function(){ - // Click on the link of the third li element - $('.ui-page-active li:eq(2) a:eq(0)').click(); - }, - - function(){ - ok( location.hash.search($.mobile.subPageUrlKey) >= 0 ); - start(); - } - ]); - }); - - asyncTest( "embedded listview page with nested pages is not removed from the dom", function() { - $.testHelper.pageSequence([ - function() { - // open the nested list page - same( $("div#nested-list-test").length, 1 ); - $( "a#nested-list-test-anchor" ).click(); - }, - - function() { - // go back to the origin page - window.history.back(); - }, - - function() { - // make sure the page is still in place - same( $("div#nested-list-test").length, 1 ); - start(); - } - ]); - }); - - - asyncTest( "list inherits theme from parent", function() { - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#list-theme-inherit"); - }, - - function() { - var theme = $.mobile.activePage.jqmData('theme'); - ok( $.mobile.activePage.find("ul > li").hasClass("ui-body-b"), "theme matches the parent"); - window.history.back(); - }, - - start - ]); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/pushstate-tests.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/pushstate-tests.html deleted file mode 100644 index 5ed009b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/pushstate-tests.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - jQuery Mobile Listview Integration Test - - - - - - - - - - - - - - - -

                    jQuery Mobile Listview Integration Test

                    -

                    -

                    -
                      -
                    - -
                    -
                    -

                    Basic multiple lists view

                    -
                    -
                    -
                      -
                    • Item 1
                    • -
                    • Item 2
                    • -
                    • Item 3 -
                        -
                      • Item A-3-0
                      • -
                      • Item A-3-1
                      • -
                      • Item A-3-2
                      • -
                      -
                    • -
                    -
                      -
                    • Item 1
                    • -
                    • Item 2
                    • -
                    • Item 3 -
                        -
                      • Item B-3-0 -
                          -
                        • Item B-3-0-0
                        • -
                        • Item B-3-0-1 -
                            -
                          • Item B-3-0-1-0
                          • -
                          • Item B-3-0-1-1
                          • -
                          • Item B-3-0-1-2
                          • -
                          -
                        • -
                        • Item B-3-0-2
                        • -
                        -
                      • -
                      • Item B-3-1 -
                          -
                        • Item B-3-1-0
                        • -
                        • Item B-3-1-1
                        • -
                        • Item B-3-1-2
                        • -
                        -
                      • -
                      • Item B-3-2
                      • -
                      -
                    • -
                    -
                    -
                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/media/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/media/index.html deleted file mode 100644 index fc5cb80..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/media/index.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - jQuery Mobile Media Test Suite - - - - - - - - - - - - - - - - -

                    jQuery Mobile Media Test Suite

                    -

                    -

                    -
                      -
                    - -
                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests.html deleted file mode 100644 index a2beeb5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - jQuery Mobile Navigation Test Suite - - - - - - - - - - - - - - - - - -

                    jQuery Mobile Navigation Base Tag Test Suite

                    -

                    -

                    -
                      -
                    - -
                    - - - - - - -
                    - -
                    - - - - - - -
                    - -
                    -
                    -
                    - - -
                    -
                    -
                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/index.html deleted file mode 100644 index 24444ab..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/index.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - jQuery Mobile Navigation Test Suite - - - - - - - - - - - - - - - - - -

                    jQuery Mobile Navigation Test Suite

                    -

                    -

                    -
                      -
                    - -
                    -
                    - -
                    - - -
                    - - - -
                    -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    -
                    -
                    - -
                    -
                    - -
                    -
                    -
                    - -
                    - -
                    - -
                    -
                    - - - - - -
                    -
                    -

                    Dialog

                    -
                    -
                    - -
                    -
                    - Dialog -
                    -
                    - -
                    -
                    - Page 2 -
                    -
                    - -
                    - Go Back -
                    - - -
                    -
                    - Dialog -
                    -
                    - -
                    -
                    - Dialog 2 -
                    -
                    - -
                    -
                    - -
                    - -
                    - - - -
                    - test - test - test -
                    - -
                    -

                    Title Heading

                    -
                    - -
                    -

                    Title Heading

                    -
                    - - - - - -
                    - - go - go - go - go - go - go - - - - go - go - go - go - go - go - - - - go - go - go - go - go - go - - - - go - go - go - go - go - go - -
                    - -
                    -
                    page didn't change!
                    -
                    - - - -
                    -
                    - page2 -
                    -
                    - - - - - -
                    - foo -
                    - -
                    - - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_base.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_base.js deleted file mode 100644 index 3b7f2b9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_base.js +++ /dev/null @@ -1,205 +0,0 @@ -/* - * mobile navigation base tag unit tests - */ -(function($){ - var baseDir = $.mobile.path.parseUrl($("base").attr("href")).directory, - contentDir = $.mobile.path.makePathAbsolute("../content/", baseDir); - - module('jquery.mobile.navigation.js - base tag', { - setup: function(){ - if ( location.hash ) { - stop(); - $(document).one("pagechange", function() { - start(); - } ); - location.hash = ""; - } - } - }); - - asyncTest( "can navigate between internal and external pages", function(){ - $.testHelper.pageSequence([ - function(){ - // Navigate from default internal page to another internal page. - $.testHelper.openPage( "#internal-page-2" ); - }, - - function(){ - // Verify that we are on the 2nd internal page. - $.testHelper.assertUrlLocation({ - push: location.pathname + "#internal-page-2", - hash: "internal-page-2", - report: "navigate to internal page" - }); - - // Navigate to a page that is in the base directory. Note that the application - // document and this new page are *NOT* in the same directory. - $("#internal-page-2 .bp1").click(); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: baseDir + "base-page-1.html", - report: "navigate from internal page to page in base directory" - }); - - // Navigate to another page in the same directory as the current page. - $("#base-page-1 .bp2").click(); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: baseDir + "base-page-2.html", - report: "navigate from base directory page to another base directory page" - }); - - // Navigate to another page in a directory that is the sibling of the base. - $("#base-page-2 .cp1").click(); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: contentDir + "content-page-1.html", - report: "navigate from base directory page to a page in a different directory hierarchy" - }); - - // Navigate to another page in a directory that is the sibling of the base. - $("#content-page-1 .cp2").click(); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: contentDir + "content-page-2.html", - report: "navigate to another page within the same non-base directory hierarchy" - }); - - // Navigate to an internal page. - $("#content-page-2 .ip1").click(); - }, - - function(){ - // Verify that we are on the expected page. - // the hash based nav result (hash:) is dictate by the fact that #internal-page-1 - // is the original root page element - $.testHelper.assertUrlLocation({ - hashOrPush: location.pathname + location.search, - report: "navigate from a page in a non-base directory to an internal page" - }); - - // Try calling changePage() directly with a relative path. - $.mobile.changePage("base-page-1.html"); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: baseDir + "base-page-1.html", - report: "call changePage() with a filename (no path)" - }); - - // Try calling changePage() directly with a relative path. - $.mobile.changePage("../content/content-page-1.html"); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: contentDir + "content-page-1.html", - report: "call changePage() with a relative path containing up-level references" - }); - - // Try calling changePage() with an id - $.mobile.changePage("content-page-2.html"); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hashOrPush: contentDir + "content-page-2.html", - report: "call changePage() with a relative path should resolve relative to current page" - }); - - // test that an internal page works - $("a.ip2").click(); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hash: "internal-page-2", - push: location.pathname + "#internal-page-2", - report: "call changePage() with a page id" - }); - - // Try calling changePage() with an id - $.mobile.changePage("internal-page-1"); - }, - - function(){ - // Verify that we are on the expected page. - $.testHelper.assertUrlLocation({ - hash: "internal-page-2", - push: location.pathname + "#internal-page-2", - report: "calling changePage() with a page id that is not prefixed with '#' should not change page" - }); - - // Previous load should have failed and left us on internal-page-2. - start(); - } - ]); - }); - - asyncTest( "internal form with no action submits to document URL", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage( "#internal-no-action-form-page" ); - }, - - function(){ - $( "#internal-no-action-form-page form" ).eq( 0 ).submit(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: location.pathname + "?foo=1&bar=2", - report: "hash should match document url and not base url" - }); - - start(); - } - ]); - }); - - asyncTest( "external page form with no action submits to external page URL", function(){ - $.testHelper.pageSequence([ - function(){ - // Go to an external page that has a form. - $("#internal-page-1 .cp1").click(); - }, - - function(){ - // Make sure we actually navigated to the external page. - $.testHelper.assertUrlLocation({ - hashOrPush: contentDir + "content-page-1.html", - report: "should be on content-page-1.html" - }); - - // Now submit the form in the external page. - $("#content-page-1 form").eq(0).submit(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: contentDir + "content-page-1.html?foo=1&bar=2", - report: "hash should match page url and not document url" - }); - - start(); - }]); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_core.js deleted file mode 100644 index 7d61bcf..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_core.js +++ /dev/null @@ -1,1143 +0,0 @@ -/* - * mobile navigation unit tests - */ -(function($){ - // TODO move siteDirectory over to the nav path helper - var changePageFn = $.mobile.changePage, - originalTitle = document.title, - originalLinkBinding = $.mobile.linkBindingEnabled, - siteDirectory = location.pathname.replace( /[^/]+$/, "" ), - home = $.mobile.path.parseUrl(location.pathname).directory, - navigateTestRoot = function(){ - $.testHelper.openPage( "#" + location.pathname + location.search ); - }; - - module('jquery.mobile.navigation.js', { - setup: function(){ - $.mobile.changePage = changePageFn; - document.title = originalTitle; - - var pageReset = function( hash ) { - hash = hash || ""; - - stop(); - - $(document).one( "pagechange", function() { - start(); - }); - - location.hash = "#" + hash; - }; - - // force the page reset for hash based tests - if ( location.hash && !$.support.pushState ) { - pageReset(); - } - - // force the page reset for all pushstate tests - if ( $.support.pushState ) { - pageReset( home ); - } - - $.mobile.urlHistory.stack = []; - $.mobile.urlHistory.activeIndex = 0; - $.Event.prototype.which = undefined; - $.mobile.linkBindingEnabled = originalLinkBinding; - } - }); - - asyncTest( "window.history.back() from external to internal page", function(){ - - $.testHelper.pageSequence([ - - // open our test page - function(){ - $.testHelper.openPage("#active-state-page1"); - }, - - function(){ - ok( $.mobile.activePage[0] === $( "#active-state-page1" )[ 0 ], "successful navigation to internal page." ); - - //location.hash = siteDirectory + "external.html"; - $.mobile.changePage("external.html"); - }, - - function(){ - ok( $.mobile.activePage[0] !== $( "#active-state-page1" )[ 0 ], "successful navigation to external page." ); - - window.history.back(); - }, - - function(){ - ok( $.mobile.activePage[0] === $( "#active-state-page1" )[ 0 ], "successful navigation back to internal page." ); - - start(); - } - ]); - }); - - asyncTest( "external page is removed from the DOM after pagehide", function(){ - $.testHelper.pageSequence([ - navigateTestRoot, - - function(){ - $.mobile.changePage( "external.html" ); - }, - - // page is pulled and displayed in the dom - function(){ - same( $( "#external-test" ).length, 1 ); - window.history.back(); - }, - - // external-test is *NOT* cached in the dom after transitioning away - function(){ - same( $( "#external-test" ).length, 0 ); - start(); - } - ]); - }); - - asyncTest( "preventDefault on pageremove event can prevent external page from being removed from the DOM", function(){ - var preventRemoval = true, - removeCallback = function( e ) { - if ( preventRemoval ) { - e.preventDefault(); - } - }; - - $( document ).bind( "pageremove", removeCallback ); - - $.testHelper.pageSequence([ - navigateTestRoot, - - function(){ - $.mobile.changePage( "external.html" ); - }, - - // page is pulled and displayed in the dom - function(){ - same( $( "#external-test" ).length, 1 ); - window.history.back(); - }, - - // external-test *IS* cached in the dom after transitioning away - function(){ - same( $( "#external-test" ).length, 1 ); - - // Switch back to the page again! - $.mobile.changePage( "external.html" ); - }, - - // page is still present and displayed in the dom - function(){ - same( $( "#external-test" ).length, 1 ); - - // Now turn off our removal prevention. - preventRemoval = false; - - window.history.back(); - }, - - // external-test is *NOT* cached in the dom after transitioning away - function(){ - same( $( "#external-test" ).length, 0 ); - $( document ).unbind( "pageremove", removeCallback ); - start(); - } - ]); - }); - - asyncTest( "external page is cached in the DOM after pagehide", function(){ - $.testHelper.pageSequence([ - navigateTestRoot, - - function(){ - $.mobile.changePage( "cached-external.html" ); - }, - - // page is pulled and displayed in the dom - function(){ - same( $( "#external-test-cached" ).length, 1 ); - window.history.back(); - }, - - // external test page is cached in the dom after transitioning away - function(){ - same( $( "#external-test-cached" ).length, 1 ); - start(); - } - ]); - }); - - asyncTest( "external page is cached in the DOM after pagehide when option is set globally", function(){ - $.testHelper.pageSequence([ - navigateTestRoot, - - function(){ - $.mobile.page.prototype.options.domCache = true; - $.mobile.changePage( "external.html" ); - }, - - // page is pulled and displayed in the dom - function(){ - same( $( "#external-test" ).length, 1 ); - window.history.back(); - }, - - // external test page is cached in the dom after transitioning away - function(){ - same( $( "#external-test" ).length, 1 ); - $.mobile.page.prototype.options.domCache = false; - $( "#external-test" ).remove(); - start(); - }]); - }); - - asyncTest( "page last scroll distance is remembered while navigating to and from pages", function(){ - $.testHelper.pageSequence([ - function(){ - $( "body" ).height( $( window ).height() + 500 ); - $.mobile.changePage( "external.html" ); - }, - - function(){ - // wait for the initial scroll to 0 - setTimeout( function() { - window.scrollTo( 0, 300 ); - same( $(window).scrollTop(), 300, "scrollTop is 300 after setting it" ); - }, 300); - - // wait for the scrollstop to fire and for the scroll to be - // recorded 100 ms afterward (see changes made to handle hash - // scrolling in some browsers) - setTimeout( navigateTestRoot, 500 ); - }, - - function(){ - history.back(); - }, - - function(){ - // Give the silentScroll function some time to kick in. - setTimeout(function() { - same( $(window).scrollTop(), 300, "scrollTop is 300 after returning to the page" ); - $( "body" ).height( "" ); - start(); - }, 300 ); - } - ]); - }); - - asyncTest( "forms with data attribute ajax set to false will not call changePage", function(){ - var called = false; - var newChangePage = function(){ - called = true; - }; - - $.testHelper.sequence([ - // avoid initial page load triggering changePage early - function(){ - $.mobile.changePage = newChangePage; - - $('#non-ajax-form').one('submit', function(event){ - ok(true, 'submit callbacks are fired'); - event.preventDefault(); - }).submit(); - }, - - function(){ - ok(!called, "change page should not be called"); - start(); - }], 1000); - }); - - asyncTest( "forms with data attribute ajax not set or set to anything but false will call changePage", function(){ - var called = 0, - newChangePage = function(){ - called++; - }; - - $.testHelper.sequence([ - // avoid initial page load triggering changePage early - function(){ - $.mobile.changePage = newChangePage; - $('#ajax-form, #rand-ajax-form').submit(); - }, - - function(){ - ok(called >= 2, "change page should be called at least twice"); - start(); - }], 300); - }); - - - asyncTest( "anchors with no href attribute will do nothing when clicked", function(){ - var fired = false; - - $(window).bind("hashchange.temp", function(){ - fired = true; - }); - - $( "test" ).appendTo( $.mobile.firstPage ).click(); - - setTimeout(function(){ - same(fired, false, "hash shouldn't change after click"); - $(window).unbind("hashchange.temp"); - start(); - }, 500); - }); - - test( "urlHistory is working properly", function(){ - - //urlHistory - same( $.type( $.mobile.urlHistory.stack ), "array", "urlHistory.stack is an array" ); - - //preload the stack - $.mobile.urlHistory.stack[0] = { url: "foo", transition: "bar" }; - $.mobile.urlHistory.stack[1] = { url: "baz", transition: "shizam" }; - $.mobile.urlHistory.stack[2] = { url: "shizoo", transition: "shizaah" }; - - //active index - same( $.mobile.urlHistory.activeIndex , 0, "urlHistory.activeIndex is 0" ); - - //getActive - same( $.type( $.mobile.urlHistory.getActive() ) , "object", "active item is an object" ); - same( $.mobile.urlHistory.getActive().url , "foo", "active item has url foo" ); - same( $.mobile.urlHistory.getActive().transition , "bar", "active item has transition bar" ); - - //get prev / next - same( $.mobile.urlHistory.getPrev(), undefined, "urlHistory.getPrev() is undefined when active index is 0" ); - $.mobile.urlHistory.activeIndex = 1; - same( $.mobile.urlHistory.getPrev().url, "foo", "urlHistory.getPrev() has url foo when active index is 1" ); - $.mobile.urlHistory.activeIndex = 0; - same( $.mobile.urlHistory.getNext().url, "baz", "urlHistory.getNext() has url baz when active index is 0" ); - - //add new - $.mobile.urlHistory.activeIndex = 2; - $.mobile.urlHistory.addNew("test"); - same( $.mobile.urlHistory.stack.length, 4, "urlHistory.addNew() adds an item after the active index" ); - same( $.mobile.urlHistory.activeIndex, 3, "urlHistory.addNew() moves the activeIndex to the newly added item" ); - - //clearForward - $.mobile.urlHistory.activeIndex = 0; - $.mobile.urlHistory.clearForward(); - same( $.mobile.urlHistory.stack.length, 1, "urlHistory.clearForward() clears the url stack after the active index" ); - }); - - //url listening - function testListening( prop ){ - var stillListening = false; - $(document).bind("pagebeforehide", function(){ - stillListening = true; - }); - location.hash = "foozball"; - setTimeout(function(){ - ok( prop == stillListening, prop + " = false disables default hashchange event handler"); - location.hash = ""; - prop = true; - start(); - }, 1000); - } - - asyncTest( "ability to disable our hash change event listening internally", function(){ - testListening( ! $.mobile.urlHistory.ignoreNextHashChange ); - }); - - asyncTest( "ability to disable our hash change event listening globally", function(){ - testListening( $.mobile.hashListeningEnabled ); - }); - - var testDataUrlHash = function( linkSelector, matches ) { - $.testHelper.pageSequence([ - function(){ window.location.hash = ""; }, - function(){ $(linkSelector).click(); }, - function(){ - $.testHelper.assertUrlLocation( - $.extend(matches, { - report: "url or hash should match" - }) - ); - - start(); - } - ]); - - stop(); - }; - - test( "when loading a page where data-url is not defined on a sub element hash defaults to the url", function(){ - testDataUrlHash( "#non-data-url a", {hashOrPush: siteDirectory + "data-url-tests/non-data-url.html"} ); - }); - - test( "data url works for nested paths", function(){ - var url = "foo/bar.html"; - testDataUrlHash( "#nested-data-url a", {hash: url, push: home + url} ); - }); - - test( "data url works for single quoted paths and roles", function(){ - var url = "foo/bar/single.html"; - testDataUrlHash( "#single-quotes-data-url a", {hash: url, push: home + url} ); - }); - - test( "data url works when role and url are reversed on the page element", function(){ - var url = "foo/bar/reverse.html"; - testDataUrlHash( "#reverse-attr-data-url a", {hash: url, push: home + url} ); - }); - - asyncTest( "last entry choosen amongst multiple identical url history stack entries on hash change", function(){ - // make sure the stack is clear after initial page load an any other delayed page loads - // TODO better browser state management - $.mobile.urlHistory.stack = []; - $.mobile.urlHistory.activeIndex = 0; - - $.testHelper.pageSequence([ - function(){ $.testHelper.openPage("#dup-history-first"); }, - function(){ $("#dup-history-first a").click(); }, - function(){ $("#dup-history-second a:first").click(); }, - function(){ $("#dup-history-first a").click(); }, - function(){ $("#dup-history-second a:last").click(); }, - function(){ $("#dup-history-dialog a:contains('Close')").click(); }, - function(){ - - // fourth page (third index) in the stack to account for first page being hash manipulation, - // the third page is dup-history-second which has two entries in history - // the test is to make sure the index isn't 1 in this case, or the first entry for dup-history-second - same($.mobile.urlHistory.activeIndex, 3, "should be the fourth page in the stack"); - start(); - }]); - }); - - asyncTest( "going back from a page entered from a dialog skips the dialog and goes to the previous page", function(){ - $.testHelper.pageSequence([ - // setup - function(){ $.testHelper.openPage("#skip-dialog-first"); }, - - // transition to the dialog - function(){ $("#skip-dialog-first a").click(); }, - - // transition to the second page - function(){ $("#skip-dialog a").click(); }, - - // transition past the dialog via data-rel=back link on the second page - function(){ $("#skip-dialog-second a").click(); }, - - // make sure we're at the first page and not the dialog - function(){ - $.testHelper.assertUrlLocation({ - hash: "skip-dialog-first", - push: home + "#skip-dialog-first", - report: "should be the first page in the sequence" - }); - - start(); - }]); - }); - - asyncTest( "going forward from a page entered from a dialog skips the dialog and goes to the next page", function(){ - $.testHelper.pageSequence([ - // setup - function(){ $.testHelper.openPage("#skip-dialog-first"); }, - - // transition to the dialog - function(){ $("#skip-dialog-first a").click(); }, - - // transition to the second page - function(){ $("#skip-dialog a").click(); }, - - // transition to back past the dialog - function(){ window.history.back(); }, - - // transition to the second page past the dialog through history - function(){ window.history.forward(); }, - - // make sure we're on the second page and not the dialog - function(){ - $.testHelper.assertUrlLocation({ - hash: "skip-dialog-second", - push: home + "#skip-dialog-second", - report: "should be the second page after the dialog" - }); - - start(); - }]); - }); - - asyncTest( "going back from a dialog triggered from a dialog should result in the first dialog ", function(){ - $.testHelper.pageSequence([ - // setup - function(){ $.testHelper.openPage("#nested-dialog-page"); }, - - // transition to the dialog - function(){ $("#nested-dialog-page a").click(); }, - - // transition to the second dialog - function(){ $("#nested-dialog-first a").click(); }, - - // transition to back to the first dialog - function(){ window.history.back(); }, - - // make sure we're on first dialog - function(){ - same($(".ui-page-active")[0], $("#nested-dialog-first")[0], "should be the first dialog"); - start(); - }]); - }); - - asyncTest( "loading a relative file path after an embeded page works", function(){ - $.testHelper.pageSequence([ - // transition second page - function(){ $.testHelper.openPage("#relative-after-embeded-page-first"); }, - - // transition second page - function(){ $("#relative-after-embeded-page-first a").click(); }, - - // transition to the relative ajax loaded page - function(){ $("#relative-after-embeded-page-second a").click(); }, - - // make sure the page was loaded properly via ajax - function(){ - // data attribute intentionally left without namespace - same($(".ui-page-active").data("other"), "for testing", "should be relative ajax loaded page"); - start(); - }]); - }); - - asyncTest( "Page title updates properly when clicking back to previous page", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#relative-after-embeded-page-first"); - }, - - function(){ - window.history.back(); - }, - - function(){ - same(document.title, "jQuery Mobile Navigation Test Suite"); - start(); - } - ]); - }); - - asyncTest( "Page title updates properly when clicking a link back to first page", function(){ - var title = document.title; - - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#ajax-title-page"); - }, - - function(){ - $("#titletest1").click(); - }, - - function(){ - same(document.title, "Title Tag"); - $.mobile.activePage.find("#title-check-link").click(); - }, - - function(){ - same(document.title, title); - start(); - } - ]); - }); - - asyncTest( "Page title updates properly from title tag when loading an external page", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#ajax-title-page"); - }, - - function(){ - $("#titletest1").click(); - }, - - function(){ - same(document.title, "Title Tag"); - start(); - } - ]); - }); - - asyncTest( "Page title updates properly from data-title attr when loading an external page", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#ajax-title-page"); - }, - - function(){ - $("#titletest2").click(); - }, - - function(){ - same(document.title, "Title Attr"); - start(); - } - ]); - }); - - asyncTest( "Page title updates properly from heading text in header when loading an external page", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#ajax-title-page"); - }, - - function(){ - $("#titletest3").click(); - }, - - function(){ - same(document.title, "Title Heading"); - start(); - } - ]); - }); - - asyncTest( "Page links to the current active page result in the same active page", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#self-link"); - }, - - function(){ - $("a[href='#self-link']").click(); - }, - - function(){ - same($.mobile.activePage[0], $("#self-link")[0], "self-link page is still the active page" ); - start(); - } - ]); - }); - - asyncTest( "links on subdirectory pages with query params append the params and load the page", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#data-url-tests/non-data-url.html"); - }, - - function(){ - $("#query-param-anchor").click(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "data-url-tests/non-data-url.html?foo=bar", - report: "the hash or url has query params" - }); - - ok($(".ui-page-active").jqmData("url").indexOf("?foo=bar") > -1, "the query params are in the data url"); - start(); - } - ]); - }); - - asyncTest( "identical query param link doesn't add additional set of query params", function(){ - $.testHelper.pageSequence([ - function(){ - $.testHelper.openPage("#data-url-tests/non-data-url.html"); - }, - - function(){ - $("#query-param-anchor").click(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "data-url-tests/non-data-url.html?foo=bar", - report: "the hash or url has query params" - }); - - $("#query-param-anchor").click(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "data-url-tests/non-data-url.html?foo=bar", - report: "the hash or url still has query params" - }); - - start(); - } - ]); - }); - - // Special handling inside navigation because query params must be applied to the hash - // or absolute reference and dialogs apply extra information int the hash that must be removed - asyncTest( "query param link from a dialog to itself should be a not add another dialog", function(){ - var firstDialogLoc; - - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#dialog-param-link"); - }, - - // navigate to the subdirectory page with the query link - function(){ - $("#dialog-param-link a").click(); - }, - - // navigate to the query param self reference link - function(){ - $("#dialog-param-link-page a").click(); - }, - - // attempt to navigate to the same link - function(){ - // store the current hash for comparison (with one dialog hash key) - firstDialogLoc = location.hash || location.href; - $("#dialog-param-link-page a").click(); - }, - - function(){ - same(location.hash || location.href, firstDialogLoc, "additional dialog hash key not added"); - start(); - } - ]); - }); - - asyncTest( "query data passed as string to changePage is appended to URL", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.mobile.changePage( "form-tests/changepage-data.html", { - data: "foo=1&bar=2" - } ); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "form-tests/changepage-data.html?foo=1&bar=2", - report: "the hash or url still has query params" - }); - - start(); - } - ]); - }); - - asyncTest( "query data passed as object to changePage is appended to URL", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.mobile.changePage( "form-tests/changepage-data.html", { - data: { - foo: 3, - bar: 4 - } - } ); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "form-tests/changepage-data.html?foo=3&bar=4", - report: "the hash or url still has query params" - }); - - start(); - } - ]); - }); - - asyncTest( "refresh of a dialog url should not duplicate page", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - same($(".foo-class").length, 1, "should only have one instance of foo-class in the document"); - location.hash = "#foo&ui-state=dialog"; - }, - - function(){ - $.testHelper.assertUrlLocation({ - hash: "foo&ui-state=dialog", - push: home + "#foo&ui-state=dialog", - report: "hash should match what was loaded" - }); - - same( $(".foo-class").length, 1, "should only have one instance of foo-class in the document" ); - start(); - } - ]); - }); - - asyncTest( "internal form with no action submits to document URL", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#internal-no-action-form-page"); - }, - - function(){ - $("#internal-no-action-form-page form").eq(0).submit(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "?foo=1&bar=2", - report: "hash should match what was loaded" - }); - - start(); - } - ]); - }); - - asyncTest( "external page containing form with no action submits to page URL", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#internal-no-action-form-page"); - }, - - function(){ - $("#internal-no-action-form-page a").eq(0).click(); - }, - - function(){ - $("#external-form-no-action-page form").eq(0).submit(); - }, - - function(){ - $.testHelper.assertUrlLocation({ - hashOrPush: home + "form-tests/form-no-action.html?foo=1&bar=2", - report: "hash should match page url and not document url" - }); - - start(); - } - ]); - }); - - asyncTest( "handling of active button state when navigating", 1, function(){ - - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#active-state-page1"); - }, - - function(){ - $("#active-state-page1 a").eq(0).click(); - }, - - function(){ - $("#active-state-page2 a").eq(0).click(); - }, - - function(){ - ok(!$("#active-state-page1 a").hasClass( $.mobile.activeBtnClass ), "No button should not have class " + $.mobile.activeBtnClass ); - start(); - } - ]); - }); - - // issue 2444 https://github.com/jquery/jquery-mobile/issues/2444 - // results from preventing spurious hash changes - asyncTest( "dialog should return to its parent page when open and closed multiple times", function() { - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#default-trans-dialog"); - }, - - function(){ - $.mobile.activePage.find( "a" ).click(); - }, - - function(){ - window.history.back(); - }, - - function(){ - same( $.mobile.activePage[0], $( "#default-trans-dialog" )[0] ); - $.mobile.activePage.find( "a" ).click(); - }, - - function(){ - window.history.back(); - }, - - function(){ - same( $.mobile.activePage[0], $( "#default-trans-dialog" )[0] ); - start(); - } - ]); - }); - - asyncTest( "clicks with middle mouse button are ignored", function() { - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage( "#odd-clicks-page" ); - }, - - function() { - $( "#right-or-middle-click" ).click(); - }, - - // make sure the page is opening first without the mocked button click value - // only necessary to prevent issues with test specific fixtures - function() { - same($.mobile.activePage[0], $("#odd-clicks-page-dest")[0]); - $.testHelper.openPage( "#odd-clicks-page" ); - - // mock the which value to simulate a middle click - $.Event.prototype.which = 2; - }, - - function() { - $( "#right-or-middle-click" ).click(); - }, - - function( timeout ) { - ok( timeout, "page event handler timed out due to ignored click" ); - ok($.mobile.activePage[0] !== $("#odd-clicks-page-dest")[0], "pages are not the same"); - start(); - } - ]); - }); - - asyncTest( "disabling link binding disables navigation via links and highlighting", function() { - $.mobile.linkBindingEnabled = false; - - $.testHelper.pageSequence([ - function() { - $.testHelper.openPage("#bar"); - }, - - function() { - $.mobile.activePage.find( "a" ).click(); - }, - - function( timeout ) { - ok( !$.mobile.activePage.find( "a" ).hasClass( $.mobile.activeBtnClass ), "vlick handler doesn't add the activebtn class" ); - ok( timeout, "no page change was fired" ); - start(); - } - ]); - }); - - asyncTest( "handling of button active state when navigating by clicking back button", 1, function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#active-state-page1"); - }, - - function(){ - $("#active-state-page1 a").eq(0).click(); - }, - - function(){ - $("#active-state-page2 a").eq(1).click(); - }, - - function(){ - $("#active-state-page1 a").eq(0).click(); - }, - - function(){ - ok(!$("#active-state-page2 a").hasClass( $.mobile.activeBtnClass ), "No button should not have class " + $.mobile.activeBtnClass ); - start(); - } - ]); - }); - - asyncTest( "can navigate to dynamically injected page with dynamically injected link", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - $.testHelper.openPage("#inject-links-page"); - }, - - function(){ - var $ilpage = $( "#inject-links-page" ), - $link = $( "injected-test-page link" ); - - // Make sure we actually navigated to the expected page. - ok( $.mobile.activePage[ 0 ] == $ilpage[ 0 ], "navigated successfully to #inject-links-page" ); - - // Now dynamically insert a page. - $ilpage.parent().append( "
                    testing...
                    " ); - - // Now inject a link to this page dynamically and attempt to navigate - // to the page we just inserted. - $link.appendTo( $ilpage ).click(); - }, - - function(){ - // Make sure we actually navigated to the expected page. - ok( $.mobile.activePage[ 0 ] == $( "#injected-test-page" )[ 0 ], "navigated successfully to #injected-test-page" ); - - start(); - } - ]); - }); - - asyncTest( "application url with dialogHashKey loads application's first page", function(){ - $.testHelper.pageSequence([ - // open our test page - function(){ - // Navigate to any page except the first page of the application. - $.testHelper.openPage("#foo"); - }, - - function(){ - ok( $.mobile.activePage[ 0 ] === $( "#foo" )[ 0 ], "navigated successfully to #foo" ); - - // Now navigate to an hash that contains just a dialogHashKey. - $.mobile.changePage("#" + $.mobile.dialogHashKey); - }, - - function(){ - // Make sure we actually navigated to the first page. - ok( $.mobile.activePage[ 0 ] === $.mobile.firstPage[ 0 ], "navigated successfully to first-page" ); - - // Now make sure opening the page didn't result in page duplication. - ok( $.mobile.firstPage.hasClass( "first-page" ), "first page has expected class" ); - same( $( ".first-page" ).length, 1, "first page was not duplicated" ); - - start(); - } - ]); - }); - - asyncTest( "navigate to non-existent internal page throws pagechangefailed", function(){ - var pagechangefailed = false, - pageChangeFailedCB = function( e ) { - pagechangefailed = true; - } - - $( document ).bind( "pagechangefailed", pageChangeFailedCB ); - - $.testHelper.pageSequence([ - // open our test page - function(){ - // Make sure there's only one copy of the first-page in the DOM to begin with. - ok( $.mobile.firstPage.hasClass( "first-page" ), "first page has expected class" ); - same( $( ".first-page" ).length, 1, "first page was not duplicated" ); - - // Navigate to any page except the first page of the application. - $.testHelper.openPage("#foo"); - }, - - function(){ - var $foo = $( "#foo" ); - ok( $.mobile.activePage[ 0 ] === $foo[ 0 ], "navigated successfully to #foo" ); - same( pagechangefailed, false, "no page change failures" ); - - // Now navigate to a non-existent page. - $foo.find( "#bad-internal-page-link" ).click(); - }, - - function(){ - // Make sure a pagechangefailed event was triggered. - same( pagechangefailed, true, "pagechangefailed dispatched" ); - - // Make sure we didn't navigate away from #foo. - ok( $.mobile.activePage[ 0 ] === $( "#foo" )[ 0 ], "did not navigate away from #foo" ); - - // Now make sure opening the page didn't result in page duplication. - same( $( ".first-page" ).length, 1, "first page was not duplicated" ); - - $( document ).unbind( "pagechangefailed", pageChangeFailedCB ); - - start(); - } - ]); - }); - - asyncTest( "prefetched links with data rel dialog result in a dialog", function() { - $.testHelper.pageSequence([ - // open our test page - function(){ - // Navigate to any page except the first page of the application. - $.testHelper.openPage("#prefetched-dialog-page"); - }, - - function() { - $("#prefetched-dialog-link").click(); - }, - - function() { - ok( $.mobile.activePage.is(".ui-dialog"), "prefetched page is rendered as a dialog" ); - start(); - } - ]); - }); - - asyncTest( "first page gets reloaded if pruned from the DOM", function(){ - var hideCallbackTriggered = false; - - function hideCallback( e, data ) - { - var page = e.target; - ok( ( page === $.mobile.firstPage[ 0 ] ), "hide called with prevPage set to firstPage"); - if ( page === $.mobile.firstPage[ 0 ] ) { - $( page ).remove(); - } - hideCallbackTriggered = true; - } - - $(document).bind('pagehide', hideCallback); - - $.testHelper.pageSequence([ - function(){ - // Make sure the first page is actually in the DOM. - ok( $.mobile.firstPage.parent().length !== 0, "first page is currently in the DOM" ); - - // Make sure the first page is the active page. - ok( $.mobile.activePage[ 0 ] === $.mobile.firstPage[ 0 ], "first page is the active page" ); - - // Now make sure the first page has an id that we can use to reload it. - ok( $.mobile.firstPage[ 0 ].id, "first page has an id" ); - - // Make sure there is only one first page in the DOM. - same( $( ".first-page" ).length, 1, "only one instance of the first page in the DOM" ); - - // Navigate to any page except the first page of the application. - $.testHelper.openPage("#foo"); - }, - - function(){ - // Make sure the active page is #foo. - ok( $.mobile.activePage[ 0 ] === $( "#foo" )[ 0 ], "navigated successfully to #foo" ); - - // Make sure our hide callback was triggered. - ok( hideCallbackTriggered, "hide callback was triggered" ); - - // Make sure the first page was actually pruned from the document. - ok( $.mobile.firstPage.parent().length === 0, "first page was pruned from the DOM" ); - same( $( ".first-page" ).length, 0, "no instance of the first page in the DOM" ); - - // Remove our hideCallback. - $(document).unbind('pagehide', hideCallback); - - // Navigate back to the first page! - $.testHelper.openPage( "#" + $.mobile.firstPage[0].id ); - }, - - function(){ - var firstPage = $( ".first-page" ); - - // We should only have one first page in the document at any time! - same( firstPage.length, 1, "single instance of first page recreated in the DOM" ); - - // Make sure the first page in the DOM is actually a different DOM element than the original - // one we started with. - ok( $.mobile.firstPage[ 0 ] !== firstPage[ 0 ], "first page is a new DOM element"); - - // Make sure we actually navigated to the new first page. - ok( $.mobile.activePage[ 0 ] === firstPage[ 0 ], "navigated successfully to new first-page"); - - // Reset the $.mobile.firstPage for subsequent tests. - // XXX: Should we just get rid of the new one and restore the old? - $.mobile.firstPage = $.mobile.activePage; - - start(); - } - ]); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_transitions.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_transitions.js deleted file mode 100644 index 5a44806..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_transitions.js +++ /dev/null @@ -1,151 +0,0 @@ -/* - * mobile navigation unit tests - */ -(function($){ - var perspective = "viewport-flip", - transitioning = "ui-mobile-viewport-transitioning", - animationCompleteFn = $.fn.animationComplete, - - //TODO centralize class names? - transitionTypes = "in out fade slide flip reverse pop", - - isTransitioning = function(page){ - return $.grep(transitionTypes.split(" "), function(className, i){ - return page.hasClass(className); - }).length > 0; - }, - - isTransitioningIn = function(page){ - return page.hasClass("in") && isTransitioning(page); - }, - - //animationComplete callback queue - callbackQueue = [], - - finishPageTransition = function(){ - callbackQueue.pop()(); - }, - - clearPageTransitionStack = function(){ - stop(); - var checkTransitionStack = function(){ - if(callbackQueue.length>0) { - setTimeout(function(){ - finishPageTransition(); - checkTransitionStack(); - },0); - } - else { - start(); - } - }; - checkTransitionStack(); - }, - - //wipe all urls - clearUrlHistory = function(){ - $.mobile.urlHistory.stack = []; - $.mobile.urlHistory.activeIndex = 0; - }; - - - module('jquery.mobile.navigation.js', { - setup: function(){ - //stub to prevent class removal - $.fn.animationComplete = function(callback){ - callbackQueue.unshift(callback); - }; - - clearPageTransitionStack(); - clearUrlHistory(); - }, - - teardown: function(){ - // unmock animation complete - $.fn.animationComplete = animationCompleteFn; - } - }); - - test( "changePage applys perspective class to mobile viewport for flip", function(){ - $("#foo > a").click(); - - ok($("body").hasClass(perspective), "has perspective class"); - }); - - test( "changePage does not apply perspective class to mobile viewport for transitions other than flip", function(){ - $("#bar > a").click(); - - ok(!$("body").hasClass(perspective), "doesn't have perspective class"); - }); - - test( "changePage applys transition class to mobile viewport for default transition", function(){ - $("#baz > a").click(); - - ok($("body").hasClass(transitioning), "has transitioning class"); - }); - - test( "explicit transition preferred for page navigation reversal (ie back)", function(){ - $("#fade-trans > a").click(); - stop(); - setTimeout(function(){ - finishPageTransition(); - $("#flip-trans > a").click(); - setTimeout(function(){ - finishPageTransition(); - $("#fade-trans > a").click(); - setTimeout(function(){ - ok($("#flip-trans").hasClass("fade"), "has fade class"); - start(); - },0); - },0); - },0); - }); - - test( "default transition is slide", function(){ - $("#default-trans > a").click(); - stop(); - setTimeout(function(){ - ok($("#no-trans").hasClass("slide"), "has slide class"); - start(); - },0); - }); - - test( "changePage queues requests", function(){ - var firstPage = $("#foo"), - secondPage = $("#bar"); - - $.mobile.changePage(firstPage); - $.mobile.changePage(secondPage); - - stop(); - setTimeout(function(){ - ok(isTransitioningIn(firstPage), "first page begins transition"); - ok(!isTransitioningIn(secondPage), "second page doesn't transition yet"); - - finishPageTransition(); - - setTimeout(function(){ - ok(!isTransitioningIn(firstPage), "first page transition should be complete"); - ok(isTransitioningIn(secondPage), "second page should begin transitioning"); - start(); - },0); - },0); - }); - - test( "default transition is pop for a dialog", function(){ - expect( 1 ); - stop(); - setTimeout(function(){ - $("#default-trans-dialog > a").click(); - - ok($("#no-trans-dialog").hasClass("pop"), "expected the pop class to be present but instead was " + $("#no-trans-dialog").attr('class')); - - start(); - }, 900); - }); - - test( "animationComplete return value", function(){ - $.fn.animationComplete = animationCompleteFn; - equals($("#foo").animationComplete(function(){})[0], $("#foo")[0]); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-dialog-tests.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-dialog-tests.html deleted file mode 100644 index 8d9dd2e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-dialog-tests.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - jQuery Mobile Navigation Test Suite - - - - - - - - - - - - - - - - - -

                    jQuery Mobile Navigation Test Suite

                    -

                    -

                    -
                      -
                    - - - -
                    -
                    -

                    Dialog

                    -
                    -
                    - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page-sections/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/page-sections/index.html deleted file mode 100644 index 96fe88d..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page-sections/index.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - jQuery Mobile Page Test Suite - - - - - - - - - - - - - - - - -

                    jQuery Mobile Page Test Suite

                    -

                    -

                    -
                      -
                    - -
                    -
                    -
                    -
                    - foo -
                    - foo -
                    - -
                    -
                    - foo -
                    - - foo -
                    - -
                    -
                    - foo -
                    - - foo -
                    -
                    - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page-sections/page_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/page-sections/page_core.js deleted file mode 100644 index 38bb6e8..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page-sections/page_core.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * mobile page unit tests - */ -(function($){ - var libName = 'jquery.mobile.page.js'; - - module(libName); - - test( "nested header anchors aren't altered", function(){ - ok(!$('.ui-header > div > a').hasClass('ui-btn')); - }); - - test( "nested footer anchors aren't altered", function(){ - ok(!$('.ui-footer > div > a').hasClass('ui-btn')); - }); - - test( "nested bar anchors aren't styled", function(){ - ok(!$('.ui-bar > div > a').hasClass('ui-btn')); - }); - - test( "unnested footer anchors are styled", function(){ - ok($('.ui-footer > a').hasClass('ui-btn')); - }); - - test( "unnested footer anchors are styled", function(){ - ok($('.ui-footer > a').hasClass('ui-btn')); - }); - - test( "unnested bar anchors are styled", function(){ - ok($('.ui-bar > a').hasClass('ui-btn')); - }); - - test( "no auto-generated back button exists on first page", function(){ - ok( !$(".ui-header > :jqmData(rel='back')").length ); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/page/index.html deleted file mode 100644 index e50db0f..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page/index.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - jQuery Mobile Page Test Suite - - - - - - - - - - - - - - - - -

                    jQuery Mobile Page Test Suite

                    -

                    -

                    -
                      -
                    - -
                    -
                    - - -
                    - -
                    -
                    - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page/page_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/page/page_core.js deleted file mode 100644 index cc050b5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/page/page_core.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * mobile page unit tests - */ -(function($){ - var libName = 'jquery.mobile.page.sections.js', - themedefault = $.mobile.page.prototype.options.theme, - keepNative = $.mobile.page.prototype.options.keepNative; - - module(libName, { - setup: function() { - $.mobile.page.prototype.options.keepNative = keepNative; - } - }); - - - var eventStack = [], - etargets = [], - cEvents=[], - cTargets=[]; - - - $( document ).bind( "pagebeforecreate pagecreate", function( e ){ - eventStack.push( e.type ); - etargets.push( e.target ); - }); - - $("#c").live( "pagebeforecreate", function( e ){ - - cEvents.push( e.type ); - cTargets.push( e.target ); - return false; - }); - - test( "pagecreate event fires when page is created", function(){ - ok( eventStack[0] === "pagecreate" || eventStack[1] === "pagecreate" ); - }); - - test( "pagebeforecreate event fires when page is created", function(){ - ok( eventStack[0] === "pagebeforecreate" || eventStack[1] === "pagebeforecreate" ); - }); - - test( "pagebeforecreate fires before pagecreate", function(){ - ok( eventStack[0] === "pagebeforecreate" ); - }); - - test( "target of pagebeforecreate event was div #a", function(){ - ok( $( etargets[0] ).is("#a") ); - }); - - test( "target of pagecreate event was div #a" , function(){ - ok( $( etargets[0] ).is("#a") ); - }); - - test( "page element has ui-page class" , function(){ - ok( $( "#a" ).hasClass( "ui-page" ) ); - }); - - test( "page element has default body theme when not overidden" , function(){ - ok( $( "#a" ).hasClass( "ui-body-" + themedefault ) ); - }); - - test( "B page has non-default theme matching its data-theme attr" , function(){ - $( "#b" ).page(); - var btheme = $( "#b" ).jqmData( "theme" ); - ok( $( "#b" ).hasClass( "ui-body-" + btheme ) ); - }); - - test( "Binding to pagebeforecreate and returning false prevents pagecreate event from firing" , function(){ - $("#c").page(); - - ok( cEvents[0] === "pagebeforecreate" ); - ok( !cTargets[1] ); - }); - - test( "Binding to pagebeforecreate and returning false prevents classes from being applied to page" , function(){ - ok( !$( "#b" ).hasClass( "ui-body-" + themedefault ) ); - ok( !$( "#b" ).hasClass( "ui-page" ) ); - }); - - test( "keepNativeSelector returns the default where keepNative is not different", function() { - var pageProto = $.mobile.page.prototype; - pageProto.options.keepNative = pageProto.options.keepNativeDefault; - - same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); - }); - - test( "keepNativeSelector returns the default where keepNative is empty, undefined, whitespace", function() { - var pageProto = $.mobile.page.prototype; - - pageProto.options.keepNative = ""; - same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); - - pageProto.options.keepNative = undefined; - same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); - - pageProto.options.keepNative = " "; - same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); - }); - - test( "keepNativeSelector returns a selector joined with the default", function() { - var pageProto = $.mobile.page.prototype; - - pageProto.options.keepNative = "foo, bar"; - same(pageProto.keepNativeSelector(), "foo, bar, " + pageProto.options.keepNativeDefault); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/runner.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/runner.js deleted file mode 100644 index e8fd220..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/runner.js +++ /dev/null @@ -1,89 +0,0 @@ -$(function() { - var Runner = function( ) { - var self = this; - - $.extend( self, { - frame: window.frames[ "testFrame" ], - - testTimeout: 3 * 60 * 1000, - - $frameElem: $( "#testFrame" ), - - assertionResultPrefix: "assertion result for test:", - - onTimeout: QUnit.start, - - onFrameLoad: function() { - // establish a timeout for a given suite in case of async tests hanging - self.testTimer = setTimeout( self.onTimeout, self.testTimeout ); - - // it might be a redirect with query params for push state - // tests skip this call and expect another - if( !self.frame.QUnit ) { - self.$frameElem.one( "load", self.onFrameLoad ); - return; - } - - // when the QUnit object reports done in the iframe - // run the onFrameDone method - self.frame.QUnit.done = self.onFrameDone; - self.frame.QUnit.testDone = self.onTestDone; - }, - - onTestDone: function( result ) { - QUnit.ok( !(result.failed > 0), result.name ); - self.recordAssertions( result.total - result.failed, result.name ); - }, - - onFrameDone: function( failed, passed, total, runtime ){ - // make sure we don't time out the tests - clearTimeout( self.testTimer ); - - // TODO decipher actual cause of multiple test results firing twice - // clear the done call to prevent early completion of other test cases - self.frame.QUnit.done = $.noop; - self.frame.QUnit.testDone = $.noop; - - // hide the extra assertions made to propogate the count - // to the suite level test - self.hideAssertionResults(); - - // continue on to the next suite - QUnit.start(); - }, - - recordAssertions: function( count, parentTest ) { - for( var i = 0; i < count; i++ ) { - ok( true, self.assertionResultPrefix + parentTest ); - } - }, - - hideAssertionResults: function() { - $( "li:not([id]):contains('" + self.assertionResultPrefix + "')" ).hide(); - }, - - exec: function( data ) { - var template = self.$frameElem.attr( "data-src" ); - - $.each( data.testPages, function(i, dir) { - QUnit.asyncTest( dir, function() { - self.dir = dir; - self.$frameElem.one( "load", self.onFrameLoad ); - self.$frameElem.attr( "src", template.replace("{{testdir}}", dir) ); - }); - }); - - // having defined all suite level tests let QUnit run - QUnit.start(); - } - }); - }; - - // prevent qunit from starting the test suite until all tests are defined - QUnit.begin = function( ) { - this.config.autostart = false; - }; - - // get the test directories - $.get( "ls.php", (new Runner()).exec ); -}); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached-tests.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached-tests.html deleted file mode 100644 index f001e83..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached-tests.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - jQuery Mobile Select Events Test Suite - - - - - - - - - - - - - - - -

                    jQuery Mobile Select Event Test Suite

                    -

                    -

                    -
                      -
                    -
                    - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/index.html deleted file mode 100644 index 8043ab7..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - jQuery Mobile Select Events Test Suite - - - - - - - - - - - - - - - - - - -

                    jQuery Mobile Select Event Test Suite

                    -

                    -

                    -
                      -
                    - -
                    -
                    - -
                    - -
                    - - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - - -
                    - -
                    - - -
                    - -
                    - - -
                    - -
                    - - -
                    - -
                    - - - -
                    - -
                    - -
                    - - - - - - - - - - - - - - -
                    - - -
                    - -
                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_cached.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_cached.js deleted file mode 100644 index 2849cca..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_cached.js +++ /dev/null @@ -1,124 +0,0 @@ -/* - * mobile select unit tests - */ - -(function($){ - var resetHash; - - resetHash = function(timeout){ - $.testHelper.openPage( location.hash.indexOf("#default") >= 0 ? "#" : "#default" ); - }; - - // https://github.com/jquery/jquery-mobile/issues/2181 - asyncTest( "dialog sized select should alter the value of its parent select", function(){ - var selectButton, value; - - $.testHelper.pageSequence([ - resetHash, - - function(){ - $.mobile.changePage( "cached.html" ); - }, - - function(){ - selectButton = $( "#cached-page-select" ).siblings( 'a' ); - selectButton.click(); - }, - - function(){ - ok( $.mobile.activePage.hasClass('ui-dialog'), "the dialog came up" ); - var option = $.mobile.activePage.find( "li a" ).not(":contains('" + selectButton.text() + "')").last(); - value = option.text(); - option.click(); - }, - - function(){ - same( value, selectButton.text(), "the selected value is propogated back to the button text" ); - start(); - } - ]); - }); - - // https://github.com/jquery/jquery-mobile/issues/2181 - asyncTest( "dialog sized select should prevent the removal of its parent page from the dom", function(){ - var selectButton, parentPageId; - - expect( 2 ); - - $.testHelper.pageSequence([ - resetHash, - - function(){ - $.mobile.changePage( "cached.html" ); - }, - - function(){ - selectButton = $.mobile.activePage.find( "#cached-page-select" ).siblings( 'a' ); - parentPageId = $.mobile.activePage.attr( 'id' ); - same( $("#" + parentPageId).length, 1, "establish the parent page exists" ); - selectButton.click(); - }, - - function(){ - same( $( "#" + parentPageId).length, 1, "make sure parent page is still there after opening the dialog" ); - $.mobile.activePage.find( "li a" ).last().click(); - }, - - start - ]); - }); - - asyncTest( "dialog sized select shouldn't rebind its parent page remove handler when closing, if the parent page domCache option is true", function(){ - expect( 3 ); - - $.testHelper.pageSequence([ - resetHash, - - function(){ - $.mobile.changePage( "cached-dom-cache-true.html" ); - }, - - function(){ - $.mobile.activePage.find( "#domcache-page-select" ).siblings( 'a' ).click(); - }, - - function(){ - ok( $.mobile.activePage.hasClass('ui-dialog'), "the dialog came up" ); - $.mobile.activePage.find( "li a" ).last().click(); - }, - - function(){ - ok( $.mobile.activePage.is( "#dialog-select-parent-domcache-test" ), "the dialog closed" ); - $.mobile.changePage( $( "#default" ) ); - }, - - function(){ - same( $("#dialog-select-parent-domcache-test").length, 1, "make sure the select parent page is still cached in the dom after changing page" ); - start(); - } - ]); - }); - - asyncTest( "menupage is removed when the parent page is removed", function(){ - var dialogCount = $(":jqmData(role='dialog')").length; - - $.testHelper.pageSequence([ - resetHash, - - function(){ - - $.mobile.changePage( "uncached-dom-cached-false.html" ); - }, - - function(){ - same( $(":jqmData(role='dialog')").length, dialogCount + 1 ); - window.history.back(); - }, - - function() { - same( $(":jqmData(role='dialog')").length, dialogCount ); - start(); - } - ]); - }); -})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_core.js deleted file mode 100644 index 3271000..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_core.js +++ /dev/null @@ -1,384 +0,0 @@ -/* - * mobile select unit tests - */ - -(function($){ - var libName = "jquery.mobile.forms.select.js", - originalDefaultDialogTrans = $.mobile.defaultDialogTransition, - originalDefTransitionHandler = $.mobile.defaultTransitionHandler, - originalGetEncodedText = $.fn.getEncodedText, - resetHash, closeDialog; - - resetHash = function(timeout){ - $.testHelper.openPage( location.hash.indexOf("#default") >= 0 ? "#" : "#default" ); - }; - - closeDialog = function(timeout){ - $.mobile.activePage.find("li a").first().click(); - }; - - module(libName, { - teardown: function(){ - $.mobile.defaultDialogTransition = originalDefaultDialogTrans; - $.mobile.defaultTransitionHandler = originalDefTransitionHandler; - - $.fn.getEncodedText = originalGetEncodedText; - window.encodedValueIsDefined = undefined; - } - }); - - asyncTest( "firing a click at least 400 ms later on the select screen overlay does close it", function(){ - $.testHelper.sequence([ - function(){ - // bring up the smaller choice menu - ok($("#select-choice-few-container a").length > 0, "there is in fact a button in the page"); - $("#select-choice-few-container a").trigger("click"); - }, - - function(){ - //select the first menu item - $("#select-choice-few-menu a:first").click(); - }, - - function(){ - same($("#select-choice-few-menu").parent(".ui-selectmenu-hidden").length, 1); - start(); - } - ], 1000); - }); - - asyncTest( "a large select menu should use the default dialog transition", function(){ - var select; - - $.testHelper.pageSequence([ - resetHash, - - function(timeout){ - select = $("#select-choice-many-container-1 a"); - - //set to something else - $.mobile.defaultTransitionHandler = $.testHelper.decorate({ - fn: $.mobile.defaultTransitionHandler, - - before: function(name){ - same(name, $.mobile.defaultDialogTransition); - } - }); - - // bring up the dialog - select.trigger("click"); - }, - - closeDialog, - - start - ]); - }); - - asyncTest( "custom select menu always renders screen from the left", function(){ - var select; - - expect( 1 ); - - $.testHelper.sequence([ - resetHash, - - function(){ - select = $("ul#select-offscreen-menu"); - $("#select-offscreen-container a").trigger("click"); - }, - - function(){ - ok(select.offset().left >= 30, "offset from the left is greater than or equal to 30px" ); - start(); - } - ], 1000); - }); - - asyncTest( "selecting an item from a dialog sized custom select menu leaves no dialog hash key", function(){ - var dialogHashKey = "ui-state=dialog"; - - $.testHelper.pageSequence([ - resetHash, - - function(timeout){ - $("#select-choice-many-container-hash-check a").click(); - }, - - function(){ - ok(location.hash.indexOf(dialogHashKey) > -1); - closeDialog(); - }, - - function(){ - same(location.hash.indexOf(dialogHashKey), -1); - start(); - } - ]); - }); - - asyncTest( "dialog sized select menu opened many times remains a dialog", function(){ - var dialogHashKey = "ui-state=dialog", - - openDialogSequence = [ - resetHash, - - function(){ - $("#select-choice-many-container-many-clicks a").click(); - }, - - function(){ - ok(location.hash.indexOf(dialogHashKey) > -1, "hash should have the dialog hash key"); - closeDialog(); - } - ], - - sequence = openDialogSequence.concat(openDialogSequence).concat([start]); - - $.testHelper.sequence(sequence, 1000); - }); - - test( "make sure the label for the select gets the ui-select class", function(){ - ok( $( "#native-select-choice-few-container label" ).hasClass( "ui-select" ), "created label has ui-select class" ); - }); - - module("Non native menus", { - setup: function() { - $.mobile.selectmenu.prototype.options.nativeMenu = false; - }, - teardown: function() { - $.mobile.selectmenu.prototype.options.nativeMenu = true; - } - }); - - asyncTest( "a large select option should not overflow", function(){ - // https://github.com/jquery/jquery-mobile/issues/1338 - var menu, select; - - $.testHelper.sequence([ - resetHash, - - function(){ - select = $("#select-long-option-label"); - // bring up the dialog - select.trigger("click"); - }, - - function() { - menu = $(".ui-selectmenu-list"); - - equal(menu.width(), menu.find("li:nth-child(2) .ui-btn-text").width(), "ui-btn-text element should not overflow"); - start(); - } - ], 500); - }); - - asyncTest( "using custom refocuses the button after close", function() { - var select, button, triggered = false; - - expect( 1 ); - - $.testHelper.sequence([ - resetHash, - - function() { - select = $("#select-choice-focus-test"); - button = select.find( "a" ); - button.trigger( "click" ); - }, - - function() { - // NOTE this is called twice per triggered click - button.focus(function() { - triggered = true; - }); - - $(".ui-selectmenu-screen:not(.ui-screen-hidden)").trigger("click"); - }, - - function(){ - ok(triggered, "focus is triggered"); - start(); - } - ], 5000); - }); - - asyncTest( "selected items are highlighted", function(){ - $.testHelper.sequence([ - resetHash, - - function(){ - // bring up the smaller choice menu - ok($("#select-choice-few-container a").length > 0, "there is in fact a button in the page"); - $("#select-choice-few-container a").trigger("click"); - }, - - function(){ - var firstMenuChoice = $("#select-choice-few-menu li:first"); - ok( firstMenuChoice.hasClass( $.mobile.activeBtnClass ), - "default menu choice has the active button class" ); - - $("#select-choice-few-menu a:last").click(); - }, - - function(){ - // bring up the menu again - $("#select-choice-few-container a").trigger("click"); - }, - - function(){ - var lastMenuChoice = $("#select-choice-few-menu li:last"); - ok( lastMenuChoice.hasClass( $.mobile.activeBtnClass ), - "previously slected item has the active button class" ); - - // close the dialog - lastMenuChoice.find( "a" ).click(); - }, - - start - ], 1000); - }); - - test( "enabling and disabling", function(){ - var select = $( "select" ).first(), button; - - button = select.siblings( "a" ).first(); - - select.selectmenu( 'disable' ); - same( select.attr('disabled'), "disabled", "select is disabled" ); - ok( button.hasClass("ui-disabled"), "disabled class added" ); - same( button.attr('aria-disabled'), "true", "select is disabled" ); - same( select.selectmenu( 'option', 'disabled' ), true, "disbaled option set" ); - - select.selectmenu( 'enable' ); - same( select.attr('disabled'), undefined, "select is disabled" ); - ok( !button.hasClass("ui-disabled"), "disabled class added" ); - same( button.attr('aria-disabled'), "false", "select is disabled" ); - same( select.selectmenu( 'option', 'disabled' ), false, "disbaled option set" ); - }); - - test( "adding options and refreshing a custom select defaults the text", function() { - var select = $( "#custom-refresh" ), - button = select.siblings( "a" ).find( ".ui-btn-inner" ), - text = "foo"; - - same(button.text(), "default"); - select.find( "option" ).remove(); //remove the loading message - select.append(''); - select.selectmenu( 'refresh' ); - same(button.text(), text); - }); - - asyncTest( "adding options and refreshing a custom select changes the options list", function(){ - var select = $( "#custom-refresh-opts-list" ), - button = select.siblings( "a" ).find( ".ui-btn-inner" ), - text = "foo"; - - $.testHelper.sequence([ - // bring up the dialog - function() { - button.click(); - }, - - function() { - same( $( ".ui-selectmenu.in ul" ).text(), "default" ); - $( ".ui-selectmenu-screen" ).click(); - }, - - function() { - select.find( "option" ).remove(); //remove the loading message - select.append(''); - select.selectmenu( 'refresh' ); - }, - - function() { - button.click(); - }, - - function() { - same( $( ".ui-selectmenu.in ul" ).text(), text ); - $( ".ui-selectmenu-screen" ).click(); - }, - - start - ], 500); - }); - - test( "theme defined on select is used", function(){ - var select = $("select#non-parent-themed"); - - ok( select.siblings( "a" ).hasClass("ui-btn-up-" + select.jqmData('theme'))); - }); - - test( "select without theme defined inherits theme from parent", function() { - var select = $("select#parent-themed"); - - ok( select - .siblings( "a" ) - .hasClass("ui-btn-up-" + select.parents(":jqmData(role='page')").jqmData('theme'))); - }); - - // issue #2547 - test( "custom select list item links have encoded option text values", function() { - $( "#encoded-option" ).data( 'selectmenu' )._buildList(); - same(window.encodedValueIsDefined, undefined); - }); - - // issue #2547 - test( "custom select list item links have unencoded option text values when using vanilla $.fn.text", function() { - // undo our changes, undone in teardown - $.fn.getEncodedText = $.fn.text; - - $( "#encoded-option" ).data( 'selectmenu' )._buildList(); - - same(window.encodedValueIsDefined, true); - }); - - $.mobile.page.prototype.options.keepNative = "select.should-be-native"; - - // not testing the positive case here since's it's obviously tested elsewhere - test( "select elements in the keepNative set shouldn't be enhanced", function() { - ok( !$("#keep-native").parent().is("div.ui-btn") ); - }); - - asyncTest( "dialog size select title should match the label", function() { - var $select = $( "#select-choice-many-1" ), - $label = $select.parent().siblings( "label" ), - $button = $select.siblings( "a" ); - - $.testHelper.pageSequence([ - function() { - $button.click(); - }, - - function() { - same($.mobile.activePage.find( ".ui-title" ).text(), $label.text()); - window.history.back(); - }, - - start - ]); - }); - - asyncTest( "dialog size select title should match the label when changed after the dialog markup is added to the DOM", function() { - var $select = $( "#select-choice-many-1" ), - $label = $select.parent().siblings( "label" ), - $button = $select.siblings( "a" ); - - $label.text( "foo" ); - - $.testHelper.pageSequence([ - function() { - $label.text( "foo" ); - $button.click(); - }, - - function() { - same($.mobile.activePage.find( ".ui-title" ).text(), $label.text()); - window.history.back(); - }, - - start - ]); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_events.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_events.js deleted file mode 100644 index e65bf44..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_events.js +++ /dev/null @@ -1,34 +0,0 @@ -/* - * mobile select unit tests - */ - -(function($){ - var libName = "jquery.mobile.forms.select.js"; - - $(document).bind('mobileinit', function(){ - $.mobile.selectmenu.prototype.options.nativeMenu = false; - }); - - module(libName,{ - setup: function(){ - $.testHelper.openPage( location.hash.indexOf("#default") >= 0 ? "#" : "#default" ); - } - }); - - test( "selects marked with data-native-menu=true should use a div as their button", function(){ - same($("#select-choice-native-container div.ui-btn").length, 1); - }); - - test( "selects marked with data-native-menu=true should not have a custom menu", function(){ - same($("#select-choice-native-container ul").length, 0); - }); - - test( "selects marked with data-native-menu=true should sit inside the button", function(){ - same($("#select-choice-native-container div.ui-btn select").length, 1); - }); - - test( "select controls will create when inside a container that receives a 'create' event", function(){ - ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-select").length, "did not have enhancements applied" ); - ok( $("#enhancetest").trigger("create").find(".ui-select").length, "enhancements applied" ); - }); -})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_native.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_native.js deleted file mode 100644 index 271dbf9..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/select_native.js +++ /dev/null @@ -1,68 +0,0 @@ -/* - * mobile select unit tests - */ - -(function($){ - module("jquery.mobile.forms.select native"); - - test( "native menu selections alter the button text", function(){ - var select = $( "#native-select-choice-few" ), setAndCheck; - - setAndCheck = function(key){ - var text; - - select.val( key ).selectmenu( 'refresh' ); - text = select.find( "option[value='" + key + "']" ).text(); - same( select.parent().find(".ui-btn-text").text(), text ); - }; - - setAndCheck( 'rush' ); - setAndCheck( 'standard' ); - }); - - asyncTest( "selecting a value removes the related buttons down state", function(){ - var select = $( "#native-select-choice-few" ); - - $.testHelper.sequence([ - function() { - // click the native menu parent button - select.parent().trigger( 'vmousedown' ); - }, - - function() { - ok( select.parent().hasClass("ui-btn-down-c"), "button down class added" ); - }, - - function() { - // trigger a change on the select - select.trigger( "change" ); - }, - - function() { - ok( !select.parent().hasClass("ui-btn-down-c"), "button down class removed" ); - start(); - } - ], 300); - }); - - // issue https://github.com/jquery/jquery-mobile/issues/2410 - test( "adding options and refreshing a native select defaults the text", function() { - var select = $( "#native-refresh" ), - button = select.siblings( '.ui-btn-inner' ), - text = "foo"; - - same(button.text(), "default"); - select.find( "option" ).remove(); //remove the loading message - select.append(''); - select.selectmenu('refresh'); - same(button.text(), text); - }); - - // issue 2424 - test( "native selects should provide open and close as a no-op", function() { - // exception will prevent test success if undef - $( "#native-refresh" ).selectmenu( 'open' ); - $( "#native-refresh" ).selectmenu( 'close' ); - ok( true ); - }); -})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/index.html deleted file mode 100644 index 528d9ef..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - jQuery Mobile Slider Test Suite - - - - - - - - - - - - - - - - - - -

                    jQuery Mobile Slider Test Suite

                    -

                    -

                    -
                      -
                    - -
                    -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - -
                    - - -
                    -
                    - -
                    - -
                    - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/slider_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/slider_core.js deleted file mode 100644 index 087d95d..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/slider_core.js +++ /dev/null @@ -1,11 +0,0 @@ -/* - * mobile slider unit tests - */ -(function($){ - $.mobile.page.prototype.options.keepNative = "input.should-be-native"; - - // not testing the positive case here since's it's obviously tested elsewhere - test( "slider elements in the keepNative set shouldn't be enhanced", function() { - same( $("input.should-be-native").siblings("div.ui-slider").length, 0 ); - }); -})( jQuery ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/slider_events.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/slider_events.js deleted file mode 100644 index feca782..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/slider/slider_events.js +++ /dev/null @@ -1,370 +0,0 @@ -/* - * mobile slider unit tests - */ - -(function($){ - var onChangeCnt = 0; - window.onChangeCounter = function() { - onChangeCnt++; - } - module('jquery.mobile.slider.js'); - - var keypressTest = function(opts){ - var slider = $(opts.selector), - val = window.parseFloat(slider.val()), - handle = slider.siblings('.ui-slider').find('.ui-slider-handle'); - - expect( opts.keyCodes.length ); - - $.each(opts.keyCodes, function(i, elem){ - - // stub the keycode value and trigger the keypress - $.Event.prototype.keyCode = $.mobile.keyCode[elem]; - handle.trigger('keydown'); - - val += opts.increment; - same(val, window.parseFloat(slider.val(), 10), "new value is " + opts.increment + " different"); - }); - }; - - test( "slider should move right with up, right, and page up keypress", function(){ - keypressTest({ - selector: '#range-slider-up', - keyCodes: ['UP', 'RIGHT', 'PAGE_UP'], - increment: 1 - }); - }); - - test( "slider should move left with down, left, and page down keypress", function(){ - keypressTest({ - selector: '#range-slider-down', - keyCodes: ['DOWN', 'LEFT', 'PAGE_DOWN'], - increment: -1 - }); - }); - - test( "slider should move to range minimum on end keypress", function(){ - var selector = "#range-slider-end", - initialVal = window.parseFloat($(selector).val(), 10), - max = window.parseFloat($(selector).attr('max'), 10); - - keypressTest({ - selector: selector, - keyCodes: ['END'], - increment: max - initialVal - }); - }); - - test( "slider should move to range minimum on end keypress", function(){ - var selector = "#range-slider-home", - initialVal = window.parseFloat($(selector).val(), 10); - - keypressTest({ - selector: selector, - keyCodes: ['HOME'], - increment: 0 - initialVal - }); - }); - - test( "slider should move positive by steps on keypress", function(){ - keypressTest({ - selector: "#stepped", - keyCodes: ['RIGHT'], - increment: 10 - }); - }); - - test( "slider should move negative by steps on keypress", function(){ - keypressTest({ - selector: "#stepped", - keyCodes: ['LEFT'], - increment: -10 - }); - }); - - test( "slider should validate input value on blur", function(){ - var slider = $("#range-slider-up"); - slider.focus(); - slider.val(200); - same(slider.val(), "200"); - slider.blur(); - same(slider.val(), slider.attr('max')); - }); - - test( "slider should not validate input on keyup", function(){ - var slider = $("#range-slider-up"); - slider.focus(); - slider.val(200); - same(slider.val(), "200"); - slider.keyup(); - same(slider.val(), "200"); - }); - - test( "input type should degrade to number when slider is created", function(){ - same($("#range-slider-up").attr( "type" ), "number"); - }); - - // generic switch test function - var sliderSwitchTest = function(opts){ - var slider = $("#slider-switch"), - handle = slider.siblings('.ui-slider').find('a'), - switchValues = { - 'off' : 0, - 'on' : 1 - }; - - // One for the select and one for the aria-valuenow - expect( opts.keyCodes.length * 2 ); - - $.each(opts.keyCodes, function(i, elem){ - // reset the values - slider[0].selectedIndex = switchValues[opts.start]; - handle.attr({'aria-valuenow' : opts.start }); - - // stub the keycode and trigger the event - $.Event.prototype.keyCode = $.mobile.keyCode[elem]; - handle.trigger('keydown'); - - same(handle.attr('aria-valuenow'), opts.finish, "handle value is " + opts.finish); - same(slider[0].selectedIndex, switchValues[opts.finish], "select input has correct index"); - }); - }; - - test( "switch should select on with up, right, page up and end", function(){ - sliderSwitchTest({ - start: 'off', - finish: 'on', - keyCodes: ['UP', 'RIGHT', 'PAGE_UP', 'END'] - }); - }); - - test( "switch should select off with down, left, page down and home", function(){ - sliderSwitchTest({ - start: 'on', - finish: 'off', - keyCodes: ['DOWN', 'LEFT', 'PAGE_DOWN', 'HOME'] - }); - }); - - test( "onchange should not be called on create", function(){ - equals(onChangeCnt, 0, "onChange should not have been called"); - }); - - test( "onchange should be called onchange", function(){ - onChangeCnt = 0; - $( "#onchange" ).slider( "refresh", 50 ); - equals(onChangeCnt, 1, "onChange should have been called once"); - }); - - test( "slider controls will create when inside a container that receives a 'create' event", function(){ - ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-slider").length, "did not have enhancements applied" ); - ok( $("#enhancetest").trigger("create").find(".ui-slider").length, "enhancements applied" ); - }); - - var createEvent = function( name, target, x, y ) { - var event = $.Event( name ); - event.target = target; - event.pageX = x; - event.pageY = y; - return event; - }; - - test( "toggle switch should fire one change event when clicked", function(){ - var control = $( "#slider-switch" ), - widget = control.data( "slider" ), - slider = widget.slider, - handle = widget.handle, - changeCount = 0, - changeFunc = function( e ) { - ok( control[0].selectedIndex !== currentValue, "change event should only be triggered if the value changes"); - ++changeCount; - }, - event = null, - offset = handle.offset(), - currentValue = control[0].selectedIndex; - - control.bind( "change", changeFunc ); - - // The toggle switch actually updates on mousedown and mouseup events, so we go through - // the motions of generating all the events that happen during a click to make sure that - // during all of those events, the value only changes once. - - slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); - slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); - slider.trigger( createEvent( "click", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); - - control.unbind( "change", changeFunc ); - - ok( control[0].selectedIndex !== currentValue, "value did change"); - same( changeCount, 1, "change event should be fired once during a click" ); - }); - - var assertLeftCSS = function( obj, opts ) { - var integerLeft, compare, css, threshold; - - css = obj.css('left'); - threshold = opts.pxThreshold || 0; - - if( css.indexOf( "px" ) > -1 ) { - // parse the actual pixel value returned by the left css value - // and the pixels passed in for comparison - integerLeft = Math.round( parseFloat( css.replace("px", "") ) ), - compare = parseInt( opts.pixels.replace( "px", "" ), 10 ); - - // check that the pixel value provided is within a given threshold; default is 0px - ok( compare >= integerLeft - threshold && compare <= integerLeft + threshold, opts.message ); - } else { - equal( css, opts.percent, opts.message ); - } - }; - - asyncTest( "toggle switch handle should snap in the old position if dragged less than half of the slider width, in the new position if dragged more than half of the slider width", function() { - var control = $( "#slider-switch" ), - widget = control.data( "slider" ), - slider = widget.slider, - handle = widget.handle, - width = handle.width(), - offset = null; - - $.testHelper.sequence([ - function() { - // initialize the switch - control.val('on').slider('refresh'); - }, - - function() { - assertLeftCSS(handle, { - percent: '100%', - pixels: handle.parent().css('width'), - message: 'handle starts on the right side' - }); - - // simulate dragging less than a half - offset = handle.offset(); - slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + width - 10, offset.top + 10 ) ); - slider.trigger( createEvent( "mousemove", handle[ 0 ], offset.left + width - 20, offset.top + 10 ) ); - slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left + width - 20, offset.top + 10 ) ); - }, - - function() { - assertLeftCSS(handle, { - percent: '100%', - pixels: handle.parent().css('width'), - message: 'handle ends on the right side' - }); - - // initialize the switch - control.val('on').slider('refresh'); - }, - - function() { - assertLeftCSS(handle, { - percent: '100%', - pixels: handle.parent().css('width'), - message: 'handle starts on the right side' - }); - - // simulate dragging more than a half - offset = handle.offset(); - slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); - slider.trigger( createEvent( "mousemove", handle[ 0 ], offset.left - ( width / 2 ), offset.top + 10 ) ); - slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left - ( width / 2 ), offset.top + 10 ) ); - }, - - function() { - assertLeftCSS(handle, { - percent: '0%', - pixels: '0px', - message: 'handle ends on the left side' - }); - - start(); - } - ], 500); - }); - - asyncTest( "toggle switch handle should not move if user is dragging and value is changed", function() { - var control = $( "#slider-switch" ), - widget = control.data( "slider" ), - slider = widget.slider, - handle = widget.handle, - width = handle.width(), - offset = null; - - $.testHelper.sequence([ - function() { - // initialize the switch - control.val('on').slider('refresh'); - }, - - function() { - assertLeftCSS(handle, { - percent: '100%', - pixels: handle.parent().css('width'), - message: 'handle starts on the right side' - }); - - // simulate dragging more than a half - offset = handle.offset(); - slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); - slider.trigger( createEvent( "mousemove", handle[ 0 ], offset.left - ( width / 2 ), offset.top + 10 ) ); - }, - - function() { - var min, max; - if( handle.css('left').indexOf("%") > -1 ){ - min = "0%"; - max = "100%"; - } else { - min = "0px"; - max = handle.parent().css( 'width' ); - } - - notEqual(handle.css('left'), min, 'handle is not on the left side'); - notEqual(handle.css('left'), max, 'handle is not on the right side'); - - // reset slider state so it is ready for other tests - slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left - ( width / 2 ), offset.top + 10 ) ); - - start(); - } - ], 500); - }); - - asyncTest( "toggle switch should refresh when disabled", function() { - var control = $( "#slider-switch" ), - handle = control.data( "slider" ).handle; - - $.testHelper.sequence([ - function() { - // set the initial value - control.val('off').slider('refresh'); - }, - - function() { - assertLeftCSS(handle, { - percent: '0%', - pixels: '0px', - message: 'handle starts on the left side' - }); - - // disable and change value - control.slider('disable'); - control.val('on').slider('refresh'); - }, - - function() { - assertLeftCSS(handle, { - percent: '100%', - pixels: handle.parent().css( 'width' ), - message: 'handle ends on the right side' - }); - - // reset slider state so it is ready for other tests - control.slider('enable'); - - start(); - } - ], 500); - }); -})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/support/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/support/index.html deleted file mode 100644 index 61e0879..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/support/index.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - jQuery Mobile Support Test Suite - - - - - - - - - - - - - - - - - -

                    jQuery Mobile Support Test Suite

                    -

                    -

                    -
                      -
                    - -
                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/support/support_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/support/support_core.js deleted file mode 100644 index f7a390e..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/support/support_core.js +++ /dev/null @@ -1,95 +0,0 @@ -/* - * mobile support unit tests - */ - -$.testHelper.excludeFileProtocol(function(){ - var prependToFn = $.fn.prependTo, - libName = "jquery.mobile.support.js"; - - module(libName, { - teardown: function(){ - //NOTE undo any mocking - $.fn.prependTo = prependToFn; - } - }); - - // NOTE following two tests have debatable value as they only - // prevent property name changes and improper attribute checks - test( "detects functionality from basic affirmative properties and attributes", function(){ - // TODO expose properties for less brittle tests - $.extend(window, { - WebKitTransitionEvent: true, - orientation: true, - onorientationchange: true - }); - - document.ontouchend = true; - - window.history.pushState = function(){}; - window.history.replaceState = function(){}; - - $.mobile.media = function(){ return true; }; - - $.testHelper.reloadLib(libName); - - ok($.support.orientation); - ok($.support.touch); - ok($.support.cssTransitions); - ok($.support.pushState); - ok($.support.mediaquery); - }); - - test( "detects functionality from basic negative properties and attributes (where possible)", function(){ - delete window["orientation"]; - delete document["ontouchend"]; - - $.testHelper.reloadLib(libName); - - ok(!$.support.orientation); - ok(!$.support.touch); - }); - - // NOTE mocks prependTo to simulate base href updates or lack thereof - var mockBaseCheck = function( url ){ - var prependToFn = $.fn.prependTo; - - $.fn.prependTo = function( selector ){ - var result = prependToFn.call(this, selector); - if(this[0].href && this[0].href.indexOf("testurl") != -1) - result = [{href: url}]; - return result; - }; - }; - - test( "detects dynamic base tag when new base element added and base href updates", function(){ - mockBaseCheck(location.protocol + '//' + location.host + location.pathname + "ui-dir/"); - $.testHelper.reloadLib(libName); - ok($.support.dynamicBaseTag); - }); - - test( "detects no dynamic base tag when new base element added and base href unchanged", function(){ - mockBaseCheck('testurl'); - $.testHelper.reloadLib(libName); - ok(!$.support.dynamicBaseTag); - }); - - test( "jQM's IE browser check properly detects IE versions", function(){ - $.testHelper.reloadLib(libName); - - //here we're just comparing our version to what the conditional compilation finds - var ie = !!$.browser.msie, //get a boolean - version = parseInt( $.browser.version, 10), - jqmdetectedver = $.mobile.browser.ie; - - if( ie ){ - same(version, jqmdetectedver, "It's IE and the version is correct"); - } - else{ - same(ie, jqmdetectedver, "It's not IE"); - } - }); - - - //TODO propExists testing, refactor propExists into mockable method - //TODO scrollTop testing, refactor scrollTop logic into mockable method -}); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/index.html deleted file mode 100644 index 1e6add3..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - jQuery Mobile Textinput Test Suite - - - - - - - - - - - - - - - -

                    jQuery Mobile Textinput Test Suite

                    -

                    -

                    -
                      -
                    - -
                    - - - - - - - - - external -
                    - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/textinput_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/textinput_core.js deleted file mode 100644 index 41381f5..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/textinput_core.js +++ /dev/null @@ -1,61 +0,0 @@ -/* - * mobile textinput unit tests - */ -(function($){ - module( "jquery.mobile.forms.textinput.js" ); - - test( "inputs without type specified are enhanced", function(){ - ok( $( "#typeless-input" ).hasClass( "ui-input-text" ) ); - }); - - $.mobile.page.prototype.options.keepNative = "textarea.should-be-native"; - - // not testing the positive case here since's it's obviously tested elsewhere - test( "textarea in the keepNative set shouldn't be enhanced", function() { - ok( !$("textarea.should-be-native").is("ui-input-text") ); - }); - - asyncTest( "textarea should autogrow on document ready", function() { - var test = $( "#init-autogrow" ); - - setTimeout(function() { - ok( $( "#reference-autogrow" )[0].clientHeight < test[0].clientHeight, "the height is greater than the reference text area with no content" ); - ok( test[0].clientHeight > 100, "autogrow text area's height is greater than any style padding"); - start(); - }, 400); - }); - - asyncTest( "textarea should autogrow when text is added via the keyboard", function() { - var test = $( "#keyup-autogrow" ), - originalHeight = test[0].clientHeight; - - test.keyup(function() { - setTimeout(function() { - ok( test[0].clientHeight > originalHeight, "the height is greater than original with no content" ); - ok( test[0].clientHeight > 100, "autogrow text area's height is greater any style/padding"); - start(); - }, 400); - }); - - test.val("foo\n\n\n\n\n\n\n\n\n\n\n\n\n\n").trigger("keyup"); - }); - - asyncTest( "text area should auto grow when the parent page is loaded via ajax", function() { - $.testHelper.pageSequence([ - function() { - $("#external").click(); - }, - - function() { - setTimeout(function() { - ok($.mobile.activePage.find( "textarea" )[0].clientHeight > 100, "text area's height has grown"); - window.history.back(); - }, 1000); - }, - - function() { - start(); - } - ]); - }); -})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/index.html b/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/index.html deleted file mode 100644 index bd4a245..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/index.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - jQuery Mobile Widget Test Suite - - - - - - - - - - - - - - -

                    jQuery Mobile Widget Test Suite

                    -

                    -

                    -
                      -
                    - -
                    - -
                    -
                    -
                    ...
                    -
                    -
                    - -
                    - -
                    - -
                    -
                    -
                    -
                    -
                    - - - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/widget_core.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/widget_core.js deleted file mode 100644 index 89d4c41..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/widget_core.js +++ /dev/null @@ -1,52 +0,0 @@ -/* - * mobile widget unit tests - */ -(function($){ - module('jquery.mobile.widget.js'); - - test( "getting data from creation options", function(){ - var expected = "bizzle"; - - $.mobile.widget.prototype.options = { "fooBar" : true }; - $.mobile.widget.prototype.element = $("
                    "); - same($.mobile.widget.prototype._getCreateOptions()["fooBar"], - expected); - }); - - test( "getting no data when the options are empty", function(){ - var expected = {}; - - $.mobile.widget.prototype.options = {}; - $.mobile.widget.prototype.element = $("
                    "); - same($.mobile.widget.prototype._getCreateOptions(), - expected); - }); - - test( "getting no data when the element has none", function(){ - var expected = {}; - - $.mobile.widget.prototype.options = { "fooBar" : true }; - $.mobile.widget.prototype.element = $("
                    "); - same($.mobile.widget.prototype._getCreateOptions(), - expected); - }); - - test( "elements embedded in sub page elements are excluded on create when they match the keep native selector", function() { - // uses default keep native of data-role=none - $("#enhance-prevented") - .append('') - .trigger("create"); - - ok( !$("#unenhanced").hasClass( "ui-input-text" ), "doesn't have the ui input text class (unenhanced)"); - }); - - test( "elements embedded in sub page elements are included on create when they don't match the keep native selector", function() { - - // uses default keep native of data-role=none - $("#enhance-allowed") - .append('') - .trigger("create"); - - ok( $("#enhanced").hasClass( "ui-input-text" ), "has the ui input text class (unenhanced)"); - }); -})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/widget_init.js b/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/widget_init.js deleted file mode 100644 index 515e54b..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tests/unit/widget/widget_init.js +++ /dev/null @@ -1,20 +0,0 @@ -/* - * mobile widget unit tests - */ -(function($){ - var widgetInitialized = false; - - module( 'jquery.mobile.widget.js' ); - - $( "#foo" ).live( 'pageinit', function(){ - // ordering sensitive here, the value has to be set after the call - // so that if the widget factory says that its not yet initialized, - // which is an exception, the value won't be set - $( "#foo-slider" ).slider( 'refresh' ); - widgetInitialized = true; - }); - - test( "page is enhanced before init is fired", function() { - ok( widgetInitialized ); - }); -})( jQuery ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tools/log-page-events.html b/libs/js/jquery-mobile-1.0.1pre/tools/log-page-events.html deleted file mode 100644 index 72825ba..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tools/log-page-events.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -Page Event Logger Bookmarklet - - - -

                    Page Event Logger Bookmarklet

                    -

                    A simple bookmarklet for logging jQuery Mobile page events. To use, bookmark the following link:

                    - -

                    For platforms that don't allow bookmarking of javascript: urls, you can copy/paste the following source for the bookmarklet directly into the browser's location bar then hit enter or hit the "go" button on your keypad:

                    -

                    - -

                    -

                    NOTE: Some browsers like Chrome will strip off the javascript: prefix from the string above when you paste it into the location bar. Make sure what you pasted is prefixed by javascript: before attempting to load the bookmarklet.

                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/tools/page-change-time.html b/libs/js/jquery-mobile-1.0.1pre/tools/page-change-time.html deleted file mode 100644 index c290d65..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/tools/page-change-time.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -Page Change Timer Bookmarklet - - - -

                    Page Event Logger Bookmarklet

                    -

                    A simple bookmarklet for timing the load, enhanement, and transition of a jQuery Mobile changePage() request. To use, bookmark the following link:

                    - -

                    For platforms that don't allow bookmarking of javascript: urls, you can copy/paste the following source for the bookmarklet directly into the browser's location bar then hit enter or hit the "go" button on your keypad:

                    -

                    - -

                    -

                    NOTE: Some browsers like Chrome will strip off the javascript: prefix from the string above when you paste it into the location bar. Make sure what you pasted is prefixed by javascript: before attempting to load the bookmarklet.

                    - - - diff --git a/libs/js/jquery-mobile-1.0.1pre/version.txt b/libs/js/jquery-mobile-1.0.1pre/version.txt deleted file mode 100644 index 00b7ef0..0000000 --- a/libs/js/jquery-mobile-1.0.1pre/version.txt +++ /dev/null @@ -1 +0,0 @@ -1.0.1pre diff --git a/libs/js/jquery-mobile-1.0.1pre/GPL-LICENSE.txt b/libs/js/jquery-mobile-1.1.0/GPL-LICENSE.txt similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/GPL-LICENSE.txt rename to libs/js/jquery-mobile-1.1.0/GPL-LICENSE.txt diff --git a/libs/js/jquery-mobile-1.1.0/LICENSE-INFO.min.txt b/libs/js/jquery-mobile-1.1.0/LICENSE-INFO.min.txt new file mode 100644 index 0000000..5f585c2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/LICENSE-INFO.min.txt @@ -0,0 +1 @@ +/*! jQuery Mobile v@VERSION jquerymobile.com | jquery.org/license */ \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/LICENSE-INFO.txt b/libs/js/jquery-mobile-1.1.0/LICENSE-INFO.txt similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/LICENSE-INFO.txt rename to libs/js/jquery-mobile-1.1.0/LICENSE-INFO.txt diff --git a/libs/js/jquery-mobile-1.0.1pre/MIT-LICENSE.txt b/libs/js/jquery-mobile-1.1.0/MIT-LICENSE.txt similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/MIT-LICENSE.txt rename to libs/js/jquery-mobile-1.1.0/MIT-LICENSE.txt diff --git a/libs/js/jquery-mobile-1.1.0/Makefile b/libs/js/jquery-mobile-1.1.0/Makefile new file mode 100644 index 0000000..ddcfa01 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/Makefile @@ -0,0 +1,218 @@ +# Helper Variables +# The command to replace the @VERSION in the files with the actual version +HEAD_SHA = $(shell git log -1 --format=format:"%H") +VER = sed "s/v@VERSION/$$(git log -1 --format=format:"Git Build: SHA1: %H <> Date: %cd")/" +VER_MIN = "/*! jQuery Mobile v$$(git log -1 --format=format:"Git Build: SHA1: %H <> Date: %cd") jquerymobile.com | jquery.org/license */" +VER_OFFICIAL = $(shell cat version.txt) +SED_VER_REPLACE = 's/__version__/"${VER_OFFICIAL}"/g' +SED_VER_API = sed ${SED_VER_REPLACE} +SED_INPLACE_EXT = "whyunowork" +deploy: VER = sed "s/v@VERSION/${VER_OFFICIAL} ${HEAD_SHA}/" +deploy: VER_MIN = "/*! jQuery Mobile v${VER_OFFICIAL} ${HEAD_SHA} jquerymobile.com | jquery.org/license */" + +# The output folder for the finished files +OUTPUT = compiled + +# The name of the files +NAME = jquery.mobile +BASE_NAME = jquery.mobile +THEME_FILENAME = jquery.mobile.theme +STRUCTURE = jquery.mobile.structure +deploy: NAME = jquery.mobile-${VER_OFFICIAL} +deploy: THEME_FILENAME = jquery.mobile.theme-${VER_OFFICIAL} +deploy: STRUCTURE = jquery.mobile.structure-${VER_OFFICIAL} + +# The CSS theme being used +THEME = default + +# If node is available then use node to run r.js +# otherwise use good old rhino/java +NODE ?= /usr/local/bin/node +HAS_NODE = $(shell if test -x ${NODE} ;then echo true; fi) + +ifeq ($(HAS_NODE), true) + RUN_JS = @@${NODE} +else + RUN_JS = @@java -XX:ReservedCodeCacheSize=64m -classpath build/js.jar:build/google-compiler-20111003.jar org.mozilla.javascript.tools.shell.Main +endif + +# Build Targets + +# When no build target is specified, all gets ran +all: css js zip notify + +clean: + # ------------------------------------------------- + # Cleaning build output + @@rm -rf ${OUTPUT} + @@rm -rf tmp + +# Create the output directory. +init: + @@mkdir -p ${OUTPUT} + +# Build and minify the CSS files +css: init + # Build the CSS file with the theme included + ${RUN_JS} \ + external/r.js/dist/r.js \ + -o cssIn=css/themes/default/jquery.mobile.css \ + optimizeCss=standard.keepComments.keepLines \ + out=${OUTPUT}/${NAME}.compiled.css + @@cat LICENSE-INFO.txt | ${VER} > ${OUTPUT}/${NAME}.css + @@cat ${OUTPUT}/${NAME}.compiled.css >> ${OUTPUT}/${NAME}.css + @@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.css + @@java -XX:ReservedCodeCacheSize=64m \ + -jar build/yuicompressor-2.4.6.jar \ + --type css ${OUTPUT}/${NAME}.compiled.css >> ${OUTPUT}/${NAME}.min.css + @@rm ${OUTPUT}/${NAME}.compiled.css + # Build the CSS Structure-only file + ${RUN_JS} \ + external/r.js/dist/r.js \ + -o cssIn=css/structure/jquery.mobile.structure.css \ + out=${OUTPUT}/${STRUCTURE}.compiled.css + @@cat LICENSE-INFO.txt | ${VER} > ${OUTPUT}/${STRUCTURE}.css + @@cat ${OUTPUT}/${STRUCTURE}.compiled.css >> ${OUTPUT}/${STRUCTURE}.css + # ..... and then minify it + @@echo ${VER_MIN} > ${OUTPUT}/${STRUCTURE}.min.css + @@java -XX:ReservedCodeCacheSize=64m \ + -jar build/yuicompressor-2.4.6.jar \ + --type css ${OUTPUT}/${STRUCTURE}.compiled.css >> ${OUTPUT}/${STRUCTURE}.min.css + @@rm ${OUTPUT}/${STRUCTURE}.compiled.css + # Build the theme only file + @@cat LICENSE-INFO.txt | ${VER} > ${OUTPUT}/${THEME_FILENAME}.css + @@cat css/themes/default/jquery.mobile.theme.css >> ${OUTPUT}/${THEME_FILENAME}.css + # ..... and then minify it + @@echo ${VER_MIN} > ${OUTPUT}/${THEME_FILENAME}.min.css + @@java -XX:ReservedCodeCacheSize=64m \ + -jar build/yuicompressor-2.4.6.jar \ + --type css ${OUTPUT}/${THEME_FILENAME}.css >> ${OUTPUT}/${THEME_FILENAME}.min.css + # Copy in the images + @@cp -R css/themes/${THEME}/images ${OUTPUT}/ + # Css portion is complete. + # ------------------------------------------------- + + +docs: init js css + # Create the Demos/Docs/Tests/Tools + # ... Create staging directories + @@mkdir -p tmp/demos/js + @@mkdir -p tmp/demos/css/themes/${THEME} + # ... Copy script files + @@cp compiled/*.js tmp/demos/js + @@cp js/jquery.js tmp/demos/js + # ... Copy html files + @@cp index.html tmp/demos + @@cp -r docs tmp/demos + # ... Copy css and images + @@cp compiled/*.css tmp/demos/css/themes/${THEME} + @@cp -r compiled/images tmp/demos/css/themes/${THEME} + # ... replace "js/" with "js/jquery.mobile.js" + @@ # NOTE the deletion here is required by gnu/bsd sed differences + @@find tmp/demos -name "*.html" -exec sed -i${SED_INPLACE_EXT} -e 's@js/"@js/jquery.mobile.js"@' {} \; + @@find tmp/demos -name "*${SED_INPLACE_EXT}" -exec rm {} \; + # ... Move and zip up the the whole folder + @@rm -f ${OUTPUT}/${BASE_NAME}.docs.zip + @@cd tmp/demos && zip -rq ../../${OUTPUT}/${NAME}.docs.zip * + @@rm -rf ${OUTPUT}/demos && mv -f tmp/demos ${OUTPUT} + # Finish by removing the temporary files + @@rm -rf tmp + # ------------------------------------------------- + +# Build and minify the JS files +js: init + # Build the JavaScript file + ${RUN_JS} \ + external/r.js/dist/r.js \ + -o baseUrl="js" \ + name=jquery.mobile \ + exclude=jquery,../external/requirejs/order,../external/requirejs/depend,../external/requirejs/text,../external/requirejs/text!../version.txt \ + out=${OUTPUT}/${NAME}.compiled.js \ + pragmasOnSave.jqmBuildExclude=true \ + wrap.startFile=build/wrap.start \ + wrap.endFile=build/wrap.end \ + findNestedDependencies=true \ + skipModuleInsertion=true \ + optimize=none + @@cat LICENSE-INFO.txt | ${VER} > ${OUTPUT}/${NAME}.js + @@cat ${OUTPUT}/${NAME}.compiled.js | ${SED_VER_API} >> ${OUTPUT}/${NAME}.js + @@rm ${OUTPUT}/${NAME}.compiled.js + ## ..... and then minify it + ##@@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.js + ##@@java -XX:ReservedCodeCacheSize=64m \ + ## -jar build/google-compiler-20111003.jar \ + ## --js ${OUTPUT}/${NAME}.js \ + ## --js_output_file ${OUTPUT}/${NAME}.compiled.js + ##@@cat ${OUTPUT}/${NAME}.compiled.js >> ${OUTPUT}/${NAME}.min.js + ##@@rm ${OUTPUT}/${NAME}.compiled.js + # ------------------------------------------------- + + +# Output a message saying the process is complete +notify: init + @@echo "The files have been built and are in: " $$(pwd)/${OUTPUT} + # ------------------------------------------------- + + +# Zip up the jQm files without docs +zip: init css js + # Packaging up the files into a zip archive + @@mkdir tmp + @@cp -R ${OUTPUT} tmp/${NAME} + # ... And remove the Zipped docs so they aren't included twice (for deploy scripts) + @@rm -rf tmp/${NAME}/*.zip + @@cd tmp; zip -rq ../${OUTPUT}/${NAME}.zip ${NAME} + @@rm -rf tmp + # ------------------------------------------------- + +# ------------------------------------------------- +# ------------------------------------------------- +# ------------------------------------------------- +# +# For jQuery Team Use Only +# +# ------------------------------------------------- +# NOTE the clean (which removes previous build output) has been removed to prevent a gap in service +build_latest: css docs js zip + # ... Copy over the lib js, avoid the compiled stuff, to get the defines for tests/unit/* + @@ # TODO centralize list of built files + @@find js -name "*.js" -not -name "*.docs.js" -not -name "*.mobile.js" | xargs -L1 -I FILENAME cp FILENAME ${OUTPUT}/demos/js/ + +# Push the latest git version to the CDN. This is done on a post commit hook +deploy_latest: + # Time to put these on the CDN + @@scp -qr ${OUTPUT}/* jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/mobile/latest/ + # ------------------------------------------------- + +# TODO target name preserved to avoid issues during refactor, latest -> deploy_latest +latest: build_latest deploy_latest + +# Push the nightly backups. This is done on a server cronjob +deploy_nightlies: + # Time to put these on the CDN + @@scp -qr ${OUTPUT} jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/mobile/nightlies/$$(date "+%Y%m%d") + # ------------------------------------------------- + +# Deploy a finished release. This is manually done. +deploy: init css js docs zip + # Deploying all the files to the CDN + @@mkdir tmp + @@cp -R ${OUTPUT} tmp/${VER_OFFICIAL} + @@scp -qr tmp/* jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/mobile/ + @@rm -rf tmp/${VER_OFFICIAL} + @@mv ${OUTPUT}/demos tmp/${VER_OFFICIAL} + # Create the Demos/Docs/Tests/Tools for jQueryMobile.com + # ... By first replacing the paths + @@ # TODO update jQuery Version replacement on deploy + @@find tmp/${VER_OFFICIAL} -type f \ + \( -name '*.html' -o -name '*.php' \) \ + -exec perl -pi -e \ + 's|src="(.*)${BASE_NAME}.js"|src="//code.jquery.com/mobile/${VER_OFFICIAL}/${NAME}.min.js"|g;s|href="(.*)${BASE_NAME}.css"|href="//code.jquery.com/mobile/${VER_OFFICIAL}/${NAME}.min.css"|g;s|src="(.*)jquery.js"|src="//code.jquery.com/jquery-1.7.1.min.js"|g' {} \; + # ... So they can be copied to jquerymobile.com + @@scp -qr tmp/* jqadmin@jquerymobile.com:/srv/jquerymobile.com/htdocs/demos/ + # Do some cleanup to wrap it up + @@rm -rf tmp + @@rm -rf ${OUTPUT} + # ------------------------------------------------- + + diff --git a/libs/js/jquery-mobile-1.1.0/README.md b/libs/js/jquery-mobile-1.1.0/README.md new file mode 100644 index 0000000..e5607ce --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/README.md @@ -0,0 +1,111 @@ +jQuery Mobile Framework +======================= +[Official Site: http://jquerymobile.com](http://jquerymobile.com) + +[Demos and Documentation](http://jquerymobile.com/test/) + +How to build your own jQuery Mobile CSS and JS files +==================================================== +Clone this repo and build the js and css files (you'll need Git and Make installed): + + git clone git://github.com/jquery/jquery-mobile.git + cd jquery-mobile + make + +A full version and a minified version of the jQuery Mobile JavaScript and CSS files will be created +in a folder named "compiled". There is also now a Structure only css file so you can add your own theme on top of it. + +How to build a self-contained version of the Docs/Demos +======================================================= +Once you have your own cloned repo on your computer: + + make docs + +The docs will be built and available in the compiled/demos folder. You can move this folder to your web server or +other location. It has no dependencies on anything other than a basic HTML web server. + + +Submitting bugs +=============== +If you think you've found a bug, please report it by following these instructions: + +1. Visit the [Issue tracker: https://github.com/jquery/jquery-mobile/issues](https://github.com/jquery/jquery-mobile/issues) +2. Create an issue explaining the problem and expected result + - Be sure to include any relevant information for reproducing the issue + - Include information such as: + * Browser/device (with version #) + * The version of the jQuery Mobile code you're running + * If you are running from a git version, include the date and/or hash number + - Make sure that the bug still exists at http://jquerymobile.com/test/ as it may be fixed already + - You can use the CDN hosted JS and CSS files to test in your own code by using: + * [JS](http://code.jquery.com/mobile/latest/jquery.mobile.min.js) + * [CSS](http://code.jquery.com/mobile/latest/jquery.mobile.min.css) + - Include a link to some code of the bug in action. You can use either of these services to host your code + * [jsbin](http://jsbin.com) + * [jsfiddle](http://jsfiddle.net) +3. Submit the issue. + +Recommended: [JS Bin issue template with instructions](http://jsbin.com/omacox/edit) + +Submitting patches +================== +To contribute code and bug fixes to jQuery Mobile: fork this project on Github, make changes to the code in your fork, +and then send a "pull request" to notify the team of updates that are ready to be reviewed for inclusion. + +Detailed instructions can be found at [jQuery Mobile Patching](https://gist.github.com/1294035) + +Running the jQuery Mobile demos & docs locally +============================================== +To preview locally, you'll need to clone a local copy of this repository and point your Apache & PHP webserver at its +root directory (a webserver is required, as PHP and .htaccess are used for combining development files). + +If you don't currently have a webserver running locally, there are a few options. + +If you're on a Mac, you can try dropping jQuery Mobile into your sites folder and turning on Web Sharing via System +Prefs. From there, you'll find a URL where you can browse folders in your sites directory from a browser. + +Another quick way to get up and running is to download and install MAMP for Mac OSX. Once installed, just open MAMP, +click preferences, go to the Apache tab, and select your local jQuery Mobile folder as the root. Then you can open a +browser to http://localhost:8888 to preview the code. + +Another alternative is XAMPP (Mac, Windows). You need to actually modify Apache's httpd.conf to point to your checkout: +[Instructions](http://www.apachefriends.org/en/xampp.html) + +You need the following Apache modules loaded: + +* Rewrite (mod\_rewrite.so) +* Expire (mod\_expires.so) +* Header (mod\_headers.so) + +Alternatively, with the addition of async loading, you can use the python simple http server from the project root: + + $ python -m SimpleHTTPServer 8000 + +And in your browser visit [localhost:8000](http://localhost:8000/tests/unit/core/). NOTE: The docs will not load as they are dependent on the "/js/" includes which require php. For other development work such as unit tests and custom test pages using + + + +will allow you to load modules asynchronously without php. Please note that the example above assumes it's inclusion in a page at the root of the directory in which the simple http server was run. + +AMD Support in Development +========================== + +Please bear in mind that async loading is not supported for production and is primarily used for the project's build process. As a result developers should expect an initial flash of unstyled content, which will not occur when the library is compiled. + +If you find dependency bugs when using the async loading support for development please log them in the github issue tracker. + +Building With A Custom Theme +============================ +To use a custom theme in your own build, you'll need Make installed. You can find the themes in the CSS/Themes folder. +To create a new theme: + +1. Copy the `Default` folder from CSS/Themes to a new folder in the same location. The name of the folder will be the +theme's name. For testing locally, make sure the index.php file is copied as well. +2. Edit the `jquery.mobile.theme.css` file so it contains your custom fonts and colors. +3. Once you are done editing your files and saving them, open a terminal. +4. Navigate to the jQuery-Mobile folder's root. +5. Run the following command to build jQuery-Mobile (THEME is the name of the folder for your theme from step 1.): + + make THEME=YourThemeName + +6. The compiled files will be located in the "compiled" folder in the root of jQuery-Mobile. diff --git a/libs/js/jquery-mobile-1.1.0/build/branch-preview.sh b/libs/js/jquery-mobile-1.1.0/build/branch-preview.sh new file mode 100755 index 0000000..355f710 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/build/branch-preview.sh @@ -0,0 +1,46 @@ +#!/bin/bash +# determine the project root +output="branches" +index_page="$output/index.html" + +function log { + echo "[branches preview] $1" +} + +# Make the output directory if it doesnt exist +mkdir -p "$output" + +branches=$(git ls-remote --heads origin | cut -f2 -s | sed 's@refs/heads/@@') + +log "fetching to get new branches" +git fetch origin + +echo "jQm Branches Preview" > "$index_page" +echo "

                    jQuery Mobile Branches Live Previews


                    " >> "$index_page" +echo "Updated: $(date)" >> "$index_page" +echo "
                      " >> "$index_page" +# Loop through the array to export each branch +for branch in $branches; do + # skip master + if [ $branch = "master" ]; then + continue + fi + + # TODO shell escape the $branch value it safe for executing + log "archiving ref $branch" + git archive -o "$output/$branch.tar" "origin/$branch" + mkdir -p "$output/$branch" + + log "untarring $branch.tar into $output/$branch/" + tar -C "$output/$branch" -xf "$output/$branch.tar" + + # Manipulate the commit message + # TODO add commit and description + echo "
                    • Branch: $branch
                    • " >> "$index_page" +done + +# close out the list +echo "
                    " >> "$index_page" + +# close out the index file +echo "" >> "$index_page" diff --git a/libs/js/jquery-mobile-1.1.0/build/docs.build.js b/libs/js/jquery-mobile-1.1.0/build/docs.build.js new file mode 100644 index 0000000..3d61c2c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/build/docs.build.js @@ -0,0 +1,55 @@ +({ + appDir: "..", + baseUrl: "js", + dir: "../compiled/demos", + + optimize: "none", + + //Finds require() dependencies inside a require() or define call. + findNestedDependencies: true, + + //If skipModuleInsertion is false, then files that do not use define() + //to define modules will get a define() placeholder inserted for them. + //Also, require.pause/resume calls will be inserted. + //Set it to true to avoid this. This is useful if you are building code that + //does not use require() in the built project or in the JS files, but you + //still want to use the optimization tool from RequireJS to concatenate modules + //together. + skipModuleInsertion: true, + + modules: [ + { + name: "jquery.mobile.docs", + exclude: [ + "jquery", + "../external/requirejs/depend", + "../external/requirejs/order", + "../external/requirejs/text", + "../external/requirejs/text!../version.txt" + ] + }, + { + name: "jquery.mobile", + exclude: [ + "jquery", + "../external/requirejs/depend", + "../external/requirejs/order", + "../external/requirejs/text", + "../external/requirejs/text!../version.txt" + ] + } + ], + + pragmasOnSave: { + jqmBuildExclude: true + }, + + //File paths are relative to the build file, or if running a commmand + //line build, the current directory. + wrap: { + startFile: "wrap.start", + endFile: "wrap.end" + }, + + dirExclusionRegExp: /^\.|^build|^compiled|^tmp/ +}) \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/build/filter.js b/libs/js/jquery-mobile-1.1.0/build/filter.js new file mode 100644 index 0000000..0a3aef3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/build/filter.js @@ -0,0 +1,43 @@ +// This file is used by the AMD web builder service. +// When the micro modules are used the version is pulled as a text module. +// When building with r.js we need to replace the version token by its value since we strip the AMD layer with the pragma. + +var fs = require( 'fs' ), + path = require( 'path' ), + buildDir = __dirname, + copyrightVersionRegExp = /@VERSION/g, + apiVersionRegExp = /__version__/g, + copyrightBaseName = "../LICENSE-INFO", + copyrightRegFile = copyrightBaseName + ".txt", + copyrightMinFile = copyrightBaseName + ".min.txt"; + +module.exports = function ( contents, ext, callback ) { + fs.readFile( path.join( buildDir, "../version.txt" ), "utf8", + function( err, version ) { + var copyrightFile; + if ( err ) { + callback( err ); + } else { + version = version.trim(); + + if ( /^\.min/.test( ext ) ) { + copyrightFile = copyrightMinFile; + } else { + copyrightFile = copyrightRegFile; + } + fs.readFile( path.join( buildDir, copyrightFile ), "utf8", + function( err, copyright ) { + if ( err ) { + callback( err ); + } else { + contents = copyright.replace( copyrightVersionRegExp, version ) + "\n" + contents; + contents = contents.replace( apiVersionRegExp, '"' + version + '"' ); + + callback( null, contents ); + } + } + ) + } + } + ) +}; \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/build/google-compiler-20111003.jar b/libs/js/jquery-mobile-1.1.0/build/google-compiler-20111003.jar new file mode 100644 index 0000000..a30d445 Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/build/google-compiler-20111003.jar differ diff --git a/libs/js/jquery-mobile-1.1.0/build/js.jar b/libs/js/jquery-mobile-1.1.0/build/js.jar new file mode 100644 index 0000000..2369f99 Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/build/js.jar differ diff --git a/libs/js/jquery-mobile-1.1.0/build/wrap.end b/libs/js/jquery-mobile-1.1.0/build/wrap.end new file mode 100644 index 0000000..c28a09e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/build/wrap.end @@ -0,0 +1,2 @@ + +})); diff --git a/libs/js/jquery-mobile-1.1.0/build/wrap.start b/libs/js/jquery-mobile-1.1.0/build/wrap.start new file mode 100644 index 0000000..39a106c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/build/wrap.start @@ -0,0 +1,12 @@ +(function ( root, doc, factory ) { + if ( typeof define === "function" && define.amd ) { + // AMD. Register as an anonymous module. + define( [ "jquery" ], function ( $ ) { + factory( $, root, doc ); + return $.mobile; + }); + } else { + // Browser globals + factory( root.jQuery, root, doc ); + } +}( this, document, function ( $, window, document, undefined ) { \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/build/yuicompressor-2.4.6.jar b/libs/js/jquery-mobile-1.1.0/build/yuicompressor-2.4.6.jar new file mode 100644 index 0000000..61f6318 Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/build/yuicompressor-2.4.6.jar differ diff --git a/libs/js/jquery-mobile-1.0.1pre/combine.php b/libs/js/jquery-mobile-1.1.0/combine.php similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/combine.php rename to libs/js/jquery-mobile-1.1.0/combine.php diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.button.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.button.css new file mode 100644 index 0000000..6fdc9ee --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.button.css @@ -0,0 +1,70 @@ +.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 5px; padding: 0; } +.ui-mini { margin: .25em 5px; } +.ui-btn-inner { padding: .6em 20px; min-width: .75em; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; zoom: 1; } +.ui-btn input, .ui-btn button { z-index: 2; } +.ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; } +.ui-btn-block { display: block; } + +.ui-header .ui-btn, +.ui-footer .ui-btn { display: inline-block; margin: 0; } + +.ui-header .ui-btn-inner, +.ui-footer .ui-btn-inner, +.ui-mini .ui-btn-inner { font-size: 12.5px; padding: .55em 11px .5em; } + +.ui-header .ui-fullsize .ui-btn-inner, +.ui-footer .ui-fullsize .ui-btn-inner { font-size: 16px; padding: .6em 25px; } + +.ui-btn-icon-notext { width: 24px; height: 24px; } +.ui-btn-icon-notext .ui-btn-inner { padding: 0; height: 100%; } +.ui-btn-icon-notext .ui-btn-inner .ui-icon { margin: 2px 1px 2px 3px; } + +.ui-btn-text { position: relative; z-index: 1; width: 100%; } +.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; } + +.ui-btn-icon-left .ui-btn-inner { padding-left: 40px; } +.ui-btn-icon-right .ui-btn-inner { padding-right: 40px; } +.ui-btn-icon-top .ui-btn-inner { padding-top: 40px; } +.ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 40px; } + +.ui-header .ui-btn-icon-left .ui-btn-inner, +.ui-footer .ui-btn-icon-left .ui-btn-inner, +.ui-mini .ui-btn-icon-left .ui-btn-inner { padding-left: 30px; } +.ui-header .ui-btn-icon-right .ui-btn-inner, +.ui-footer .ui-btn-icon-right .ui-btn-inner, +.ui-mini .ui-btn-icon-right .ui-btn-inner { padding-right: 30px; } +.ui-header .ui-btn-icon-top .ui-btn-inner, +.ui-footer .ui-btn-icon-top .ui-btn-inner, +.ui-mini .ui-btn-icon-top .ui-btn-inner { padding: 30px 3px .5em 3px; } +.ui-header .ui-btn-icon-bottom .ui-btn-inner, +.ui-footer .ui-btn-icon-bottom .ui-btn-inner, +.ui-mini .ui-btn-icon-bottom .ui-btn-inner { padding: .55em 3px 30px 3px; } + +/*btn icon positioning*/ +.ui-btn-icon-notext .ui-icon { display: block; z-index: 0;} +.ui-btn-icon-left .ui-btn-inner .ui-icon, .ui-btn-icon-right .ui-btn-inner .ui-icon { position: absolute; top: 50%; margin-top: -9px; } +.ui-btn-icon-top .ui-btn-inner .ui-icon, .ui-btn-icon-bottom .ui-btn-inner .ui-icon { position: absolute; left: 50%; margin-left: -9px; } +.ui-btn-icon-left .ui-icon { left: 10px; } +.ui-btn-icon-right .ui-icon { right: 10px; } +.ui-btn-icon-top .ui-icon { top: 10px; } +.ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; } + +.ui-header .ui-btn-icon-left .ui-icon, +.ui-footer .ui-btn-icon-left .ui-icon, +.ui-mini.ui-btn-icon-left .ui-icon, +.ui-mini .ui-btn-icon-left .ui-icon { left: 5px; } +.ui-header .ui-btn-icon-right .ui-icon, +.ui-footer .ui-btn-icon-right .ui-icon, +.ui-mini.ui-btn-icon-right .ui-icon, +.ui-mini .ui-btn-icon-right .ui-icon { right: 5px; } +.ui-header .ui-btn-icon-top .ui-icon, +.ui-footer .ui-btn-icon-top .ui-icon, +.ui-mini.ui-btn-icon-top .ui-icon, +.ui-mini .ui-btn-icon-top .ui-icon { top: 5px; } +.ui-header .ui-btn-icon-bottom .ui-icon, +.ui-footer .ui-btn-icon-bottom .ui-icon, +.ui-mini.ui-btn-icon-bottom .ui-icon, +.ui-mini .ui-btn-icon-bottom .ui-icon { bottom: 5px; } + +/*hiding native button,inputs */ +.ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: button; opacity: .1; cursor: pointer; background: #fff; background: rgba(255,255,255,0); filter: Alpha(Opacity=.0001); font-size: 1px; border: none; text-indent: -9999px; } diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.collapsible.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.collapsible.css new file mode 100644 index 0000000..50f62bc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.collapsible.css @@ -0,0 +1,25 @@ +.ui-collapsible { margin: .5em 0; } +.ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -8px; padding: 0; border-width: 0 0 1px 0; position: relative; } +.ui-collapsible-heading a { text-align: left; margin: 0; } +.ui-collapsible-heading .ui-btn-inner, +.ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; } +.ui-collapsible-heading .ui-btn-icon-right .ui-btn-inner { padding-left: 12px; padding-right: 40px; } +.ui-collapsible-heading .ui-btn-icon-top .ui-btn-inner, +.ui-collapsible-heading .ui-btn-icon-bottom .ui-btn-inner { padding-right: 40px; text-align: center; } + +.ui-collapsible-heading a span.ui-btn { position: absolute; left: 6px; top: 50%; margin: -12px 0 0 0; width: 20px; height: 20px; padding: 1px 0px 1px 2px; text-indent: -9999px; } +.ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 10px 0; } +.ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; } +.ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; } +.ui-collapsible-content { + display: block; + margin: 0 -8px; + padding: 10px 16px; + border-top: none; /* Overrides ui-btn-up-* */ + background-image: none; /* Overrides ui-btn-up-* */ + font-weight: normal; /* Overrides ui-btn-up-* */ +} +.ui-collapsible-content-collapsed { display: none; } + +.ui-collapsible-set { margin: .5em 0; } +.ui-collapsible-set .ui-collapsible { margin: -1px 0 0; } diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.controlgroup.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.controlgroup.css new file mode 100644 index 0000000..6130417 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.controlgroup.css @@ -0,0 +1,30 @@ +.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: 0em 0 .5em; zoom: 1; } + +.ui-bar .ui-controlgroup { margin: 0 .3em; } +.ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .4em; } +.ui-controlgroup-controls { display: block; width: 100%;} +.ui-controlgroup li { list-style: none; } +.ui-controlgroup-vertical .ui-btn, +.ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0; } +.ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; } + +.ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; } +.ui-controlgroup-horizontal { padding: 0; } +.ui-controlgroup-horizontal .ui-btn-inner { text-align:center; } +.ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select { display: inline-block; margin: 0 -6px 0 0; } +.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; clear: none; margin: 0 -1px 0 0; } +.ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn, +.ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; } +.ui-controlgroup-horizontal .ui-controlgroup-last { margin-right: 0; } +.ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px; } +/* conflicts with listview.. +.ui-controlgroup .ui-btn-icon-notext { width: 30px; height: 30px; text-indent: -9999px; } +.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { padding: 5px 6px 5px 5px; } +*/ + +@media all and (min-width: 450px){ + .ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } + .ui-field-contain .ui-controlgroup-controls { width: 60%; display: inline-block; } + .ui-field-contain .ui-controlgroup .ui-select { width: 100%; } + .ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.core.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.core.css new file mode 100644 index 0000000..47fe49d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.core.css @@ -0,0 +1,72 @@ +/* some unsets - more probably needed */ +.ui-mobile, .ui-mobile body { height: 99.9%; } +.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; } +.ui-mobile a img, .ui-mobile fieldset { border-width: 0; } + +/* responsive page widths */ +.ui-mobile-viewport { margin: 0; overflow-x: visible; -webkit-text-size-adjust: none; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } +/* Issue #2066 */ +body.ui-mobile-viewport, +div.ui-mobile-viewport { overflow-x: hidden; } + +/* "page" containers - full-screen views, one should always be in view post-pageload */ +.ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; } +.ui-mobile .ui-page-active { display: block; overflow: visible; } + +/* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */ +.ui-page { outline: none; } + +/*orientations from js are available */ +@media screen and (orientation: portrait){ +.ui-mobile, .ui-mobile .ui-page { min-height: 420px; } +} +@media screen and (orientation: landscape){ +.ui-mobile, .ui-mobile .ui-page { min-height: 300px; } +} + +/* loading screen */ +.ui-loading .ui-loader { display: block; } +.ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%; box-shadow: 0 1px 1px -1px #fff; left: 50%; border:0; } +.ui-loader-default { background: none; opacity: .18; width: 46px; height: 46px; margin-left: -23px; margin-top: -23px; } +.ui-loader-verbose { width: 200px; opacity: .88; height: auto; margin-left: -110px; margin-top: -43px; padding: 10px; } +.ui-loader-default h1 { font-size: 0; width: 0; height: 0; overflow: hidden; } +.ui-loader-verbose h1 { font-size: 16px; margin: 0; text-align: center; } +.ui-loader .ui-icon { background-color: #000; display: block; margin: 0; width: 44px; height: 44px; padding: 1px; -webkit-border-radius: 36px; -moz-border-radius: 36px; border-radius: 36px; } +.ui-loader-verbose .ui-icon { margin: 0 auto 10px; opacity: .75; } +.ui-loader-textonly { padding: 15px; margin-left: -115px; } +.ui-loader-textonly .ui-icon { display: none; } +.ui-loader-fakefix { position: absolute; } +/*fouc*/ +.ui-mobile-rendering > * { visibility: hidden; } + +/*headers, content panels*/ +.ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; } +.ui-bar { font-size: 16px; margin: 0; } +.ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; } + +.ui-header, .ui-footer { position: relative; border-left-width: 0; border-right-width: 0; } +.ui-header .ui-btn-left, +.ui-header .ui-btn-right, +.ui-footer .ui-btn-left, +.ui-footer .ui-btn-right { position: absolute; top: 3px; } +.ui-header .ui-btn-left, +.ui-footer .ui-btn-left { left: 5px; } +.ui-header .ui-btn-right, +.ui-footer .ui-btn-right { right: 5px; } +.ui-footer .ui-btn-icon-notext, +.ui-header .ui-btn-icon-notext { top: 6px; } +.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 30% .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; } +.ui-footer .ui-title { margin: .6em 15px .8em; } + +/*content area*/ +.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; } + +/* icons sizing */ +.ui-icon { width: 18px; height: 18px; } + +/* non-js content hiding */ +.ui-nojs { position: absolute; left: -9999px; } + +/* accessible content hiding */ +.ui-hide-label label, +.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.dialog.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.dialog.css new file mode 100644 index 0000000..6f0e651 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.dialog.css @@ -0,0 +1,30 @@ +.ui-dialog { + background: none !important; /* this is to ensure that dialog theming does not apply (by default at least) on the page div */ +} +.ui-dialog-contain { width: 92.5%; max-width: 500px; margin: 10% auto 15px auto; padding: 0; } +.ui-dialog .ui-header { + margin-top: 15%; + border: none; + overflow: hidden; +} +.ui-dialog .ui-header, +.ui-dialog .ui-content, +.ui-dialog .ui-footer { + display: block; + position: relative; + width: auto; +} +.ui-dialog .ui-header, +.ui-dialog .ui-footer { + z-index: 10; + padding: 0; +} +.ui-dialog .ui-footer { + padding: 0 15px; +} +.ui-dialog .ui-content { + padding: 15px; +} +.ui-dialog { + margin-top: -15px; +} diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.fixedToolbar.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.fixedToolbar.css new file mode 100644 index 0000000..b81d9d0 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.fixedToolbar.css @@ -0,0 +1,40 @@ +/* fixed page header & footer configuration */ +.ui-header-fixed, +.ui-footer-fixed { + left: 0; + right: 0; + width: 100%; + position: fixed; + z-index: 1000; +} +.ui-header-fixed { + top: 0; +} +.ui-footer-fixed { + bottom: 0; +} +.ui-header-fullscreen, +.ui-footer-fullscreen { + opacity: .9; +} +.ui-page-header-fixed { + padding-top: 2.5em; +} +.ui-page-footer-fixed { + padding-bottom: 3em; +} +.ui-page-header-fullscreen .ui-content, +.ui-page-footer-fullscreen .ui-content { + padding: 0; +} +.ui-fixed-hidden { + position: absolute; +} +.ui-page-header-fullscreen .ui-fixed-hidden, +.ui-page-footer-fullscreen .ui-fixed-hidden { + left: -99999em; +} +.ui-header-fixed .ui-btn, +.ui-footer-fixed .ui-btn { + z-index: 10; +} diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.checkboxradio.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.checkboxradio.css new file mode 100644 index 0000000..d5ec896 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.checkboxradio.css @@ -0,0 +1,24 @@ +.ui-checkbox, .ui-radio { position: relative; clear: both; margin: .2em 0 .5em; z-index: 1; } +.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; } +.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; } +.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; } +.ui-checkbox .ui-mini.ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-mini.ui-btn-icon-left .ui-btn-inner { padding-left: 36px; } + +.ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; } +.ui-checkbox .ui-mini.ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 36px; } + +.ui-checkbox .ui-btn-icon-top .ui-btn-inner,.ui-radio .ui-btn-icon-top .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; } +.ui-checkbox .ui-btn-icon-bottom .ui-btn-inner, .ui-radio .ui-btn-icon-bottom .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; } + +.ui-checkbox .ui-icon, .ui-radio .ui-icon { top: 1.1em; } +.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon { left: 15px; } +.ui-checkbox .ui-mini.ui-btn-icon-left .ui-icon, .ui-radio .ui-mini.ui-btn-icon-left .ui-icon { left: 9px; } +.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; } +.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; } +.ui-checkbox .ui-btn-icon-top .ui-icon, .ui-radio .ui-btn-icon-top .ui-icon { top: 10px; } +.ui-checkbox .ui-btn-icon-bottom .ui-icon, .ui-radio .ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; } +.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; } +.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; } + +/* input, label positioning */ +.ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; } \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.fieldcontain.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.fieldcontain.css new file mode 100644 index 0000000..da40101 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.fieldcontain.css @@ -0,0 +1,18 @@ +.ui-field-contain, fieldset.ui-field-contain { padding: .8em 0; margin: 0; border-width: 0 0 1px 0; overflow: visible; } +.ui-field-contain:first-child { border-top-width: 0; } +.ui-header .ui-field-contain-left, +.ui-header .ui-field-contain-right { + position: absolute; + top: 0; + width: 25%; +} +.ui-header .ui-field-contain-left { + left: 1em; +} +.ui-header .ui-field-contain-right { + right: 1em; +} + +@media all and (min-width: 450px){ + .ui-field-contain, .ui-mobile fieldset.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.select.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.select.css new file mode 100644 index 0000000..db8356f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.select.css @@ -0,0 +1,41 @@ +.ui-select { display: block; position: relative; } +.ui-select select { position: absolute; left: -9999px; top: -9999px; } +.ui-select .ui-btn { overflow: hidden; opacity: 1; margin: 0; } +/* Fixes #2588 — When Windows Phone 7.5 (Mango) tries to calculate a numeric opacity for a select—including “inherit”—without explicitly specifying an opacity on the parent to give it context, a bug appears where clicking elsewhere on the page after opening the select will open the select again. */ +.ui-select .ui-btn select { cursor: pointer; -webkit-appearance: button; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); z-index: 2; } + +.ui-select .ui-disabled { opacity: .3; } + +@-moz-document url-prefix() {.ui-select .ui-btn select { opacity: 0.0001; }} +.ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; text-indent: 0; } + +.ui-select .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; } +.ui-select .ui-btn-icon-right .ui-icon { right: 15px; } +.ui-select .ui-mini.ui-btn-icon-right .ui-icon { right: 7px; } + + +/* labels */ +label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } + +/*listbox*/ +.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden !important; +/* This !important is required for iPad Safari specifically. See https://github.com/jquery/jquery-mobile/issues/2647 */ } +.ui-select .ui-btn-text { text-overflow: ellipsis; } + +.ui-selectmenu { position: absolute; padding: 0; z-index: 1100 !important; width: 80%; max-width: 350px; padding: 6px; } +.ui-selectmenu .ui-listview { margin: 0; } +.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; } +.ui-selectmenu-hidden { top: -9999px; left: -9999px; } +.ui-selectmenu-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 99; } +.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; } +.ui-selectmenu-list .ui-li .ui-icon { display: block; } +.ui-li.ui-selectmenu-placeholder { display: none; } +.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; } + +@media all and (min-width: 450px){ + .ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } + .ui-field-contain .ui-select { width: 60%; display: inline-block; } +} + +/* when no placeholder is defined in a multiple select, the header height doesn't even extend past the close button. this shim's content in there */ +.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; } \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.slider.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.slider.css new file mode 100644 index 0000000..80035db --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.slider.css @@ -0,0 +1,35 @@ +label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } +input.ui-slider-input, +.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; } +select.ui-slider-switch { display: none; } +div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 65%; } +div.ui-slider-mini { height: 12px; margin-left: 10px; } +div.ui-slider-bg { border: none; height: 100%; padding-right: 8px; } +.ui-controlgroup a.ui-slider-handle, a.ui-slider-handle { position: absolute; z-index: 1; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; outline: 0; } +a.ui-slider-handle .ui-btn-inner { padding: 0; height: 100%; } +div.ui-slider-mini a.ui-slider-handle { height: 14px; width: 14px; margin: -8px 0 0 -7px; } +div.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: -9px 0 0 -9px; } + +@media all and (min-width: 450px){ + .ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } + .ui-field-contain div.ui-slider { width: 43%; } + .ui-field-contain div.ui-slider-switch { width: 5.5em; } +} + +div.ui-slider-switch { height: 32px; margin-left: 0; width: 5.8em; } +a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; -moz-transition: left 70ms linear; } +div.ui-slider-switch .ui-slider-handle { margin-top: 1px; } +.ui-slider-inneroffset { margin: 0 16px; position: relative; z-index: 1; } + +div.ui-slider-switch.ui-slider-mini { width: 5em; height: 29px; } +div.ui-slider-switch.ui-slider-mini .ui-slider-inneroffset { margin: 0 15px 0 14px; } +div.ui-slider-switch.ui-slider-mini .ui-slider-handle { width: 25px; height: 25px; margin: 1px 0 0 -13px; } +div.ui-slider-switch.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: 0; } + +span.ui-slider-label { position: absolute; text-align: center; width: 100%; overflow: hidden; font-size: 16px; top: 0; line-height: 2; min-height: 100%; border-width: 0; white-space: nowrap; } +.ui-slider-mini span.ui-slider-label { font-size: 14px; } + +span.ui-slider-label-a { z-index: 1; left: 0; text-indent: -1.5em; } +span.ui-slider-label-b { z-index: 0; right: 0; text-indent: 1.5em;} + +.ui-slider-inline { width: 120px; display: inline-block; } diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.textinput.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.textinput.css new file mode 100644 index 0000000..3452bb4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.forms.textinput.css @@ -0,0 +1,28 @@ +label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; } +input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 97%; outline: 0; } +.ui-header input.ui-input-text, +.ui-footer input.ui-input-text { margin-left: 1.25%; padding: .4em 1%; width: 95.5% } /* Note that padding left/right on text inputs is factored into how the element is displayed in Firefox, but does not actually pad the text inside it. */ + input.ui-input-text { -webkit-appearance: none; } +textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear; -moz-transition: height 200ms linear; -o-transition: height 200ms linear; transition: height 200ms linear; } +.ui-input-search { padding: 0 30px; background-image: none; position: relative; } +.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; } +.ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; } +.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; } +.ui-mini .ui-input-clear { right: -3px; } + +.ui-input-search .ui-input-clear-hidden { display: none; } +input.ui-mini, .ui-mini input, textarea.ui-mini { font-size: 14px; } +textarea.ui-mini { height: 45px; } + +/* orientation adjustments - incomplete!*/ +@media all and (min-width: 450px){ + .ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 } + .ui-field-contain input.ui-input-text, + .ui-field-contain textarea.ui-input-text, + .ui-field-contain .ui-input-search { width: 60%; display: inline-block; } + .ui-field-contain .ui-input-search { width: 50%; } + .ui-hide-label input.ui-input-text, + .ui-hide-label textarea.ui-input-text, + .ui-hide-label .ui-input-search { padding: .4em; width: 97%; } + .ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.grids.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.grid.css similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/css/structure/jquery.mobile.grids.css rename to libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.grid.css diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.listview.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.listview.css new file mode 100644 index 0000000..8bbda67 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.listview.css @@ -0,0 +1,51 @@ +.ui-listview { margin: 0; counter-reset: listnumbering; } +.ui-content .ui-listview { margin: -15px; } +.ui-content .ui-listview-inset { margin: 1em 0; } +.ui-listview, .ui-li { list-style:none; padding:0; } +.ui-li, .ui-li.ui-field-contain { display: block; margin:0; position: relative; overflow: visible; text-align: left; border-width: 0; border-top-width: 1px; } +.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } +.ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold; } +.ui-li-divider { counter-reset: listnumbering; } +ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal;counter-increment: listnumbering; content: counter(listnumbering) ". "; } +ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */ +.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; } +.ui-li:last-child, .ui-li.ui-field-contain:last-child { border-bottom-width: 1px; } +.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; } +.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px .7em 15px; display: block; } +.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 60px; padding-left: 100px; } +.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; } +.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; } +.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 30px; } +.ui-li-has-arrow.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow.ui-li-has-count { padding-right: 75px; } +.ui-li-has-count .ui-btn-text { padding-right: 15px; } +.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } +.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } +.ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; } +.ui-listview .ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; } +.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; } + +.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; } +@media all and (min-width: 480px){ + .ui-li-aside { width: 45%; } +} +.ui-li-divider { cursor: default; } +.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 95px; } +.ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 48px; } +.ui-li-divider .ui-li-count, .ui-li-static .ui-li-count { right: 10px; } +.ui-li-has-alt .ui-li-count { right: 55px; } +.ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; z-index: 2; } +.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -11px 0 0 0; border-bottom-width: 1px; z-index: -1;} +.ui-li-link-alt .ui-btn-inner { padding: 0; height: 100%; position: absolute; width: 100%; top: 0; left: 0;} +.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px; } + +.ui-listview * .ui-btn-inner > .ui-btn > .ui-btn-inner { border-top: 0px; } + +.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px } +.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; } + +.ui-listview-filter-inset { margin: -15px -5px -15px -5px; background: transparent; } +.ui-li.ui-screen-hidden{display:none;} +/* Odd iPad positioning issue. */ +@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { + .ui-li .ui-btn-text { overflow: visible; } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.navbar.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.navbar.css new file mode 100644 index 0000000..7c9640b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.navbar.css @@ -0,0 +1,21 @@ +.ui-navbar { overflow: hidden; } +.ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;} +.ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; } +.ui-navbar-collapsed .ui-navbar-toggle { float: left; width: 25%; } +.ui-navbar li.ui-navbar-truncate { position: absolute; left: -9999px; top: -9999px; } +.ui-navbar li .ui-btn, .ui-navbar .ui-navbar-toggle .ui-btn { display: block; font-size: 12px; text-align: center; margin: 0; border-right-width: 0; max-width: 100%; } +.ui-navbar li .ui-btn { margin-right: -1px; } +.ui-navbar li .ui-btn:last-child { margin-right: 0; } +.ui-header .ui-navbar li .ui-btn, .ui-header .ui-navbar .ui-navbar-toggle .ui-btn, +.ui-footer .ui-navbar li .ui-btn, .ui-footer .ui-navbar .ui-navbar-toggle .ui-btn { border-top-width: 0; border-bottom-width: 0; } +.ui-navbar .ui-btn-inner { padding-left: 2px; padding-right: 2px; } +.ui-navbar-noicons li .ui-btn .ui-btn-inner, .ui-navbar-noicons .ui-navbar-toggle .ui-btn-inner { padding-top: .8em; padding-bottom: .9em; } +/*expanded page styles*/ +.ui-navbar-expanded .ui-btn { margin: 0; font-size: 14px; } +.ui-navbar-expanded .ui-btn-inner { padding-left: 5px; padding-right: 5px; } +.ui-navbar-expanded .ui-btn-icon-top .ui-btn-inner { padding: 45px 5px 15px; text-align: center; } +.ui-navbar-expanded .ui-btn-icon-top .ui-icon { top: 15px; } +.ui-navbar-expanded .ui-btn-icon-bottom .ui-btn-inner { padding: 15px 5px 45px; text-align: center; } +.ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; } +.ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; } +.ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; } diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.structure.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.structure.css new file mode 100644 index 0000000..131eb9d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.structure.css @@ -0,0 +1,24 @@ +@import url( "jquery.mobile.core.css" ); +@import url( "jquery.mobile.transition.css" ); +@import url( "jquery.mobile.transition.fade.css" ); +@import url( "jquery.mobile.transition.pop.css" ); +@import url( "jquery.mobile.transition.slide.css" ); +@import url( "jquery.mobile.transition.slidefade.css" ); +@import url( "jquery.mobile.transition.slidedown.css" ); +@import url( "jquery.mobile.transition.slideup.css" ); +@import url( "jquery.mobile.transition.flip.css" ); +@import url( "jquery.mobile.transition.turn.css" ); +@import url( "jquery.mobile.transition.flow.css" ); +@import url( "jquery.mobile.grid.css" ); +@import url( "jquery.mobile.fixedToolbar.css" ); +@import url( "jquery.mobile.navbar.css" ); +@import url( "jquery.mobile.button.css" ); +@import url( "jquery.mobile.collapsible.css" ); +@import url( "jquery.mobile.controlgroup.css" ); +@import url( "jquery.mobile.dialog.css" ); +@import url( "jquery.mobile.forms.checkboxradio.css" ); +@import url( "jquery.mobile.forms.fieldcontain.css" ); +@import url( "jquery.mobile.forms.select.css" ); +@import url( "jquery.mobile.forms.textinput.css" ); +@import url( "jquery.mobile.listview.css" ); +@import url( "jquery.mobile.forms.slider.css" ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.css new file mode 100644 index 0000000..7bccb84 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.css @@ -0,0 +1,21 @@ +/* Transitions originally inspired by those from jQtouch, nice work, folks */ +.ui-mobile-viewport-transitioning, +.ui-mobile-viewport-transitioning .ui-page { + width: 100%; + height: 100%; + overflow: hidden; +} + +.in { + -webkit-animation-timing-function: ease-out; + -webkit-animation-duration: 350ms; + -moz-animation-timing-function: ease-out; + -moz-animation-duration: 350ms; +} + +.out { + -webkit-animation-timing-function: ease-in; + -webkit-animation-duration: 225ms; + -moz-animation-timing-function: ease-in; + -moz-animation-duration: 225; +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.fade.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.fade.css new file mode 100644 index 0000000..c039249 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.fade.css @@ -0,0 +1,35 @@ +@-webkit-keyframes fadein { + from { opacity: 0; } + to { opacity: 1; } +} + +@-moz-keyframes fadein { + from { opacity: 0; } + to { opacity: 1; } +} + +@-webkit-keyframes fadeout { + from { opacity: 1; } + to { opacity: 0; } +} + +@-moz-keyframes fadeout { + from { opacity: 1; } + to { opacity: 0; } +} + +.fade.out { + opacity: 0; + -webkit-animation-duration: 125ms; + -webkit-animation-name: fadeout; + -moz-animation-duration: 125ms; + -moz-animation-name: fadeout; +} + +.fade.in { + opacity: 1; + -webkit-animation-duration: 225ms; + -webkit-animation-name: fadein; + -moz-animation-duration: 225ms; + -moz-animation-name: fadein; +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.flip.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.flip.css new file mode 100644 index 0000000..3c4a54f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.flip.css @@ -0,0 +1,79 @@ +/* The properties in this rule are only necessary for the 'flip' transition. + * We need specify the perspective to create a projection matrix. This will add + * some depth as the element flips. The depth number represents the distance of + * the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate + * value. + */ + +.viewport-flip { + -webkit-perspective: 1000; + -moz-perspective: 1000; + position: absolute; +} +.flip { + -webkit-backface-visibility:hidden; + -webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ + -moz-backface-visibility:hidden; + -moz-transform:translateX(0); +} + +.flip.out { + -webkit-transform: rotateY(-90deg) scale(.9); + -webkit-animation-name: flipouttoleft; + -webkit-animation-duration: 175ms; + -moz-transform: rotateY(-90deg) scale(.9); + -moz-animation-name: flipouttoleft; + -moz-animation-duration: 175ms; +} + +.flip.in { + -webkit-animation-name: flipintoright; + -webkit-animation-duration: 225ms; + -moz-animation-name: flipintoright; + -moz-animation-duration: 225ms; +} + +.flip.out.reverse { + -webkit-transform: rotateY(90deg) scale(.9); + -webkit-animation-name: flipouttoright; + -moz-transform: rotateY(90deg) scale(.9); + -moz-animation-name: flipouttoright; +} + +.flip.in.reverse { + -webkit-animation-name: flipintoleft; + -moz-animation-name: flipintoleft; +} + +@-webkit-keyframes flipouttoleft { + from { -webkit-transform: rotateY(0); } + to { -webkit-transform: rotateY(-90deg) scale(.9); } +} +@-moz-keyframes flipouttoleft { + from { -moz-transform: rotateY(0); } + to { -moz-transform: rotateY(-90deg) scale(.9); } +} +@-webkit-keyframes flipouttoright { + from { -webkit-transform: rotateY(0) ; } + to { -webkit-transform: rotateY(90deg) scale(.9); } +} +@-moz-keyframes flipouttoright { + from { -moz-transform: rotateY(0); } + to { -moz-transform: rotateY(90deg) scale(.9); } +} +@-webkit-keyframes flipintoleft { + from { -webkit-transform: rotateY(-90deg) scale(.9); } + to { -webkit-transform: rotateY(0); } +} +@-moz-keyframes flipintoleft { + from { -moz-transform: rotateY(-90deg) scale(.9); } + to { -moz-transform: rotateY(0); } +} +@-webkit-keyframes flipintoright { + from { -webkit-transform: rotateY(90deg) scale(.9); } + to { -webkit-transform: rotateY(0); } +} +@-moz-keyframes flipintoright { + from { -moz-transform: rotateY(90deg) scale(.9); } + to { -moz-transform: rotateY(0); } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.flow.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.flow.css new file mode 100644 index 0000000..6339642 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.flow.css @@ -0,0 +1,89 @@ +/* flow transition */ +.flow { + -webkit-transform-origin: 50% 30%; + -moz-transform-origin: 50% 30%; + -webkit-box-shadow: 0 0 20px rgba(0,0,0,.4); + -moz-box-shadow: 0 0 20px rgba(0,0,0,.4); +} +.ui-dialog.flow { + -webkit-transform-origin: none; + -moz-transform-origin: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; +} +.flow.out { + -webkit-transform: translateX(-100%) scale(.7); + -webkit-animation-name: flowouttoleft; + -webkit-animation-timing-function: ease; + -webkit-animation-duration: 350ms; + -moz-transform: translateX(-100%) scale(.7); + -moz-animation-name: flowouttoleft; + -moz-animation-timing-function: ease; + -moz-animation-duration: 350ms; +} + +.flow.in { + -webkit-transform: translateX(0) scale(1); + -webkit-animation-name: flowinfromright; + -webkit-animation-timing-function: ease; + -webkit-animation-duration: 350ms; + -moz-transform: translateX(0) scale(1); + -moz-animation-name: flowinfromright; + -moz-animation-timing-function: ease; + -moz-animation-duration: 350ms; +} + +.flow.out.reverse { + -webkit-transform: translateX(100%); + -webkit-animation-name: flowouttoright; + -moz-transform: translateX(100%); + -moz-animation-name: flowouttoright; +} + +.flow.in.reverse { + -webkit-animation-name: flowinfromleft; + -moz-animation-name: flowinfromleft; +} + +@-webkit-keyframes flowouttoleft { + 0% { -webkit-transform: translateX(0) scale(1); } + 60%, 70% { -webkit-transform: translateX(0) scale(.7); } + 100% { -webkit-transform: translateX(-100%) scale(.7); } +} +@-moz-keyframes flowouttoleft { + 0% { -moz-transform: translateX(0) scale(1); } + 60%, 70% { -moz-transform: translateX(0) scale(.7); } + 100% { -moz-transform: translateX(-100%) scale(.7); } +} + +@-webkit-keyframes flowouttoright { + 0% { -webkit-transform: translateX(0) scale(1); } + 60%, 70% { -webkit-transform: translateX(0) scale(.7); } + 100% { -webkit-transform: translateX(100%) scale(.7); } +} +@-moz-keyframes flowouttoright { + 0% { -moz-transform: translateX(0) scale(1); } + 60%, 70% { -moz-transform: translateX(0) scale(.7); } + 100% { -moz-transform: translateX(100%) scale(.7); } +} + +@-webkit-keyframes flowinfromleft { + 0% { -webkit-transform: translateX(-100%) scale(.7); } + 30%, 40% { -webkit-transform: translateX(0) scale(.7); } + 100% { -webkit-transform: translateX(0) scale(1); } +} +@-moz-keyframes flowinfromleft { + 0% { -moz-transform: translateX(-100%) scale(.7); } + 30%, 40% { -moz-transform: translateX(0) scale(.7); } + 100% { -moz-transform: translateX(0) scale(1); } +} +@-webkit-keyframes flowinfromright { + 0% { -webkit-transform: translateX(100%) scale(.7); } + 30%, 40% { -webkit-transform: translateX(0) scale(.7); } + 100% { -webkit-transform: translateX(0) scale(1); } +} +@-moz-keyframes flowinfromright { + 0% { -moz-transform: translateX(100%) scale(.7); } + 30%, 40% { -moz-transform: translateX(0) scale(.7); } + 100% { -moz-transform: translateX(0) scale(1); } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css new file mode 100644 index 0000000..625689e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css @@ -0,0 +1,78 @@ +.pop { + -webkit-transform-origin: 50% 50%; + -moz-transform-origin: 50% 50%; +} + +.pop.in { + -webkit-transform: scale(1); + -moz-transform: scale(1); + opacity: 1; + -webkit-animation-name: popin; + -moz-animation-name: popin; + -webkit-animation-duration: 350ms; + -moz-animation-duration: 350ms; +} + +.pop.out { + -webkit-animation-name: fadeout; + -moz-animation-name: fadeout; + opacity: 0; + -webkit-animation-duration: 100ms; + -moz-animation-duration: 100ms; +} + +.pop.in.reverse { + -webkit-animation-name: fadein; + -moz-animation-name: fadein; +} + +.pop.out.reverse { + -webkit-transform: scale(.8); + -moz-transform: scale(.8); + -webkit-animation-name: popout; + -moz-animation-name: popout; +} + +@-webkit-keyframes popin { + from { + -webkit-transform: scale(.8); + opacity: 0; + } + to { + -webkit-transform: scale(1); + opacity: 1; + } +} + +@-moz-keyframes popin { + from { + -moz-transform: scale(.8); + opacity: 0; + } + to { + -moz-transform: scale(1); + opacity: 1; + } +} + +@-webkit-keyframes popout { + from { + -webkit-transform: scale(1); + opacity: 1; + } + to { + -webkit-transform: scale(.8); + opacity: 0; + } +} + +@-moz-keyframes popout { + from { + -moz-transform: scale(1); + opacity: 1; + } + to { + -moz-transform: scale(.8); + opacity: 0; + } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slide.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slide.css new file mode 100644 index 0000000..17c924a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slide.css @@ -0,0 +1,36 @@ +@import url("jquery.mobile.transition.slidein.keyframes.css"); +@import url("jquery.mobile.transition.slideout.keyframes.css"); + +.slide.out, .slide.in { + -webkit-animation-timing-function: ease-out; + -webkit-animation-duration: 350ms; + -moz-animation-timing-function: ease-out; + -moz-animation-duration: 350ms; +} +.slide.out { + -webkit-transform: translateX(-100%); + -webkit-animation-name: slideouttoleft; + -moz-transform: translateX(-100%); + -moz-animation-name: slideouttoleft; +} + +.slide.in { + -webkit-transform: translateX(0); + -webkit-animation-name: slideinfromright; + -moz-transform: translateX(0); + -moz-animation-name: slideinfromright; +} + +.slide.out.reverse { + -webkit-transform: translateX(100%); + -webkit-animation-name: slideouttoright; + -moz-transform: translateX(100%); + -moz-animation-name: slideouttoright; +} + +.slide.in.reverse { + -webkit-transform: translateX(0); + -webkit-animation-name: slideinfromleft; + -moz-transform: translateX(0); + -moz-animation-name: slideinfromleft; +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidedown.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidedown.css new file mode 100644 index 0000000..b7809d0 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidedown.css @@ -0,0 +1,50 @@ +/* slide down */ +.slidedown.out { + -webkit-animation-name: fadeout; + -moz-animation-name: fadeout; + -webkit-animation-duration: 100ms; + -moz-animation-duration: 100ms; +} + +.slidedown.in { + -webkit-transform: translateY(0); + -webkit-animation-name: slideinfromtop; + -moz-transform: translateY(0); + -moz-animation-name: slideinfromtop; + -webkit-animation-duration: 250ms; + -moz-animation-duration: 250ms; +} + +.slidedown.in.reverse { + -webkit-animation-name: fadein; + -moz-animation-name: fadein; + -webkit-animation-duration: 150ms; + -moz-animation-duration: 150ms; +} + +.slidedown.out.reverse { + -webkit-transform: translateY(-100%); + -moz-transform: translateY(-100%); + -webkit-animation-name: slideouttotop; + -moz-animation-name: slideouttotop; + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; +} + +@-webkit-keyframes slideinfromtop { + from { -webkit-transform: translateY(-100%); } + to { -webkit-transform: translateY(0); } +} +@-moz-keyframes slideinfromtop { + from { -moz-transform: translateY(-100%); } + to { -moz-transform: translateY(0); } +} + +@-webkit-keyframes slideouttotop { + from { -webkit-transform: translateY(0); } + to { -webkit-transform: translateY(-100%); } +} +@-moz-keyframes slideouttotop { + from { -moz-transform: translateY(0); } + to { -moz-transform: translateY(-100%); } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidefade.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidefade.css new file mode 100644 index 0000000..7ef5a67 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidefade.css @@ -0,0 +1,38 @@ +@import url("jquery.mobile.transition.fade.css"); +@import url("jquery.mobile.transition.slideout.keyframes.css"); + +.slidefade.out { + -webkit-transform: translateX(-100%); + -webkit-animation-name: slideouttoleft; + -moz-transform: translateX(-100%); + -moz-animation-name: slideouttoleft; + -webkit-animation-duration: 225ms; + -moz-animation-duration: 225ms; +} + +.slidefade.in { + -webkit-transform: translateX(0); + -webkit-animation-name: fadein; + -moz-transform: translateX(0); + -moz-animation-name: fadein; + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; +} + +.slidefade.out.reverse { + -webkit-transform: translateX(100%); + -webkit-animation-name: slideouttoright; + -moz-transform: translateX(100%); + -moz-animation-name: slideouttoright; + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; +} + +.slidefade.in.reverse { + -webkit-transform: translateX(0); + -webkit-animation-name: fadein; + -moz-transform: translateX(0); + -moz-animation-name: fadein; + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidein.keyframes.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidein.keyframes.css new file mode 100644 index 0000000..76a9fcb --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slidein.keyframes.css @@ -0,0 +1,18 @@ +/* keyframes for slidein from sides */ +@-webkit-keyframes slideinfromright { + from { -webkit-transform: translateX(100%); } + to { -webkit-transform: translateX(0); } +} +@-moz-keyframes slideinfromright { + from { -moz-transform: translateX(100%); } + to { -moz-transform: translateX(0); } +} + +@-webkit-keyframes slideinfromleft { + from { -webkit-transform: translateX(-100%); } + to { -webkit-transform: translateX(0); } +} +@-moz-keyframes slideinfromleft { + from { -moz-transform: translateX(-100%); } + to { -moz-transform: translateX(0); } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slideout.keyframes.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slideout.keyframes.css new file mode 100644 index 0000000..9bea170 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slideout.keyframes.css @@ -0,0 +1,18 @@ +/* keyframes for slideout to sides */ +@-webkit-keyframes slideouttoleft { + from { -webkit-transform: translateX(0); } + to { -webkit-transform: translateX(-100%); } +} +@-moz-keyframes slideouttoleft { + from { -moz-transform: translateX(0); } + to { -moz-transform: translateX(-100%); } +} + +@-webkit-keyframes slideouttoright { + from { -webkit-transform: translateX(0); } + to { -webkit-transform: translateX(100%); } +} +@-moz-keyframes slideouttoright { + from { -moz-transform: translateX(0); } + to { -moz-transform: translateX(100%); } +} diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slideup.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slideup.css new file mode 100644 index 0000000..e607aad --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.slideup.css @@ -0,0 +1,50 @@ +/* slide up */ +.slideup.out { + -webkit-animation-name: fadeout; + -moz-animation-name: fadeout; + -webkit-animation-duration: 100ms; + -moz-animation-duration: 100ms; +} + +.slideup.in { + -webkit-transform: translateY(0); + -webkit-animation-name: slideinfrombottom; + -moz-transform: translateY(0); + -moz-animation-name: slideinfrombottom; + -webkit-animation-duration: 250ms; + -moz-animation-duration: 250ms; +} + +.slideup.in.reverse { + -webkit-animation-name: fadein; + -moz-animation-name: fadein; + -webkit-animation-duration: 150ms; + -moz-animation-duration: 150ms; +} + +.slideup.out.reverse { + -webkit-transform: translateY(100%); + -moz-transform: translateY(100%); + -webkit-animation-name: slideouttobottom; + -moz-animation-name: slideouttobottom; + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; +} + +@-webkit-keyframes slideinfrombottom { + from { -webkit-transform: translateY(100%); } + to { -webkit-transform: translateY(0); } +} +@-moz-keyframes slideinfrombottom { + from { -moz-transform: translateY(100%); } + to { -moz-transform: translateY(0); } +} + +@-webkit-keyframes slideouttobottom { + from { -webkit-transform: translateY(0); } + to { -webkit-transform: translateY(100%); } +} +@-moz-keyframes slideouttobottom { + from { -moz-transform: translateY(0); } + to { -moz-transform: translateY(100%); } +} \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.turn.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.turn.css new file mode 100644 index 0000000..086fc2b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.turn.css @@ -0,0 +1,83 @@ +/* The properties in this rule are only necessary for the 'flip' transition. + * We need specify the perspective to create a projection matrix. This will add + * some depth as the element flips. The depth number represents the distance of + * the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate + * value. + */ + +.viewport-turn { + -webkit-perspective: 1000; + -moz-perspective: 1000; + position: absolute; +} +.turn { + -webkit-backface-visibility:hidden; + -webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ + -webkit-transform-origin: 0; + + -moz-backface-visibility:hidden; + -moz-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ + -moz-transform-origin: 0; +} + +.turn.out { + -webkit-transform: rotateY(-90deg) scale(.9); + -webkit-animation-name: flipouttoleft; + -moz-transform: rotateY(-90deg) scale(.9); + -moz-animation-name: flipouttoleft; + -webkit-animation-duration: 125ms; + -moz-animation-duration: 125ms; +} + +.turn.in { + -webkit-animation-name: flipintoright; + -moz-animation-name: flipintoright; + -webkit-animation-duration: 250ms; + -moz-animation-duration: 250ms; + +} + +.turn.out.reverse { + -webkit-transform: rotateY(90deg) scale(.9); + -webkit-animation-name: flipouttoright; + -moz-transform: rotateY(90deg) scale(.9); + -moz-animation-name: flipouttoright; +} + +.turn.in.reverse { + -webkit-animation-name: flipintoleft; + -moz-animation-name: flipintoleft; +} + +@-webkit-keyframes flipouttoleft { + from { -webkit-transform: rotateY(0); } + to { -webkit-transform: rotateY(-90deg) scale(.9); } +} +@-moz-keyframes flipouttoleft { + from { -moz-transform: rotateY(0); } + to { -moz-transform: rotateY(-90deg) scale(.9); } +} +@-webkit-keyframes flipouttoright { + from { -webkit-transform: rotateY(0) ; } + to { -webkit-transform: rotateY(90deg) scale(.9); } +} +@-moz-keyframes flipouttoright { + from { -moz-transform: rotateY(0); } + to { -moz-transform: rotateY(90deg) scale(.9); } +} +@-webkit-keyframes flipintoleft { + from { -webkit-transform: rotateY(-90deg) scale(.9); } + to { -webkit-transform: rotateY(0); } +} +@-moz-keyframes flipintoleft { + from { -moz-transform: rotateY(-90deg) scale(.9); } + to { -moz-transform: rotateY(0); } +} +@-webkit-keyframes flipintoright { + from { -webkit-transform: rotateY(90deg) scale(.9); } + to { -webkit-transform: rotateY(0); } +} +@-moz-keyframes flipintoright { + from { -moz-transform: rotateY(90deg) scale(.9); } + to { -moz-transform: rotateY(0); } +} diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/images/ajax-loader.gif b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/ajax-loader.gif new file mode 100644 index 0000000..fd1a189 Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/ajax-loader.gif differ diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/images/ajax-loader.png b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/ajax-loader.png new file mode 100644 index 0000000..13b208d Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/ajax-loader.png differ diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-18-black.png b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-18-black.png new file mode 100644 index 0000000..ce1b758 Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-18-black.png differ diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-18-white.png b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-18-white.png new file mode 100644 index 0000000..1ab0127 Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-18-white.png differ diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-36-black.png b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-36-black.png new file mode 100644 index 0000000..1a59d7c Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-36-black.png differ diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-36-white.png b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-36-white.png new file mode 100644 index 0000000..5647bdc Binary files /dev/null and b/libs/js/jquery-mobile-1.1.0/css/themes/default/images/icons-36-white.png differ diff --git a/libs/js/jquery-mobile-1.1.0/css/themes/default/index.php b/libs/js/jquery-mobile-1.1.0/css/themes/default/index.php new file mode 100644 index 0000000..431474d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/themes/default/index.php @@ -0,0 +1,7 @@ +' , { + 'class': "ui-footer ui-bar-e", + style: "overflow: auto; padding:10px 15px;", + 'data-ajax-warning': true + }); + + message + .append( "

                    Note: Navigation may not work if viewed locally

                    " ) + .append( "

                    The AJAX-based navigation used throughout the jQuery Mobile docs may need to be viewed on a web server to work in certain browsers. If you see an error message when you click a link, try a different browser or view help.

                    " ); + + $( document ).bind( "pagecreate", function( event ) { + $( event.target ).append( message ); + }); + }); + }); +} diff --git a/libs/js/jquery-mobile-1.1.0/docs/about/accessibility.html b/libs/js/jquery-mobile-1.1.0/docs/about/accessibility.html new file mode 100644 index 0000000..b8891d2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/about/accessibility.html @@ -0,0 +1,70 @@ + + + + + + jQuery Mobile Docs - Accessibility + + + + + + + + + + +
                    + +
                    +

                    Accessibility

                    + Home + Search +
                    + +
                    + + +
                    + +

                    Accessibility

                    +

                    jQuery Mobile is built upon standard, semantic HTML, allowing pages to be accessible to the broadest range of devices possible. For A-Grade browsers, many of the components in jQuery Mobile leverage techniques such as focus management, keyboard navigation, and HTML attributes specified in the W3C's WAI-ARIA specification.

                    + +

                    By utilizing these techniques, we do our best to ensure an accessible experience to users with disabilities such as blindness, who may use screen readers (like VoiceOver, on Apple's iPhone device) or other assistive technology to access the web.

                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + + +
                    + + + + + +
                    + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/about/features.html b/libs/js/jquery-mobile-1.1.0/docs/about/features.html new file mode 100644 index 0000000..06ce295 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/about/features.html @@ -0,0 +1,77 @@ + + + + + + jQuery Mobile Docs - Features + + + + + + + + + + +
                    + +
                    +

                    Features

                    + Home + Search +
                    + +
                    + +
                    + +

                    Key features:

                    +
                      +
                    • Built on jQuery core for familiar and consistent jQuery syntax and minimal learning curve and leverages jQuery UI code and patterns.
                    • +
                    • Compatible with all major mobile, tablet, e-reader & desktop platforms - iOS, Android, Blackberry, Palm WebOS, Nokia/Symbian, Windows Phone 7, MeeGo, Opera Mobile/Mini, Firefox Mobile, Kindle, Nook, and all modern browsers with graded levels of support.
                    • +
                    • Lightweight size and minimal image dependencies for speed.
                    • +
                    • Modular architecture for creating custom builds that are optimized to only include the features needed for a particular application
                    • +
                    • HTML5 Markup-driven configuration of pages and behavior for fast development and minimal required scripting.
                    • +
                    • Progressive enhancement approach brings core content and functionality to all mobile, tablet and desktop platforms and a rich, installed application-like experience on newer mobile platforms.
                    • +
                    • Responsive design techniques and tools allow the same underlying codebase to automatically scale from smartphone to desktop-sized screens
                    • +
                    • Powerful Ajax-powered navigation system to enable animated page transitions while maintaining back button, bookmarking and and clean URLs though pushState.
                    • +
                    • Accessibility features such as WAI-ARIA are also included to ensure that the pages work for screen readers (e.g. VoiceOver in iOS) and other assistive technologies.
                    • +
                    • Touch and mouse event support streamline the process of supporting touch, mouse, and cursor focus-based user input methods with a simple API.
                    • +
                    • Unified UI widgets for common controls enhance native controls with touch-optimized, themable controls that are platform-agnostic and easy to use.
                    • +
                    • Powerful theming framework and the ThemeRoller application make highly-branded experiences easy to build.
                    • + +
                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/about/getting-started.html b/libs/js/jquery-mobile-1.1.0/docs/about/getting-started.html new file mode 100644 index 0000000..17416e3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/about/getting-started.html @@ -0,0 +1,171 @@ + + + + + + jQuery Mobile Docs - Quick start + + + + + + + + + + +
                    + +
                    +

                    Quick start guide

                    + + + Home + Search +
                    + +
                    + +
                    + +

                    Getting Started with jQuery Mobile

                    + +

                    jQuery Mobile provides a set of touch-friendly UI widgets and an AJAX-powered navigation system to support animated page transitions. Building your first jQuery Mobile page is easy, here's how:

                    + +

                    Create a basic page template

                    +

                    Pop open your favorite text editor, paste in the page template below, save and open in a browser. You are now a mobile developer!

                    +

                    Here's what's in the template. In the head, a meta viewport tag sets the screen width to the pixel width of the device and references to jQuery, jQuery Mobile and the mobile theme stylesheet from the CDN add all the styles and scripts. jQuery Mobile 1.1 works with both 1.6.4 and 1.7.1 versions of jQuery core.

                    +

                    In the body, a div with a data-role of page is the wrapper used to delineate a page, and the header bar (data-role="header") and content region (data-role="content") are added inside to create a basic page (these are both optional). These data- attributes are HTML5 attributes are used throughout jQuery Mobile to transform basic markup into an enhanced and styled widget.

                    + +
                    
                    +<!DOCTYPE html> 
                    +<html> 
                    +	<head> 
                    +	<title>My Page</title> 
                    +	<meta name="viewport" content="width=device-width, initial-scale=1"> 
                    +	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
                    +	<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
                    +	<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
                    +</head> 
                    +<body> 
                    +
                    +<div data-role="page">
                    +
                    +	<div data-role="header">
                    +		<h1>My Title</h1>
                    +	</div><!-- /header -->
                    +
                    +	<div data-role="content">	
                    +		<p>Hello world</p>		
                    +	</div><!-- /content -->
                    +
                    +</div><!-- /page -->
                    +
                    +</body>
                    +</html>
                    +
                    + + +

                    Add your content

                    +

                    Inside your content container, you can add any standard HTML elements - headings, lists, paragraphs, etc. You can write your own custom styles to create custom layouts by adding an additional stylesheet to the head after the jQuery Mobile stylesheet.

                    + +

                    Make a listview

                    +

                    jQuery Mobile includes a diverse set of common listviews that are coded as lists with a data-role="listview" added. Here is a simple linked list that has a role of listview. We're going to make this look like an inset module by adding a data-inset="true" and add a dynamic search filter with the data-filter="true" attributes.

                    + +
                    
                    +<ul data-role="listview" data-inset="true" data-filter="true">
                    +	<li><a href="#">Acura</a></li>
                    +	<li><a href="#">Audi</a></li>
                    +	<li><a href="#">BMW</a></li>
                    +	<li><a href="#">Cadillac</a></li>
                    +	<li><a href="#">Ferrari</a></li>
                    +</ul>
                    +
                    +
                    + + + + + +

                    Add a slider

                    +

                    The framework contains a full set of form elements that automatically are enhanced into touch-friendly styled widgets. Here's a slider made with the new HTML5 input type of range, no data-role needed. Be sure to wrap these in a form element and always properly associate a label to every form element.

                    + +
                    
                    +<form>
                    +   <label for="slider-0">Input slider:</label>
                    +   <input type="range" name="slider" id="slider-0" value="25" min="0" max="100"  />
                    +</form>
                    +
                    + +
                    + + +
                    + + + +

                    Make a button

                    +

                    There are a few ways to make buttons, but lets turn a link into a button so it's easy to click. Just start with a link and add a data-role="button" attribute to it. You can add an icon with the data-icon attribute and optionally set its position with the data-iconpos attribute.

                    + +
                    
                    +<a href="#" data-role="button" data-icon="star">Star button</a>
                    +
                    + + Star button + + + +

                    Play with theme swatches

                    +

                    jQuery Mobile has a robust theme framework that supports up to 26 sets of toolbar, content and button colors, called a "swatch". Just add a data-theme="e" attribute to any of the widgets on this page: page, header, list, input for the slider, or button to turn it yellow. Try different swatch letters in default theme from a-e to mix and match swatches.

                    +

                    Cool party trick: add the theme swatch to the page and see how all the widgets inside the content will automatically inherit the theme (headers don't inherit, they default to swatch A).

                    + +<a href="#" data-role="button" data-icon="star" data-theme="a">Button</a> + + data-theme="a" + data-theme="b" + data-theme="c" + data-theme="d" + data-theme="e" + +

                    When you're ready to build a custom theme, use ThemeRoller to drag and drop, then download a custom theme.

                    + +

                    Go forth and build stuff

                    +

                    This is just scratching the surface of all the cool things you can build with jQuery Mobile with little effort. Be sure to explore linking pages, adding animated page transitions, and creating dialogs. Use the data-attribute reference to try out some of the other data- attributes you can play with.

                    + +

                    More of a developer? Great, forget everything we just covered (kidding). If you don't want to use the data- attribute configuration system, you can take full control of everything and call plugins directly because these are all just standard jQuery plugins built with the UI widget factory. Be sure to dig into global configuration, events, and methods. Then read up on scripting pages, generating dynamic pages, and building PhoneGap apps.

                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/about/index.html b/libs/js/jquery-mobile-1.1.0/docs/about/index.html new file mode 100644 index 0000000..5b6720a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/about/index.html @@ -0,0 +1,40 @@ + + + + + + jQuery UI Mobile Framework - About + + + + + + + + + + +
                    + +
                    +

                    About jQuery Mobile

                    + Home + Search +
                    + + + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/about/intro.html b/libs/js/jquery-mobile-1.1.0/docs/about/intro.html new file mode 100644 index 0000000..0487c5e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/about/intro.html @@ -0,0 +1,70 @@ + + + + + + jQuery Mobile Docs - Intro + + + + + + + + + + +
                    + +
                    +

                    Introduction

                    + Home + Search +
                    + +
                    + +
                    + +

                    jQuery Mobile Overview

                    + +

                    jQuery’s mobile strategy can be summarized simply: A unified user interface system that works seamlessly across all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. Focused on a feature-rich but lightweight codebase built on progressive enhancement with a flexible, theming system and ThemeRoller tool.

                    +

                    The framework includes an Ajax navigation system that brings animated page transitions and a core set of UI widgets: pages, dialogs, toolbars, listviews, buttons with icons, form elements, accordions, collapsibles, and more.

                    + +

                    The critical difference with our approach is the wide variety of mobile platforms we’re targeting with jQuery Mobile so no browser or device is left behind. We've also focused on making jQuery Mobile easy to learn with a simple, markup-based system to applying behavior and theming. For more advanced developers, there is a rich API of global configuration options, events, and methods to apply scripting, generate dynamic pages, and even build native apps with tools like PhoneGap.

                    + +

                    To make this broad support possible, all pages in jQuery Mobile are built on a foundation of clean, semantic HTML to ensure compatibility with pretty much any web-enabled device. In devices that interpret CSS and JavaScript, jQuery Mobile applies progressive enhancement techniques to unobtrusively transform the semantic page into a rich, interactive experience that leverages the power of jQuery and CSS. Accessibility features such as WAI-ARIA are tightly integrated throughout the framework to provide support for screen readers and other assistive technologies.

                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/about/platforms.html b/libs/js/jquery-mobile-1.1.0/docs/about/platforms.html new file mode 100644 index 0000000..e36acf8 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/about/platforms.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Supported platforms + + + + + + + + + + +
                    + +
                    +

                    Supported platforms

                    + Home + Search +
                    + +
                    + + +
                    +

                    jQuery Mobile Supported Platforms

                    +

                    jQuery Mobile has broad support for the vast majority of all modern desktop, smartphone, tablet, and e-reader platforms. In addition, feature phones and older browsers are supported because of our progressive enhancement approach. We're very proud of our commitment to universal accessibility through our broad support for all popular platforms.

                    + +

                    We use a 3-level graded platform support system: A (full), B (full minus Ajax), C (basic HTML). The visual fidelity of the experience and smoothness of page transitions are highly dependent on the CSS rendering capabilities of the device and platform so not all A grade experience will be pixel-perfect but that's the nature of the web.

                    + +

                    A-grade - Full enhanced experience with Ajax-based animated page transitions.

                    +
                      +
                    • Apple iOS 3.2-5.0 - Tested on the original iPad (4.3 / 5.0), iPad 2 (4.3), original iPhone (3.1), iPhone 3 (3.2), 3GS (4.3), 4 (4.3 / 5.0), and 4S (5.0)
                    • +
                    • Android 2.1-2.3 - Tested on the HTC Incredible (2.2), original Droid (2.2), HTC Aria (2.1), Google Nexus S (2.3). Functional on 1.5 & 1.6 but performance may be sluggish, tested on Google G1 (1.5)
                    • +
                    • Android 3.1 (Honeycomb)  - Tested on the Samsung Galaxy Tab 10.1 and Motorola XOOM
                    • +
                    • Android 4.0 (ICS)  - Tested on a Galaxy Nexus. Note: transition performance can be poor on upgraded devices
                    • +
                    • Windows Phone 7-7.5 - Tested on the HTC Surround (7.0) HTC Trophy (7.5), LG-E900 (7.5), Nokia Lumia 800
                    • +
                    • Blackberry 6.0 - Tested on the Torch 9800 and Style 9670
                    • +
                    • Blackberry 7 - Tested on BlackBerry® Torch 9810
                    • +
                    • Blackberry Playbook (1.0-2.0) - Tested on PlayBook
                    • +
                    • Palm WebOS (1.4-2.0) - Tested on the Palm Pixi (1.4), Pre (1.4), Pre 2 (2.0)
                    • +
                    • Palm WebOS 3.0 - Tested on HP TouchPad
                    • +
                    • Firebox Mobile (10 Beta) - Tested on Android 2.3 device
                    • +
                    • Chrome for Android (Beta) - Tested on Android 4.0 device
                    • +
                    • Skyfire 4.1 - Tested on Android 2.3 device
                    • +
                    • Opera Mobile 11.5: Tested on Android 2.3
                    • +
                    • Meego 1.2 - Tested on Nokia 950 and N9
                    • +
                    • Samsung bada 2.0 - Tested on a Samsung Wave 3, Dolphin browser
                    • +
                    • UC Browser - Tested on Android 2.3 device
                    • +
                    • Kindle 3 and Fire - Tested on the built-in WebKit browser for each
                    • +
                    • Nook Color 1.4.1 - Tested on original Nook Color, not Nook Tablet
                    • +
                    • Chrome Desktop 11-17 - Tested on OS X 10.7 and Windows 7
                    • +
                    • Safari Desktop 4-5 - Tested on OS X 10.7 and Windows 7
                    • +
                    • Firefox Desktop 4-9 - Tested on OS X 10.7 and Windows 7
                    • +
                    • Internet Explorer 7-9 - Tested on Windows XP, Vista and 7
                    • +
                    • Opera Desktop 10-11 - Tested on OS X 10.7 and Windows 7
                    • +
                    +

                    B-grade - Enhanced experience except without Ajax navigation features.

                    +
                      +
                    • Blackberry 5.0: Tested on the Storm 2 9550, Bold 9770
                    • +
                    • Opera Mini (5.0-6.5) - Tested on iOS 3.2/4.3 and Android 2.3
                    • +
                    • Nokia Symbian^3 - Tested on Nokia N8 (Symbian^3), C7 (Symbian^3), also works on N97 (Symbian^1)
                    • +
                    +

                    C-grade - Basic, non-enhanced HTML experience that is still functional

                    +
                      +
                    • Blackberry 4.x - Tested on the Curve 8330
                    • +
                    • Windows Mobile - Tested on the HTC Leo (WinMo 5.2)
                    • +
                    • All older smartphone platforms and featurephones - Any device that doesn't support media queries will receive the basic, C grade experience
                    • +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/data-attributes.html b/libs/js/jquery-mobile-1.1.0/docs/api/data-attributes.html new file mode 100644 index 0000000..38e23c6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/data-attributes.html @@ -0,0 +1,530 @@ + + + + + + jQuery Mobile Docs - Data Attribute Reference + + + + + + + + + + +
                    + +
                    +

                    Data Attributes

                    + Home + Search +
                    + +
                    + +
                    +

                    Data- attribute reference

                    +

                    The jQuery Mobile framework uses HTML5 data- attributes to allow for markup-based initialization and configuration of widgets. These attributes are completely optional; calling plugins manually and passing options directly is also supported. To avoid naming conflicts with other plugins or frameworks that also use data- attributes, set a custom namespace by modifying the ns global option.

                    + + + +

                    Button

                    +

                    Links with data-role="button". Input-based buttons and button elements are auto-enhanced, no data-role required

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    data-cornerstrue | false
                    data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                    data-iconposleft | right | top | bottom | notext
                    data-iconshadowtrue | false
                    data-inlinetrue | false
                    data-minitrue | false - Compact sized version
                    data-shadowtrue | false
                    data-themeswatch letter (a-z)
                    +

                    Multiple buttons can be wrapped in a container with a data-role="controlgroup" attribute for a vertically grouped set. Add the data-type="horizontal" attribute for the buttons to sit side-by-side.

                    + + +

                    Checkbox

                    +

                    Pairs of labels and inputs with type="checkbox" are auto-enhanced, no data-role required

                    + + + + + + + + + + + + + +
                    data-minitrue | false - Compact sized version
                    data-rolenone (prevents auto-enhancement to use native control)
                    data-themeswatch letter (a-z) - Added to the form element
                    + +

                    Collapsible

                    +

                    A heading and content wrapped in a container with the data-role="collapsible"

                    + + + + + + + + + + + + + + + + + + + + + +
                    data-collapsedtrue | false
                    data-content-themeswatch letter (a-z)
                    data-iconposleft | right | top | bottom | notext
                    data-minitrue | false - Compact sized version
                    data-themeswatch letter (a-z)
                    + +

                    Collapsible set

                    +

                    A number of collapsibles wrapped in a container with the data-role="collapsible-set"

                    + + + + + + + + + + + + + + + + + +
                    data-content-themeswatch letter (a-z) - Sets all collapsibles in set
                    data-iconposleft | right | top | bottom | notext
                    data-minitrue | false - Compact sized version
                    data-themeswatch letter (a-z) - Sets all collapsibles in set
                    + +

                    Content

                    +

                    Container with data-role="content"

                    + + + + + +
                    data-themeswatch letter (a-z)
                    + +

                    Dialog

                    +

                    Page with data-role="page" linked to with data-rel="dialog" on the anchor.

                    + + + + + + + + + + + + + + + + + + + + + +
                    data-close-btn-textstring (text for the close button, dialog only)
                    data-dom-cachetrue | false
                    data-overlay-themeswatch letter (a-z) - overlay theme when the page is opened in a dialog
                    data-themeswatch letter (a-z)
                    data-titlestring (title used when page is shown)
                    + +

                    Enhancement

                    +

                    Container with data-enhance="false" or data-ajax="false"

                    + + + + + + + + + +
                    data-enhancetrue | false
                    data-ajaxtrue | false
                    +

                    Any DOM elements inside a data-enhance="false" container, save for data-role="page|dialog" elements, will be ignored during initial enhancement and subsequent create events provided that the $.mobile.ignoreContentEnabled flag is set prior to the enhancement (eg in a mobileinit binding).

                    + +

                    Any link or form elements inside data-enhance="false" containers will be ignored by the framework's navigation functionality when $.mobile.ignoreContentEnabled is set to true.

                    + +

                    Field container

                    +

                    Container with data-role="fieldcontain" wrapped around label/form element pair

                    + +

                    Flip toggle switch

                    +

                    Select with data-role="slider", two options only

                    + + + + + + + + + + + + + + + + + +
                    data-minitrue | false - Compact sized version
                    data-rolenone (prevents auto-enhancement to use native control)
                    data-themeswatch letter (a-z) - Added to the form element
                    data-track-themeswatch letter (a-z) - Added to the form element
                    + +

                    Footer

                    +

                    Container with data-role="footer"

                    + + + + + + + + + + + + + + + + + +
                    data-idstring (unique id, useful in persistent footers)
                    data-positionfixed
                    data-fullscreentrue (used in conjunction with fixed toolbars)
                    data-themeswatch letter (a-z)
                    + +

                    Header

                    +

                    Container with data-role="header"

                    + + + + + + + + + + + + + +
                    data-positionfixed
                    data-fullscreentrue (used in conjunction with fixed toolbars)
                    data-themeswatch letter (a-z)
                    + +

                    Link

                    +

                    Links, including those with a data-role="button", and form submit buttons share these attributes

                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                    data-ajaxtrue | false
                    data-directionreverse (reverse page transition animation)
                    data-dom-cachetrue | false
                    data-prefetchtrue | false
                    data-relback (to move one step back in history)
                    + dialog (to open link styled as dialog, not tracked in history)
                    + external (for linking to another domain)
                    data-transitionslide | slideup | slidedown | pop | fade | flip
                    + +

                    Listview

                    +

                    OL or UL with data-role="listview"

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    data-count-themeswatch letter (a-z)
                    data-divider-themeswatch letter (a-z)
                    data-filtertrue | false
                    data-filter-placeholderstring
                    data-filter-themeswatch letter (a-z)
                    data-insettrue | false
                    data-split-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                    data-split-themeswatch letter (a-z) +
                    data-themeswatch letter (a-z)
                    + +

                    Listview item

                    +

                    LI within a listview

                    + + + + + + + + + + + + + + + + + +
                    data-filtertextstring (filter by this value instead of inner text)
                    data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                    data-rolelist-divider
                    data-themeswatch letter (a-z) - can also be set on individual LIs
                    +

                    Navbar

                    +

                    A number of LIs wrapped in a container with data-role="navbar"

                    + + + + + + + + + + + + + +
                    data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                    data-iconposleft | right | top | bottom | notext
                    data-themeswatch letter (a-z) - can also be set on individual LIs
                    +

                    Page

                    +

                    Container with data-role="page"

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    data-add-back-btntrue | false (auto add back button, header only)
                    data-back-btn-textstring
                    data-back-btn-themeswatch letter (a-z)
                    data-close-btn-textstring (text for the close button, dialog only)
                    data-dom-cachetrue | false
                    data-fullscreentrue (used in conjunction with fixed toolbars)

                    Deprecated in 1.1 - use on header and footer instead.

                    data-overlay-themeswatch letter (a-z) - overlay theme when the page is opened in a dialog
                    data-themeswatch letter (a-z)
                    data-titlestring (title used when page is shown)
                    + +

                    Radio button

                    +

                    Pairs of labels and inputs with type="radio" are auto-enhanced, no data-role required

                    + + + + + + + + + + + + + +
                    data-minitrue | false - Compact sized version
                    data-rolenone (prevents auto-enhancement to use native control)
                    data-themeswatch letter (a-z) - Added to the form element
                    + +

                    Select

                    +

                    All select form elements are auto-enhanced, no data-role required

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    data-iconhome | delete | plus | arrow-u | arrow-d | check | gear | grid | star | custom | arrow-r | arrow-l | minus | refresh | forward | back | alert | info | search
                    data-iconposleft | right | top | bottom | notext
                    data-inlinetrue | false
                    data-minitrue | false - Compact sized version
                    data-native-menutrue | false
                    data-overlay-themeswatch letter (a-z) - overlay theme for non-native selects
                    data-placeholdertrue | false - Add to the Option
                    data-rolenone (prevents auto-enhancement to use native control)
                    data-themeswatch letter (a-z) - Added to the form element
                    +

                    Multiple selects can be wrapped in a fieldset with a data-role="controlgroup" attribute for a vertically grouped set. Add the data-type="horizontal" attribute for the selects to sit side-by-side.

                    + +

                    Slider

                    +

                    Inputs with type="range" are auto-enhanced, no data-role required

                    + + + + + + + + + + + + + + + + + + + + + +
                    data-highlighttrue | false - Adds an active state fill on track to handle
                    data-minitrue | false - Compact sized version
                    data-rolenone (prevents auto-enhancement to use native control)
                    data-themeswatch letter (a-z) - Added to the form element
                    data-track-themeswatch letter (a-z) - Added to the form element
                    + +

                    Text input & Textarea

                    +

                    Input type="text|number|search|etc." or textarea elements are auto-enhanced, no data-role required

                    + + + + + + + + + + + + + +
                    data-minitrue | false - Compact sized version
                    data-rolenone (prevents auto-enhancement to use native control)
                    data-themeswatch letter (a-z) - Added to the form element
                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/events-nav.html b/libs/js/jquery-mobile-1.1.0/docs/api/events-nav.html new file mode 100644 index 0000000..01e8201 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/events-nav.html @@ -0,0 +1,557 @@ + + + + + + jQuery Mobile Docs - Events + + + + + + + + + + +
                    + +
                    +

                    Events

                    + Home + Search +
                    + +
                    +
                    + +

                    Framework, Page, and Navigation Events

                    +

                    jQuery Mobile's widget and navigation system has a full set of events at each stage of the page load and page change process that can be tapped into to take full control. This page will highlight the most commonly used events and what they do, and also provide chronologies of when these events are triggered during load and transitions.

                    + + +

                    Framework events

                    + +

                    When jQuery Mobile initializes, it triggers an event on the document that is specifically designed for overriding framework and plugin defaults. That event is called mobileinit, and by binding to it, you can ensure that any global or plugin configuration options are overridden to any value you'd like before they are used by the framework's initial execution.

                    + + +
                    +				
                    +$(document).bind("mobileinit", function(){
                    +  //apply overrides here
                    +});
                    +				
                    +			
                    + +

                    The tricky aspect of mobileinit is that you need to bind to it before jQuery Mobile executes, so a typical mobileinit workflow would occur in a script that is referenced after jQuery itself, but before jQuery Mobile.

                    + +

                    It should be noted that while you can bind to other events from within a mobileinit callback, it is likely that you'll get undesirable results in doing so. This is because many events, such as the page events below, are intended for external developers to use after jQuery Mobile's plugins have loaded.

                    + +

                    Page creation events

                    + +

                    In a jQuery Mobile application, each view is known as a page. Pages generally begin as a regular HTML element with a data-role="page" attribute, and the framework's page widget enhances that element into a jQuery Mobile page control. In the process of enhancing that page, the widget dispatches several events that allow you to access that page and its child elements at different stages of creation.

                    + +

                    These events are:

                    + +
                    +
                    pagecreate
                    + +
                    This event is triggered on a page when it is first initialized by the page plugin. pagecreate is the most useful event for progressively enhancing a page's markup when it first loads, and because of this, many of jQuery Mobile's standard widgets bind to pagecreate to enhance markup within pages as well! If you bind to pagecreate in any script that is referenced after the jQuery Mobile framework, any native jQuery Mobile widgets in that page will be enhanced before your event callback executes. In other words, you'll be dealing with enhanced jQuery Mobile components.
                    + +
                    pagebeforecreate
                    + +
                    This event is triggered on a page element just before it is created by the page plugin. While the pagecreate event generally allows you to work with a page after its markup has been enhanced by jQuery Mobile, pagebeforecreate gives you access when the markup has not yet been enhanced. pagebeforecreate is useful for modifying markup before jQuery Mobile's widgets
                    + +
                    pageinit
                    + +
                    pageinit is very similar to pagecreate, except that none of jQuery Mobile's standard widgets bind to it, and it is guaranteed to execute after all bound pagecreate callbacks have finished. If you need to bind to a page creation-time event via a script that is referenced before jQuery Mobile, binding to pageinit will ensure that you deal with enhanced page controls (whereas pagecreate will not, in that specific case.)
                    + + +
                    + + +

                    Page navigation events

                    +

                    After pages are created, they are often shown and hidden one or many times throughout the use of a jQuery Mobile app. For A-grade browsers with Ajax navigation support, the jQM navigation model manages these page behaviors and dispatches useful events at different steps in the process of showing, hiding, and changing.

                    + +

                    Page showing events

                    +

                    The page showing events (pagebeforeshow and pageshow) are guaranteed to fire every time a page is shown, whether you're opening a single page, or transitioning between two pages. The target of the event is the page that is being shown.

                    + +
                    + +
                    pagebeforeshow
                    +
                    An event triggered on a page before it is shown.
                    + + +
                    pageshow
                    +
                    An event triggered on the page after it is shown.
                    +
                    + +

                    Page hiding events

                    +

                    The page hiding events (pagebeforehide and pagehide) only fire when transitioning between two pages, when an outgoing page is being hidden in favor of a new one. The target of the event is the page that is being shown.

                    +
                    +
                    pagebeforehide
                    +
                    An event triggered on a page before it is hidden.
                    + + +
                    pagehide
                    +
                    An event triggered on a page after it is hidden.
                    + +
                    + + +

                    When a single page is being shown, and no page is hidden, only the pagebeforeshow and pageshow events will fire, and in that order.

                    + +

                    During a transition between two pages, all 4 of the events above will fire, in this order:

                    + + + + + + + + +

                    Chronology

                    + + + + +

                    Here is an overview of the event chronology for a page change

                    + + + + + + +

                    You can bind to these events like you would with other jQuery events, using live() or bind().

                    + +
                    +

                    Important: Use pageInit(), not $(document).ready()

                    +

                    The first thing you learn in jQuery is to call code inside the $(document).ready() function so everything will execute as soon as the DOM is loaded. However, in jQuery Mobile, Ajax is used to load the contents of each page into the DOM as you navigate, and the DOM ready handler only executes for the first page. To execute code whenever a new page is loaded and created, you can bind to the pageinit event. This event is explained in detail at the bottom of this page.

                    + +

                     

                    +
                    +

                    Important: pageCreate() vs pageInit()

                    +

                    Prior to Beta 2 the recommendation to users wishing to manipulate jQuery Mobile enhanced page and child widget markup was to bind to the pagecreate event. In Beta 2 an internal change was made to decouple each of the widgets by binding to the pagecreate event in place of direct calls to the widget methods. As a result, users binding to the pagecreate from within mobileinit would find their binding executing before the markup had been enhanced by each of the plugins. In keeping with the lifecycle of the jQuery UI Widget Factory, the initialization method is invoked after the create method, so the pageinit event provides the correct timing for post enhancement manipulation of the DOM and/or Javascript objects.

                    +
                    + + + +

                    Page load events

                    +

                    Whenever an external page is loaded into the application DOM, 2 events are fired. The first is pagebeforeload. The 2nd event will be either pageload or pageloadfailed.

                    +
                    +
                    pagebeforeload
                    +

                    Triggered before any load request is made. Callbacks bound to this event can call preventDefault() on the event to indicate that they are handling the load request. Callbacks that do this *MUST* make sure they call resolve() or reject() on the deferred object reference contained in the data object passed to the callback.

                    +

                    The data object, passed as the 2nd arg to the callback function contains the following properties:

                    +
                      +
                    • url (string) +
                        +
                      • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                      • +
                      +
                    • +
                    • absUrl (string) +
                        +
                      • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                      • +
                      +
                    • +
                    • dataUrl (string) +
                        +
                      • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                      • +
                      +
                    • +
                    • deferred (object) +
                        +
                      • Callbacks that call preventDefault() on the event, *MUST* call resolve() or reject() on this object so that changePage() requests resume processing. Deferred object observers expect the deferred object to be resolved like this:

                        +
                        
                        +$( document ).bind( "pagebeforeload", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle the load.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... load the document then insert it into the DOM ...
                        +	// at some point, either in this callback, or through
                        +	// some other async means, call resolve, passing in
                        +	// the following args, plus a jQuery collection object
                        +	// containing the DOM element for the page.
                        +
                        +	data.deferred.resolve( data.absUrl, data.options, page );
                        +
                        +});
                        +

                        or rejected like this: +

                        
                        +$( document ).bind( "pagebeforeload", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle the load.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... load the document then insert it into the DOM ...
                        +	// at some point, if the load fails, either in this
                        +	// callback, or through some other async means, call
                        +	// reject like this:
                        +
                        +	data.deferred.reject( data.absUrl, data.options );
                        +
                        +});
                        +
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the options that were passed into $.mobile.loadPage().
                      • +
                      +
                    • +
                    +
                    +
                    pageload
                    +
                    Triggered after the page is successfully loaded and inserted into the DOM. Callbacks bound to this event will be passed a data object as its 2nd arg. This object contains the following information: +
                      +
                    • url (string) +
                        +
                      • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                      • +
                      +
                    • +
                    • absUrl (string) +
                        +
                      • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                      • +
                      +
                    • +
                    • dataUrl (string) +
                        +
                      • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the options that were passed into $.mobile.loadPage().
                      • +
                      +
                    • +
                    • xhr (object) +
                        +
                      • The jQuery XMLHttpRequest object used when attempting to load the page. This is what gets passed as the 3rd argument to the framework's $.ajax() success callback.
                      • +
                      +
                    • +
                    • textStatus (null or string) +
                        +
                      • According to the jQuery Core documentation, this will be a string describing the status. This is what gets passed as the 2nd argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    +
                    +
                    pageloadfailed
                    +
                    Triggered if the page load request failed. By default, after dispatching this event, the framework will display a page failed message and call reject() on the deferred object contained within the event's data object. Callbacks can prevent this default behavior from executing by calling preventDefault() on the event. +

                    The data object, passed as the 2nd arg to the callback function contains the following properties:

                    +
                      +
                    • url (string) +
                        +
                      • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                      • +
                      +
                    • +
                    • absUrl (string) +
                        +
                      • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                      • +
                      +
                    • +
                    • dataUrl (string) +
                        +
                      • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                      • +
                      +
                    • +
                    • deferred (object) +
                        +
                      • Callbacks that call preventDefault() on the event, *MUST* call resolve() or reject() on this object so that changePage() requests resume processing. Deferred object observers expect the deferred object to be resolved like this:

                        +
                        
                        +$( document ).bind( "pageloadfailed", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle things.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... attempt to load some other page ...
                        +	// at some point, either in this callback, or through
                        +	// some other async means, call resolve, passing in
                        +	// the following args, plus a jQuery collection object
                        +	// containing the DOM element for the page.
                        +
                        +	data.deferred.resolve( data.absUrl, data.options, page );
                        +
                        +});
                        +

                        or rejected like this: +

                        
                        +$( document ).bind( "pageloadfailed", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle things.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... attempt to load some other page ...
                        +	// at some point, if the load fails, either in this
                        +	// callback, or through some other async means, call
                        +	// reject like this:
                        +
                        +	data.deferred.reject( data.absUrl, data.options );
                        +
                        +});
                        +
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the options that were passed into $.mobile.loadPage().
                      • +
                      +
                    • +
                    • xhr (object) +
                        +
                      • The jQuery XMLHttpRequest object used when attempting to load the page. This is what gets passed as the first argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    • textStatus (null or string) +
                        +
                      • According to the jQuery Core documentation, possible values for this property, aside from null, are "timeout", "error", "abort", and "parsererror". This is what gets passed as the 2nd argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    • errorThrown (null, string, object) +
                        +
                      • According to the jQuery Core documentation, this property may be an exception object if one occured, or if an HTTP error occured this will be set to the textual portion of the HTTP status. This is what gets passed as the 3rd argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    +
                    +
                    +

                    Page change events

                    +

                    Navigating between pages in the application is usually accomplished through a call to $.mobile.changePage(). This function is responsible for making sure that the page we are navigating to is loaded and inserted into the DOM, and then kicking off the transition animations between the current active page, and the page the caller wants to to make active. During this process, which is usually asynchronous, changePage() will fire off 2 events. The first is pagebeforechange. The second event depends on the success or failure of the change request. It will either be pagechange or pagechangefailed.

                    +
                    +
                    pagebeforechange
                    +
                    This event is triggered prior to any page loading or transition. Callbacks can prevent execution of the changePage() function by calling preventDefault on the event object passed into the callback. The callback also recieves a data object as its 2nd arg. The data object has the following properties: +
                      +
                    • toPage (object or string) +
                        +
                      • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the configuration options to be used for the current changePage() call.
                      • +
                      +
                    • +
                    +

                    It should be noted that callbacks can modify both the toPage and options properties to alter the behavior of the current changePage() call. So for example, the toPage can be mapped to a different url from within a callback to do a sort of redirect.

                    +
                    +
                    pagechange
                    +
                    This event is triggered after the changePage() request has finished loading the page into the DOM and all page transition animations have completed. Note that any pageshow or pagehide events will have fired *BEFORE* this event is triggered. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: +
                      +
                    • toPage (object or string) +
                        +
                      • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the configuration options to be used for the current changePage() call.
                      • +
                      +
                    • +
                    +
                    +
                    pagechangefailed
                    +
                    This event is triggered when the changePage() request fails to load the page. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: +
                      +
                    • toPage (object or string) +
                        +
                      • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the configuration options to be used for the current changePage() call.
                      • +
                      +
                    • +
                    +
                    +
                    +

                    Page transition events

                    +

                    Page transitions are used to animate the change from the current active page (fromPage) to a new page (toPage). Events are triggered before and after these transitions so that observers can be notified whenever pages are shown or hidden. The events triggered are as follows:

                    +
                    +
                    pagebeforeshow
                    +
                    Triggered on the "toPage" we are transitioning to, before the actual transition animation is kicked off. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • prevPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we are transitioning away from. Note that this collection is empty when the first page is transitioned in during application startup.
                      • +
                      +
                    • +
                    +
                    + +
                    pagebeforehide
                    +
                    Triggered on the "fromPage" we are transitioning away from, before the actual transition animation is kicked off. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • nextPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we are transitioning to.
                      • +
                      +
                    • +
                    +

                    Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously active page.

                    +
                    + +
                    pageshow
                    +
                    Triggered on the "toPage" after the transition animation has completed. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • prevPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we just transitioned away from. Note that this collection is empty when the first page is transitioned in during application startup.
                      • +
                      +
                    • +
                    +
                    + +
                    pagehide
                    +
                    Triggered on the "fromPage" after the transition animation has completed. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • nextPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we just transitioned to.
                      • +
                      +
                    • +
                    +

                    Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously active page.

                    +
                    + +
                    + +

                    You can access the prevPage or nextPage properties via the second argument of a bound callback function. For example:

                    +
                    
                    +$( 'div' ).live( 'pageshow',function(event, ui){
                    +  alert( 'This page was just hidden: '+ ui.prevPage);
                    +});
                    +
                    +$( 'div' ).live( 'pagehide',function(event, ui){
                    +  alert( 'This page was just shown: '+ ui.nextPage);
                    +});
                    +
                    +

                    Also, for these handlers to be invoked during the initial page load, you must bind them before jQuery Mobile executes. This can be done in the mobileinit handler, as described on the global config page. +

                    Page initialization events

                    + +

                    Internally, jQuery Mobile auto-initializes plugins based on the markup conventions found in a given "page". For example, an input element with a type of range will automatically generate a custom slider control.

                    + +

                    This auto-initialization is controlled by the "page" plugin, which dispatches events before and after it executes, allowing you to manipulate a page either pre-or-post initialization, or even provide your own intialization behavior and prevent the auto-initializations from occuring. Note that these events will only fire once per "page", as opposed to the show/hide events, which fire every time a page is shown and hidden.

                    + +
                    +
                    pagebeforecreate
                    +
                    +

                    Triggered on the page being initialized, before most plugin auto-initialization occurs.

                    +
                    
                    +$( '#aboutPage' ).live( 'pagebeforecreate',function(event){
                    +  alert( 'This page was just inserted into the dom!' );
                    +});
                    +
                    +

                    Note that by binding to pagebeforecreate, you can manipulate markup before jQuery Mobile's default widgets are auto-initialized. For example, say you want to add data-attributes via JavaScript instead of in the HTML source, this is the event you'd use.

                    + +
                    
                    +$( '#aboutPage' ).live( 'pagebeforecreate',function(event){
                    +  // manipulate this page before its widgets are auto-initialized
                    +});
                    +
                    +
                    + +
                    pagecreate
                    +
                    +

                    Triggered when the page has been created in the DOM (via ajax or other) but before all widgets have had an opportunity to enhance the contained markup. This event is most useful for user's wishing to create their own custom widgets for child markup enhancement as the jquery mobile widgets do.

                    +
                    
                    +$( '#aboutPage' ).live( 'pagecreate',function(event){
                    +  ( ":jqmData(role='sweet-plugin')" ).sweetPlugin();
                    +});
                    +
                    +
                    + +
                    pageinit
                    +
                    +

                    Triggered on the page being initialized, after initialization occurs. We recommend binding to this event instead of DOM ready() because this will work regardless of whether the page is loaded directly or if the content is pulled into another page as part of the Ajax navigation system.

                    +
                    
                    +$( '#aboutPage' ).live( 'pageinit',function(event){
                    +  alert( 'This page was just enhanced by jQuery Mobile!' );
                    +});
                    +
                    +
                    +
                    + + + +

                    Page remove events

                    +

                    By default, the framework removes any non active dynamically loaded external pages from the DOM as soon as the user navigates away to a different page. The pageremove event is dispatched just before the framework attempts to remove the a page from the DOM.

                    +
                    +
                    pageremove
                    +
                    This event is triggered just before the framework attempts to remove an external page from the DOM. Event callbacks can call preventDefault on the event object to prevent the page from being removed. +
                    +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/events.html b/libs/js/jquery-mobile-1.1.0/docs/api/events.html new file mode 100644 index 0000000..b9e2004 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/events.html @@ -0,0 +1,514 @@ + + + + + + jQuery Mobile Docs - Events + + + + + + + + + + +
                    + +
                    +

                    Events

                    + Home + Search +
                    + +
                    +
                    + +

                    jQuery Mobile offers several custom events that build upon native events to create useful hooks for development. Note that these events employ various touch, mouse, and window events, depending on event existence, so you can bind to them for use in both handheld and desktop environments. You can bind to these events like you would with other jQuery events, using live() or bind().

                    + +
                    +

                    Important: Use $(document).bind('pageinit'), not $(document).ready()

                    +

                    The first thing you learn in jQuery is to call code inside the $(document).ready() function so everything will execute as soon as the DOM is loaded. However, in jQuery Mobile, Ajax is used to load the contents of each page into the DOM as you navigate, and the DOM ready handler only executes for the first page. To execute code whenever a new page is loaded and created, you can bind to the pageinit event. This event is explained in detail at the bottom of this page.

                    + +

                     

                    +
                    +

                    Important: $(document).bind('pagecreate') vs $(document).bind('pageinit')

                    +

                    Prior to Beta 2 the recommendation to users wishing to manipulate jQuery Mobile enhanced page and child widget markup was to bind to the pagecreate event. In Beta 2 an internal change was made to decouple each of the widgets by binding to the pagecreate event in place of direct calls to the widget methods. As a result, users binding to the pagecreate in mobileinit would find their binding executing before the markup had been enhanced by each of the plugins. In keeping with the lifecycle of the jQuery UI Widget Factory, the initialization method is invoked after the create method, so the pageinit event provides the correct timing for post enhancement manipulation of the DOM and/or Javascript objects. + + In short, if you were previously using pagecreate to manipulate the enhanced markup before the page was shown, it's very likely you'll want to migrate to 'pageinit'. +

                    + +

                    Touch events

                    +
                    +
                    tap
                    +
                    Triggers after a quick, complete touch event.
                    + +
                    taphold
                    +
                    Triggers after a held complete touch event (close to one second).
                    + +
                    swipe
                    +

                    Triggers when a horizontal drag of 30px or more (and less than 20px vertically) occurs within 1 second duration but these can be configured:

                    +
                      +
                    • scrollSupressionThreshold (default: 10px) – More than this horizontal displacement, and we will suppress scrolling
                    • +
                    • durationThreshold (default: 1000ms) – More time than this, and it isn’t a swipe
                    • +
                    • horizontalDistanceThreshold (default: 30px) – Swipe horizontal displacement must be more than this.
                    • +
                    • verticalDistanceThreshold (default: 75px) – Swipe vertical displacement must be less than this.
                    • +
                    +
                    + +
                    swipeleft
                    +
                    Triggers when a swipe event occurred moving in the left direction.
                    + +
                    swiperight
                    +
                    Triggers when a swipe event occurred moving in the right direction.
                    +
                    + +

                    Virtual mouse events

                    +

                    We provide a set of "virtual" mouse events that attempt to abstract away mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. In touch environments, the plugin retains the order of event firing that is seen in traditional mouse environments, so for example, vmouseup is always dispatched before vmousedown, and vmousedown before vclick, etc. The virtual mouse events also normalize how coordinate information is extracted from the event, so in touch based environments, coordinates are available from the pageX, pageY, screenX, screenY, clientX, and clientY properties, directly on the event object.

                    +
                    +
                    vmouseover
                    +
                    Normalized event for handling touch or mouseover events
                    + +
                    vmousedown
                    +
                    Normalized event for handling touchstart or mousedown events
                    + +
                    vmousemove
                    +
                    Normalized event for handling touchmove or mousemove events
                    + +
                    vmouseup
                    +
                    Normalized event for handling touchend or mouseup events
                    + +
                    vclick
                    +
                    Normalized event for handling touchend or mouse click events. On touch devices, this event is dispatched *AFTER* vmouseup.
                    + +
                    vmousecancel
                    +
                    Normalized event for handling touch or mouse mousecancel events
                    +
                    + +
                    +

                    Warning: Use vclick with caution

                    +

                    Use vclick with caution on touch devices. Webkit based browsers synthesize mousedown, mouseup, and click events roughly 300ms after the touchend event is dispatched. The target of the synthesized mouse events are calculated at the time they are dispatched and are based on the location of the touch events and, in some cases, the implementation specific heuristics which leads to different target calculations on different devices and even different OS versions for the same device. This means the target element within the original touch events could be different from the target element within the synthesized mouse events.

                    +

                    We recommend using click instead of vclick anytime the action being triggered has the possibility of changing the content underneath the point that was touched on screen. This includes page transitions and other behaviors such as collapse/expand that could result in the screen shifting or content being completely replaced.

                    +
                    +

                     

                    +
                    +

                    Canceling an elements default click behavior

                    +

                    Applications can call preventDefault() on a vclick event to cancel an element's default click behavior. On mouse based devices, calling preventDefault() on a vclick event equates to calling preventDefault() on the real click event during the bubble event phase. On touch based devices, it's a bit more complicated since the actual click event is dispatched about 300ms after the vclick event is dispatched. For touch devices, calling preventDefault() on a vclick event triggers some code in the vmouse plugin that attempts to catch the next click event that gets dispatched by the browser, during the capture event phase, and calls preventDefault() and stopPropagation() on it. As mentioned in the warning above, it is sometimes difficult to match up a touch event with its corresponding mouse event because the targets can differ. For this reason, the vmouse plugin also falls back to attempting to identify a corresponding click event by coordinates. There are still cases where both target and coordinate identification fail, which results in the click event being dispatched and either triggering the default action of the element, or in the case where content has been shifted or replaced, triggering a click on a different element. If this happens on a regular basis for a given element/control, we suggest you use click for triggering your action.

                    +
                    + +

                    Orientation change event

                    +
                    +
                    orientationchange
                    +
                    Triggers when a device orientation changes (by turning it vertically or horizontally). When bound to this event, your callback function can leverage a second argument, which contains an orientation property equal to either "portrait" or "landscape". These values are also added as classes to the HTML element, allowing you to leverage them in your CSS selectors. Note that we currently bind to the resize event when orientationchange is not natively supported, or when $.mobile.orientationChangeEnabled is set to false.
                    +
                    +

                    orientationchange timing

                    + +

                    The timing of the orientationchange with relation to the change of the client height and width is different between browsers, though the current implementation will give you the correct value for event.orientation derived from window.orientation. This means that if your bindings are dependent on the height and width values you may want to disable orientationChange all together with $.mobile.orientationChangeEnabled = false to let the fallback resize code trigger your bindings.

                    +
                    +
                    + +

                    Scroll events

                    +
                    +
                    scrollstart
                    +
                    Triggers when a scroll begins. Note that iOS devices freeze DOM manipulation during scroll, queuing them to apply when the scroll finishes. We're currently investigating ways to allow DOM manipulations to apply before a scroll starts.
                    +
                    +
                    +
                    scrollstop
                    +
                    Triggers when a scroll finishes.
                    +
                    + +

                    Page load events

                    +

                    Whenever an external page is loaded into the application DOM, 2 events are fired. The first is pagebeforeload. The 2nd event will be either pageload or pageloadfailed.

                    +
                    +
                    pagebeforeload
                    +

                    Triggered before any load request is made. Callbacks bound to this event can call preventDefault() on the event to indicate that they are handling the load request. Callbacks that do this *MUST* make sure they call resolve() or reject() on the deferred object reference contained in the data object passed to the callback.

                    +

                    The data object, passed as the 2nd arg to the callback function contains the following properties:

                    +
                      +
                    • url (string) +
                        +
                      • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                      • +
                      +
                    • +
                    • absUrl (string) +
                        +
                      • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                      • +
                      +
                    • +
                    • dataUrl (string) +
                        +
                      • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                      • +
                      +
                    • +
                    • deferred (object) +
                        +
                      • Callbacks that call preventDefault() on the event, *MUST* call resolve() or reject() on this object so that changePage() requests resume processing. Deferred object observers expect the deferred object to be resolved like this:

                        +
                        
                        +$( document ).bind( "pagebeforeload", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle the load.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... load the document then insert it into the DOM ...
                        +	// at some point, either in this callback, or through
                        +	// some other async means, call resolve, passing in
                        +	// the following args, plus a jQuery collection object
                        +	// containing the DOM element for the page.
                        +
                        +	data.deferred.resolve( data.absUrl, data.options, page );
                        +
                        +});
                        +

                        or rejected like this: +

                        
                        +$( document ).bind( "pagebeforeload", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle the load.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... load the document then insert it into the DOM ...
                        +	// at some point, if the load fails, either in this
                        +	// callback, or through some other async means, call
                        +	// reject like this:
                        +
                        +	data.deferred.reject( data.absUrl, data.options );
                        +
                        +});
                        +
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the options that were passed into $.mobile.loadPage().
                      • +
                      +
                    • +
                    +
                    +
                    pageload
                    +
                    Triggered after the page is successfully loaded and inserted into the DOM. Callbacks bound to this event will be passed a data object as its 2nd arg. This object contains the following information: +
                      +
                    • url (string) +
                        +
                      • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                      • +
                      +
                    • +
                    • absUrl (string) +
                        +
                      • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                      • +
                      +
                    • +
                    • dataUrl (string) +
                        +
                      • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the options that were passed into $.mobile.loadPage().
                      • +
                      +
                    • +
                    • xhr (object) +
                        +
                      • The jQuery XMLHttpRequest object used when attempting to load the page. This is what gets passed as the 3rd argument to the framework's $.ajax() success callback.
                      • +
                      +
                    • +
                    • textStatus (null or string) +
                        +
                      • According to the jQuery Core documentation, this will be a string describing the status. This is what gets passed as the 2nd argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    +
                    +
                    pageloadfailed
                    +
                    Triggered if the page load request failed. By default, after dispatching this event, the framework will display a page failed message and call reject() on the deferred object contained within the event's data object. Callbacks can prevent this default behavior from executing by calling preventDefault() on the event. +

                    The data object, passed as the 2nd arg to the callback function contains the following properties:

                    +
                      +
                    • url (string) +
                        +
                      • The absolute or relative URL that was passed into $.mobile.loadPage() by the caller.
                      • +
                      +
                    • +
                    • absUrl (string) +
                        +
                      • The absolute version of the url. If url was relative, it is resolved against the url used to load the current active page.
                      • +
                      +
                    • +
                    • dataUrl (string) +
                        +
                      • The filtered version of absUrl to be used when identifying the page and updating the browser location when the page is made active.
                      • +
                      +
                    • +
                    • deferred (object) +
                        +
                      • Callbacks that call preventDefault() on the event, *MUST* call resolve() or reject() on this object so that changePage() requests resume processing. Deferred object observers expect the deferred object to be resolved like this:

                        +
                        
                        +$( document ).bind( "pageloadfailed", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle things.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... attempt to load some other page ...
                        +	// at some point, either in this callback, or through
                        +	// some other async means, call resolve, passing in
                        +	// the following args, plus a jQuery collection object
                        +	// containing the DOM element for the page.
                        +
                        +	data.deferred.resolve( data.absUrl, data.options, page );
                        +
                        +});
                        +

                        or rejected like this: +

                        
                        +$( document ).bind( "pageloadfailed", function( event, data ){
                        +
                        +	// Let the framework know we're going to handle things.
                        +
                        +	event.preventDefault();
                        +
                        +	// ... attempt to load some other page ...
                        +	// at some point, if the load fails, either in this
                        +	// callback, or through some other async means, call
                        +	// reject like this:
                        +
                        +	data.deferred.reject( data.absUrl, data.options );
                        +
                        +});
                        +
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the options that were passed into $.mobile.loadPage().
                      • +
                      +
                    • +
                    • xhr (object) +
                        +
                      • The jQuery XMLHttpRequest object used when attempting to load the page. This is what gets passed as the first argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    • textStatus (null or string) +
                        +
                      • According to the jQuery Core documentation, possible values for this property, aside from null, are "timeout", "error", "abort", and "parsererror". This is what gets passed as the 2nd argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    • errorThrown (null, string, object) +
                        +
                      • According to the jQuery Core documentation, this property may be an exception object if one occured, or if an HTTP error occured this will be set to the textual portion of the HTTP status. This is what gets passed as the 3rd argument to the framework's $.ajax() error callback.
                      • +
                      +
                    • +
                    +
                    +
                    +

                    Page change events

                    +

                    Navigating between pages in the application is usually accomplished through a call to $.mobile.changePage(). This function is responsible for making sure that the page we are navigating to is loaded and inserted into the DOM, and then kicking off the transition animations between the current active page, and the page the caller wants to to make active. During this process, which is usually asynchronous, changePage() will fire off 2 events. The first is pagebeforechange. The second event depends on the success or failure of the change request. It will either be pagechange or pagechangefailed.

                    +
                    +
                    pagebeforechange
                    +
                    This event is triggered prior to any page loading or transition. Callbacks can prevent execution of the changePage() function by calling preventDefault on the event object passed into the callback. The callback also recieves a data object as its 2nd arg. The data object has the following properties: +
                      +
                    • toPage (object or string) +
                        +
                      • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the configuration options to be used for the current changePage() call.
                      • +
                      +
                    • +
                    +

                    It should be noted that callbacks can modify both the toPage and options properties to alter the behavior of the current changePage() call. So for example, the toPage can be mapped to a different url from within a callback to do a sort of redirect.

                    +
                    +
                    pagechange
                    +
                    This event is triggered after the changePage() request has finished loading the page into the DOM and all page transition animations have completed. Note that any pageshow or pagehide events will have fired *BEFORE* this event is triggered. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: +
                      +
                    • toPage (object or string) +
                        +
                      • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the configuration options to be used for the current changePage() call.
                      • +
                      +
                    • +
                    +
                    +
                    pagechangefailed
                    +
                    This event is triggered when the changePage() request fails to load the page. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: +
                      +
                    • toPage (object or string) +
                        +
                      • This property represents the page the caller wishes to make active. It can be either a jQuery collection object containing the page DOM element, or an absolute/relative url to an internal or external page. The value exactly matches the 1st arg to the changePage() call that triggered the event.
                      • +
                      +
                    • +
                    • options (object) +
                        +
                      • This object contains the configuration options to be used for the current changePage() call.
                      • +
                      +
                    • +
                    +
                    +
                    +

                    Page transition events

                    +

                    Page transitions are used to animate the change from the current active page (fromPage) to a new page (toPage). Events are triggered before and after these transitions so that observers can be notified whenever pages are shown or hidden. The events triggered are as follows:

                    +
                    +
                    pagebeforeshow
                    +
                    Triggered on the "toPage" we are transitioning to, before the actual transition animation is kicked off. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • prevPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we are transitioning away from. Note that this collection is empty when the first page is transitioned in during application startup.
                      • +
                      +
                    • +
                    +
                    + +
                    pagebeforehide
                    +
                    Triggered on the "fromPage" we are transitioning away from, before the actual transition animation is kicked off. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • nextPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we are transitioning to.
                      • +
                      +
                    • +
                    +

                    Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously active page.

                    +
                    + +
                    pageshow
                    +
                    Triggered on the "toPage" after the transition animation has completed. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • prevPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we just transitioned away from. Note that this collection is empty when the first page is transitioned in during application startup.
                      • +
                      +
                    • +
                    +
                    + +
                    pagehide
                    +
                    Triggered on the "fromPage" after the transition animation has completed. Callbacks for this event will recieve a data object as their 2nd arg. This data object has the following properties on it: +
                      +
                    • nextPage (object) +
                        +
                      • A jQuery collection object that contains the page DOM element that we just transitioned to.
                      • +
                      +
                    • +
                    +

                    Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously active page.

                    +
                    + +
                    + +

                    You can access the prevPage or nextPage properties via the second argument of a bound callback function. For example:

                    +
                    
                    +$( 'div' ).live( 'pageshow',function(event, ui){
                    +  alert( 'This page was just hidden: '+ ui.prevPage);
                    +});
                    +
                    +$( 'div' ).live( 'pagehide',function(event, ui){
                    +  alert( 'This page was just shown: '+ ui.nextPage);
                    +});
                    +
                    +

                    Also, for these handlers to be invoked during the initial page load, you must bind them before jQuery Mobile executes. This can be done in the mobileinit handler, as described on the global config page. +

                    Page initialization events

                    + +

                    Internally, jQuery Mobile auto-initializes plugins based on the markup conventions found in a given "page". For example, an input element with a type of range will automatically generate a custom slider control.

                    + +

                    This auto-initialization is controlled by the "page" plugin, which dispatches events before and after it executes, allowing you to manipulate a page either pre-or-post initialization, or even provide your own intialization behavior and prevent the auto-initializations from occuring. Note that these events will only fire once per "page", as opposed to the show/hide events, which fire every time a page is shown and hidden.

                    + +
                    +
                    pagebeforecreate
                    +
                    +

                    Triggered on the page being initialized, before most plugin auto-initialization occurs.

                    +
                    
                    +$( '#aboutPage' ).live( 'pagebeforecreate',function(event){
                    +  alert( 'This page was just inserted into the dom!' );
                    +});
                    +
                    +

                    Note that by binding to pagebeforecreate, you can manipulate markup before jQuery Mobile's default widgets are auto-initialized. For example, say you want to add data-attributes via JavaScript instead of in the HTML source, this is the event you'd use.

                    + +
                    
                    +$( '#aboutPage' ).live( 'pagebeforecreate',function(event){
                    +  // manipulate this page before its widgets are auto-initialized
                    +});
                    +
                    +
                    + +
                    pagecreate
                    +
                    +

                    Triggered when the page has been created in the DOM (via ajax or other) but before all widgets have had an opportunity to enhance the contained markup. This event is most useful for user's wishing to create their own custom widgets for child markup enhancement as the jquery mobile widgets do.

                    +
                    
                    +$( '#aboutPage' ).live( 'pagecreate',function(event){
                    +  ( ":jqmData(role='sweet-plugin')" ).sweetPlugin();
                    +});
                    +
                    +
                    + +
                    pageinit
                    +
                    +

                    Triggered on the page being initialized, after initialization occurs. We recommend binding to this event instead of DOM ready() because this will work regardless of whether the page is loaded directly or if the content is pulled into another page as part of the Ajax navigation system.

                    +
                    
                    +$( '#aboutPage' ).live( 'pageinit',function(event){
                    +  alert( 'This page was just enhanced by jQuery Mobile!' );
                    +});
                    +
                    +
                    +
                    + + + +

                    Page remove events

                    +

                    By default, the framework removes any non active dynamically loaded external pages from the DOM as soon as the user navigates away to a different page. The pageremove event is dispatched just before the framework attempts to remove the a page from the DOM.

                    +
                    +
                    pageremove
                    +
                    This event is triggered just before the framework attempts to remove an external page from the DOM. Event callbacks can call preventDefault on the event object to prevent the page from being removed. +
                    +
                    + +

                    Layout events

                    +

                    Some components within the framework, such as collapsible and listview search, dynamically hide and show content based on user events. This hiding/showing of content affects the size of the page and may result in the browser adjusting/scrolling the viewport to accommodate the new page size. Since this has the potential to affect other components such as fixed headers and footers, components like collapsible and listview trigger a custom updatelayout event to notify other components that they may need to adjust their layouts in response to their content changes. Developers who are building dynamic applications that inject, hide, or remove content from the page, or manipulate it in any way that affects the dimensions of the page, can also manually trigger this updatelayout event to ensure components on the page update in response to the changes.

                    +
                    +
                    updatelayout
                    +
                    This event is triggered by components within the framework that dynamically show/hide content, and is meant as a generic mechanism to notify other components that they may need to update their size or position. Within the framework, this event is fired on the component element whose content was shown/hidden, and bubbles all the way up to the document element. +
                    
                    +$( '#foo' ).hide().trigger( 'updatelayout' );
                    +
                    +
                    +
                    + +

                    Animation Events

                    +

                    jQuery Mobile exposes the animationComplete plugin, which you can utilize after adding or removing a class that applies a CSS transition.

                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/globalconfig.html b/libs/js/jquery-mobile-1.1.0/docs/api/globalconfig.html new file mode 100644 index 0000000..b2ce8c4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/globalconfig.html @@ -0,0 +1,181 @@ + + + + + + jQuery Mobile Docs - Configuring default settings + + + + + + + + + + +
                    + +
                    +

                    Configuring Defaults

                    + Home + Search +
                    + +
                    +
                    + +

                    Working with jQuery Mobile's Auto-initialization

                    +

                    Unlike other jQuery projects, such as jQuery and jQuery UI, jQuery Mobile automatically applies many markup enhancements as soon as it loads (long before the document.ready event fires). These enhancements are applied based on jQuery Mobile's default settings, which are designed to work with common scenarios. If changes to the settings are needed, they are easy to configure.

                    + +

                    The mobileinit event

                    +

                    When jQuery Mobile starts, it triggers a mobileinit event on the document object. To override default settings, bind to mobileinit.

                    + +
                    +				
                    +$(document).bind("mobileinit", function(){
                    +  //apply overrides here
                    +});
                    +				
                    +			
                    + +

                    Because the mobileinit event is triggered immediately, you'll need to bind your event handler before jQuery Mobile is loaded. Link to your JavaScript files in the following order:

                    + +
                    +				
                    +<script src="jquery.js"></script>
                    +<script src="custom-scripting.js"></script>
                    +<script src="jquery-mobile.js"></script>
                    +				
                    +			
                    + +

                    You can override default settings by extending the $.mobile object using jQuery's $.extend method.

                    + +
                    +				
                    +$(document).bind("mobileinit", function(){
                    +  $.extend(  $.mobile , {
                    +    foo: bar
                    +  });
                    +});
                    +				
                    +			
                    + +

                    Alternatively, you can set them using object property notation.

                    +
                    +				
                    +$(document).bind("mobileinit", function(){
                    +  $.mobile.foo = bar;
                    +});
                    +				
                    +			
                    + +

                    To explore the effects of global configuration options, see the config test pages.

                    + +

                    Configurable options

                    +

                    The following defaults are configurable via the $.mobile object:

                    + +
                    +
                    activeBtnClass string, default: "ui-btn-active"
                    +
                    The CSS class used for "active" button state.
                    + +
                    activePageClass string, default: "ui-page-active"
                    +
                    The CSS class used for the page currently in view or in a transition.
                    + +
                    ajaxEnabled boolean, default: true
                    +
                    jQuery Mobile will automatically handle link clicks and form submissions through Ajax, when possible. If false, URL hash listening will be disabled as well, and URLs will load as ordinary HTTP requests.
                    + +
                    allowCrossDomainPages boolean, default: false
                    +
                    When jQuery Mobile attempts to load an external page, the request runs through $.mobile.loadPage(). This will only allow cross-domain requests if $.mobile.allowCrossDomainPages is set to true. Because the jQuery Mobile framework tracks what page is being viewed within the browser's location hash, it is possible for a cross-site scripting (XSS) attack to occur if the XSS code in question can manipulate the hash and set it to a cross-domain URL of its choice. This is the main reason that the default setting for $.mobile.allowCrossDomainPages is set to false. In PhoneGap apps that must "phone home" by loading assets off a remote server, both the $.support.cors AND $.mobile.allowCrossDomainPages must be set to true.
                    + +
                    autoInitializePage boolean, default: true
                    +
                    When the DOM is ready, the framework should automatically call $.mobile.initializePage. If false, the page will not initialize and will be visually hidden until $.mobile.initializePage is manually called.
                    + +
                    buttonMarkup.hoverDelay integer, default: 200
                    +
                    Set the delay for touch devices to add the hover and down classes on touch interactions for buttons throughout the framework. Reducing the delay here results in a more responsive feeling ui, but will often result in the downstate being applied during page scrolling.
                    + +
                    defaultDialogTransition string, default: 'pop'
                    +
                    Set the default transition for dialog changes that use Ajax. Set to 'none' for no transitions.
                    + +
                    defaultPageTransition string, default: 'fade'
                    +
                    Set the default transition for page changes that use Ajax. Note: default changed from 'slide' to 'fade' in 1.1. Set to 'none' for no transitions.
                    + +
                    gradeA function that returns a boolean, default: a function returning the value of $.support.mediaquery
                    +
                    Any support conditions that must be met in order to proceed.
                    + +
                    hashListeningEnabled boolean, default: true
                    +
                    jQuery Mobile will automatically listen and handle changes to the location.hash. Disabling this will prevent jQuery Mobile from handling hash changes, which allows you to handle them yourself or use simple deep-links within a document that scroll to a particular ID.
                    + +
                    ignoreContentEnabled boolean, default: false
                    +
                    Warning: Setting this property to true will cause performance degradation on enhancement. Once set, all automatic enhancements made by the framework to each enhanceable element of the user's markup will first check for a data-enhance=false parent node. If one is found the markup will be ignored. This setting and the accompanying data attribute provide a mechanism through which users can prevent enhancement over large sections of markup.
                    + +
                    linkBindingEnabled boolean, default: true
                    +
                    jQuery Mobile will automatically bind the clicks on anchor tags in your document. Setting this options to false will prevent all anchor click handling including the addition of active button state and alternate link bluring. This should only be used when attempting to delegate the click management to another library or custom code.
                    + +
                    loadingMessage string, default: "loading"
                    +
                    Set the text that appears when a page is loading. If set to false, the message will not appear at all.
                    + +
                    loadingMessageTextVisible boolean, default: false
                    +
                    Whether the text should be visible when a loading message is shown. The text is always visible for loading errors.
                    + +
                    loadingMessageTheme string, default: "a"
                    +
                    The theme that the loading message box uses when text is visible.
                    + +
                    minScrollBack string, default: 250
                    +
                    Minimum scroll distance that will be remembered when returning to a page.
                    + +
                    ns string, default: ""
                    +
                    The namespace used in data- attributes (e.g., data-role). Can be set to any string, including a blank string which is the default. When using, it's clearest if you include a trailing dash, such as "mynamespace-" which maps to data-mynamespace-foo="...". +

                    If you use data- namespacing, you will need to update/override one selector in the theme CSS. The following data selectors should incorporate the namespace you're using: +

                    
                    +.ui-mobile [data-mynamespace-role=page], .ui-mobile [data-mynamespace-role=dialog], .ui-page { ...
                    +		
                    +

                    +
                    + +
                    pageLoadErrorMessage string, default: "Error Loading Page"
                    +
                    Set the text that appears when a page fails to load through Ajax.
                    + +
                    pageLoadErrorMessageTheme string, default: "e"
                    +
                    Set the theme that the error message box uses.
                    + +
                    pushStateEnabled boolean, default: true
                    +
                    Enhancement to use history.replaceState in supported browsers, to convert the hash-based Ajax URL into the full document path. Note that we recommend disabling this feature if Ajax is disabled or if extensive use of external links are used.
                    + +
                    subPageUrlKey string, default: "ui-page"
                    +
                    The url parameter used for referencing widget-generated sub-pages (such as those generated by nested listviews). Translates to example.html&ui-page=subpageIdentifier. The hash segment before &ui-page= is used by the framework for making an Ajax request to the URL where the sub-page exists.
                    + +
                    touchOverflowEnabled boolean, default: false
                    +
                    Enable smoother page transitions and true fixed toolbars in devices that support both the overflow: and overflow-scrolling: touch; CSS properties. Note: Deprecated for 1.1.0.
                    + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/index.html b/libs/js/jquery-mobile-1.1.0/docs/api/index.html new file mode 100644 index 0000000..95573ab --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/index.html @@ -0,0 +1,40 @@ + + + + + + jQuery UI Mobile Framework - API + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/mediahelpers.html b/libs/js/jquery-mobile-1.1.0/docs/api/mediahelpers.html new file mode 100644 index 0000000..abd2c15 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/mediahelpers.html @@ -0,0 +1,133 @@ + + + + + + jQuery Mobile Docs - Responsive Layout Helpers + + + + + + + + + + +
                    + +
                    +

                    Responsive Layout Helpers

                    + Home + Search +
                    + +
                    + +
                    +

                    Media Query Helper Classes

                    +

                    Note: This feature was deprecated in beta, and removed in 1.0rc1. We recommend using CSS3 Media Queries instead. To support older versions of Internet Explorer, check out respond.js, a fast & lightweight polyfill for min/max-width CSS3 Media Queries.

                    +

                    If you still need this feature, you can find the code here: jquery.mobile.media.classes.js

                    + +

                    jQuery Mobile adds classes to the HTML element that mimic browser orientation and common min/max-width CSS media queries. These classes are updated on load, resize and orientationchange, allowing you to key off these classes in your CSS, to create responsive layouts - even in browsers that don't support media queries!

                    + +

                    Orientation Classes

                    + +

                    The HTML element will always have a class of either "portrait" or "landscape", depending on the orientation of the browser or device. You can utilize these in your CSS like this:

                    +
                    +			
                    +.portrait {
                    +	/* portrait orientation changes go here! */
                    +}
                    +.landscape {
                    +	/* landscape orientation changes go here! */
                    +}			
                    +			
                    +			
                    + +

                    Min/Max Width Breakpoint Classes

                    +

                    By default, we create min and max breakpoint classes at the following widths: 320,480,768,1024. These translate to classes that look like this: "min-width-320px", "max-width-480px", and are meant to be used as a replacement of (or in addition to) the media query equivalents they mimic.

                    +
                    +			
                    +.myelement { 
                    +	float: none;
                    +}			
                    +.min-width-480px .myelement {
                    +	float: left;
                    +}		
                    +			
                    +
                    + +

                    Many plugins in jQuery Mobile leverage these width breakpoints. For example, form elements float beside their labels when the browser is wider than 480 pixels. The CSS to support this behavior for form text inputs looks like this:

                    + +
                    +			
                    +label.ui-input-text { 
                    +	display: block; 
                    +}
                    +.min-width-480px label.ui-input-text { 
                    +	display: inline-block; 
                    +}
                    +			
                    +
                    + +

                    Adding Width Breakpoints

                    +

                    To utilize width breakpoints of your own, jQuery Mobile exposes the $.mobile.addResolutionBreakpoints function, which accepts either a single number or array of numbers that will be added to the min/max breakpoints whenever they apply.

                    +
                    +			
                    +//add a min/max class for 1200 pixel widths			
                    +$.mobile.addResolutionBreakpoints(1200);
                    +
                    +//add min/max classes for 1200, and 1440 pixel widths			
                    +$.mobile.addResolutionBreakpoints([1200, 1440]);
                    +			
                    +
                    + +

                    Running Media Queries

                    +

                    jQuery Mobile provides a function that allows you to test whether a particular CSS Media Query applies. Simple call $.mobile.media() and pass a media type or query. If the browser supports that type or query, and it currently applies, the function will return true. If not, it'll return false.

                    + +
                    +			
                    +//test for screen media type
                    +$.mobile.media("screen");
                    +
                    +//test  a min-width media query
                    +$.mobile.media("screen and (min-width: 480px)");
                    +
                    +//test for iOS retina display
                    +$.mobile.media("screen and (-webkit-min-device-pixel-ratio: 2)");
                    +
                    +			
                    +
                    + +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/methods.html b/libs/js/jquery-mobile-1.1.0/docs/api/methods.html new file mode 100644 index 0000000..363f3bc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/methods.html @@ -0,0 +1,597 @@ + + + + + + jQuery Mobile Docs - Methods + + + + + + + + + + +
                    + +
                    +

                    Methods

                    + Home + Search +
                    + +
                    +
                    + +

                    jQuery Mobile exposes several methods and properties on the $.mobile object for use in your applications.

                    + + +
                    +
                    $.mobile.changePage (method)
                    +
                    Programmatically change from one page to another. This method is used internally for the page loading and transitioning that occurs as a result of clicking a link or submitting a form, when those features are enabled.
                    + +
                    + +
                    +
                    · Arguments
                    +
                    to (string or object, required) +
                      +
                    • String: Absolute or relative URL. ("about/us.html")
                    • +
                    • Object: jQuery collection object. ($("#about"))
                    • +
                    +
                    + +
                    options (object, optional) +
                      +
                    • Properties: +
                        +
                      • allowSamePageTransition (boolean, default: false) By default, changePage() ignores requests to change to the current active page. Setting this option to true, allows the request to execute. Developers should note that some of the page transitions assume that the fromPage and toPage of a changePage request are different, so they may not animate as expected. Developers are responsible for either providing a proper transition, or turning it off for this specific case.
                      • +
                      • changeHash (boolean, default: true) Decides if the hash in the location bar should be updated.
                      • +
                      • data (object or string, default: undefined) The data to send with an Ajax page request. +
                          +
                        • Used only when the 'to' argument of changePage() is a URL.
                        • +
                        +
                      • +
                      • dataUrl (string, default: undefined) The URL to use when updating the browser location upon changePage completion. + If not specified, the value of the data-url attribute of the page element is used.
                      • +
                      • pageContainer (jQuery collection, default: $.mobile.pageContainer) Specifies the element that should contain the page.
                      • +
                      • reloadPage (boolean, default: false) Forces a reload of a page, even if it is already in the DOM of the page container. +
                          +
                        • Used only when the 'to' argument of changePage() is a URL.
                        • +
                        +
                      • +
                      • reverse (boolean, default: false) Decides what direction the transition will run when showing the page.
                      • +
                      • showLoadMsg (boolean, default: true) Decides whether or not to show the loading message when loading external pages.
                      • +
                      • role (string, default: undefined) The data-role value to be used when displaying the page. By default this is undefined which means rely on the value of the @data-role attribute defined on the element.
                      • +
                      • transition (string, default: $.mobile.defaultPageTransition) The transition to use when showing the page.
                      • +
                      • type (string, default: "get") Specifies the method ("get" or "post") to use when making a page request. +
                          +
                        • Used only when the 'to' argument of changePage() is a URL.
                        • +
                        +
                      • +
                      +
                    • +
                    +
                    + +
                    +
                    + +
                    Examples: +
                    +			
                    +//transition to the "about us" page with a slideup transition
                    +$.mobile.changePage( "about/us.html", { transition: "slideup"} );
                    +
                    +//transition to the "search results" page, using data from a form with an ID of "search"" 	
                    +$.mobile.changePage( "searchresults.php", {
                    +	type: "post",
                    +	data: $("form#search").serialize()
                    +});
                    +
                    +//transition to the "confirm" page with a "pop" transition without tracking it in history	
                    +$.mobile.changePage( "../alerts/confirm.html", {
                    +	transition: "pop",
                    +	reverse: false,
                    +	changeHash: false
                    +});
                    +
                    +			
                    +			
                    + +
                    + + +
                    $.mobile.loadPage (method)
                    +
                    Load an external page, enhance its content, and insert it into the DOM. This method is called internally by the changePage() function when its first argument is a URL. This function does not affect the current active page so it can be used to load pages in the background. The function returns a deferred promise object that gets resolved after the page has been enhanced and inserted into the document.
                    + +
                    + +
                    +
                    · Arguments
                    +
                    url (string or object, required) A relative or absolute URL.
                    + +
                    options (object, optional) +
                      +
                    • Properties: +
                        +
                      • data (object or string, default: undefined) The data to send with an Ajax page request.
                      • +
                      • loadMsgDelay (number (in ms), default: 50) Forced delay before the loading message is shown. This is meant to allow time for a page that has already been visited to be fetched from cache without a loading message.
                      • +
                      • pageContainer (jQuery collection, default: $.mobile.pageContainer) Specifies the element that should contain the page after it is loaded.
                      • +
                      • reloadPage (boolean, default: false) Forces a reload of a page, even if it is already in the DOM of the page container.
                      • +
                      • role (string, default: undefined) The data-role value to be used when displaying the page. By default this is undefined which means rely on the value of the @data-role attribute defined on the element.
                      • +
                      • type (string, default: "get") Specifies the method ("get" or "post") to use when making a page request. +
                      • +
                      +
                    • +
                    +
                    + +
                    +
                    + +
                    Examples: +
                    +			
                    +//load the "about us" page into the DOM
                    +$.mobile.loadPage( "about/us.html" );
                    +
                    +//load a "search results" page, using data from a form with an ID of "search"" 	
                    +$.mobile.loadPage( "searchresults.php", {
                    +	type: "post",
                    +	data: $("form#search").serialize()
                    +});
                    +			
                    +			
                    + +
                    + +
                    $.fn.jqmData(), $.fn.jqmRemoveData() (method)
                    +
                    When working with jQuery Mobile, jqmData and jqmRemoveData should be used in place of jQuery core's data and removeData methods (note that this includes $.fn.data, $.fn.removeData, and the $.data, $.removeData, and $.hasData utilities), as they automatically incorporate getting and setting of namespaced data attributes (even if no namespace is currently in use).
                    +
                    +
                    +
                    · Arguments:
                    +
                    See jQuery's data and removeData methods
                    + Note: Calling jqmData() with no argument will return undefined. This behavior is subject to change in future versions. +
                    · Also:
                    +
                    When finding elements by their jQuery Mobile data attribute, please use the custom selector :jqmData(), as it automatically incorporates namespaced data attributes into the lookup when they are in use. For example, instead of calling $("div[data-role='page']"), you should use $("div:jqmData(role='page')"), which internally maps to $("div[data-"+ $.mobile.ns +"role='page']") without forcing you to concatenate a namespace into your selectors manually.
                    +
                    +
                    + + +
                    $.fn.jqmEnhanceable() (method)
                    +
                    For users that wish to respect data-enhance=false parent elements during manual enhancement or custom plugin authoring jQuery Mobile provides the $.fn.jqmEnhanceable filter method.
                    +
                    +
                    +
                    · Settings:
                    +
                    If, and only if, $.mobile.ignoreContentEnabled is set to true, this method will traverse the parent nodes for each DOM element in the jQuery object and where it finds a data-enhance=false parent the child will be removed from the set.
                    +
                    · Warning:
                    +
                    The operation of traversing all parent elements can be expensive for even small jQuery object sets.
                    +
                    +
                    + +
                    $.fn.jqmHijackable() (method)
                    +
                    For users that wish to respect data-ajax=false parent elements during custom form and link binding jQuery Mobile provides the $.fn.jqmHijackable filter method.
                    +
                    +
                    +
                    · Settings:
                    +
                    If, and only if, $.mobile.ignoreContentEnabled is set to true, this method will traverse the parent nodes for each DOM element in the jQuery object and where it finds a data-ajax=false parent the child form or link will be removed from the set.
                    +
                    · Warning:
                    +
                    The operation of traversing all parent elements can be expensive for even small jQuery object sets.
                    +
                    +
                    + +
                    $.mobile.showPageLoadingMsg (method)
                    +
                    Show the page loading message, which is configurable via $.mobile.loadingMessage.
                    +
                    +
                    +
                    · Arguments
                    +
                    theme (string, default: "a") The theme swatch for the message.
                    +
                    msgText (string, default: "loading") The text of the message.
                    +
                    textonly (boolean, default: false) If true, the "spinner" image will be hidden when the message is shown.
                    +
                    +
                    +
                    Examples: +
                    +			
                    +//cue the page loader
                    +$.mobile.showPageLoadingMsg();
                    +
                    +//use theme swatch "b", a custom message, and no spinner
                    +$.mobile.showPageLoadingMsg("b", "This is only a test", true);
                    +			
                    +			
                    + +
                    + + + + +
                    $.mobile.hidePageLoadingMsg (method)
                    +
                    Hide the page loading message, which is configurable via $.mobile.loadingMessage.
                    + +
                    Example: +
                    +			
                    +//hide the page loader
                    +$.mobile.hidePageLoadingMsg();
                    +			
                    +			
                    + +
                    + +
                    $.mobile.fixedToolbars.show (method)
                    +
                    Utility method for displaying the fixed header and/or footer of the current active page within the viewport. Note that fixed headers/footers are never really hidden. Toggling the show/hide state of a toolbar is really toggling whether or not they are inline within the page content, or displayed within the viewport as if they were fixed.
                    +
                    +
                    +
                    · Arguments
                    +
                    immediately (boolean, optional) If true, any fixed header or footer for the current active page is displayed immediately within the viewport. If false or unspecified, the fixed header/footer will fade-in after a 100 millisecond delay. Note that other events such as a document resize or scroll event can result in an additional delay before the start of the header/footer display animation.
                    +
                    +
                    +
                    Example: +
                    +			
                    +// Show fixed header/footer with a fade animation.
                    +$.mobile.fixedToolbars.show();
                    +
                    +// Show fixed header/footer immediately.
                    +$.mobile.fixedToolbars.show(true);
                    +			
                    +			
                    + +
                    + +
                    $.mobile.fixedToolbars.hide (method)
                    +
                    Utility method for hiding the fixed header and/or footer of the current active page.
                    +
                    +
                    +
                    · Arguments
                    +
                    immediately (boolean, optional) If true, any fixed header or footer for the current active page is immediately placed inline (back in flow) with the page content, which means it will scroll along with the content and will only be visible when viewing the top or bottom of the page within the viewport. If false or unspecified, the fixed header/footer will fade-out after a 100 millisecond delay. Note that other events such as a document resize or scroll event can result in the header/footer being immediately hidden.
                    +
                    +
                    +
                    Example: +
                    +			
                    +// Hide fixed header/footer with a fade animation.
                    +$.mobile.fixedToolbars.hide();
                    +
                    +// Hide fixed header/footer immediately.
                    +$.mobile.fixedToolbars.hide(true);
                    +			
                    +			
                    + +
                    + +
                    $.mobile.path.parseUrl (method)
                    +
                    Utility method for parsing a URL and its relative variants into an object that makes accessing the components of the URL easy. When parsing relative variants, the resulting object will contain empty string values for missing components (like protocol, host, etc). Also, when parsing URLs that have no authority, such as tel: urls, the pathname property of the object will contain the data after the protocol/scheme colon.
                    + +
                    + +
                    +
                    · Arguments
                    +
                    url (string, required) A relative or absolute URL.
                    + +
                    · Return Value
                    +
                    +

                    This function returns an object that contains the various components of the URL as strings. The properties on the object mimic the browser's location object:

                    +
                    +
                    hash
                    +
                    The fragment conponent of the URL, including the leading '#' character.
                    +
                    host
                    +
                    The host and port number of the URL.
                    +
                    hostname
                    +
                    The name of the host within the URL.
                    +
                    href
                    +
                    The original URL that was parsed.
                    +
                    pathname
                    +
                    The path of the file or directory referenced by the URL.
                    +
                    port
                    +
                    The port specified within the URL. Most URLs rely on the default port for the protocol used, so this may be an empty string most of the time.
                    +
                    protocol
                    +
                    The protocol for the URL including the trailing ':' character.
                    +
                    search
                    +
                    The query component of the URL including the leading '?' character.
                    +
                    +

                    But it also contains additional properties that provide access to additional components as well as some common forms of the URL developers access:

                    +
                    +
                    authority
                    +
                    The username, password, and host components of the URL
                    +
                    directory
                    +
                    The directory component of the pathname, minus any filename.
                    +
                    domain
                    +
                    The protocol and authority components of the URL.
                    +
                    filename
                    +
                    The filename within the pathname component, minus the directory.
                    +
                    hrefNoHash
                    +
                    The original URL minus the fragment (hash) components.
                    +
                    hrefNoSearch
                    +
                    The original URL minus the query (search) and fragment (hash) components.
                    +
                    password
                    +
                    The password contained within the authority component.
                    +
                    username
                    +
                    The username contained within the authority component.
                    +
                    +
                    + +
                    +
                    + +
                    Examples: +
                    +			
                    +// Parsing the Url below results an object that is returned with the
                    +// following properties:
                    +//
                    +//  obj.href:         http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread#msg-content
                    +//  obj.hrefNoHash:   http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread
                    +//  obj.hrefNoSearch: http://jblas:password@mycompany.com:8080/mail/inbox
                    +//  obj.domain:       http://jblas:password@mycompany.com:8080
                    +//  obj.protocol:     http:
                    +//  obj.authority:    jblas:password@mycompany.com:8080
                    +//  obj.username:     jblas
                    +//  obj.password:     password
                    +//  obj.host:         mycompany.com:8080
                    +//  obj.hostname:     mycompany.com
                    +//  obj.port:         8080
                    +//  obj.pathname:     /mail/inbox
                    +//  obj.directory:    /mail/
                    +//  obj.filename:     inbox
                    +//  obj.search:       ?msg=1234&type=unread
                    +//  obj.hash:         #msg-content
                    +
                    +var obj = $.mobile.path.parseUrl("http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234");
                    +			
                    +			
                    + +
                    + + +
                    $.mobile.path.makePathAbsolute (method)
                    +
                    Utility method for converting a relative file or directory path into an absolute path.
                    +
                    +
                    +
                    · Arguments
                    +
                    relPath (string, required) A relative file or directory path.
                    +
                    absPath (string, required) An absolute file or relative path to resolve against.
                    + +
                    · Return Value
                    +
                    This function returns a string that is an absolute version of the relative path passed in.
                    + +
                    +
                    +
                    Examples: +
                    +			
                    +// Returns: /a/b/c/file.html
                    +var absPath = $.mobile.path.makePathAbsolute("file.html", "/a/b/c/bar.html");
                    +
                    +// Returns: /a/foo/file.html
                    +var absPath = $.mobile.path.makePathAbsolute("../../foo/file.html", "/a/b/c/bar.html");
                    +
                    +			
                    +			
                    +
                    + + +
                    $.mobile.path.makeUrlAbsolute (method)
                    +
                    Utility method for converting a relative URL to an absolute URL.
                    +
                    + +
                    +
                    Arguments
                    +
                    relUrl (string, required) A relative URL.
                    +
                    absUrl (string, required) An absolute URL to resolve against.
                    + +
                    Return Value
                    +
                    This function returns a string that is an absolute version of the relative URL passed in.
                    + +
                    +
                    +
                    Examples: +
                    +			
                    +// Returns: http://foo.com/a/b/c/file.html
                    +var absUrl = $.mobile.path.makeUrlAbsolute("file.html", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: http://foo.com/a/foo/file.html
                    +var absUrl = $.mobile.path.makeUrlAbsolute("../../foo/file.html", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: http://foo.com/bar/file.html
                    +var absUrl = $.mobile.path.makeUrlAbsolute("//foo.com/bar/file.html", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: http://foo.com/a/b/c/test.html?a=1&b=2
                    +var absUrl = $.mobile.path.makeUrlAbsolute("?a=1&b=2", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: http://foo.com/a/b/c/test.html#bar
                    +var absUrl = $.mobile.path.makeUrlAbsolute("#bar", "http://foo.com/a/b/c/test.html");
                    +
                    +			
                    +			
                    + +
                    + + +
                    $.mobile.path.isSameDomain (method)
                    +
                    Utility method for comparing the domain of 2 URLs.
                    +
                    + +
                    +
                    · Arguments
                    +
                    url1 (string, required) A relative URL.
                    +
                    url2 (string, required) An absolute URL to resolve against.
                    + +
                    Return Value
                    +
                    This function returns a boolean true if the domains match, false if they don't.
                    + +
                    +
                    +
                    Examples: +
                    +			
                    +// Returns: true
                    +var same = $.mobile.path.isSameDomain("http://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: false
                    +var same = $.mobile.path.isSameDomain("file://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: false
                    +var same = $.mobile.path.isSameDomain("https://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
                    +
                    +// Returns: false
                    +var same = $.mobile.path.isSameDomain("http://foo.com/a/file.html", "http://bar.com/a/b/c/test.html");
                    +
                    +			
                    +			
                    + +
                    + + +
                    $.mobile.path.isRelativeUrl (method)
                    +
                    Utility method for determining if a URL is a relative variant.
                    +
                    + +
                    +
                    · Arguments
                    +
                    url (string, required) A relative or absolute URL.
                    + +
                    · Return Value
                    +
                    This function returns a boolean true if the URL is relative, false if it is absolute.
                    + +
                    +
                    +
                    Examples: +
                    +			
                    +// Returns: false
                    +var isRel = $.mobile.path.isRelativeUrl("http://foo.com/a/file.html");
                    +
                    +// Returns: true
                    +var isRel = $.mobile.path.isRelativeUrl("//foo.com/a/file.html");
                    +
                    +// Returns: true
                    +var isRel = $.mobile.path.isRelativeUrl("/a/file.html");
                    +
                    +// Returns: true
                    +var isRel = $.mobile.path.isRelativeUrl("file.html");
                    +
                    +// Returns: true
                    +var isRel = $.mobile.path.isRelativeUrl("?a=1&b=2");
                    +
                    +// Returns: true
                    +var isRel = $.mobile.path.isRelativeUrl("#foo");
                    +
                    +
                    +			
                    +			
                    + +
                    + + +
                    $.mobile.path.isAbsoluteUrl (method)
                    +
                    Utility method for determining if a URL is absolute.
                    +
                    + +
                    +
                    · Arguments
                    +
                    url (string, required) A relative or absolute URL.
                    + +
                    · Return Value
                    +
                    This function returns a boolean true if the URL is absolute, false if not.
                    + +
                    +
                    +
                    Examples: +
                    +			
                    +// Returns: true
                    +var isAbs = $.mobile.path.isAbsoluteUrl("http://foo.com/a/file.html");
                    +
                    +// Returns: false
                    +var isAbs = $.mobile.path.isAbsoluteUrl("//foo.com/a/file.html");
                    +
                    +// Returns: false
                    +var isAbs = $.mobile.path.isAbsoluteUrl("/a/file.html");
                    +
                    +// Returns: false
                    +var isAbs = $.mobile.path.isAbsoluteUrl("file.html");
                    +
                    +// Returns: false
                    +var isAbs = $.mobile.path.isAbsoluteUrl("?a=1&b=2");
                    +
                    +// Returns: false
                    +var isAbs = $.mobile.path.isAbsoluteUrl("#foo");
                    +
                    +
                    +			
                    +			
                    + +
                    + + +
                    $.mobile.base (methods, properties)
                    +
                    Utilities for working with generated base element. TODO: document as public API is finalized.
                    + + + +
                    $.mobile.silentScroll (method)
                    +
                    Scroll to a particular Y position without triggering scroll event listeners.
                    +
                    +
                    +
                    · Arguments:
                    +
                    yPos (number, defaults to 0). Pass any number to scroll to that Y location.
                    +
                    +
                    + +
                    Examples: +
                    +			
                    +//scroll to Y 100px
                    +$.mobile.silentScroll(100);
                    +			
                    +			
                    + +
                    + + + + + +
                    $.mobile.activePage (property)
                    +
                    Reference to the page currently in view.
                    + + + + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/api/themes.html b/libs/js/jquery-mobile-1.1.0/docs/api/themes.html new file mode 100644 index 0000000..6224fab --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/api/themes.html @@ -0,0 +1,291 @@ + + + + + + jQuery Mobile Framework - Static Containers, States + + + + + + + + + + +
                    + +
                    +

                    Themes

                    + Home + Search +
                    + +
                    + +
                    +

                    Theming overview

                    + +

                    The theming system used in jQuery Mobile is similar to the ThemeRoller system in jQuery UI with a few important improvements:

                    + +
                      +
                    • It takes advantage of CSS3 properties to add rounded corners, box and text shadow and gradients instead of images, allowing the theme file to be very lightweight and reducing server requests.
                    • +
                    • Themes include multiple color "swatches" — each consisting of a header bar, content body, and button states that can be freely mixed and matched to create visual texture — to make richer designs possible.
                    • +
                    • Open-ended theming allows for up to 26 unique swatches per theme, to add almost unlimited variety to designs.
                    • +
                    • All backgrounds now use CSS3 gradients to dramatically reduce file size and number of server requests.
                    • +
                    • There is a simplified icon set in a sprite to reduce image weight.
                    • +
                    + +

                    ThemeRoller

                    + Themroller Mobile Logo + The easiest way to create custom themes is with the ThemeRoller tool. It allows you to build a theme, then download a custom CSS file, ready to be dropped into your project. + +

                    Themes & swatches

                    + +

                    The theme system separates color and texture from structural styles that define things like padding and dimensions. This allows theme colors and textures to be defined once in the stylesheet and to be mixed, matched, and combined to achieve a wide range of visual effects.

                    + +

                    Each theme includes several global settings, including font family, drop shadows for overlays, and corner radius values for buttons and boxes. In addition, the theme can include multiple color swatches, each with color values for bars, content blocks, buttons and list items, and font text-shadow.

                    + +

                    The default theme includes 5 swatches that are given letters (a, b, c, d, e) for quick reference. To make mapping of color swatches consistent across our widgets, we have followed the convention that swatch "a" is the highest level of visual priority (black in our default theme), "b" is secondary level (blue) and "c" is the baseline level (gray) that we use by default in many situations, "d" for an alternate secondary level and "e" as an accent swatch. Themes may have additional swatches for accent colors or specific situations. For example, you could add a new theme swatch "f" that has a red bar and button for use in error situations.

                    + +

                    Most theme changes can be done using ThemeRoller, but it's also simple to manually edit the base swatches in the default theme and/or add additional swatches by editing the theme CSS file. Just copy a block of swatch styles, rename the classes with the new swatch letter name, and tweak colors as you see fit.

                    + + +

                    Bars

                    +

                    The default theme contains the following five bar styles:

                    + +
                    +
                    Bar A - Link
                    +
                    Bar B - Link
                    +
                    Bar C - Link
                    +
                    Bar D - Link
                    +
                    Bar E - Link
                    +
                    + +

                    By default, the framework assigns the "a" swatch to all headers and footers, because these are typically given high visual priority in an application. To set the color of a bar to a different swatch color, simply add the data-theme attribute to your header or footer and specify an alternate swatch letter ('b' or 'd', for example) and the specified theme swatch color will be applied. Learn more about toolbar theming.

                    + + + +

                    Content Blocks

                    +

                    The default theme also includes color swatch values for use in content blocks, designed to coordinate with the header color swatches in the theme.

                    + +
                    +
                    Block A - Link
                    +
                    Block B - Link
                    +
                    Block C - Link
                    +
                    Block D - Link
                    +
                    Block E - Link
                    +
                    + + +

                    If a theme isn't specified on a content block, the framework will default to "c" to maximize contrast against the default header "a", as shown here:

                    + +
                    + Back +

                    Default Header

                    +
                    +
                    +

                    Default Theme Content Header

                    +

                    This is the default content color swatch and a preview of a link.

                    + + +
                    + Cache settings: + + + + +
                    + Button +
                    + + + +

                    Learn more about content theming.

                    + + +

                    Lists & Buttons

                    +

                    Each swatch also includes default styles for interactive elements like list items and buttons.

                    + + + + + + + + + + + +

                    A button is included for each swatch in the theme. Each button has styles for normal, hover/focus and pressed states.

                    + + + + +

                    By default, any button that's placed in a bar is automatically assigned a swatch letter that matches its parent bar or content box. Thus, the button is visually integrated into the parent theme as shown here:

                    + +
                    + + + + + +
                    + +

                    This default behavior makes it easy to ripple a theme change through a page by setting a theme swatch on a parent because you know the buttons will maintain the same relative visual weight across themes. Since form elements use the button styles, they will also adapt to their parent container.

                    + +

                    If you want to add visual emphasis to a button, an alternate swatch color can be set by adding a data-theme="a" to the anchor. Once an alternate swatch color is set on a button in the markup, the framework won't override that color if the parent theme is changed, because you made a conscious decision to set it.

                    + +
                    +
                    +
                    + A + B + C + D + E +
                    +
                    +
                    +
                    + A + B + C + D + E +
                    +
                    +
                    +
                    + A + B + C + D + E +
                    +
                    +
                    +
                    + A + B + C + D + E +
                    +
                    +
                    +
                    + A + B + C + D + E +
                    +
                    + +
                    + +

                    Learn more about list theming and button theming.

                    + +

                    Global "Active" state

                    +

                    The jQuery Mobile framework uses a swatch called "active" (bright blue in the default theme) to consistently indicate the selected state, regardless of the individual swatch of the given widget. We apply this in navigation and form controls whenever there is a need to indicate what is currently selected. Because this theme swatch is designed for clear, consistent user feedback, it cannot be overridden via the markup; it is set once in the theme and applied by the framework whenever a selected or active state is needed. The styling for this state is in the theme stylesheet under the ui-btn-active style rules.

                    + +
                    + Active is used for the on state of these toggles: + + + + +
                    + + +

                    Icons

                    +

                    There is a core set of standard icons included in the framework that can be assigned to any button. To minimize the download size of the core icons, jQuery Mobile only includes these icons in white and automatically adds a semi-transparent black circle behind the icon to make sure it has good contrast on all background colors.

                    + +

                    Theme classes

                    +

                    Assigning color swatches through the data-theme attribute is one way to leverage the theme system, but it's also possible to apply any of the theme swatches directly to your markup through classes to apply the colors, textures and font formatting of your theme to any markup. This is especially useful when creating your own custom layout elements or UI widgets. Here are a few common theme classes, but many more are available in the theme stylesheet:

                    +
                    +
                    ui-bar-(a-z)
                    +
                    Applies the toolbar theme styles for the selected swatch letter. Commonly used in conjunction with ui-bar structural class to add the standard bar padding styles.
                    +
                    ui-body-(a-z)
                    +
                    Applies the content body theme styles for the selected swatch letter. Commonly used in conjunction with ui-body structural class to add the standard content block padding styles.
                    +
                    ui-btn-up-(a-z)
                    +
                    Applies the button/clickable element theme styles for the selected swatch letter. Commonly used in with the ui-btn-hover-(a-z) and ui-btn-down-(a-z) interaction class states to provide visual feedback and ui-btn-active to indicate the selected or "on" state.
                    +
                    ui-corner-all
                    +
                    Applies the theme's global border-radius for rounded corners and is used for container or grouped items in the framework (inset lists, radiobutton sets). There are additional classes for all the possible combinations of rounded corners, for example: ui-corner-tl (top left only), -top (both top corners), -left (both left corners), etc. A second full set of corner classes is provided for buttons so these can have a different corner radius. These use classes with a similar naming convention, but with "btn-corner" instead of "corner", like this: .ui-btn-corner-all.
                    +
                    ui-shadow
                    +
                    Applies the theme's global drop shadow to any element using CSS box-shadow property.
                    +
                    ui-disabled
                    +
                    Applies the disabled look and feel which essentially reduces the opacity of any element with this class to 30%, hides the cursor, and sets pointer-events: none; which prevents any interaction in many modern browsers.
                    +
                    + +

                    Overriding themes

                    +

                    The themes are meant as a solid starting point, but are meant to be customized. Since everything is controlled by CSS, it's easy to use a web inspector tool to identify the style properties you want to modify. The set of of theme classes (global) and semantic structural classes (widget-specific) added to elements provide a rich set of possible selectors to target style overrides against. We recommend adding an external stylesheet to the head, placed after the structure and theme stylesheet references, that contain all your style overrides. This allows you to easily update to newer versions of the library because overrides are kept separate from the library code.

                    + + +

                    Learn more about theming individual components:

                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/api-buttons.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/api-buttons.html new file mode 100644 index 0000000..d2d0cb2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/api-buttons.html @@ -0,0 +1,45 @@ + + + + + + jQuery Mobile Docs - Buttons + + + + + + + + + + +
                    + +
                    +

                    Button API

                    + Home + Search +
                    + +
                    + +

                    Dependencies

                    +

                    To be documented

                    + +

                    Options

                    +

                    To be documented

                    + +

                    Methods

                    +

                    To be documented

                    + +

                    Known Issues

                    +

                    To be documented

                    + + + +
                    +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-events.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-events.html new file mode 100644 index 0000000..410d7ae --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-events.html @@ -0,0 +1,92 @@ + + + + + + jQuery Mobile Docs - Button events + + + + + + + + + + +
                    + +
                    +

                    Button basics

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Button basics

                    + + + +

                    Bind events directly to the a, input, or button element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$( ".myButton" ).bind( "click", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The form button plugin has the following custom events:

                    + +
                    + +
                    create triggered when a form button is created
                    +
                    + +
                    
                    +$('[type='submit']').button({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + +
                    + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-grouped.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-grouped.html new file mode 100644 index 0000000..df3f48b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-grouped.html @@ -0,0 +1,112 @@ + + + + + + jQuery Mobile Docs - Grouped Buttons + + + + + + + + + + +
                    + +
                    +

                    Grouped

                    + Home + Search +
                    + +
                    +
                    + +

                    Grouped buttons

                    +

                    Occasionally, you may want to visually group a set of buttons together to form a single block that looks contained like a navigation component. To get this effect, wrap a set of buttons in a container with the data-role="controlgroup" attribute — the framework will create a vertical button group, remove all margins and drop shadows between the buttons, and only round the first and last buttons of the set to create the effect that they are grouped together.

                    +
                    
                    +<div data-role="controlgroup">
                    +<a href="index.html" data-role="button">Yes</a>
                    +<a href="index.html" data-role="button">No</a>
                    +<a href="index.html" data-role="button">Maybe</a>
                    +</div>
                    +
                    + +

                    By default, grouped buttons are presented as a vertical list:

                    + +
                    + Yes + No + Maybe +
                    + +

                    By adding the data-type="horizontal" attribute to the controlgroup container, you can swap to a horizontal-style group that floats the buttons side-by-side and sets the width to only be large enough to fit the content. (Be aware that these will wrap to multiple lines if the number of buttons or the overall text length is too wide for the screen.) + +

                    Horizontal grouped buttons:

                    +
                    + Yes + No + Maybe +
                    + +

                    Mini horizontal grouped buttons by adding data-mini="true to the controlgroup:

                    +
                    + Yes + No + Maybe +
                    + +

                    Horizontal grouped buttons with icons:

                    +
                    + Add + Delete +
                    + +

                    Mini horizontal grouped buttons with icons by adding data-mini="true to the controlgroup::

                    +
                    + Add + Delete +
                    + +

                    Horizontal grouped buttons, icon only:

                    +
                    + Up + Down + Delete +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-icons.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-icons.html new file mode 100644 index 0000000..f58205d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-icons.html @@ -0,0 +1,247 @@ + + + + + + jQuery Mobile Docs - Button icons + + + + + + + + + + +
                    + +
                    +

                    Button icons

                    + Home + Search +
                    + +
                    +
                    + +

                    Adding Icons to Buttons

                    +

                    The jQuery Mobile framework includes a selected set of icons most often needed for mobile apps. To minimize download size, jQuery Mobile includes a single white icon sprite, and automatically adds a semi-transparent black circle behind the icon to ensure that it has good contrast on any background color.

                    + + +

                    An icon can be added to a button by adding a data-icon attribute on the anchor specifying the icon to display. For example, the following markup:

                    + + + <a href="index.html" data-role="button" data-icon="delete">Delete</a> + + +

                    Creates this button with an icon:

                    + Delete + +

                    A more compact button with the data-inline="true" attribute added to the button:

                    + Delete + +

                    Icon set

                    + +

                    The following data-icon attributes can be referenced to create the icons shown below:

                    + +

                    Left arrow - data-icon="arrow-l"

                    + My button +

                    Right arrow - data-icon="arrow-r"

                    + My button +

                    Up arrow - data-icon="arrow-u"

                    + My button +

                    Down arrow - data-icon="arrow-d"

                    + My button +

                    Delete - data-icon="delete"

                    + My button +

                    Plus - data-icon="plus"

                    + My button +

                    Minus - data-icon="minus"

                    + My button +

                    Check - data-icon="check"

                    + My button +

                    Gear - data-icon="gear"

                    + My button +

                    Refresh - data-icon="refresh"

                    + My button +

                    Forward - data-icon="forward"

                    + My button +

                    Back - data-icon="back"

                    + My button +

                    Grid - data-icon="grid"

                    + My button +

                    Star - data-icon="star"

                    + My button +

                    Alert - data-icon="alert"

                    + My button +

                    Info - data-icon="info"

                    + My button +

                    Home - data-icon="home"

                    + My button +

                    Search - data-icon="search"

                    + My button + + +

                    Icon positioning

                    +

                    By default, all icons in buttons are placed to the left of the button text.

                    + Delete + +

                    This default may be overridden using the data-iconpos attribute to set the icon to the right, above (top) or below (bottom) the text. For example, the markup:

                    + + +<a href="index.html" data-role="button" data-icon="delete" data-iconpos="right">Delete</a> + + +

                    Creates this button with right-aligned icon:

                    + Delete + +

                    Icons can also be positioned above the text by specifying data-iconpos="top"

                    + Delete + +

                    Or icons can also be positioned below the text by specifying data-iconpos="bottom"

                    + Delete + +

                    You can also create an icon-only button, by setting the data-iconpos attribute to notext. The button plugin will hide the text on-screen, but add it as a title attribute on the link to provide context for screen readers and devices that support tooltips. For example, replacing data-iconpos="right" on the previous example with data-iconpos="notext":

                    + + +<a href="index.html" data-role="button" data-icon="delete" data-iconpos="notext">Delete</a> + + +

                    Creates this icon-only button:

                    + Delete + + + +

                    Mini & Inline

                    +

                    The mini and inline attributes can be added to produce more compact buttons:

                    + Delete + Delete + Delete + Delete + Delete + + +

                    Custom Icons

                    +

                    To use custom icons, specify a data-icon value that has a unique name like myapp-email and the button plugin will generate a class by prefixing ui-icon- to the data-icon value and apply it to the button: ui-icon-myapp-email.

                    +

                    You can then write a CSS rule in your stylesheet that targets the ui-icon-myapp-email class to specify the icon background source. To maintain visual consistency with the rest of the icons, create a white icon 18x18 pixels saved as a PNG-8 with alpha transparency.

                    +

                    In this example, we're just pointing to a standalone icon image, but you could just as easily use an icon sprite and specify the positioning instead, just like the icon sprite we use in the framework.

                    + +
                    .ui-icon-myapp-email {
                    +	background-image: url("app-icon-email.png");
                    +}
                    + +

                    This will create the standard resolution icon, but many devices now have very high resolution displays, like the retina display on the iPhone 4. To add a HD icon, create an icon that is 36x36 pixels (exactly double the 18 pixel size), and add second rule that uses the -webkit-min-device-pixel-ratio: 2 media query to target a rule only to high resolution displays. Specify the background image for the HD icon file and set the background size to 18x18 pixels which will fit the 36 pixel icon into the same 18 pixel space. The media query block can wrap multiple icon rules:

                    +
                    
                    +@media only screen and (-webkit-min-device-pixel-ratio: 2) {
                    +	.ui-icon-myapp-email {
                    +		background-image: url("app-icon-email-highres.png");
                    +		background-size: 18px 18px;
                    +	}
                    +	...more HD icon rules go here...
                    +}
                    +
                    + +

                    Icons and themes

                    +

                    The semi-transparent black circle behind the white icon ensures good contrast on any background color so it works well with the jQuery Mobile theming system. Here are examples of the same icons sitting on top of a range of different color swatches with themed buttons.

                    + + +

                    Swatch "A" themed buttons

                    + + + +

                    Swatch "B" themed buttons

                    + + + +

                    Swatch "C" themed buttons

                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-inline.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-inline.html new file mode 100644 index 0000000..8e6d62a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-inline.html @@ -0,0 +1,99 @@ + + + + + + jQuery Mobile Docs - Inline buttons + + + + + + + + + + +
                    + +
                    +

                    Inline buttons

                    + Home + Search +
                    + +
                    +
                    +

                    Inline buttons

                    +

                    By default, all buttons in the body content are styled as block-level element so they fill the width of the screen:

                    + + Button + + +

                    However, if you want a more compact button that is only as wide as the text and icons inside, add the data-inline="true" attribute to the button:

                    + + + Button + +

                    If you have multiple buttons that should sit side-by-side on the same line, add the data-inline="true" attribute to each button. This will style the buttons to be the width of their content and float the buttons so they sit on the same line.

                    + +
                    
                    +<a href="index.html" data-role="button" data-inline="true">Cancel</a>
                    +<a href="index.html" data-role="button" data-inline="true" data-theme="b">Save</a>
                    +
                    + +

                    The result is this:

                    + + Cancel + Save + +

                    Adding the data-mini="true" to the inline buttons creates a more compact version:

                    + + Cancel + Save + + +

                    If you want buttons to sit side-by-side but stretch to fill the width of the screen, you can use the content column grids to put normal full-width buttons into 2- or 3-columns.

                    + +

                    Icon example

                    +

                    When an icon is added to an inline button, the button will grow wider to accommodate the icon:

                    + + Cancel + Save + +

                    A mini version of the same:

                    + + Cancel + Save + +

                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-methods.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-methods.html new file mode 100644 index 0000000..6ef4a06 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-methods.html @@ -0,0 +1,98 @@ + + + + + + jQuery Mobile Docs - Button methods + + + + + + + + + + +
                    + +
                    +

                    Button basics

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Button basics

                    + + + +

                    The following methods apply only to form buttons. Link-based buttons do not have any associated methods.

                    + +
                    + +
                    enable enable a disabled form button
                    +
                    +
                    
                    +$('[type='submit']').button('enable');			
                    +				
                    +
                    + +
                    disable disable a form button
                    +
                    +
                    
                    +$('[type='submit']').button('disable');			
                    +				
                    +
                    + +
                    refresh update the form button
                    +
                    +

                    If you manipulate a form button via JavaScript, you must call the refresh method on it to update the visual styling.

                    + +
                    		
                    +$('[type='submit']').button('refresh');
                    +				
                    +
                    + +
                    + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-options.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-options.html new file mode 100644 index 0000000..f0754cd --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-options.html @@ -0,0 +1,153 @@ + + + + + + jQuery Mobile Docs - Button options + + + + + + + + + + +
                    + +
                    +

                    Button basics

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Button basics

                    + + + +

                    The following options apply to all buttons:

                    + +
                    +
                    corners boolean
                    +
                    +

                    default: true

                    +

                    Applies the theme button border-radius if set to true. This option is also exposed as a data attribute: data-corners="false"

                    +
                    $('a').buttonMarkup({ corners: "false" });
                    + No rounded corners +
                    +
                    icon string
                    +
                    +

                    default: null

                    +

                    Applies an icon from the icon set. This option is also exposed as a data attribute: data-icon="star"

                    +
                    $('a').buttonMarkup({ icon: "star" });
                    + Star icon +
                    + +
                    iconpos string
                    +
                    +

                    default: "left"

                    +

                    Positions the icon in the button. Possible values: left, right, top, bottom, none, notext. The notext value will display an icon-only button with no text feedback. This option is also exposed as a data attribute: data-iconpos="left"

                    +
                    $('a').buttonMarkup({ iconpos: "right" });
                    + Star icon +
                    + +
                    iconshadow boolean
                    +
                    +

                    default: true

                    +

                    Applies the theme shadow to the button's icon if set to true. This option is also exposed as a data attribute: data-iconshadow="false"

                    +
                    $('a').buttonMarkup({ iconshadow: "false" });
                    + No icon shadow +
                    + +
                    inline boolean
                    +
                    +

                    default: null (false)

                    +

                    If set to true, this will make the button act like an inline button so the width is determined by the button's text. By default, this is null (false) so the button is full width, regardless of the feedback content. Possible values: true, false. This option is also exposed as a data attribute: data-inline="true"

                    +
                    $('a').buttonMarkup({ inline: "true" });
                    + Inline +
                    + +
                    mini boolean
                    +
                    +

                    default: null (false)

                    +

                    If set to true, this will display a more compact version of the button that uses less vertical height. Possible values: true, false. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $('a').buttonMarkup({ mini: "true" });
                    + Inline +
                    + +
                    shadow boolean
                    +
                    +

                    default: true

                    +

                    Applies the drop shadow style to the button if set to true. This option is also exposed as a data attribute: data-shadow="false"

                    +
                    $('a').buttonMarkup({ shadow: "false" });
                    + No button shadow +
                    + +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $('a').buttonMarkup({ theme: "a" });
                    + Theme A +
                    +
                    + +
                    +

                    The following option applies only to form buttons, which are automatically initialized by the framework:

                    +
                    + +
                    +
                    initSelector CSS selector string
                    +
                    +

                    default: "button, [type='button'], [type='submit'], [type='reset'], [type='image']"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as form buttons. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +   $.mobile.button.prototype.options.initSelector = ".myButtons";
                    +});
                    +
                    +
                    +
                    + + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-themes.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-themes.html new file mode 100644 index 0000000..0c11ef4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-themes.html @@ -0,0 +1,130 @@ + + + + + + jQuery Mobile Docs - Theming buttons + + + + + + + + + + +
                    + +
                    +

                    Theming buttons

                    + Home + Search +
                    + +
                    +
                    + +

                    Theming buttons

                    + +

                    jQuery Mobile has a rich theming system that gives you full control of how buttons are styled. When a link is added to a container, it is automatically assigned a theme swatch letter that matches its parent bar or content box to visually integrate the button into the parent container, like a chameleon. So a button placed inside a content container with a theme of "a" (black in the default theme) will be automatically assigned the button theme of "a" (charcoal in the default theme). Here are examples of the button theme pairings in the default theme. All buttons have the same HTML markup:

                    + +

                    A swatch

                    Button
                    +

                    B swatch

                    Button
                    +

                    C swatch

                    Button
                    +

                    D swatch

                    Button
                    +

                    E swatch

                    Button
                    + +

                    Assigning theme swatches

                    +

                    Buttons can be manually assigned any of the button color swatches from the theme to add visual contrast with the container they sit inside by adding the data-theme attribute on the button markup and specifying a swatch letter.

                    + +
                    			
                    +<a href="index.html" data-role="button" data-theme="a">Theme a</a>			
                    +
                    + +

                    Here are 5 buttons with icons that have a different swatch letter assigned via the data-theme attribute.

                    + + Theme a + Theme b + Theme c + Theme d + Theme e + +

                    Theme variations

                    + +

                    "a" theme on container with themed buttons inside

                    + + +

                    "b" theme on container with themed buttons inside

                    + + +

                    "c" theme on container with themed buttons inside

                    + + +

                    "d" theme on container with themed buttons inside

                    + + +

                    "e" theme on container with themed buttons inside

                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-types.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-types.html new file mode 100644 index 0000000..b74a2a9 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/buttons-types.html @@ -0,0 +1,119 @@ + + + + + + jQuery Mobile Docs - Button types + + + + + + + + + + +
                    + +
                    +

                    Button basics

                    + Home + Search +
                    + +
                    +
                    + +

                    Button basics

                    + + + + +

                    Buttons are coded with standard HTML anchor and input elements, then enhanced by jQuery Mobile to make them more attractive and useable on a mobile device. Use anchor links (a elements) to mark up navigation buttons, and input or button elements for form submission.

                    +

                    View the data- attribute reference to see all the possible attributes for buttons including adding icons or displaying them inline or grouped.

                    + +

                    Styling links as buttons

                    + +

                    In the main content block of a page, you can style any anchor link as a button by adding the data-role="button" attribute. The framework will enhance the link with markup and classes to style the link as a button. For example, this markup:

                    + + +<a href="index.html" data-role="button">Link button</a> + + +

                    Produces this link-based button:

                    + Link button + +

                    Note: Links styled like buttons have all the same visual options as true form-based buttons below, but there are a few important differences. Link-based buttons aren't part of the button plugin and only just use the underlying buttonMarkup plugin to generate the button styles so the form button methods (enable, disable, refresh) aren't supported. If you need to disable a link-based button (or any element), it's possible to apply the disabled class ui-disabled yourself with JavaScript to achieve the same effect.

                    + +

                    Mini size

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the button to create a mini version.

                    + +
                    	
                    +<a href="index.html" data-role="button" data-mini="true">Link button</a>
                    +
                    + +

                    This will produce a search input that a not as tall as the standard version and has a smaller text size.

                    + Link button + + + +

                    Form buttons

                    +

                    For ease of styling, the framework automatically converts any button or input element with a type of submit, reset, button, or image into a custom styled button — there is no need to add the data-role="button" attribute. However, if needed, you can directly call the button plugin on any selector, just like any jQuery plugin:

                    + + +$('[type='submit']').button(); + + +

                    To preserve events bound to the original button or input, the framework hides the original element by making it transparent and positioning it over the new button markup. When a user clicks on the the custom-styled button, they're actually clicking on the original element. To prevent a form button from being converted into an enhanced button, add the data-role="none" attribute and hte native control will be rendered.

                    + +

                    Button based button:

                    + + +

                    Input type="button" based button:

                    + + +

                    Input type="submit" based button:

                    + + +

                    Input type="reset" based button:

                    + + +

                    Input type="image" based button:

                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/buttons/index.html b/libs/js/jquery-mobile-1.1.0/docs/buttons/index.html new file mode 100644 index 0000000..5453ead --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/buttons/index.html @@ -0,0 +1,43 @@ + + + + + + jQuery Mobile Docs - Buttons + + + + + + + + + + +
                    + +
                    +

                    Buttons

                    + Home + Search +
                    + +
                    +

                    Buttons are core widgets in jQuery Mobile, and are used within a wide range of other plugins.

                    + + +
                    +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/dialogTransition.html b/libs/js/jquery-mobile-1.1.0/docs/config/dialogTransition.html new file mode 100644 index 0000000..971f6ef --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/dialogTransition.html @@ -0,0 +1,44 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    defaultDialogTransition is now "flip"

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + Or open a basic dialog + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/iOSFullscreen.html b/libs/js/jquery-mobile-1.1.0/docs/config/iOSFullscreen.html new file mode 100644 index 0000000..ba8fb85 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/iOSFullscreen.html @@ -0,0 +1,50 @@ + + + + + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + + +
                    + +
                    +

                    jQuery Mobile

                    + Home + Search +
                    + +
                    + +

                    Fullscreen docs in iOS

                    +

                    First, hit Add to Home Screen to create a new shortcut icon on the home screen. Next, open the new shortcut and hit the button below to browse the docs as a fullscreen web app.

                    + Browse docs + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/index.html b/libs/js/jquery-mobile-1.1.0/docs/config/index.html new file mode 100644 index 0000000..529879e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/index.html @@ -0,0 +1,86 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/jq17b1.html b/libs/js/jquery-mobile-1.1.0/docs/config/jq17b1.html new file mode 100644 index 0000000..0c68342 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/jq17b1.html @@ -0,0 +1,37 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + +
                    + +
                    +

                    jQuery version

                    + Home + Search +
                    + +
                    + +

                    jQuery core version 1.7 Beta 1

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/loadingMessage.html b/libs/js/jquery-mobile-1.1.0/docs/config/loadingMessage.html new file mode 100644 index 0000000..4a7e769 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/loadingMessage.html @@ -0,0 +1,43 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    loadingMessage is now disabled

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/loadingMessageTextVisible.html b/libs/js/jquery-mobile-1.1.0/docs/config/loadingMessageTextVisible.html new file mode 100644 index 0000000..0373212 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/loadingMessageTextVisible.html @@ -0,0 +1,84 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + +
                    + + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    loadingMessage text is now visible

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + +

                    To display the loading message on demand:

                    +
                    $.mobile.showPageLoadingMsg();
                    +

                    Click the buttons below to show and hide the loading message with the default options.

                    +
                    + + +
                    + +

                    Theming the loading message

                    +

                    To display the loading message with a different theme and message:

                    +
                    $.mobile.showPageLoadingMsg("a", "Loading theme a...");
                    +

                    The theme and message can be changed on the fly by calling the method again. Click the buttons below to see the loading message with the indicated theme.

                    +
                    + + + + + + +
                    + +

                    Text only messages

                    +

                    To display the loading message with no spinner:

                    +
                    $.mobile.showPageLoadingMsg("a", "No spinner", true);
                    +

                    Click the button below to see the loading message with no spinner.

                    +
                    + + +
                    + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/minScrollBack.html b/libs/js/jquery-mobile-1.1.0/docs/config/minScrollBack.html new file mode 100644 index 0000000..44d580f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/minScrollBack.html @@ -0,0 +1,43 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    minScrollBack is now set to 999 (disabled)

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/pageLoadErrorMessage.html b/libs/js/jquery-mobile-1.1.0/docs/config/pageLoadErrorMessage.html new file mode 100644 index 0000000..116724b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/pageLoadErrorMessage.html @@ -0,0 +1,45 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    pageLoadErrorMessage is now "Yikes, we broke the internet!"

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + Or try this broken link + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/pageTransition.html b/libs/js/jquery-mobile-1.1.0/docs/config/pageTransition.html new file mode 100644 index 0000000..aa0d849 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/pageTransition.html @@ -0,0 +1,43 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    defaultPageTransition is now "flow"

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/pushState.html b/libs/js/jquery-mobile-1.1.0/docs/config/pushState.html new file mode 100644 index 0000000..58e68ce --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/pushState.html @@ -0,0 +1,44 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    pushStateEnabled is now disabled

                    +

                    To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/config/touchOverflow.html b/libs/js/jquery-mobile-1.1.0/docs/config/touchOverflow.html new file mode 100644 index 0000000..1474ac0 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/config/touchOverflow.html @@ -0,0 +1,51 @@ + + + + + + jQuery Mobile Docs - Configuration + + + + + + + + + + + + + + +
                    + +
                    +

                    Config applied

                    + Home + Search +
                    + +
                    + +

                    touchOverflowEnabled is now active

                    +

                    The toolbar on this page should now be fixed, like a native toolbar. To test, hit the button below and browse the docs. Note that if a link causes a refresh, this setting will be lost and the default settings will be seen.

                    + Browse docs + touchOverflow docs + +

                    Some good pages to test out:

                    + Fixed toolbars + Fullscreen toolbars + Fixed persistent footer + Dialogs & transitions + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/api-content.html b/libs/js/jquery-mobile-1.1.0/docs/content/api-content.html new file mode 100644 index 0000000..9b049ad --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/api-content.html @@ -0,0 +1,42 @@ + + + + + + jQuery Mobile Docs - Content formatting + + + + + + + + + +
                    + +
                    +

                    Content formatting API

                    +
                    + +
                    + +

                    Dependencies

                    +

                    To be documented

                    + +

                    Options

                    +

                    To be documented

                    + +

                    Methods

                    +

                    To be documented

                    + +

                    Known Issues

                    +

                    To be documented

                    + + + +
                    +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-events.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-events.html new file mode 100644 index 0000000..cb88093 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-events.html @@ -0,0 +1,109 @@ + + + + + + jQuery Mobile Docs - Collapsible Content + + + + + + + + + + +
                    + +
                    +

                    Collapsible

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible content

                    + + + +

                    Bind events directly to the container, typically a div element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                    
                    +$( ".selector" ).bind( "collapse", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The collapsible plugin has the following custom events:

                    + +
                    + +
                    create triggered when a collapsible is created
                    +
                    + +
                    
                    +$( ".selector" ).collapsible({
                    +   create: function(event, ui) { ... }
                    +});
                    +			
                    +
                    + +
                    collapse triggered when a collapsible is collapsed
                    +
                    + +
                    
                    +$( ".selector" ).collapsible({
                    +   collapse: function(event, ui) { ... }
                    +});
                    +			
                    +
                    + +
                    expand triggered when a collapsible is expanded
                    +
                    + +
                    
                    +$( ".selector" ).collapsible({
                    +   expand: function(event, ui) { ... }
                    +});
                    +			
                    +
                    + +
                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-methods.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-methods.html new file mode 100644 index 0000000..f37e7b1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-methods.html @@ -0,0 +1,67 @@ + + + + + + jQuery Mobile Docs - Collapsible Content + + + + + + + + + + +
                    + +
                    +

                    Collapsible

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible content

                    + + + +

                    The collapsible plugin has no public methods.

                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-options.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-options.html new file mode 100644 index 0000000..a4dac07 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-options.html @@ -0,0 +1,178 @@ + + + + + + jQuery Mobile Docs - Collapsible Content + + + + + + + + + + +
                    + +
                    +

                    Collapsible

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible content

                    + + + +

                    The collapsible plugin has the following options:

                    + +
                    +
                    collapsed boolean
                    +
                    +

                    default: true

                    +

                    When false, the container is initially expanded with a minus icon in the header. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.collapsed = false;
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-collapsed="false".

                    +
                    + +
                    collapseCueText string
                    +
                    +

                    default: " click to collapse contents"

                    +

                    This text is used to provide audible feedback for users with screen reader software. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.collapseCueText = " collapse with a click";
                    +});
                    +
                    +
                    + +
                    contentTheme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for the collapsible content block. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.contentTheme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-content-theme="a".

                    +
                    + +
                    expandCueText string
                    +
                    +

                    default: " click to expand contents"

                    +

                    This text is used to provide audible feedback for users with screen reader software. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.expandCueText = " expand with a click";
                    +});
                    +
                    +
                    + +
                    heading string
                    +
                    +

                    default: "h1,h2,h3,h4,h5,h6,legend"

                    +

                    Within the collapsible container, the first immediate child element that matches this selector will be used as the header for the collapsible. To change the selector, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.heading = ".mycollapsibleheading";
                    +});
                    +
                    +
                    + +
                    iconpos string
                    +
                    +

                    default: "left"

                    +

                    Positions the icon in the collapsible header. Possible values: left, right, top, bottom, none, notext.

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.iconpos = "right";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-iconpos="right".

                    +
                    + + + +
                    initSelector CSS selector string
                    +
                    +

                    default: ":jqmData(role='collapsible')"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as collapsibles. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.initSelector = ".mycollapsible";
                    +});
                    +
                    +
                    + +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. If the value is false for an individual collapsible container, but that container is part of a collapsible set, then the value is inherited from the parent collapsible set. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.mini = true;
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-mini="true".

                    +
                    +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for the collapsible. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsible.prototype.options.theme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-theme="a".

                    +
                    + + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-events.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-events.html new file mode 100644 index 0000000..ad0a542 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-events.html @@ -0,0 +1,89 @@ + + + + + + jQuery Mobile Docs - Collapsible Content + + + + + + + + + + +
                    + +
                    +

                    Collapsible set

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible sets

                    + + + +

                    Bind events directly to the set container, typically a div element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                    
                    +$( ".selector" ).bind( "create", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The collapsible set plugin has the following custom event:

                    + +
                    + +
                    create triggered when a collapsible set is created
                    +
                    + +
                    
                    +$( ".selector" ).collapsibleset({
                    +   create: function(event, ui) { ... }
                    +});
                    +			
                    +
                    + +
                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-methods.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-methods.html new file mode 100644 index 0000000..0ff8095 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-methods.html @@ -0,0 +1,80 @@ + + + + + + jQuery Mobile Docs - Collapsible Sets + + + + + + + + + + +
                    + +
                    +

                    Collapsible set

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible sets

                    + + + +

                    The collapsible set plugin has the following method:

                    + +
                    +
                    refresh update the collapsible set
                    +
                    +

                    If you manipulate a collapsible set via JavaScript (e.g. add new collapsible containers), you must call the refresh method on it to update the visual styling.

                    + +
                    
                    +$('.selector').collapsibleset('refresh');
                    +				
                    +
                    + +
                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-options.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-options.html new file mode 100644 index 0000000..26f4bda --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set-options.html @@ -0,0 +1,112 @@ + + + + + + jQuery Mobile Docs - Collapsible Sets + + + + + + + + + + +
                    + +
                    +

                    Collapsible set

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible sets

                    + + + +

                    The collapsible plugin has the following options:

                    + +
                    +
                    iconpos string
                    +
                    +

                    default: "left"

                    +

                    Positions the icons in the collapsible headers. Possible values: left, right, top, bottom, none, notext.

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsibleset.prototype.options.iconpos = "right";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-iconpos="right".

                    +
                    + +
                    initSelector CSS selector string
                    +
                    +

                    default: ":jqmData(role='collapsible-set')"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as collapsible sets. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsibleset.prototype.options.initSelector = ".mycollapsibleset";
                    +});
                    +
                    +
                    + +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsibleset.prototype.options.mini = true;
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-mini="true".

                    +
                    +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for the collapsible set. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.collapsibleset.prototype.options.theme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-theme="a".

                    +
                    + +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set.html new file mode 100644 index 0000000..7481b2e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible-set.html @@ -0,0 +1,198 @@ + + + + + + jQuery Mobile Docs - Collapsible Content + + + + + + + + + + +
                    + +
                    +

                    Collapsible set

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible set (accordion)

                    + + + +

                    Collapsible sets start with the exact same markup as individual collapsibles. By adding a parent wrapper with a data-role="collapsible-set" attribute around a number of collapsibles, the framework will style these to looks like a visually grouped widget and make it behave like an accordion so only one section can be open at a time. View the data- attribute reference to see all the possible attributes you can add to collapsible sets.

                    +

                    By default, all the sections will be collapsed. To set a section to be open when the page loads, add the data-collapsed="false" attribute to the heading of the section you want expanded.

                    + +
                    		
                    +<div data-role="collapsible-set">
                    +
                    +	<div data-role="collapsible" data-collapsed="false">
                    +	<h3>Section 1</h3>
                    +	<p>I'm the collapsible set content for section B.</p>
                    +	</div>
                    +	
                    +	<div data-role="collapsible">
                    +	<h3>Section 2</h3>
                    +	<p>I'm the collapsible set content for section B.</p>
                    +	</div>
                    +	
                    +</div>
                    +	
                    + + +

                    Here is an example of a collapsible set with 5 sections.

                    + +
                    +
                    +

                    Section 1

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm open by default because I have the data-collapsed="false" attribute.

                    +
                    +
                    +

                    Section 2

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section 3

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section 4

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section 5

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    + +

                    Mini collapsible sets

                    + +

                    For a more compact version that is useful in tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    +
                    +

                    Section 1

                    +

                    Collapsible content

                    +
                    +
                    +

                    Section 2

                    +

                    Collapsible content

                    + +
                    +
                    +

                    Section 3

                    +

                    Collapsible content

                    +
                    +
                    + +

                    Icon positioning

                    +

                    Collapsible headings’ default icon positioing can be overridden by using the data-iconpos attribute, either at the collapsible-set level or on an individual collapsible basis.

                    + +
                    +
                    +

                    Section 1

                    +

                    Inherits icon positioning from data-iconpos="right" attribute on parent.

                    +
                    +
                    +

                    Section 2

                    +

                    data-iconpos="left"

                    +
                    +
                    +

                    Section 3

                    +

                    data-iconpos="bottom"

                    +
                    +
                    +

                    Section 4

                    +

                    data-iconpos="top"

                    +
                    +
                    + + + +

                    Theming collapsible content

                    +

                    The standard data-theme attribute can be used to set the color of each collapsible in a set. To provide a clearer visual grouping of the content with the headers, add the data-content-theme attribute with a swatch letter. This adds a themed background color and border to the content block. For consistent theming, add these attributes to the parent collapsible set.

                    + + +
                    		
                    +<div data-role="collapsible-set" data-theme="c" data-content-theme="d">
                    +
                    + + +
                    +
                    +

                    Section 1

                    +

                    Collapsible content

                    +
                    +
                    +

                    Section 2

                    +

                    Collapsible content

                    + +
                    +
                    +

                    Section 3

                    +

                    Collapsible content

                    +
                    +
                    + +

                    Theming individual sections

                    +

                    To have individual sections in a group styled differently, add data-theme and data-content-theme attributes to specific collapsibles.

                    + +
                    +
                    +

                    Section header, swatch B

                    +

                    Collapsible content, swatch B

                    +
                    +
                    +

                    Section header, swatch A

                    +

                    Collapsible content, swatch A

                    +
                    +
                    +

                    Section header, swatch E

                    +

                    Collapsible content, swatch D

                    +
                    +
                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible.html new file mode 100644 index 0000000..02379f4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-collapsible.html @@ -0,0 +1,226 @@ + + + + + + jQuery Mobile Docs - Collapsible Content + + + + + + + + + + +
                    + +
                    +

                    Collapsible

                    + Home + Search +
                    + +
                    +
                    +

                    Collapsible content

                    + + + +

                    To create a collapsible block of content, create a container and add the data-role="collapsible" attribute. Using data-content-theme attribute allows you to set a theme for the content of the collapsible. View the data- attribute reference to see all the possible attributes you can add to collapsibles.

                    + +

                    Directly inside this container, add any header element (H1-H6). The framework will style the header to look like a clickable button and add a "+" icon to the left to indicate it's expandable.

                    + +

                    After the header, add any HTML markup you want to be collapsible. The framework will wrap this markup in a container that will be hidden/shown when the heading is clicked.

                    + +

                    By default, the content will be collapsed.

                    +
                    		
                    +<div data-role="collapsible">
                    +   <h3>I'm a header</h3>
                    +   <p>I'm the collapsible content. By default I'm closed, but you can click the header to open me.</p>
                    +</div>
                    +
                    + + +
                    +

                    I'm a header

                    +

                    I'm the collapsible content. By default I'm closed, but you can click the header to open me.

                    +
                    + +

                    Expanding collapsibles on load

                    + +

                    To expand the content when the page loads, add the data-collapsed="false" attribute to the wrapper.

                    + + +<div data-role="collapsible" data-collapsed="false"> + + +

                    This code will create a collapsible widget like this:

                    + + +
                    +

                    I'm a header

                    +

                    I'm the collapsible content. I'm expanded by default because I have the "collapsed" state set to false.

                    +
                    + +

                    Mini collapsibles

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + + + <div data-role="collapsible" data-mini="true"> + + +

                    This code will create a mini collapsible widget:

                    + +
                    +

                    I'm a mini header

                    +

                    I'm the collapsible content. I'm expanded by default because I have the "collapsed" state set to false.

                    +
                    + +

                    Icon positioning

                    +

                    Collapsible headings’ default icon positioing can be overridden by using the data-iconpos attribute. In the below case, data-iconpos="right".

                    + +
                    +

                    I'm a header

                    +

                    data-iconpos="right"

                    +
                    + + +

                    Theming collapsible content

                    + + +

                    Collapsible content is minimally styled — we add only a bit of margin between the bar and content, and the header adopts the default Theme styles of the container it sits within.

                    + +

                    To provide a stronger visual connection between the collapsible header and content, add the data-content-theme attribute to the wrapper and specify a theme swatch letter. This will apply the swatch's border and flat background color (not the gradient) to the content block and changes the corner rounding to square off the bottom of the header and round the bottom of the content block instead to visually group these elements.

                    + +
                    		
                    +<div data-role="collapsible" data-content-theme="c">
                    +   <h3>Header swatch A</h3>
                    +   <p>I'm the collapsible content with a themed content block set to "C".</p>
                    +</div>
                    +
                    + +
                    +

                    Header swatch

                    +

                    I'm the collapsible content with a themed content block set to "C".

                    +
                    + +

                    Theming collapsible headers

                    +

                    To set the theme on a collapsible header button, add the data-theme attribute to the wrapper and specify a swatch letter. Note that you can mix and match swatch letters between the header and content with these theme attributes.

                    + +
                    		
                    +<div data-role="collapsible" data-theme="a" data-content-theme="a">
                    +   <h3>Header swatch A</h3>
                    +   <p>I'm the collapsible content with a themed content block set to "A".</p>
                    +</div>
                    +
                    + +
                    +

                    Header swatch A

                    +

                    I'm the collapsible content with a themed content block set to "A".

                    +
                    + + + +
                    +

                    Header swatch B

                    +

                    I'm the collapsible content with a themed content block set to "D".

                    +
                    + + + +

                    Nested Collapsibles

                    + +

                    Collapsibles can be nested inside each other if needed. In this example, we're setting the content theme to provide clearer visual connection between the levels.

                    +
                    +

                    I'm a header

                    +

                    I'm the collapsible content. By default I'm open and displayed on the page, but you can click the header to hide me.

                    + +
                    +

                    I'm a nested collapsible with a child collapsible

                    +

                    I'm a child collapsible.

                    +
                    +

                    Nested inside again.

                    +

                    Three levels deep now.

                    +
                    +
                    + + +
                    +

                    Section 3: Form elements

                    +
                    +
                    + + +
                    +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +

                    Section 4: Collapsed list

                    +

                    Here is an inset list:

                    + +
                    +
                    + + + +

                    Collapsible sets (accordions)

                    +

                    It's possible to combine multiple collapsibles into a grouped sets that acts like an accordion widget.

                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-grids.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-grids.html new file mode 100644 index 0000000..0ebb3fa --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-grids.html @@ -0,0 +1,193 @@ + + + + + + jQuery Mobile Docs - Content Grids + + + + + + + + + + +
                    + +
                    +

                    Layout grids

                    + Home + Search +
                    + +
                    +
                    + +

                    Using multiple column layouts isn't generally recommended on a mobile device because of the narrow screen width, but there are times where you may need to place small elements side-by-side (like buttons or navigation tabs, for example).

                    + +

                    The jQuery Mobile framework provides a simple way to build CSS-based columns through a block style class convention called ui-grid.

                    + +

                    There are four preset configurations layouts that can be used in any situation that requires columns:

                    +
                      +
                    • two-column (using the ui-grid-a class)
                    • +
                    • three-column (using the ui-grid-b class)
                    • +
                    • four-column (using the ui-grid-c class)
                    • +
                    • five-column (using the ui-grid-d class)
                    • +
                    + +

                    Grids are 100% width, completely invisible (no borders or backgrounds) and don't have padding or margins, so they shouldn't interfere with the styles of elements placed inside them.

                    +

                    Within the grid container, child elements are assigned ui-block-a/b/c/d in a sequential manner which makes each "block" element float side-by-side, forming the grid. The ui-block-a class essentially clears the floats which will start a new line (see multiple row grids, below).

                    + +

                    Two column grids

                    +

                    To build a two-column (50/50%) layout, start with a container with a class of ui-grid-a, and add two child containers inside it classed with ui-block-a for the first column and ui-block-b for the second:

                    + +
                    
                    +<div class="ui-grid-a">
                    +	<div class="ui-block-a"><strong>I'm Block A</strong> and text inside will wrap</div>
                    +	<div class="ui-block-b"><strong>I'm Block B</strong> and text inside will wrap</div>
                    +</div><!-- /grid-a -->
                    +
                    + + + +

                    The above markup produces the following content layout:

                    + +
                    +
                    I'm Block A and text inside will wrap.
                    +
                    I'm Block B and text inside will wrap.
                    +
                    + +

                    As you see above, by default grid blocks have no visual styling; they simply present content side-by-side.

                    + +

                    Grid classes can be applied to any container. In this next example, we add ui-grid-a to a fieldset, and apply the ui-block classes to the two buttons inside to stretch them each to 50% of the screen width:

                    + +
                    
                    +<fieldset class="ui-grid-a">
                    +	<div class="ui-block-a"><button type="submit" data-theme="c">Cancel</button></div>
                    +	<div class="ui-block-b"><button type="submit" data-theme="b">Submit</button></div>	   
                    +</fieldset>
                    +
                    + +
                    +
                    +
                    +
                    + + +

                    Theme classes (not data-theme attributes) from the theming system can be added to an element, including grids. On the blocks below, we're adding two classes: ui-bar to add the default bar padding and ui-bar-e to apply the background gradient and font styling for the "e" toolbar theme swatch. For illustration purposes, an inline style="height:120px" attribute is also added to each grid to set each to a standard height.

                    + +
                    +
                    Block A
                    +
                    Block B
                    +
                    + +

                    Three-column grids

                    +

                    The other grid layout configuration uses class=ui-grid-b on the parent, and 3 child container elements, each with its respective ui-block-a/b/c class, to create a three-column layout (33/33/33%). Note: These blocks are also styled with theme classes so the grid layout is clearly visible.

                    + +
                    
                    +<div class="ui-grid-b">
                    +	<div class="ui-block-a">Block A</div>
                    +	<div class="ui-block-b">Block B</div>
                    +	<div class="ui-block-c">Block C</div>
                    +</div><!-- /grid-b -->
                    +
                    + +

                    This will produce a 33/33/33% grid for our content.

                    + +
                    +
                    Block A
                    +
                    Block B
                    +
                    Block C
                    +
                    + +

                    And an example of a 3 column grid with buttons inside:

                    + +
                    +
                    +
                    +
                    +
                    + +

                    Four-column grids

                    + +

                    A four-column, 25/25/25/25% grid is created by specifying class=ui-grid-c on the parent and adding a fourth block. Note: These blocks are also styled with theme classes so the grid layout is clearly visible.

                    + +
                    +
                    A
                    +
                    B
                    +
                    C
                    +
                    D
                    +
                    + +

                    Five-column grids

                    +

                    A five-column, 20/20/20/20/20% grid is created by specifying class=ui-grid-d on the parent and adding a fourth block. Note: These blocks are also styled with theme classes so the grid layout is clearly visible.

                    + +
                    +
                    A
                    +
                    B
                    +
                    C
                    +
                    D
                    +
                    E
                    +
                    + +

                    Multiple row grids

                    + +

                    Grids are designed to wrap to multiple rows of items. For example, if you specify a 3-column grid (ui-grid-b) on a container that has nine child blocks, it will wrap to 3 rows of 3 items each. There is a CSS rule to clear the floats and start a new line when the class=ui-block-a is seen so make sure to assign block classes in a repeating sequence (a, b, c, a, b, c, etc.) that maps to the grid type:

                    + +
                    +
                    A
                    +
                    B
                    +
                    C
                    +
                    A
                    +
                    B
                    +
                    C
                    +
                    A
                    +
                    B
                    +
                    C
                    +
                    + + +

                    Grids in toolbars

                    +

                    Grids are helpful for creating layouts within a toolbar. Here's a footer with a 3 column grid.

                    + +
                    +

                    Settings

                    +
                    +
                    +
                    +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-html.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-html.html new file mode 100644 index 0000000..9ad3b42 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-html.html @@ -0,0 +1,144 @@ + + + + + + jQuery Mobile Docs - HTML formatting + + + + + + + + + + +
                    + +
                    +

                    HTML Formatting

                    + Home + Search +
                    + +
                    +
                    + + + + + +

                    The default approach to styling content in jQuery Mobile is simple: Use a light hand. Our goal is to let the browser's native rendering take precedence; we add a bit of padding for more comfortable readability, and use the theming system to apply the font family and colors.

                    +

                    Taking a light hand with content styling gives designers and developers a clean slate to work with, instead of fighting against a lot of complex style overhead.

                    + +

                    Default HTML markup styling

                    +

                    By default, jQuery Mobile themes use standard HTML styles and sizes for standard markup elements like headers, paragraph content, block quotes, anchor links, standard ordered, unordered and definition lists, and tables — as shown in the examples below:

                    +
                    + +

                    H1 Heading

                    +

                    H2 Heading

                    +

                    H3 Heading

                    +

                    H4 Heading

                    +
                    H5 Heading
                    +
                    H6 Heading
                    + +

                    This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                    + +
                    How about some blockquote action with a cite
                    + +

                    This is another paragraph of text so you can see how HTML markup works in content. This is another paragraph of text so you can see how HTML markup works in content. This is another paragraph of text so you can see how HTML markup works in content.

                    + +

                    We add a few styles to tables and fieldsets to make them more legible, which are easily overridden with customs styles.

                    + +
                      +
                    • Unordered list item 1
                    • +
                    • Unordered list item 1
                    • +
                    • Unordered list item 1
                    • +
                    + +
                      +
                    1. Ordered list item 1
                    2. +
                    3. Ordered list item 1
                    4. +
                    5. Ordered list item 1
                    6. +
                    + +
                    +
                    Definition term
                    +
                    I'm the definition text
                    +
                    Definition term
                    +
                    I'm the definition text
                    +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    Travel Itinerary
                    Flight:From:To:
                    Total: 3 flights
                    JetBlue 983Boston (BOS)New York (JFK)
                    JetBlue 354San Francisco (SFO)Los Angeles (LAX)
                    JetBlue 465New York (JFK)Portland (PDX)
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/content-themes.html b/libs/js/jquery-mobile-1.1.0/docs/content/content-themes.html new file mode 100644 index 0000000..80fce68 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/content-themes.html @@ -0,0 +1,144 @@ + + + + + + jQuery Mobile Docs - Content Themes + + + + + + + + + + +
                    + +
                    +

                    Theming content

                    + Home + Search +
                    + +
                    +
                    +

                    Theming the content area

                    +

                    The main content area of a page (container with the data-role="content" attribute) should be themed by adding the data-theme attribute to the data-role="page" container to ensure that the background colors are applied to the full page, regardless of the content length. (If you add the data-theme attribute to the content container, the background color will stop after the content. So there may be a gap in color between the content and fixed footer.)

                    +

                    Additionally, the content area of a collapsible can be themed to match the theme of the collapsible header using the data-content-theme attribute.

                    + + +<div data-role="page" data-theme="a" data-content-theme="a"> + + +

                    Theming collapsible blocks

                    +

                    To set the color of the collapsible header, add the data-theme attribute to the collapsible container. The icon and body are not currently themable through data attributes, but can be styled directly with custom css.

                    + + +<div data-role="collapsible" data-collapsed="true" data-theme="a"> + +

                    Themed examples

                    + +

                    A theme swatch on content & collapsible

                    +
                    +

                    H1 Heading

                    +

                    This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                    +
                    +

                    I'm a themed collapsible

                    +

                    I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    +

                    I'm a themed collapsible with a themed content

                    +

                    I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    + +

                    B theme swatch on content & collapsible

                    +
                    +

                    H1 Heading

                    +

                    This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                    +
                    +

                    I'm a themed collapsible

                    +

                    I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    +

                    I'm a themed collapsible with a themed content

                    +

                    I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    + +

                    C theme swatch on content & collapsible

                    +
                    +

                    H1 Heading

                    +

                    This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                    +
                    +

                    I'm a themed collapsible

                    +

                    I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    +

                    I'm a themed collapsible with a themed content

                    +

                    I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    + +

                    D theme swatch on content & collapsible

                    +
                    +

                    H1 Heading

                    +

                    This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                    +
                    +

                    I'm a themed collapsible

                    +

                    I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    +

                    I'm a themed collapsible with a themed content

                    +

                    I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    + +

                    E theme swatch on content & collapsible

                    +
                    +

                    H1 Heading

                    +

                    This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.

                    +
                    +

                    I'm a themed collapsible

                    +

                    I have data-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    +

                    I'm a themed collapsible with a themed content

                    +

                    I have data-content-theme attribute set manually on my container to set the color to match the content block I'm in.

                    +
                    +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/content/index.html b/libs/js/jquery-mobile-1.1.0/docs/content/index.html new file mode 100644 index 0000000..1854e03 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/content/index.html @@ -0,0 +1,45 @@ + + + + + + jQuery Mobile Docs - Content formatting + + + + + + + + + + +
                    + +
                    +

                    Content formatting

                    + Home + Search +
                    + +
                    + +

                    The content of pages in jQuery Mobile is completely open-ended, but the jQuery Mobile framework provides a number of helpful tools and widgets — such as collapsible panels and multiple-column grid layouts — to make it easy to format your content for mobile devices.

                    + + + + + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/events.html new file mode 100644 index 0000000..388bc06 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/events.html @@ -0,0 +1,104 @@ + + + + + + jQuery Mobile Docs - Checkboxes + + + + + + + + + + +
                    + +
                    +

                    Checkboxes

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Checkboxes

                    + + + +

                    Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$("input[type='checkbox']").bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The checkbox plugin has the following custom events:

                    + +
                    + +
                    create triggered when a checkbox is created
                    +
                    + +
                    
                    +$("input[type='checkbox']").checkboxradio({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/index.html new file mode 100644 index 0000000..94a9b11 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/index.html @@ -0,0 +1,189 @@ + + + + + + jQuery Mobile Docs - Checkboxes + + + + + + + + + + +
                    + +
                    +

                    Checkboxes

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Checkboxes

                    + + + +

                    Checkboxes are used to provide a list of options where more than one can be selected. Traditional desktop checkboxes are not optimized for touch input so in jQuery Mobile, we style the label for the checkboxes so they are larger and look clickable. A custom set of icons are added to the label to provide additional visual feedback.

                    + +

                    Both the radio and checkbox controls below use standard input/label markup, but are styled to be more touch-friendly. The styled control you see is actually the label element, which sits over the real input, so if images fail to load, you'll still have a functional control. In most browsers, clicking the label automatically triggers a click on the input, but we've had to trigger the update manually for a few mobile browsers that don't do this natively. On the desktop, these controls are keyboard and screen-reader accessible. View the data- attribute reference to see all the possible attributes you can add to checkboxes.

                    + +

                    To create a single checkbox, add an input with a type="checkbox" attribute and a corresponding label. If the input isn’t wrapped in its corresponding label, be sure to set the for attribute of the label to match the ID of the input so they are semantically associated.

                    + +
                    	
                    +<label><input type="checkbox" name="checkbox-1" /> I agree </label>
                    +			
                    +<input type="checkbox" name="checkbox-0" id="checkbox-0" class="custom" />
                    +<label for="checkbox-0">I agree</label>
                    +		
                    + +

                    The above snippets will produce two basic checkboxes. The default styles will set the width of the element to 100% of the parent container.

                    + + + + + + + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    	
                    +<input type="checkbox" name="checkbox-0" id="checkbox-mini-0" class="custom" data-mini="true" />
                    +<label for="checkbox-mini-0">I agree</label>
                    +
                    + +

                    This will produce a select that is not as tall as the standard version and has a smaller text size.

                    + + + + +

                    Field containers & Legends

                    +

                    Because checkboxes use the label element for the text displayed next to the checkbox form element, we recommend wrapping the checkbox in a fieldset element that has a legend which acts as the title for the question. Add the data-role="controlgroup" attribute to the fieldset so it can be styled in a parallel way as text inputs, selects or other form elements.

                    + +

                    Wrap the fieldset in a div with data-role="fieldcontain" attribute so it can be styled in a parallel way as text inputs, selects or other form elements.

                    + + +
                    	
                    +<div data-role="fieldcontain">
                    +    <fieldset data-role="controlgroup">
                    +	   <legend>Agree to the terms:</legend>
                    +	   <input type="checkbox" name="checkbox-1" id="checkbox-1" class="custom" />
                    +	   <label for="checkbox-1">I agree</label>
                    +    </fieldset>
                    +</div>
                    +
                    + +
                    +
                    + Agree to the terms: + + +
                    +
                    + + + +

                    Vertically grouped checkboxes

                    + +

                    Typically, there are multiple checkboxes listed under a question title. To visually integrate multiple checkboxes into a grouped button set, the framework will automatically remove all margins between buttons and round only the top and bottom corners of the set if there is a data-role="controlgroup" attribute on the fie.

                    + +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    + +

                    Horizontal toggle sets

                    + +

                    Checkboxes can also be used for grouped button sets where more than one button can be selected at once, such as the bold, italic and underline button group seen in word processors. To make a horizontal button set, add the data-type="horizontal" to the fieldset.

                    + + +<fieldset data-role="controlgroup" data-type="horizontal"> + + +

                    The framework will float the labels so they sit side-by-side on a line, hide the checkbox icons and only round the left and right edges of the group.

                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + + + + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/methods.html new file mode 100644 index 0000000..ad1947d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/methods.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Checkboxes + + + + + + + + + + +
                    + +
                    +

                    Checkboxes

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Checkboxes

                    + + + +

                    The checkbox has the following methods:

                    + +
                    + +
                    enable enable a disabled checkbox
                    +
                    +
                    
                    + $("input[type='checkbox']").checkboxradio('enable');
                    +				
                    +
                    + +
                    disable disable a select.
                    +
                    +
                    
                    +$("input[type='checkbox']").checkboxradio('disable');
                    +				
                    +
                    + +
                    refresh update the custom select
                    +
                    + If you manipulate a checkbox via JavaScript, you must call the refresh method on it to update the visual styling. +
                    
                    +$("input[type='checkbox']:first").attr("checked",true).checkboxradio("refresh");
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/options.html new file mode 100644 index 0000000..2af0192 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/checkboxes/options.html @@ -0,0 +1,98 @@ + + + + + + jQuery Mobile Docs - Checkboxes + + + + + + + + + + +
                    + +
                    +

                    Checkboxes

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Checkboxes

                    + + + +

                    The checkbox has the following options:

                    + +
                    +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $("input[type='checkbox']").checkboxradio({ mini: "true" });
                    +
                    +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $("input[type='checkbox']").checkboxradio({ theme: "a" });
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/docs-forms.html b/libs/js/jquery-mobile-1.1.0/docs/forms/docs-forms.html new file mode 100644 index 0000000..a342942 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/docs-forms.html @@ -0,0 +1,267 @@ + + + + + + jQuery Mobile Docs - Forms + + + + + + + + + + +
                    + +
                    +

                    Forms

                    + Home + Search +
                    + +
                    +
                    +

                    jQuery Mobile provides a complete set of finger-friendly form elements that are based on native HTML form elements.

                    + +

                    Form structure

                    + +

                    All forms should be wrapped in a form tag that has an action and method that will handle the form data processing on the server.

                    + + +<form action="form.php" method="post"> +... +</form> + + + +

                    Markup conventions

                    +

                    When constructing forms to be used in jQuery Mobile, most of the standard guidelines used to create forms that submit via ordinary HTTP POST or GET still apply. Additionally, the id attributes of form controls need to be not only unique on a given page, but also unique across the pages in a site. This is because jQuery Mobile's single-page navigation model allows many different "pages" to be present in the DOM at the same time. You must be careful to use unique id attributes so there will be only one of each in the DOM. Be sure to pair them properly with label elements via the for attribute.

                    + +

                    Mini sized elements

                    + +

                    For a more compact version of all form elements and buttons, add the data-mini="true" attribute to the element to create a mini version. This is useful in toolbars and tight spaces but is still finger-friendly. It's possible to add this attribute to a fieldcontainer to set this on a number of elements at once.

                    + +
                    
                    +<label for="basic">Text Input:</label>
                    +<input type="text" name="name" id="basic" data-mini="true" />
                    +	
                    + +

                    This will produce an input that is not as tall as the standard version and has a smaller text size.

                    + + + +

                    Hiding labels accessibly

                    +

                    For the sake of accessibility, jQuery Mobile requires that all form elements be paired with a meaningful label. To hide labels in a way that leaves them visible to assistive technologies—for example, when letting an element’s placeholder attribute serve as a label—apply the helper class ui-hidden-accessible to the label itself:

                    + +
                    +<label for="username" class="ui-hidden-accessible">Username:</label>
                    +<input type="text" name="username" id="username" value="" placeholder="Username"/>
                    +
                    +
                    + +

                    To hide labels within a field container and adjust the layout accordingly, add the class ui-hide-label to the field container as in the following:

                    + + +
                    +<div data-role="fieldcontain" class="ui-hide-label">
                    +	<label for="username">Username:</label>
                    +	<input type="text" name="username" id="username" value="" placeholder="Username"/>
                    +</div>
                    +
                    +
                    + +

                    Both of the above examples will render as:

                    +
                    + + +
                    + +

                    While the label will no longer be visible, it will be available to assisitive technologies such as screen readers.

                    + + +

                    Disabling form elements

                    +

                    All jQuery Mobile widgets can be disabled in the markup by adding the standard disabled attribute to the element, just like you would with native controls. Each form widget also has standard disable and enable methods that are documented with each form widget. Here are a few examples of disabled widgets:

                    + +
                    + + +
                    + +
                    +
                    + Gender: + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +

                    Note that you can disable buttons created from button or input-based markup, but not links with a role of button. Links don't have a parallel disabled feature in HTML, but if you need to disable a link-based button (or any element), it's possible to apply the disabled class ui-disabled yourself with JavaScript to achieve the same effect.

                    + +

                    Field containers

                    +

                    To improve the styling of labels and form elements on wider screens, wrap a div or fieldset with the data-role="fieldcontain" attribute around each label/form element. This framework aligns the input and associated label side-by-side, and breaks to stacked block-level elements below ~480px. The framework will also add a thin bottom border to act as a field separator.

                    + +

                    Forms in toolbars

                    +

                    While all form elements are now tested to work correctly within static toolbars as of jQuery Mobile 1.1, we recommend extensive testing when using form elements within fixed toolbars or within any position: fixed elements. This can potentially trigger a number of unpredictable issues in various mobile browsers, Android 2.2/2.3 in particular (detailed in Known issues in Android 2.2/2.3).

                    + +

                    For example:

                    +
                    
                    +<div data-role="fieldcontain">
                    +<label for="name">Text Input:</label>
                    +<input type="text" name="name" id="name" value="" />
                    +</div>
                    +
                    + +

                    Will render as:

                    + +
                    + + +
                    + +

                    For additional examples, see the form elements gallery

                    + + +

                    Auto-initialization of form elements

                    +

                    By default, jQuery Mobile will automatically enhance certain native form controls into rich touch-friendly components. This is handled internally by finding form elements by tag name and running a plugin method on them. For instance, a select element will be found and initialized with the "selectmenu" plugin, while an input element with a type="checkbox" will be enhanced with the "checkboxradio" plugin. Once initialized, you can address these enhanced components programmatically through their jQuery UI widget API methods. See options, methods, and events listed on each form plugin's documentation page for details.

                    + +

                    Initializing groups of dynamically-injected form elements

                    +

                    If you should generate new markup client-side or load in content via AJAX and inject it into a page, you can trigger the create event to handle the auto-initialization for all the plugins contained within the new markup. This can be triggered on any element (even the page div itself), saving you the task of manually initializing each plugin (see below).

                    + +

                    For example, if a block of HTML markup (say a login form) was loaded in through Ajax, trigger the create event to automatically transform all the widgets it contains (inputs and buttons in this case) into the enhanced versions. The code for this scenario would be:

                    + + + $( ...new markup that contains widgets... ).appendTo( ".ui-page" ).trigger( "create" ); + + +

                    Refreshing form elements

                    + +

                    In jQuery Mobile, some enhanced form controls are simply styled (inputs), but others are custom controls (selects, sliders) built from, and kept in sync with, the native control. To programmatically update a form control with JavaScript, first manipulate the native control, then use the refresh method to tell the enhanced control to update itself to match the new state. Here are some examples of how to update common form controls, then call the refresh method:

                    +

                    Checkboxes:

                    + + +$("input[type='checkbox']").prop("checked",true).checkboxradio("refresh"); + + +

                    Radios:

                    + +$("input[type='radio']").prop("checked",true).checkboxradio("refresh"); + + +

                    Selects:

                    +
                    +var myselect = $("#selectfoo");
                    +myselect[0].selectedIndex = 3;
                    +myselect.selectmenu("refresh");
                    +
                    + +

                    Sliders:

                    + +$("input[type='range']").val(60).slider("refresh"); + + +

                    Flip switches (they use slider):

                    + +
                    +var myswitch = $("#selectbar");
                    +myswitch[0].selectedIndex = 1;
                    +myswitch.slider("refresh");
                    +
                    + +

                    Preventing auto-initialization of form elements

                    +

                    If you'd prefer that a particular form control be left untouched by jQuery Mobile, simply give that element the attribute data-role="none". For example:

                    +
                    
                    +<label for="foo">
                    +<select name="foo" id="foo"  data-role="none">
                    +	<option value="a" >A</option>
                    +	<option value="b" >B</option>
                    +	<option value="c" >C</option>
                    +</select>
                    +
                    + + +

                    If you'd like to prevent auto-initialization without adding attributes to your markup, you can customize the selector that is used for preventing auto-initialization by setting the page plugin's keepNative option (which defaults to [data-role="none"]). Be sure to configure this option inside an event handler bound to the mobileinit event, so that it applies to the first page as well as subsequent pages that are loaded.

                    +
                    
                    +$(document).bind('mobileinit',function(){
                    +	$.mobile.page.prototype.options.keepNative = "select, input.foo, textarea.bar";
                    +});
                    +		
                    + +

                    Alternately you can use the data-enhance="false" data attribute on a parent element with $.mobile.ignoreContentEnabled set to true. Beware though, this will incur a performance penalty for each and every element in the page that would otherwise be enhanced as jQuery Mobile must traverse the set of parents to look for those elements.

                    + +

                    One special case is that of selects. The above sample will prevent any and all augmentation from taking place on select elements in the page if select is included. If you wish to retain the native performance and appearance of the menu itself and benefit from the visual augmentation of the select button by jQuery Mobile, you can set $.mobile.selectmenu.prototype.options.nativeMenu to true in a mobileinit callback as a global setting or use data-native-menu="true" on a case by case basis.

                    + + +

                    File Inputs

                    +

                    Using a multipart form with a file input is not supported by ajax. In this case you should decorate the parent form with data-ajax="false" to ensure the form is submitted properly to the server.

                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-compare.html b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-compare.html new file mode 100644 index 0000000..6e4dafb --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-compare.html @@ -0,0 +1,263 @@ + + + + + + jQuery Mobile Docs - Form element size comparison + + + + + + + + + + +
                    + +
                    +

                    Form sizes

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Form size comparison

                    + +

                    All form controls accept a data-mini="true" attribute that renders a smaller version of the enhanced element. In the case of grouped buttons, the data-mini="true" attribute can be added to the containing controlgroup.

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

                    Search

                    + + + + + +

                    Text

                    + + + + + +

                    Textarea

                    + + + + + +

                    Switch

                    + + + + + +

                    Slider

                    + + + + + +

                    Select

                    + + + + + +

                    Checkbox

                    +
                    + + + + + + +
                    +
                    +
                    + + + + + + +
                    +

                    Checkbox

                    +
                    + + + + + + +
                    +
                    +
                    + + + + + + +
                    +

                    Radio buttons

                    +
                    + + + + + + +
                    +
                    +
                    + + + + + + +
                    +

                    Radio toggle

                    +
                    + + + + +
                    +
                    +
                    + + + + +
                    +

                    Radio toggle

                    + + + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-mini.html b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-mini.html new file mode 100644 index 0000000..b838066 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-mini.html @@ -0,0 +1,245 @@ + + + + + + jQuery Mobile Docs - Gallery of Form Controls + + + + + + + + + + +
                    + +
                    +

                    Mini forms

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Mini form elements

                    + +

                    All form controls accept a data-mini="true" attribute that renders a smaller version of the standard-sized form elements. In the case of grouped buttons, the data-mini="true" attribute can be added to the containing controlgroup. Compare mini and normal form elements side-by-side.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Layout view: + + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-native.html b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-native.html new file mode 100644 index 0000000..726be46 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all-native.html @@ -0,0 +1,250 @@ + + + + + + jQuery Mobile Docs - Native Form Controls + + + + + + + + + + +
                    + +
                    +

                    Forms

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Native form elements & buttons

                    + +

                    Although the framework automatically enhances form elements and buttons into touch input optimized controls to streamline development, it's easy to tell jQuery Mobile to leave these elements alone so the standard, native control can be used instead.

                    +

                    Adding the data-role="none" attribute to any form or button element tells the framework to not apply any enhanced styles or scripting. The examples below all have this attribute in place to demonstrate the effect. You may need to write custom styles to lay out your form controls because we try to leave all the default styling intact.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Layout view: + + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + + +
                    + + + + +

                    Button based button:

                    + + +

                    Input type="button" based button:

                    + + +

                    Input type="submit" based button:

                    + + +

                    Input type="reset" based button:

                    + + +

                    Input type="image" based button:

                    + + +
                    + +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all.html b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all.html new file mode 100644 index 0000000..8749ead --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-all.html @@ -0,0 +1,247 @@ + + + + + + jQuery Mobile Docs - Gallery of Form Controls + + + + + + + + + + +
                    + +
                    +

                    Forms

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Form elements

                    + +

                    This page contains various progressive-enhancement driven form controls. Native elements are sometimes hidden from view, but their values are maintained so the form can be submitted normally. Browsers that don't support the custom controls will still deliver a usable experience because all are based on native form elements.

                    + +

                    There is a complete set of mini-sized form elements which are useful for toolbars or tighter spaces. Compare mini and normal form elements side-by-side.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Layout view: + + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample-response.php b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample-response.php new file mode 100755 index 0000000..0a4fce6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample-response.php @@ -0,0 +1,81 @@ + + + + + + jQuery Mobile Docs - Sample form response + + + + + + + + + +
                    + +
                    +

                    Sample form response

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    You Chose:

                    + +
                    + + " . $_REQUEST['shipping'] . "

                    "; + ?> + +
                    + + Change shipping method + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample-selfsubmit.php b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample-selfsubmit.php new file mode 100755 index 0000000..440097e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample-selfsubmit.php @@ -0,0 +1,80 @@ + + + + + + jQuery Mobile Docs - Sample Form Submit to Self + + + + + + + + + +
                    + +
                    +

                    Sample form submit to self

                    + Home + Search +
                    + +
                    +
                    + +
                    + +
                    + Testing +
                    + + /> + /> +
                    +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample.html b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample.html new file mode 100644 index 0000000..4c1291e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-sample.html @@ -0,0 +1,114 @@ + + + + + + jQuery Mobile Docs - Sample Form Submit + + + + + + + + + + +
                    + +
                    +

                    Forms

                    + Home + Search +
                    + +
                    +
                    + +

                    Ajax form submission

                    + +

                    In jQuery Mobile, form submissions are automatically handled using Ajax whenever possible, creating a smooth transition between the form and the result page. To ensure your form submits as intended, be sure to specify action and method properties on your form element. When unspecified, the method will default to get, and the action will default to the current page's relative path (found via $.mobile.path.get())

                    +

                    Forms also accept attributes for transitions just like anchors, such as data-transition="pop" and data-direction="reverse". To submit a form without Ajax, you can either disable Ajax form handling globally, or per form via the data-ajax="false" attribute. The target attribute (as in target="_blank") is respected on forms as well, and will default to the browser's handling of that target when the form submits. Note that unlike anchors, the rel attribute is not allowed on forms.

                    + + +

                    Default Ajax form example

                    +

                    This demonstrates automated ajax handling of form submissions. The form below is configured to send a GET request to forms-sample-response.php. On submit, jQuery Mobile will make sure that the Url specified is able to be retrieved via Ajax, and handle it appropriately. Keep in mind that just like ordinary HTTP form submissions, jQuery Mobile allows GET result pages to be bookmarked by updating the URL hash when the response returns successfully. Also like ordinary form submissions, POST requests do not contain query parameters in the hash, so they are not bookmarkable.

                    +
                    +
                    +
                    + + +
                    + +
                    +
                    + +

                    Non-Ajax form example

                    + +

                    To prevent form submissions from being automatically handled with Ajax, add the data-ajax="false" attribute to the form element. You can also turn off Ajax form handling completely via the ajaxEnabled global config option.

                    + +

                    The form below is identical to the one above except for the addition of the data-ajax="false" attribute. When the submit button is pressed, it will result in a full page refresh.

                    +
                    +
                    +
                    + + +
                    + +
                    +
                    + +

                    Self-submitting Forms

                    +

                    You can submit forms to the same URL you're currently viewing by setting the form's action attribute to that URL. This page demonstrates.

                    +

                    When a POST request is submitted to a page that's already in the DOM (which would commonly happen when submitting a form to the same URL currently in view), the response URL will be identical to that existing page, as POST requests do not append query string parameters to the URL. In this situation, jQuery Mobile will replace the page that submitted the form with the page returned in the response body.

                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/forms-themes.html b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-themes.html new file mode 100644 index 0000000..4a1df74 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/forms-themes.html @@ -0,0 +1,408 @@ + + + + + + jQuery Mobile Docs - Theming Forms + + + + + + + + + + +
                    + +
                    +

                    Theming forms

                    + Home + Search +
                    + +
                    +
                    + +

                    Form themes

                    +

                    jQuery Mobile has a rich theming system that gives you full control of how pages and forms are styled. By default all form elements inside a container will automatically adopt the same theme color swatch as their parent. This allows form elements to blend into their layouts with minimal work. The data-theme attribute can be applied to any individual form element to apply any of the lettered theme color swatches to create contrast and emphasis in your designs.

                    + +

                    All the form elements in the examples below use the same HTML code with no theme swatch specified on the individual form elements. The only difference between each example block code is a data-theme swatch color assigned to each parent container. This illustrates the way form elements automatically adopt the theme swatch of their parent.

                    + + +

                    Body swatch A

                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + +

                    Body swatch B

                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + + +
                    + + +

                    Body swatch C

                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + + +
                    + + + +

                    Body swatch D

                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + + +
                    + + +

                    Body swatch E

                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + + +
                    + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/index.html new file mode 100644 index 0000000..23f75b8 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/index.html @@ -0,0 +1,50 @@ + + + + + + jQuery Mobile Docs - Forms + + + + + + + + + + +
                    + +
                    +

                    Form elements

                    + Home + Search +
                    + +
                    + +

                    All form elements begin with standard HTML controls that are enhanced to make them more attractive and easy to use. In browsers that don't support the custom controls, they will still have a usable experience because these are all based on native form elements.

                    + + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/plugin-eventsmethods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/plugin-eventsmethods.html new file mode 100644 index 0000000..52c0b4d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/plugin-eventsmethods.html @@ -0,0 +1,73 @@ + + + + + + jQuery Mobile Docs - Form Plugin Methods + + + + + + + + + + +
                    + +
                    +

                    Form Plugin Methods

                    + Home + Search +
                    + +
                    +
                    + +
                    +

                    We've retired this page.

                    + +

                    Plugin events and methods are now documented separately for each component (see links on the left).

                    +
                    + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/events.html new file mode 100644 index 0000000..b721f44 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/events.html @@ -0,0 +1,106 @@ + + + + + + jQuery Mobile Docs - Radio buttons + + + + + + + + + + +
                    + +
                    +

                    Radio buttons

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Radio buttons

                    + + + + +

                    Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$("input[type='radio']").bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The radio button plugin has the following custom events:

                    + +
                    + +
                    create triggered when a radio button is created
                    +
                    + + +
                    
                    +$("input[type='radio']").checkboxradio({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/index.html new file mode 100644 index 0000000..a3f9532 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/index.html @@ -0,0 +1,225 @@ + + + + + + jQuery Mobile Docs - Radio Buttons + + + + + + + + + + +
                    + +
                    +

                    Radio buttons

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Radio buttons

                    + + + +

                    Radio buttons are used to provide a list of options where only a single item can be selected. Traditional desktop radio buttons are not optimized for touch input so jQuery Mobile styles the label for the radio buttons so they are larger and look clickable. A custom set of icons are added to the label to provide additional visual feedback.

                    + +

                    Both the radio and checkbox controls below use standard input/label markup, but are styled to be more touch-friendly. The styled control you see is actually the label element, which sits over the real input, so if images fail to load, you'll still have a functional control. In most browsers, clicking the label automatically triggers a click on the input, but we've had to trigger the update manually for a few mobile browsers that don't do this natively. On the desktop, these controls are keyboard and screen-reader accessible. View the data- attribute reference to see all the possible attributes you can add to radio buttons.

                    + +

                    Vertically grouped radio buttons

                    + +

                    To create a set of radio buttons, add an input with a type="radio" attribute and a corresponding label. Set the for attribute of the label to match the ID of the input so they are semantically associated.

                    + +

                    The label element is displayed next to the radio form element. Wrap the radio buttons in a fieldset element that has a legend which acts as the title for the question.

                    + +

                    To visually integrate multiple radio buttons into a vertically grouped button set, the framework will automatically remove all margins between buttons and round only the top and bottom corners of the set if there is a data-role="controlgroup" attribute on the container.

                    + +
                    	
                    +<fieldset data-role="controlgroup">
                    +	<legend>Choose a pet:</legend>
                    +     	<input type="radio" name="radio-choice-1" id="radio-choice-1" value="choice-1" checked="checked" />
                    +     	<label for="radio-choice-1">Cat</label>
                    +
                    +     	<input type="radio" name="radio-choice-1" id="radio-choice-2" value="choice-2"  />
                    +     	<label for="radio-choice-2">Dog</label>
                    +
                    +     	<input type="radio" name="radio-choice-1" id="radio-choice-3" value="choice-3"  />
                    +     	<label for="radio-choice-3">Hamster</label>
                    +
                    +     	<input type="radio" name="radio-choice-1" id="radio-choice-4" value="choice-4"  />
                    +     	<label for="radio-choice-4">Lizard</label>
                    +</fieldset>
                    +
                    + + +

                    This will produce a vertically grouped radio button set. The default styles set the width of the button group to 100% of the parent container and stacks the label on a separate line.

                    + + +
                    + Choose a pet: + + + + + + + + + + + +
                    + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    			
                    +<fieldset data-role="controlgroup" data-mini="true">
                    +
                    +    	<input type="radio" name="radio-choice-1" id="radio-mini-1" value="choice-1" checked="checked" />
                    +
                    +    	<label for="radio-mini-1">Credit</label>
                    +    	<input type="radio" name="radio-choice-1" id="radio-mini-2" value="choice-2"  />
                    +
                    +    	<label for="radio-mini-2">Debit</label>
                    +    	<input type="radio" name="radio-choice-1" id="radio-mini-3" value="choice-3"  />
                    +
                    +    	<label for="radio-mini-3">Cash</label>
                    +</fieldset>
                    +
                    + +

                    This will produce a radio button that is not as tall as the standard version and has a smaller text size.

                    + +
                    + + + + + + +
                    + +

                    Field containers

                    + +

                    Optionally wrap the radiobuttons in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                    +
                    	
                    +<div data-role="fieldcontain">
                    +    <fieldset data-role="controlgroup">
                    +    	<legend>Choose a pet:</legend>
                    +         	<input type="radio" name="radio-choice-1" id="radio-choice-1" value="choice-1" checked="checked" />
                    +         	<label for="radio-choice-1">Cat</label>
                    +
                    +         	<input type="radio" name="radio-choice-1" id="radio-choice-2" value="choice-2"  />
                    +         	<label for="radio-choice-2">Dog</label>
                    +
                    +         	<input type="radio" name="radio-choice-1" id="radio-choice-3" value="choice-3"  />
                    +         	<label for="radio-choice-3">Hamster</label>
                    +
                    +         	<input type="radio" name="radio-choice-1" id="radio-choice-4" value="choice-4"  />
                    +         	<label for="radio-choice-4">Lizard</label>
                    +    </fieldset>
                    +</div>
                    +	
                    + + +

                    To visually integrate multiple radio buttons into a vertically grouped button set, the framework will automatically remove all margins between buttons and round only the top and bottom corners of the set if there is a data-role="controlgroup" attribute on the container.

                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    +

                    Horizontal radio button sets

                    + +

                    Radio buttons can also be used for grouped button sets where only a single button can be selected at once, such as a view switcher control. To make a horizontal radio button set, add the data-type="horizontal" to the fieldset.

                    + + + <fieldset data-role="controlgroup" data-type="horizontal" > + + +
                    +
                    + Layout view: + + + + + + +
                    +
                    + +

                    The labels float so they sit side-by-side on a line. The radio button icons are hidden and only the left and right edges of the group are rounded.

                    + + + + + + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/methods.html new file mode 100644 index 0000000..2037a2f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/methods.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Radio buttons + + + + + + + + + + +
                    + +
                    +

                    Radio buttons

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Radio buttons

                    + + + +

                    The radio button has the following methods:

                    + +
                    + +
                    enable enable a disabled radio button
                    +
                    +
                    
                    + $("input[type='radio']").checkboxradio('enable');
                    +				
                    +
                    + +
                    disable disable a select.
                    +
                    +
                    
                    +$("input[type='radio']").checkboxradio('disable');
                    +				
                    +
                    + +
                    refresh update the custom select
                    +
                    + If you manipulate a radio button via JavaScript, you must call the refresh method on it to update the visual styling. +
                    
                    +$("input[type='radio']:first").attr("checked",true).checkboxradio("refresh");
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/options.html new file mode 100644 index 0000000..1ab813a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/radiobuttons/options.html @@ -0,0 +1,98 @@ + + + + + + jQuery Mobile Docs - Radio buttons + + + + + + + + + + +
                    + +
                    +

                    Radio buttons

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Radio buttons

                    + + + +

                    The radio button has the following options:

                    + +
                    +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $("input[type='radio']").checkboxradio({ mini: "true" });
                    +
                    +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $("input[type='radio']").checkboxradio({ theme: "a" });
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/search/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/search/events.html new file mode 100644 index 0000000..d1ab345 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/search/events.html @@ -0,0 +1,103 @@ + + + + + + jQuery Mobile Docs - Search Input events + + + + + + + + + + +
                    + +
                    +

                    Search input

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Search input

                    + + + +

                    Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$(".mySearchInput").bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The text input plugin has the following custom events:

                    + +
                    + +
                    create triggered when a text input is created
                    +
                    + +
                    
                    +$( ".selector" ).textinput({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/search/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/search/index.html new file mode 100644 index 0000000..610646b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/search/index.html @@ -0,0 +1,141 @@ + + + + + + jQuery Mobile Docs - Search input + + + + + + + + + + +
                    + +
                    +

                    Search input

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Search input

                    + + + +

                    Search inputs are a new HTML type that is styled with pill-shaped corners and adds a "x" icon to clear the field once you start typing. Start with an input with a type="search" attribute in your markup. View the data- attribute reference to see all the possible attributes you can add to search inputs.

                    + +

                    Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                    + +
                    	
                    +<label for="search-basic">Search Input:</label>
                    +<input type="search" name="search" id="searc-basic" value="" />
                    +
                    + +

                    This will produce a basic search input. The default styles set the width of the input to 100% of the parent container and stack the label on a separate line.

                    + + + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    	
                    +<label for="search-basic">Search Input:</label>
                    +<input type="search" name="search" id="searc-basic" value="" data-mini="true" />
                    +
                    + +

                    This will produce a search input that is not as tall as the standard version and has a smaller text size.

                    + + + +

                    Field containers

                    + +

                    Optionally wrap the search input in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                    + +
                    	
                    +<div data-role="fieldcontain">
                    +    <label for="search">Search Input:</label>
                    +    <input type="search" name="password" id="search" value="" />
                    +</div>
                    +
                    + +

                    The search input is now displayed like this:

                    +
                    + + +
                    + +

                    Theming

                    +

                    The data-theme attribute can be added to the search input to set the theme to any swatch letter.

                    +
                    + + +
                    + +

                    Setting the clear button text

                    +

                    The text for the button used to clear the search input of text can be configured for all search inputs by binding to the mobileinit event and setting the $.mobile.textinput.prototype.options.clearSearchButtonText property to a string of your choosing.

                    + +

                    Calling the textinput plugin

                    + +

                    This plugin will auto-initialize on any page that contains a text input with the type="search" attribute without any need for a data-role attribute in the markup. However, if needed, you can directly call the textinput plugin on a selector, just like any jQuery plugin:

                    +
                    
                    +$('.mySearchInput').textinput();			
                    +
                    + + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/search/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/search/methods.html new file mode 100644 index 0000000..34930af --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/search/methods.html @@ -0,0 +1,100 @@ + + + + + + jQuery Mobile Docs - Search Input methods + + + + + + + + + + +
                    + +
                    +

                    Search input

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Search input

                    + + + +

                    The text input plugin has the following methods:

                    + +
                    + +
                    enable enable a disabled text input
                    +
                    +
                    
                    +$('.selector').textinput('enable');			
                    +				
                    +
                    + +
                    disable disable a text input
                    +
                    +
                    
                    +$('.selector').textinput('disable');			
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/search/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/search/options.html new file mode 100644 index 0000000..1357e70 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/search/options.html @@ -0,0 +1,113 @@ + + + + + + jQuery Mobile Docs - Text Search options + + + + + + + + + + +
                    + +
                    +

                    Search input

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Search input

                    + + + +

                    The text input plugin has the following options:

                    + +
                    +
                    initSelector CSS selector string
                    +
                    +

                    default: "input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input:not([type])"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as textinputs. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +   $.mobile.textinput.prototype.options.initSelector = ".myInputs";
                    +});
                    +
                    +
                    +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $('.selector').textinput({ mini: "true" });
                    +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $('.selector').textinput({ theme: "a" });
                    +
                    + +
                    clearSearchButtonText string
                    +
                    +

                    default: "clear text"

                    +

                    Sets the text used for the button that clears the search input of text.

                    +
                    $('.selector').textinput({ clearSearchButtonText: "custom value" });
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/selects/custom.html b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/custom.html new file mode 100644 index 0000000..fcfe9a2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/custom.html @@ -0,0 +1,424 @@ + + + + + + jQuery Mobile Docs - Select + + + + + + + + + + +
                    + +
                    +

                    Select Menus

                    + Home + Search +
                    + +
                    +
                    + +

                    Select menus

                    + + + +

                    Custom select menus

                    +

                    The framework is capable of building a custom menu based on the select element's list of options. We recommend using a custom menu when multiple selections are required, or when the menu itself must be styled with CSS.

                    + +

                    You can optionally use custom-styled select menus instead of the native OS menu. The custom menu supports disabled options and multiple selection (whereas native mobile OS support for both is inconsistent), adds an elegant way to handle placeholder values, and restores missing functionality on certain platforms such as optgroup support on Android (all explained below). In addition, the framework applies the custom button's theme to the menu to better match the look and feel and provide visual consistency across platforms. Lastly, custom menus often look better on desktop browsers because native desktop menus are smaller than their mobile counterparts and tend to look disproportionate.

                    + +

                    Keep in mind that there is overhead involved in parsing the native select to build a custom menu. If there are a lot of selects on a page, or a select has a long list of options, this can impact the performance of the page, so we recommend using custom menus sparingly.

                    + +

                    To use custom menus on a specific select, just add the data-native-menu="false" attribute. Alternately, this can also programmatically set the select menu's nativeMenu configuration option to false in a callback bound to the mobileinit event to achieve the same effect. This will globally make all selects use the custom menu by default. The following must be included in the page after jQuery is loaded but before jQuery Mobile is loaded.

                    + + + +
                    +$(document).bind('mobileinit',function(){
                    +   $.mobile.selectmenu.prototype.options.nativeMenu = false;
                    +});
                    +
                    +
                    + +

                    When the select has a small number of options that will fit on the device's screen, the menu will appear as a small overlay with a pop transition:

                    + +
                    + + +
                    + +

                    When it has too many options to show on the device's screen, the framework will automatically create a new "page" populated with a standard list view for the options. This allows us to use the native scrolling included on the device for moving through a long list. The text inside the label is used as the title for this page.

                    + + +
                    + + +
                    + +

                    Disabled options

                    +

                    jQuery Mobile will automatically disable and style option tags with the disabled attribute. In the demo below, the second option "Rush: 3 days" has been set to disabled.

                    + +
                    + + +
                    + +

                    Placeholder options

                    +

                    It's common for developers to include a "null" option in their select element to force a user to choose an option. If a placeholder option is present in your markup, jQuery Mobile will hide them in the overlay menu, showing only valid choices to the user, and display the placeholder text inside the menu as a header. A placeholder option is added when the framework finds:

                    +
                      +
                    • An option with no value attribute (or an empty value attribute)
                    • +
                    • An option with no text node
                    • +
                    • An option with a data-placeholder="true" attribute. (This allows you to use an option that has a value and a textnode as a placeholder option).
                    • +
                    + +

                    You can disable this feature through the selectmenu plugin's hidePlaceholderMenuItems option, like this:

                    +
                    +	
                    +$.mobile.selectmenu.prototype.options.hidePlaceholderMenuItems = false;
                    +	
                    +	
                    + +

                    Examples of various placeholder options:

                    + + +
                    + + +
                    + + +
                    + + +
                    + + +
                    + + +
                    + + +

                    Multiple selects

                    +

                    If the multiple attribute is present in your markup, jQuery Mobile will enhance the element with a few extra considerations:

                    + +
                      +
                    • A header element will be created inside the menu and display the placeholder text and a close button.
                    • +
                    • Clicking on an item inside the overlay menu will not close the widget.
                    • +
                    • A ghosted, unchecked icon will appear adjacent to each unselected item. When the item is selected the icon will change to a checkbox. Neither icon will appear inside a single select box.
                    • +
                    • Once 2+ items are selected, a counter element with the total number of selected items will appear inside the button.
                    • +
                    • The text of each selected item will appear inside the button as a list. If the button is not wide enough to display the entire list, it is truncated with an ellipses.
                    • +
                    • If no items are selected, the button's text will default to the placeholder text.
                    • +
                    • If no placeholder element exists, the default button text will be blank and the header will appear with just a close button. Because this isn't a friendly user experience, we recommended that you always specify a placeholder element when using multiple select boxes.
                    • +
                    + +
                    + + +
                    + +

                    When a select is large enough to where the menu will open in a new page, the placeholder text is displayed in the button when no items are selected, and the label text is displayed in the menu's header. This differs from smaller overlay menus where the placeholder text is displayed in both the button and the header, and from full-page single selects where the placeholder text is not used at all.

                    + +
                    + + +
                    + + + + + +

                    Optgroup support

                    +

                    If a select menu contains optgroup elements, jQuery Mobile will create a divider & group items based on the label attribute's text:

                    + +
                    + + +
                    + + +

                    Theming selects

                    +

                    You can specify any jQuery Mobile button data- attribute on a select element, too. In this example, we're setting the theme, icon and inline properties:

                    + +
                    + + +
                    + +

                    The data-overlay-theme attribute can be added to a select element to set the color of the overlay layer for the dialog-based custom select menus and the outer border of the smaller custom menus. By default, the content block colors for swatch A will be used for the overlays.

                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/selects/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/events.html new file mode 100644 index 0000000..5d6f410 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/events.html @@ -0,0 +1,105 @@ + + + + + + jQuery Mobile Docs - Select events + + + + + + + + + + +
                    + +
                    +

                    Select Menus

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Select menus

                    + + + + +

                    Bind events directly to the select element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$(".mySelect").bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The select menu plugin has the following custom events:

                    + +
                    + +
                    create triggered when a select menu is created
                    +
                    + +
                    
                    +$( ".selector" ).selectmenu({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/selects/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/index.html new file mode 100644 index 0000000..e3dcf21 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/index.html @@ -0,0 +1,418 @@ + + + + + + jQuery Mobile Docs - Select + + + + + + + + + + +
                    + +
                    +

                    Select Menus

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Select menus

                    + + + +

                    The select menu is based on a native select element, which is hidden from view and replaced with a custom-styled select button that matches the look and feel of the jQuery Mobile framework. The select menu is ARIA-enabled and keyboard accessible on the desktop as well. View the data- attribute reference to see all the possible attributes you can add to selects.

                    + +

                    By default, the framework leverages the native OS options menu to use with the custom button. When the button is clicked, the native OS menu will open. When a value is selected and the menu closes, the custom button's text is updated to match the selected value. Please note that the framework also offers the possibility of having custom (non-native) select menus; see details at the bottom of this page and on the custom select menu page.

                    + +

                    To add a select menu to your page, start with a standard select element populated with a set of option elements. Set the for attribute of the label to match the ID of the select so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                    + +

                    The framework will find all select elements and automatically enhance them into select menus, no need to apply a data-role attribute. To prevent the automatic enhancement of a select, add data-role="none" attribute to the select.

                    + +
                    
                    +<label for="select-choice-0" class="select">Shipping method:</label>
                    +<select name="select-choice-0" id="select-choice-1">
                    +   <option value="standard">Standard: 7 day</option>
                    +   <option value="rush">Rush: 3 days</option>
                    +   <option value="express">Express: next day</option>
                    +   <option value="overnight">Overnight</option>
                    +</select>
                    +
                    + +

                    This will produce a basic select menu. The default styles set the width of the input to 100% of the parent container and stacks the label on a separate line.

                    + + + + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    	
                    +<label for="select-choice-min" class="select">Shipping method:</label>
                    +<select name="select-choice-min" id="select-choice-1" data-mini="true">
                    +   <option value="standard">Standard: 7 day</option>
                    +   <option value="rush">Rush: 3 days</option>
                    +   <option value="express">Express: next day</option>
                    +   <option value="overnight">Overnight</option>
                    +</select> 
                    +
                    + +

                    This will produce a select that a not as tall as the standard version and has a smaller text size.

                    + + + +

                    Field containers

                    +

                    Optionally wrap the selects in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                    +
                    
                    +<div data-role="fieldcontain">
                    +   <label for="select-choice-1" class="select">Shipping method:</label>
                    +   <select name="select-choice-1" id="select-choice-1">
                    +      <option value="standard">Standard: 7 day</option>
                    +      <option value="rush">Rush: 3 days</option>
                    +      <option value="express">Express: next day</option>
                    +      <option value="overnight">Overnight</option>
                    +   </select>
                    +</div>
                    +
                    + +

                    The select input is now displayed like this:

                    + + +
                    + + +
                    + +

                    An example of a select with a long list of options:

                    + +
                    + + +
                    + +

                    Optgroups

                    +

                    The following example organizes the options into optgroup elements. Support for this feature in mobile selects is a bit spotty, but is improving.

                    + +
                    + + +
                    + + + +

                    Vertically grouped select inputs

                    + +

                    To create a grouped set of select inputs, first add select and a corresponding label. Set the for attribute of the label to match the ID of the select so they are semantically associated.

                    + +

                    Because the label element will be associated with each individual select input, we recommend wrapping the selects in a fieldset element that has a legend which acts as the combined label for the grouped inputs.

                    + +

                    Lastly, one needs to wrap the fieldset in a div with data-role="controlgroup" attribute, so it can be styled as a group.

                    + +
                    	
                    +<div data-role="fieldcontain">
                    +<fieldset data-role="controlgroup">
                    +	<legend>Date of Birth:</legend>
                    +
                    +    <label for="select-choice-month">Month</label>
                    +<select name="select-choice-month" id="select-choice-month">
                    +	<option>Month</option>
                    +	<option value="jan">January</option>
                    +	<!-- etc. -->
                    +</select>
                    +
                    +	<label for="select-choice-day">Day</label>
                    +<select name="select-choice-day" id="select-choice-day">
                    +	<option>Day</option>
                    +	<option value="1">1</option>
                    +	<!-- etc. -->
                    +</select>
                    +
                    +<label for="select-choice-year">Year</label>
                    +<select name="select-choice-year" id="select-choice-year">
                    +	<option>Year</option>
                    +	<option value="2011">2011</option>
                    +	<!-- etc. -->
                    +</select>
                    +</fieldset>
                    +</div>
                    +
                    + +
                    +
                    + Date of Birth: + + + + + + + + + +
                    + +
                    + +

                    Horizontally grouped select inputs

                    +

                    Select inputs can also be used for grouped sets with more than one related selections. To make a horizontal button set, add the data-type="horizontal" to the fieldset. Note that the buttons which trigger the select will resize depending on the currently selected option’s value. Note that browsers without support for display: inline-block; will group the selects vertically, as above.

                    + + +<fieldset data-role="controlgroup" data-type="horizontal"> + + +
                    + Date of Birth: + + + + + + + + + +
                    + +

                    Calling the select menu plugin

                    +

                    The select menu plugin will auto initialize on any page that contains a select menu, without any need for a data-role attribute in the markup. However, you can directly call the select menu plugin on any selector, just like any normal jQuery plugin:

                    +
                    
                    +$('select').selectmenu();			
                    +
                    + +
                    + + +

                    Theming selects

                    +

                    You can specify any jQuery Mobile button data- attribute on a select element, too. In this example, we're setting the theme, icon and inline properties:

                    + +
                    + + +
                    + + +

                    Custom select menus

                    +

                    For the sake of advanced styling, the framework also offers a method of generating custom menus from existing select menu markup instead of the native OS menu. The custom menu supports disabled options and multiple selection (whereas native mobile OS support for both is inconsistent), adds an elegant way to handle placeholder values, and restores missing functionality on certain platforms such as optgroup support on Android. + +

                    +

                    + +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/selects/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/methods.html new file mode 100644 index 0000000..030183a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/methods.html @@ -0,0 +1,126 @@ + + + + + + jQuery Mobile Docs - Select methods + + + + + + + + + + +
                    + +
                    +

                    Select Menus

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Select menus

                    + + + +

                    The select menu plugin has the following methods:

                    + +
                    + +
                    close close an open select menu
                    +
                    +
                    
                    +$('select').selectmenu('close');			
                    +				
                    +
                    + +
                    enable enable a disabled select
                    +
                    +
                    
                    +$('select').selectmenu('enable');			
                    +				
                    +
                    + +
                    disable disable a select.
                    +
                    +
                    
                    +$('select').selectmenu('disable');			
                    +				
                    +
                    + +
                    open open a closed select menu (custom menus only)
                    +
                    +
                    
                    +$('select').selectmenu('open');			
                    +				
                    +
                    + +
                    refresh update the custom select
                    +
                    + This is used to update the custom select to reflect the native select element's value.If the number of options in the select are different than the number of items in the custom menu, it'll rebuild the custom menu. Also, if you pass a true argument you can force the rebuild to happen. +
                    
                    +//refresh value			
                    +$('select').selectmenu('refresh');
                    +
                    +//refresh and force rebuild
                    +$('select').selectmenu('refresh', true);
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/selects/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/options.html new file mode 100644 index 0000000..c90cfd1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/selects/options.html @@ -0,0 +1,173 @@ + + + + + + jQuery Mobile Docs - Select options + + + + + + + + + + +
                    + +
                    +

                    Select Menus

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Select menus

                    + + + +

                    The select menu plugin has the following options:

                    + + +
                    + +
                    corners boolean
                    +
                    +

                    default: true

                    +

                    Applies the theme button border-radius to the select button if set to true. This option is also exposed as a data attribute: data-corners="false"

                    +
                    $('select').selectmenu({ corners: "false" });
                    +
                    +
                    icon string
                    +
                    +

                    default: "arrow-down"

                    +

                    Applies an icon from the icon set to the custom button. This option is also exposed as a data attribute: data-icon="star"

                    +
                    $('select').selectmenu({ icon: "star" });
                    +
                    + +
                    iconpos string
                    +
                    +

                    default: "right"

                    +

                    Position of the icon in the select button. Possible values: left, right, none, notext. The notext value will display the select as an icon-only button with no text feedback. This option is also exposed as a data attribute: data-iconpos="left"

                    +
                    $('select').selectmenu({ iconpos: "left" });
                    +
                    + +
                    iconshadow boolean
                    +
                    +

                    default: true

                    +

                    Applies the theme shadow to the select button if set to true. This option is also exposed as a data attribute: data-iconshadow="false"

                    +
                    $('select').selectmenu({ iconshadow: "false" });
                    +
                    + +
                    initSelector CSS selector string
                    +
                    +

                    default: "select:not(:jqmData(role='slider'))"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as select menus. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +	$.mobile.selectmenu.prototype.options.initSelector = ".myselect";
                    +});
                    +
                    +
                    + +
                    inline boolean
                    +
                    +

                    default: null (false)

                    +

                    If set to true, this will make the select button act like an inline button so the width is determined by the button's text. By default, this is null (false) so the select button is full width, regardless of the feedback content. Possible values: true, false. This option is also exposed as a data attribute: data-inline="true"

                    +
                    $('select').selectmenu({ inline: "true" });
                    +
                    + +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $('select').selectmenu({ mini: "true" });
                    + +
                    nativeMenu boolean
                    +
                    +

                    default: true

                    +

                    When set to true, clicking the custom-styled select menu will open the native select menu which is best for performance. If set to false, the custom select menu style will be used instead of the native menu. This option is also exposed as a data attribute: data-native-menu="false"

                    +
                    $('select').selectmenu({ nativeMenu: "false" });
                    +
                    + +
                    overlayTheme string
                    +
                    +

                    default: a

                    +

                    Sets the color of the overlay layer for the dialog-based custom select menus and the outer border of the smaller custom menus. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, the content block colors for swatch A will be used for the overlays. This option is also exposed as a data attribute: ui-body-d

                    +
                    $('select').selectmenu({ overlayTheme: "d" });
                    +
                    + +
                    preventFocusZoom boolean
                    +
                    +

                    default: true on iOS platforms

                    +

                    This option disables page zoom temporarily when a custom select is focused, which prevents iOS devices from zooming the page into the select. By default, iOS often zooms into form controls, and the behavior is often unnecessary and intrusive in mobile-optimized layouts. This option is also exposed as a data attribute: data-prevent-focus-zoom="true"

                    +
                    $('select').selectmenu({ preventFocusZoom: true });
                    +
                    + + +
                    shadow boolean
                    +
                    +

                    default: true

                    +

                    Applies the drop shadow style to the select button if set to true. This option is also exposed as a data attribute: data-shadow="false"

                    +
                    $('select').selectmenu({ shadow: "false" });
                    +
                    + +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $('select').selectmenu({ theme: "a" });
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/slider/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/events.html new file mode 100644 index 0000000..0e28ead --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/events.html @@ -0,0 +1,104 @@ + + + + + + jQuery Mobile Docs - Slider events + + + + + + + + + + +
                    + +
                    +

                    Slider

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Slider

                    + + + +

                    Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$( ".selector" ).bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The slider plugin has the following custom event:

                    + +
                    + +
                    create triggered when a slider is created
                    +
                    + +
                    
                    +$( ".selector" ).slider({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/slider/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/index.html new file mode 100644 index 0000000..79cc947 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/index.html @@ -0,0 +1,179 @@ + + + + + + jQuery Mobile Docs - Slider + + + + + + + + + + +
                    + +
                    +

                    Slider

                    + Home + Search +
                    + +
                    +
                    + +
                    +

                    Slider

                    + + + +

                    To add a slider widget to your page, use a standard input with the type="range" attribute. The input's value is used to configure the starting position of the handle and the value is populated in the text input. Specify min and max attribute values to set the slider's range. If you want to constrain input to specific increments, add the step attribute. Set the value attribute to define the initial value. The framework will parse these attributes to configure the slider widget. View the data- attribute reference to see all the possible attributes you can add to sliders.

                    + +

                    As you drag the slider's handle, the framework will update the native input's value (and vice-versa) so they are always in sync; this ensures that the value is submitted with the form.

                    +

                    Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                    + +

                    The framework will find all input elements with a type="range" and automatically enhance them into a slider with an accompanying input without any need to apply a data-role attribute. To prevent the automatic enhancement of this input into a slider, add data-role="none" attribute to the input and wrap them in a div with the data-role="fieldcontain" attribute to group them. In this example, the acceptable range is 0-100.

                    + +
                    
                    +<label for="slider-0">Input slider:</label>
                    +<input type="range" name="slider" id="slider-0" value="60" min="0" max="100" />
                    +
                    + +

                    The default slider with these settings is displayed like this:

                    + + + +

                    Step increment

                    + +

                    To force the slider to snap to a specific increment, add the step attribute to the input. By default, the step is 1, but in this example, the step is 50 and the maximum value is 500.

                    + +
                    
                    +<label for="slider-step">Input slider:</label>
                    +<input type="range" name="slider" id="slider-step" value="150" min="0" max="500" step="50" />
                    +
                    + +

                    This will produce an input that snaps to increments of 50. If a value is added to the input that isn't valid with the step increment, the value will be reset on blur to the closest step.

                    + + + + +

                    Fill highlight

                    + +

                    To have a highlight fill on the track up to the slider handle position, add the data-highlight="true" attribute to the input. The fill uses active state swatch.

                    + +
                    
                    +<label for="slider-fill">Input slider:</label>
                    +<input type="range" name="slider" id="slider-fill" value="60" min="0" max="100" data-highlight="true" />
                    +
                    + + + + + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    
                    +<label for="slider-0">Input slider:</label>
                    +<input type="range" name="slider" id="slider-0" value="25" min="0" max="100" data-highlight="true" data-mini="true" />
                    +
                    + +

                    This will produce an input that is not as tall as the standard version and has a smaller text size.

                    + + + +

                    Field containers

                    + +

                    Optionally wrap the slider markup in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form. In this example, the step attribute is omitted to allow any whole number value to be selected.

                    + + +
                    
                    +<div data-role="fieldcontain">
                    +   <label for="slider">Input slider:</label>
                    +   <input type="range" name="slider" id="slider" value="25" min="0" max="100"  />
                    +</div>
                    +
                    + +

                    The slider is now displayed like this:

                    +
                    + + +
                    + +

                    Sliders also respond to key commands. Right Arrow, Up Arrow and Page Up keys increase the value; Left Arrow, Down Arrow and Page Down keys decrease it. To move the slider to its minimum or maximum value, use the Home or End key, respectively.

                    + + +

                    Calling the slider plugin

                    + +

                    This plugin will auto initialize on any page that contains a text input with the type="range" attribute. However, if needed you can directly call the slider plugin on any selector, just like any jQuery plugin:

                    +
                    
                    +$('input').slider();
                    +
                    + + +

                    Theming the slider

                    +

                    To set the theme swatch for the slider, add a data-theme attribute to the input which will apply the theme to both the input, handle and track. The track swatch can be set separately by adding the data-track-theme attribute to apply the down state version of the selected button swatch.

                    + +
                    
                    +<div data-role="fieldcontain">
                    +	<label for="slider-2">Input slider:</label>
                    +	<input type="range" name="slider-2" id="slider-2" value="25" min="0" max="100" data-theme="a" data-track-theme="b" />
                    +</div>
                    +		
                    + +

                    This will produce a themed slider:

                    +
                    + + +
                    +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/slider/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/methods.html new file mode 100644 index 0000000..7cffa6d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/methods.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Slider methods + + + + + + + + + + +
                    + +
                    +

                    Slider

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Slider

                    + + + +

                    The slider plugin has the following methods:

                    + +
                    +
                    enable enable a disabled slider
                    +
                    +
                    
                    +$('.selector').slider('enable');			
                    +				
                    +
                    + +
                    disable disable a slider
                    +
                    +
                    
                    +$('.selector').slider('disable');			
                    +				
                    +
                    + +
                    refresh update the slider
                    +
                    +

                    If you manipulate a slider via JavaScript, you must call the refresh method on it to update the visual styling.

                    + +
                    			
                    +$('.selector').slider('refresh');
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/slider/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/options.html new file mode 100644 index 0000000..d641094 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/slider/options.html @@ -0,0 +1,131 @@ + + + + + + jQuery Mobile Docs - Slider options + + + + + + + + + + +
                    + +
                    +

                    Slider

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Slider

                    + + + +

                    The slider plugin has the following options:

                    + +
                    +
                    disabled string
                    +
                    +

                    default: false

                    +

                    Sets the default state of the slider to disabled when "true".

                    +
                    $('.selector').slider({ disabled: "true" });
                    +
                    + +
                    highlight boolean
                    +
                    +

                    default: false

                    +

                    Sets an active state fill on the track from the left edge to the slider handle when set to "true".

                    +
                    $('.selector').slider({ highlight: "true" });
                    +
                    + +
                    initSelector CSS selector string
                    +
                    +

                    default: "input[type='range'], :jqmData(type='range'), :jqmData(role='slider')"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as sliders. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +   $.mobile.slider.prototype.options.initSelector = ".myslider";
                    +});
                    +
                    +
                    + +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $('.selector').slider({ mini: "true" });
                    +
                    + +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as its parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $('.selector').slider({ theme: "a" });
                    +
                    + +
                    trackTheme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for the slider's track, specifically. It accepts a single letter from a-z that maps to the swatches included in your theme.

                    +
                    $('.selector').slider({ trackTheme: "a" });
                    +

                    This option can be overridden in the markup by assigning a data attribute to the input, e.g. data-track-theme="a".

                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/switch/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/events.html new file mode 100644 index 0000000..005d230 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/events.html @@ -0,0 +1,104 @@ + + + + + + jQuery Mobile Docs - Slider events + + + + + + + + + + +
                    + +
                    +

                    Flip Toggle Switch

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Flip toggle switch

                    + + + +

                    Bind events directly to the select element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$( ".selector" ).bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The slider plugin has the following custom event:

                    + +
                    + +
                    create triggered when a slider is created
                    +
                    + +
                    
                    +$( ".selector" ).slider({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/switch/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/index.html new file mode 100644 index 0000000..a3a59f7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/index.html @@ -0,0 +1,210 @@ + + + + + + jQuery Mobile Docs - Switch + + + + + + + + + + +
                    + +
                    +

                    Flip Toggle Switch

                    + Home + Search +
                    + +
                    +
                    + +
                    +

                    Flip toggle switch

                    + + + +

                    A binary "flip" switch is a common UI element on mobile devices that is used for binary on/off or true/false data input. You can either drag the flip handle like a slider or tap one side of the switch.

                    + +

                    To create a flip toggle, start with a select with two options. The first option will be styled as the "on" state switch and the second will be styled as the "off" state so write your options accordingly. View the data- attribute reference to see all the possible attributes you can add to flip switches.

                    + +

                    Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                    + +
                    	
                    +<label for="flip-a">Select slider:</label>
                    +<select name="slider" id="flip-a" data-role="slider">
                    +	<option value="off">Off</option>
                    +	<option value="on">On</option>
                    +</select> 
                    +
                    + +

                    This will produce a basic flip toggle switch input. The default styles set the width of the switch to 100% of the parent container and stack the label on a separate line.

                    + + + + + +

                    Longer Labels

                    +

                    The control is proportionally scaled, so to use longer labels one can just add a line of CSS setting the switch to the desired width. For example, given the following markup:

                    +
                    
                    +<div class="containing-element">
                    +	<label for="flip-min">Flip switch:</label>
                    +	<select name="slider" id="flip-min" data-role="slider">
                    +		<option value="off">Switch Off</option>
                    +		<option value="on">Switch On</option>
                    +	</select>
                    +</div>
                    +
                    + +

                    .containing-element .ui-slider-switch { width: 9em } will produce:

                    + + + +
                    + + +
                    + +

                    As some default styles hinge on fieldcontains, note that you may have to ensure that custom styles apply to switches within fieldcontains by using .ui-field-contain div.ui-slider-switch { width: […]; }.

                    + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    	
                    +<label for="flip-a">Select slider:</label>
                    +<select name="slider" id="flip-a" data-role="slider" data-mini="true">
                    +	<option value="off">Off</option>
                    +	<option value="on">On</option>
                    +</select>
                    +
                    + +

                    This will produce a flip switch that is not as tall as the standard version and has a smaller text size.

                    + + + + +

                    Field containers

                    +

                    Optionally wrap the switch markup in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                    + +
                    	
                    +<div data-role="fieldcontain">
                    +<label for="flip-b">Flip switch:</label>
                    +	<select name="slider" id="flip-b" data-role="slider">
                    +		<option value="no">No</option>
                    +		<option value="yes">Yes</option>
                    +	</select> 
                    +</div>
                    +
                    +

                    The flip toggle switch is now displayed like this:

                    +
                    + + +
                    + + +

                    Theming the flip switch

                    + +

                    Like all form elements, this widget will automatically inherit the theme from its parent container. To choose a specific theme color swatch, specify the data-theme attribute on the select and specify a swatch letter.

                    + +
                    	
                    +<div data-role="fieldcontain">
                    +	<label for="flip-c">Flip switch:</label>
                    +	<select name="slider" id="flip-c" data-role="slider" data-theme="a">
                    +		<option value="no">No</option>
                    +		<option value="yes">Yes</option>
                    +	</select> 
                    +</div>
                    +
                    +

                    This results in a switch with the A swatch colors for the handle. Note that the lefthand "on" state gets the active state color.

                    +
                    + + +
                    + +

                    Here is a E swatch variation:

                    +
                    + + +
                    + +

                    Calling the switch plugin

                    + +

                    This plugin will auto-initialize on any page that contains a select with the data-role="slider" attribute. However, if needed you can directly call the slider plugin on any selector, just like any jQuery plugin:

                    +
                    
                    +$('select').slider();			
                    +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/switch/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/methods.html new file mode 100644 index 0000000..59834e5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/methods.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Slider methods + + + + + + + + + + +
                    + +
                    +

                    Flip Toggle Switch

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Flip toggle switch

                    + + + +

                    The slider plugin has the following methods:

                    + +
                    +
                    enable enable a disabled slider
                    +
                    +
                    
                    +$('.selector').slider('enable');			
                    +				
                    +
                    + +
                    disable disable a slider
                    +
                    +
                    
                    +$('.selector').slider('disable');			
                    +				
                    +
                    + +
                    refresh update the slider
                    +
                    +

                    If you manipulate a slider via JavaScript, you must call the refresh method on it to update the visual styling.

                    + +
                    			
                    +$('.selector').slider('refresh');
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/switch/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/options.html new file mode 100644 index 0000000..862b548 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/switch/options.html @@ -0,0 +1,123 @@ + + + + + + jQuery Mobile Docs - Slider options + + + + + + + + + + +
                    + +
                    +

                    Flip Toggle Switch

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Flip toggle switch

                    + + + +

                    The slider plugin has the following options:

                    + +
                    +
                    disabled string
                    +
                    +

                    default: false

                    +

                    Sets the default state of the slider to disabled when "true".

                    +
                    $('.selector').slider({ disabled: "true" });
                    +
                    + +
                    initSelector CSS selector string
                    +
                    +

                    default: "input[type='range'], :jqmData(type='range'), :jqmData(role='slider')"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as sliders. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +   $.mobile.slider.prototype.options.initSelector = ".myslider";
                    +});
                    +
                    + +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $('.selector').slider({ mini: "true" });
                    +
                    + +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $('.selector').slider({ theme: "a" });
                    +
                    + +
                    trackTheme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for the slider's track, specifically. It accepts a single letter from a-z that maps to the swatches included in your theme.

                    +
                    $('.selector').slider({ trackTheme: "a" });
                    +

                    This option can be overridden in the markup by assigning a data attribute to the input, e.g. data-track-theme="a".

                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/events.html b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/events.html new file mode 100644 index 0000000..b4020d5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/events.html @@ -0,0 +1,103 @@ + + + + + + jQuery Mobile Docs - Text Input events + + + + + + + + + + +
                    + +
                    +

                    Text inputs

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Text inputs

                    + + + +

                    Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                     
                    +$( ".selector" ).bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The text input plugin has the following custom events:

                    + +
                    + +
                    create triggered when a text input is created
                    +
                    + +
                    
                    +$( ".selector" ).textinput({
                    +   create: function(event, ui) { ... }
                    +});		
                    +			
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/index.html b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/index.html new file mode 100644 index 0000000..fd88c35 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/index.html @@ -0,0 +1,244 @@ + + + + + + jQuery Mobile Docs - Text inputs + + + + + + + + + + +
                    + +
                    +

                    Text inputs

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Text inputs & Textareas

                    + + + +

                    Text inputs and textareas are coded with standard HTML elements, then enhanced by jQuery Mobile to make them more attractive and useable on a mobile device. View the data- attribute reference to see all the possible attributes you can add to text inputs.

                    + +

                    Text inputs

                    +

                    To collect standard alphanumeric text, use an input with a type="text" attribute. Set the for attribute of the label to match the ID of the input so they are semantically associated. It's possible to accessibly hide the label if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.

                    + +
                    	
                    +    <label for="basic">Text Input:</label>
                    +    <input type="text" name="name" id="basic" value=""  />
                    +
                    + +

                    This will produce a basic text input. The default styles set the width of the input to 100% of the parent container and stack the label on a separate line.

                    + + + + +

                    Mini version

                    + +

                    For a more compact version that is useful in toolbars and tight spaces, add the data-mini="true" attribute to the element to create a mini version.

                    + +
                    	
                    +<label for="basic">Text Input:</label>
                    +<input type="text" name="name" id="basic" value="" data-mini="true" />
                    +
                    + +

                    This will produce an input that is not as tall as the standard version and has a smaller text size.

                    + + + +

                    Field containers

                    + +

                    Optionally wrap the text input in a container with the data-role="fieldcontain" attribute to help visually group it in a longer form.

                    + +
                    	
                    +<div data-role="fieldcontain">
                    +    <label for="name">Text Input:</label>
                    +    <input type="text" name="name" id="name" value=""  />
                    +</div>	
                    +
                    + +

                    The text input is now displayed like this:

                    +
                    + + +
                    + + +

                    More text input types

                    +

                    In jQuery Mobile, you can use existing and new HTML5 input types such as password, email, tel, number, and more. Some type values are rendered differently across browsers. For example, Chrome renders the range input as a slider. jQuery Mobile standardizes the appearance of range and search by dynamically changing their type to text. You can configure which input types are degraded to text with the page plugin's options.

                    + +

                    One major advantage of using these more specific input types if that on mobile devices, specialized keyboards that speed data entry are offered in place of the standard text keyboard. Try the following inputs on a mobile device to see which display custom keyboards on various platforms.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + + +

                    Textareas

                    +

                    For multi-line text inputs, use a textarea element. The framework will auto-grow the height of the textarea to avoid the need for an internal scrollbar.

                    +

                    Set the for attribute of the label to match the ID of the textarea so they are semantically associated, and wrap them in a div with the data-role="fieldcontain" attribute to group them.

                    + +
                    	
                    +<label for="textarea-a">Textarea:</label>
                    +<textarea name="textarea" id="textarea-a">
                    +I'm a basic textarea. If this is pre-populated with content, the height will be automatically adjusted to fit without needing to scroll. That is a pretty handy usability feature.
                    +</textarea>
                    +
                    + +

                    This will produce a basic textarea with the width set to 100% of the parent container and the label stacked on a separate line. The textarea will grow to fit new lines as you type:

                    + + + +
                    	
                    +<div data-role="fieldcontain">
                    +<label for="textarea">Textarea:</label>
                    +	<textarea name="textarea" id="textarea"></textarea>
                    +</div>
                    +
                    + +

                    The textarea is displayed like this and will grow to fit new lines as you type:

                    +
                    + + +
                    + + +

                    Calling the textinput plugin

                    + +

                    This plugin will auto initialize on any page that contains a textarea or any of the text input types listed above without any need for a data-role attribute in the markup. However, if needed, you can directly call the textinput plugin on any selector, just like any jQuery plugin:

                    +
                    
                    +$('input').textinput();			
                    +			
                    + + +

                    Degraded input types

                    +

                    jQuery Mobile degrades several HTML5 input types back to type=text or type=number after adding enhanced controls. For example, inputs with a type of range are enhanced with a custom slider control, and their type is set to number to offer a usable form input alongside that slider. Inputs with a type of search are degraded back to type=text after we add our own themable search input styling.

                    +

                    The page plugin contains a list of input types that are set to either true which means they'll degrade to type=text, false which means they'll be left alone, or a string such as "number", which means they'll be converted to that type (such as the case of type=range).

                    + +

                    You can configure which types are changed via the page plugin's degradeInputs option, which can be manipulated externally via $.mobile.page.prototype.options.degradeInputs, which has properties: color, date, datetime, "datetime-local", email, month, number, range, search, tel, time, url, and week. Be sure to configure this inside an event handler bound to the mobileinit event, so that it applies to the first page as well as subsequent pages that are loaded.

                    + + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/methods.html b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/methods.html new file mode 100644 index 0000000..d3dadd4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/methods.html @@ -0,0 +1,100 @@ + + + + + + jQuery Mobile Docs - Text Input methods + + + + + + + + + + +
                    + +
                    +

                    Text inputs

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Text inputs

                    + + + +

                    The text input plugin has the following methods:

                    + +
                    + +
                    enable enable a disabled text input
                    +
                    +
                    
                    +$('.selector').textinput('enable');			
                    +				
                    +
                    + +
                    disable disable a text input
                    +
                    +
                    
                    +$('.selector').textinput('disable');			
                    +				
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/options.html b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/options.html new file mode 100644 index 0000000..cee3e49 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/forms/textinputs/options.html @@ -0,0 +1,117 @@ + + + + + + jQuery Mobile Docs - Text Input options + + + + + + + + + + +
                    + +
                    +

                    Text inputs

                    + Home + Search +
                    + +
                    +
                    + +
                    + +

                    Text inputs

                    + + + +

                    The text input plugin has the following options:

                    + +
                    +
                    initSelector CSS selector string
                    +
                    +

                    default: "input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input:not([type])"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as textinputs. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +   $.mobile.textinput.prototype.options.initSelector = ".myInputs";
                    +});
                    +
                    +
                    + +
                    mini boolean
                    +
                    +

                    default: false

                    +

                    Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

                    +
                    $('.selector').textinput({ mini: "true" });
                    +
                    + +
                    preventFocusZoom boolean
                    +
                    +

                    default: true on iOS platforms

                    +

                    This option disables page zoom temporarily when a custom input is focused, which prevents iOS devices from zooming the page into the input. By default, iOS often zooms into form controls, and the behavior is often unnecessary and intrusive in mobile-optimized layouts. This option is also exposed as a data attribute: data-prevent-focus-zoom="true"

                    +
                    $('input').textinput({ preventFocusZoom: true });
                    +
                    + + +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

                    +
                    $('.selector').textinput({ theme: "a" });
                    +
                    + +
                    + +
                    +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/index.html b/libs/js/jquery-mobile-1.1.0/docs/index.html new file mode 100644 index 0000000..ae0cec3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/index.html @@ -0,0 +1,33 @@ + + + + + + jQuery UI Mobile Framework - Documentation + + + + + + + + + + +
                    + +
                    +

                    jQuery Mobile Docs

                    + Home +
                    + +
                    + +

                    Nothing to see here folks.

                    +View the documentation home page + +
                    + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/docs-lists.html b/libs/js/jquery-mobile-1.1.0/docs/lists/docs-lists.html new file mode 100644 index 0000000..b99612a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/docs-lists.html @@ -0,0 +1,177 @@ + + + + + + jQuery Mobile Docs - Lists Overview + + + + + + + + + + +
                    + +
                    +

                    Lists

                    + Home + Search +
                    + +
                    +
                    +

                    List views

                    + + + +

                    Basic linked lists

                    +

                    A list view is coded as a simple unordered list containing linked list items with a data-role="listview" attribute. jQuery Mobile will apply all the necessary styles to transform the list into a mobile-friendly list view with right arrow indicator that fills the full width of the browser window. When you tap on the list item, the framework will trigger a click on the first link inside the list item, issue an AJAX request for the URL in the link, create the new page in the DOM, then kick off a page transition. View the data- attribute reference to see all the possible attributes you can add to listviews.

                    +

                    Here is the HTML markup for a basic linked list.

                    + +
                    
                    +<ul data-role="listview" data-theme="g">
                    +	<li><a href="acura.html">Acura</a></li>
                    +	<li><a href="audi.html">Audi</a></li>
                    +	<li><a href="bmw.html">BMW</a></li>
                    +</ul>
                    +
                    + + Basic list example + +

                    Style note on non-inset lists: all standard, non-inset lists have a -15px margin to negate the 15px of padding on the content area to make lists fill to the edges of the screen. If you add other widgets above or below a list, the negative margin may make these elements overlap so you'll need to add additional spacing in your custom CSS.

                    +

                    Nested lists

                    +

                    By nesting child ul or ol inside list items, you can create nested lists. When a list item with a child list is clicked, the framework will generate a new ui-page populated with the title of the parent in the header and the list of child elements. These dynamic nested lists are styled with the "b" theme swatch (blue in the default theme) to indicate that you are in a secondary level of navigation. Lists can be nested multiple levels deep and all pages and linking will be automatically handled by the framework.

                    +

                    To set the swatch color of the child list views, set the data-theme attribute on each list inside.

                    + Nested list example + +

                    Numbered lists

                    +

                    Lists can also be created from ordered lists (ol) which is useful when presenting items that are in a sequence such as search results or a movie queue. When the enhanced markup is applied to the list view, jQuery Mobile will try to first use CSS to add numbers to the list and, if not supported, will fall back to injecting numbers with JavaScript.

                    + + Numbered list example + +

                    Read-only lists

                    +

                    List views can also be used to display a non-interactive list of items, usually as an inset list. This list is built from an unordered or ordered list that don't have linked list items. The framework defaults to styling these list with the "c" theme swatch and sets the text size to a smaller size than the clickable lists to save a bit of space.

                    + + Read-only list example + +

                    Split button lists

                    +

                    In cases where there is more than one possible action per list item, a split button can be used to offer two independently clickable items -- the list item and a small arrow icon in the far right. To make a split list item, simply add a second link inside the li and the framework will add a vertical divider line, style the link as an icon-only arrow button, and set the title attribute of the link to the text the link for accessibility.

                    +

                    You can set the icon for the right split icon by specifying a data-split-icon attribute with the icon name you want. The theme swatch color of the split button can be set by specifying a swatch letter in the data-split-theme attribute

                    + + Split list example + + +

                    List dividers

                    +

                    List items can be turned into dividers to organize and group the list items. This is done by adding the data-role="list-divider" to any list item. These items are styled with the bar swatch "b" by default (blue in the default theme) but you can specify a theme for dividers by adding the data-dividertheme attribute to the list element (ul or ol) and specifying a theme swatch letter.

                    + + List divider example + + +

                    Search filter

                    +

                    jQuery Mobile provides a very easy way to filter a list with a simple client-side search feature. To make a list filterable, simply add the data-filter="true" attribute to the list. The framework will then append a search box above the list and add the behavior to filter out list items that don't contain the current search string as the user types. The input's placeholder text defaults to "Filter items...". To configure the placeholder text in the search input, you can either bind to the mobileinit event and set the $.mobile.listview.prototype.options.filterPlaceholder option to a string of your choosing, or use the data-attribute data-filter-placeholder on your listview. By default the search box will inherit its theme from its parent. The search box theme can be configured using the data-attribute data-filter-theme on your listview.

                    + + Search filter example + +

                    If you want to change the way in which list items are filtered, ie fuzzy search or matching from the beginning of the string, you can configure the callback used internally by defining $.mobile.listview.prototype.options.filterCallback during mobileinit or after the widget has been created with $("#mylist").listview('option', 'filterCallback', yourFilterFunction). Any function defined for the callback will be provided two arguments. First, the text of the current list item and second, the value being searched for. A truthy value will result in a hidden list item. The default callback which filters entries without the searchValue as a substring is described below: +

                    + +
                    function( text, searchValue ){
                    +  return text.toLowerCase().indexOf( searchValue ) === -1;
                    +};
                    + +

                    To filter list items by values other than the text, add a data-filtertext attribute to the list item. The value of this attribute will be passed as the first argument to the filterCallback function instead of the text.

                    + + Hidden data filter example + +

                    Text formatting & counts

                    +

                    The framework includes text formatting conventions for common list patterns like header/descriptions, secondary information and counts through semantic HTML markup.

                    + +
                      +
                    • To add a count indicator to the right of the list item, wrap the number in an element with a class of ui-li-count
                    • +
                    • To add text hierarchy, use headings to increase font emphasis and use paragraphs to reduce emphasis.
                    • +
                    • Supplemental information can be added to the right of each list item by wrapping content in an element with a class of ui-li-aside
                    • +
                    + List with count bubbles + List with text formatting + +

                    Thumbnails & icons

                    +

                    To add thumbnails to the left of a list item, simply add an image inside a list item as the first child element. The framework will scale the image to 80 pixels square. To use standard 16x16 pixel icons in list items, add the class of ui-li-icon to the image element.

                    + List with thumbnail images + List with icon images + +

                    Inset lists

                    +

                    If lists are embedded in a page with other types of content, an inset list packages the list into a block that sits inside the content area with a bit of margin and rounded corners (theme controlled). By adding the data-inset="true" attribute to the list (ul or ol), applies the inset appearance.

                    + + Inset list example + +

                    Calling the listview plugin

                    +

                    You can directly call the listview plugin on any selector, just like any jQuery plugin:

                    + $('#mylist').listview(); + +

                    Updating lists

                    +

                    If you add items to a listview, you'll need to call the refresh() method on it to update the styles and create any nested lists that are added. For example:

                    + $('#mylist').listview('refresh'); + +

                    Note that the refresh() method only affects new nodes appended to a list. This is done for performance reasons. Any list items already enhanced will be ignored by the refresh process. This means that if you change the contents or attributes on an already enhanced list item, these won't be reflected. If you want a list item to be updated, replace it with fresh markup before calling refresh.

                    + + +
                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-af.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-af.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-af.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-af.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-ag.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-ag.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-ag.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-ag.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-bb.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-bb.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-bb.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-bb.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-bk.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-bk.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-bk.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-bk.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-hc.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-hc.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-hc.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-hc.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-k.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-k.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-k.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-k.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-mg.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-mg.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-mg.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-mg.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-ok.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-ok.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-ok.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-ok.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-p.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-p.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-p.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-p.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-rh.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-rh.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-rh.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-rh.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-ws.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-ws.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-ws.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-ws.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-xx.jpg b/libs/js/jquery-mobile-1.1.0/docs/lists/images/album-xx.jpg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/album-xx.jpg rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/album-xx.jpg diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/de.png b/libs/js/jquery-mobile-1.1.0/docs/lists/images/de.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/de.png rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/de.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/fi.png b/libs/js/jquery-mobile-1.1.0/docs/lists/images/fi.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/fi.png rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/fi.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/gb.png b/libs/js/jquery-mobile-1.1.0/docs/lists/images/gb.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/gb.png rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/gb.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/gf.png b/libs/js/jquery-mobile-1.1.0/docs/lists/images/gf.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/gf.png rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/gf.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/sj.png b/libs/js/jquery-mobile-1.1.0/docs/lists/images/sj.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/sj.png rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/sj.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/lists/images/us.png b/libs/js/jquery-mobile-1.1.0/docs/lists/images/us.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/lists/images/us.png rename to libs/js/jquery-mobile-1.1.0/docs/lists/images/us.png diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/index.html b/libs/js/jquery-mobile-1.1.0/docs/lists/index.html new file mode 100644 index 0000000..d5a1216 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/index.html @@ -0,0 +1,72 @@ + + + + + + jQuery Mobile Docs - Lists + + + + + + + + + + +
                    + +
                    +

                    Lists

                    + Home + Search +
                    + +
                    + +

                    Lists are used for data display, navigation, result lists, and data entry so jQuery Mobile includes a wide range of list types and formatting examples to cover most common design patterns.

                    + + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-all-full.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-all-full.html new file mode 100644 index 0000000..5eade10 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-all-full.html @@ -0,0 +1,174 @@ + + + + + + jQuery Mobile Docs - Lists + + + + + + + + + + +
                    + +
                    +

                    Linked list samples

                    + Home + Search +
                    + +
                    + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-count.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-count.html new file mode 100644 index 0000000..d8e2e4e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-count.html @@ -0,0 +1,83 @@ + + + + + + jQuery Mobile Docs - Lists Count Bubbles + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-divider.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-divider.html new file mode 100644 index 0000000..0c75c5f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-divider.html @@ -0,0 +1,114 @@ + + + + + + jQuery Mobile Docs - List Dividers + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-events.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-events.html new file mode 100644 index 0000000..6a7fec4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-events.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Lists Overview + + + + + + + + + + +
                    + +
                    +

                    Lists

                    + Home + Search +
                    + +
                    +
                    +

                    List views

                    + + + +

                    Bind events directly to the ol or ul element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

                    +
                    
                    +$( ".selector" ).bind( "change", function(event, ui) {
                    +  ...
                    +});
                    +
                    + +

                    The listview plugin has the following custom event:

                    + +
                    + +
                    create triggered when a listview is created
                    +
                    + +
                    
                    +$( ".selector" ).listview({
                    +   create: function(event, ui) { ... }
                    +});
                    +			
                    +
                    + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-formatting.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-formatting.html new file mode 100644 index 0000000..4451adf --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-formatting.html @@ -0,0 +1,135 @@ + + + + + + jQuery Mobile Docs - List Formatting + + + + + + + + + + +
                    + +
                    +

                    List formatting

                    + Home + Search +
                    + +
                    + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-forms-inset.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-forms-inset.html new file mode 100644 index 0000000..51b2751 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-forms-inset.html @@ -0,0 +1,249 @@ + + + + + + jQuery Mobile Docs - Inset Lists with Forms + + + + + + + + + + +
                    + +
                    +

                    Inset with Forms

                    + Home + Search +
                    + +
                    +
                    +
                    +
                      +
                    • + + +
                    • +
                    • + + +
                    • +
                    • + + +
                    • +
                    • + + +
                    • +
                    • + + +
                    • +
                    • +
                      + Choose as many snacks as you'd like: + + + + + + + + + + + +
                      +
                    • + +
                    • +
                      + Font styling: + + + + + + + + +
                      +
                    • +
                    • +
                      + Choose a pet: + + + + + + + + + + + +
                      +
                    • + + +
                    • +
                      + Layout view: + + + + +
                      +
                    • + +
                    • + + +
                    • + +
                    • + + +
                    • + +
                    • + + +
                    • + +
                    • +
                      +
                      +
                      +
                      +
                    • + +
                    + + + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-forms.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-forms.html new file mode 100644 index 0000000..06855e7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-forms.html @@ -0,0 +1,249 @@ + + + + + + jQuery Mobile Docs - Lists with Forms + + + + + + + + + + +
                    + +
                    +

                    Lists with Forms

                    + Home + Search +
                    + +
                    +
                    +
                    +
                      +
                    • + + +
                    • +
                    • + + +
                    • +
                    • + + +
                    • +
                    • + + +
                    • +
                    • + + +
                    • +
                    • +
                      + Choose as many snacks as you'd like: + + + + + + + + + + + +
                      +
                    • + +
                    • +
                      + Font styling: + + + + + + + + +
                      +
                    • +
                    • +
                      + Choose a pet: + + + + + + + + + + + +
                      +
                    • + + +
                    • +
                      + Layout view: + + + + + + +
                      +
                    • + +
                    • + + +
                    • + +
                    • + + +
                    • + +
                    • + + +
                    • + +
                    • +
                      +
                      +
                      +
                      +
                    • + +
                    + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-icons.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-icons.html new file mode 100644 index 0000000..c9e57c7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-icons.html @@ -0,0 +1,89 @@ + + + + + + jQuery Mobile Docs - List Icons + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-inset.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-inset.html new file mode 100644 index 0000000..de68e93 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-inset.html @@ -0,0 +1,175 @@ + + + + + + jQuery Mobile Docs - Lists with Form Controls + + + + + + + + + + +
                    + +
                    +

                    Inset list samples

                    + Home + Search +
                    + +
                    + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-methods.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-methods.html new file mode 100644 index 0000000..62bec22 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-methods.html @@ -0,0 +1,108 @@ + + + + + + jQuery Mobile Docs - Lists Overview + + + + + + + + + + +
                    + +
                    +

                    Lists

                    + Home + Search +
                    + +
                    +
                    +

                    List views

                    + + + +

                    The listview plugin has the following methods:

                    + +
                    +
                    childPages retrieve the sub-pages
                    +
                    +

                    This method returns a jQuery object containing all the immediate child pages of a nested list.

                    + +
                    
                    +$('.selector').listview('childPages');
                    +				
                    +
                    + +
                    refresh update the listview
                    +
                    +

                    If you manipulate a listview via JavaScript (e.g. add new LI elements), you must call the refresh method on it to update the visual styling.

                    + +
                    
                    +$('.selector').listview('refresh');
                    +				
                    +
                    + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-nested.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-nested.html new file mode 100644 index 0000000..d35f893 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-nested.html @@ -0,0 +1,194 @@ + + + + + + jQuery Mobile Docs - Nested Lists + + + + + + + + + + +
                    + +
                    +

                    Nested list

                    + Home + Search +
                    + +
                    +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-ol.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-ol.html new file mode 100644 index 0000000..60e5864 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-ol.html @@ -0,0 +1,98 @@ + + + + + + jQuery Mobile Docs - Ordered Lists + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-options.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-options.html new file mode 100644 index 0000000..bd043fb --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-options.html @@ -0,0 +1,222 @@ + + + + + + jQuery Mobile Docs - Lists Overview + + + + + + + + + + +
                    + +
                    +

                    Lists

                    + Home + Search +
                    + +
                    +
                    +

                    List views

                    + + + +

                    The listview plugin has the following options:

                    + +
                    +
                    countTheme string
                    +
                    +

                    default: "c"

                    +

                    Sets the color scheme (swatch) for list item count bubbles. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.countTheme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-count-theme="a".

                    +
                    + +
                    dividerTheme string
                    +
                    +

                    default: "b"

                    +

                    Sets the color scheme (swatch) for list dividers. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.dividerTheme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-dividertheme="a".

                    +
                    + +
                    filter boolean
                    +
                    +

                    default: false

                    +

                    Adds a search filter bar to listviews. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.filter = true;
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-filter="true".

                    +
                    + +
                    filterCallback function
                    +
                    +

                    The function to determine which rows to hide when the search filter textbox changes. The function accepts two arguments -- the text of the list item (or data-filtertext value if present), and the search string. Return true to hide the item, false to leave it visible. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.filterCallback = function( text, searchValue ) {
                    +        // only show items that *begin* with the search string
                    +        return text.toLowerCase().substring( 0, searchValue.length ) !== searchValue;
                    +    };
                    +});
                    +
                    +
                    + +
                    filterPlaceholder string
                    +
                    +

                    default: "Filter items..."

                    +

                    The placeholder text used in search filter bars. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.filterPlaceholder = "Search...";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-filter-placeholder="Search...".

                    +
                    + +
                    filterTheme string
                    +
                    +

                    default: "c"

                    +

                    Sets the color scheme (swatch) for the search filter bar. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.filterTheme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-filter-theme="a".

                    +
                    + +
                    headerTheme string
                    +
                    +

                    default: "b"

                    +

                    Sets the color scheme (swatch) for headers of nested list sub pages. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.headerTheme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-header-theme="a".

                    +
                    + +
                    initSelector CSS selector string
                    +
                    +

                    default: ":jqmData(role='listview')"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as list views. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.initSelector = ".mylistview";
                    +});
                    +
                    +
                    + +
                    inset boolean
                    +
                    +

                    default: false

                    +

                    Adds inset list styles. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.inset = true;
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-inset="true".

                    +
                    + +
                    splitIcon string
                    +
                    +

                    default: "arrow-r"

                    +

                    Applies an icon from the icon set to all split list buttons. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.splitIcon = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-split-icon="a".

                    +
                    + +
                    splitTheme string
                    +
                    +

                    default: "b"

                    +

                    Sets the color scheme (swatch) for split list buttons. It accepts a single letter from a-z that maps to the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.splitTheme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-split-theme="a".

                    +
                    + +
                    theme string
                    +
                    +

                    default: null, inherited from parent

                    +

                    Sets the color scheme (swatch) for this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as its parent container if not explicitly set. To set the value for all instances of this widget, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +    $.mobile.listview.prototype.options.theme = "a";
                    +});
                    +
                    +

                    This option is also exposed as a data attribute: data-theme="a".

                    +
                    + +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-performance.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-performance.html new file mode 100644 index 0000000..c197f4e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-performance.html @@ -0,0 +1,578 @@ + + + + + + jQuery Mobile Docs - List Performance Test + + + + + + + + + + +
                    + +
                    +

                    500 item list

                    + Home + Search +
                    + +
                    +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-readonly-inset.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-readonly-inset.html new file mode 100644 index 0000000..512b95a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-readonly-inset.html @@ -0,0 +1,171 @@ + + + + + + jQuery Mobile Docs - Readonly Inset Lists + + + + + + + + + + +
                    + +
                    +

                    Readonly Inset Lists

                    + Home + Search +
                    + +
                    +
                    +

                    Simple list

                    + +
                      +
                    • Acura
                    • +
                    • Audi
                    • +
                    • BMW
                    • +
                    • Cadillac
                    • +
                    • Ferrari
                    • +
                    + +

                    Count bubbles

                    +
                      +
                    • Inbox 12
                    • +
                    • Outbox 0
                    • +
                    • Drafts 4
                    • +
                    • Sent 328
                    • +
                    • Trash 62
                    • +
                    + +

                    Numbered list

                    +
                      +
                    1. The Godfather
                    2. +
                    3. Inception
                    4. +
                    5. The Good, the Bad and the Ugly
                    6. +
                    7. Pulp Fiction
                    8. +
                    9. Schindler's List
                    10. +
                    + +

                    Divided, formatted content

                    +
                      +
                    • +

                      Stephen Weber

                      +

                      You've been invited to a meeting at Filament Group in Boston, MA

                      +

                      Hey Stephen, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

                      +

                      6:24PM

                      +
                    • +
                    • +

                      jQuery Team

                      +

                      Boston Conference Planning

                      +

                      In preparation for the upcoming conference in Boston, we need to start gathering a list of sponsors and speakers.

                      +

                      9:18AM

                      +
                    • +
                    + + + + +

                    Icon list

                    +
                      +
                    • FranceFrance 4
                    • +
                    • GermanyGermany 4
                    • +
                    • Great BritainGreat Britain 0
                    • +
                    • FinlandFinland 12
                    • +
                    • NorwayNorway 328
                    • +
                    • United StatesUnited States 62
                    • +
                    + +

                    Thumbnail list

                    + +
                      +
                    • + +

                      Broken Bells

                      +

                      Broken Bells

                      +
                    • +
                    • + +

                      Warning

                      +

                      Hot Chip

                      +
                    • +
                    • + +

                      Wolfgang Amadeus Phoenix

                      +

                      Phoenix

                      +
                    • +
                    + +

                    Divided, filterable list

                    +
                      +
                    • A
                    • +
                    • Adam Kinkaid
                    • +
                    • Alex Wickerham
                    • +
                    • Avery Johnson
                    • +
                    • B
                    • +
                    • Bob Cabot
                    • +
                    • C
                    • +
                    • Caleb Booth
                    • +
                    • Christopher Adams
                    • +
                    + + + + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-readonly.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-readonly.html new file mode 100644 index 0000000..8082149 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-readonly.html @@ -0,0 +1,173 @@ + + + + + + jQuery Mobile Docs - Inset Readonly Lists + + + + + + + + + + +
                    + + + +
                    +

                    Readonly lists

                    + Home + Search +
                    + +
                    +
                    +

                    Here is a variety of full-width lists that are read-only. If a list has the data-role="listview" attribute, but the contents aren't linked, it will display as read-only. These look like normal lists, except they don't have a right arrow and the text is set to a smaller size to save space.

                    + +

                    Simple list

                    + +
                      +
                    • Acura
                    • +
                    • Audi
                    • +
                    • BMW
                    • +
                    • Cadillac
                    • +
                    • Ferrari
                    • +
                    + +

                    Count bubbles

                    +
                      +
                    • Inbox 12
                    • +
                    • Outbox 0
                    • +
                    • Drafts 4
                    • +
                    • Sent 328
                    • +
                    • Trash 62
                    • +
                    + +

                    Numbered list

                    +
                      +
                    1. The Godfather
                    2. +
                    3. Inception
                    4. +
                    5. The Good, the Bad and the Ugly
                    6. +
                    7. Pulp Fiction
                    8. +
                    9. Schindler's List
                    10. +
                    + +

                    Divided, formatted content

                    +
                      +
                    • +

                      Stephen Weber

                      +

                      You've been invited to a meeting at Filament Group in Boston, MA

                      +

                      Hey Stephen, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

                      +

                      6:24PM

                      +
                    • +
                    • +

                      jQuery Team

                      +

                      Boston Conference Planning

                      +

                      In preparation for the upcoming conference in Boston, we need to start gathering a list of sponsors and speakers.

                      +

                      9:18AM

                      +
                    • +
                    + + + + +

                    Icon list

                    +
                      +
                    • FranceFrance 4
                    • +
                    • GermanyGermany 4
                    • +
                    • Great BritainGreat Britain 0
                    • +
                    • FinlandFinland 12
                    • +
                    • NorwayNorway 328
                    • +
                    • United StatesUnited States 62
                    • +
                    + +

                    Thumbnail list

                    + +
                      +
                    • + +

                      Broken Bells

                      +

                      Broken Bells

                      +
                    • +
                    • + +

                      Warning

                      +

                      Hot Chip

                      +
                    • +
                    • + +

                      Wolfgang Amadeus Phoenix

                      +

                      Phoenix

                      +
                    • +
                    + +

                    Divided, filterable list

                    +
                      +
                    • A
                    • +
                    • Adam Kinkaid
                    • +
                    • Alex Wickerham
                    • +
                    • Avery Johnson
                    • +
                    • B
                    • +
                    • Bob Cabot
                    • +
                    • C
                    • +
                    • Caleb Booth
                    • +
                    • Christopher Adams
                    • +
                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-filtertext.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-filtertext.html new file mode 100644 index 0000000..45c77d8 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-filtertext.html @@ -0,0 +1,94 @@ + + + + + + jQuery Mobile Docs - Filtered Lists Using Hidden Data + + + + + + + + + + +
                    + +
                    +

                    Search hidden data

                    + Home + Search +
                    + +
                    +
                    +

                    By default, the listview filter simply searches against the content in each list item. If you want the filter to search against different content, add the data-filtertext attribute to the item and populate it with one or many keywords and phrases that should be used to match against. Note that if this attribute is added, the contents of the list item are ignored.

                    +

                    This attribute is useful for dealing with allowing for ticker symbols and full company names to be searched, or for covering common spellings and abbreviations for countries.

                    + +
                    		
                    +<li data-filtertext="NASDAQ:AAPL Apple Inc."><a href="#">Apple</a></li>
                    +<li data-filtertext="USA U.S.A. United States of America"><a href="#">United States</a></li>
                    +
                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-inset.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-inset.html new file mode 100644 index 0000000..ea12c48 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-inset.html @@ -0,0 +1,100 @@ + + + + + + jQuery Mobile Docs - Filtered Inset Lists + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-with-dividers.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-with-dividers.html new file mode 100644 index 0000000..ccae6b6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search-with-dividers.html @@ -0,0 +1,113 @@ + + + + + jQuery Mobile Docs - Filtered Lists with Dividers + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search.html new file mode 100644 index 0000000..5e75dcc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-search.html @@ -0,0 +1,100 @@ + + + + + + jQuery Mobile Docs - Filtered Lists + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-split-purchase.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-split-purchase.html new file mode 100644 index 0000000..87681f9 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-split-purchase.html @@ -0,0 +1,35 @@ + + + + + + jQuery Mobile Docs - Sample Dialog + + + + + + + + + + + +
                    + +
                    +

                    Purchase?

                    +
                    + +
                    +

                    This album costs $10.99 and includes 9 tracks.

                    +

                    Your download will begin immediately on your mobile device and all tracks will by added your your library next time you sync.

                    + Purchase album + No thanks + +
                    + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-split.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-split.html new file mode 100644 index 0000000..b461be0 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-split.html @@ -0,0 +1,147 @@ + + + + + + jQuery Mobile Docs - Split Button Lists + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-themes.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-themes.html new file mode 100644 index 0000000..e41c289 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-themes.html @@ -0,0 +1,264 @@ + + + + + + jQuery Mobile Docs - Theming Lists + + + + + + + + + + +
                    + +
                    +

                    Theming lists

                    + Home + Search +
                    + +
                    +
                    + +

                    All the standard button swatches can be applied to lists. The framework assigns a default list theme swatch of "c" (silver in the default theme) and swatch "b" (blue in default theme) for dividers. Below is a default themed list.

                    + + +<ul data-role="listview" data-inset="true"> + + + +

                    Theming list items

                    +

                    The list item color scheme can be changed to any button color theme swatch by adding the data-theme attribute to the list, and setting the letter theme swatch. Here is the same list above with the "a" swatch applied.

                    + + +<ul data-role="listview" data-inset="true" data-theme="d"> + + + + +

                    data-theme attributes also work at the LI-level, for styling a single item.

                    + + + +

                    Theming dividers

                    + +

                    The theme for list dividers can be set by adding the data-divider-theme to the list and specifying a swatch letter. Here is an example of the same list above with swatch "d" set on the dividers.

                    + + +<ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="e"> + + + + +

                    Theming count bubbles

                    + +

                    The theme for count bubbles can be set by adding the data-count-theme to the list and specifying a swatch letter. Here is an example with swatch "e" set on the dividers.

                    + + +<ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="e" data-count-theme="b"> + + + + +

                    Theming icons

                    + +

                    The default icon for each list item is arrow-r. To override this, set the data-icon attribute on the desired list item to the name of a standard icon. To prevent icons from appearing altogether, set the data-icon attribute to "false".

                    +
                    +
                    +<li data-icon="info"><a href="#">Notices</a></li>
                    +<li data-icon="alert"><a href="#">Alerts</a></li>
                    +<li data-icon="false"><a href="#">No icon</a></li>
                    +
                    +
                    + + + +

                    Theming split buttons

                    + +

                    For split lists which a second button, the framework default to "b" for the theme swatch (blue in the default theme) Here is a default split list:

                    + + + + +<ul data-role="listview" data-inset="true" data-split-theme="a"> + +

                    To specify the color swatch for the icon button on the right, add the data-split-theme to the list and specify a swatch letter. This attribute can also be added to individual split inside list items by adding a data-theme attribute to specific links (see second list item).

                    + + +

                    The icon for the split theme can set at the list level by adding the data-split-icon to the list and specifying a standard icon. This attribute can also be added to individual split inside list items by adding a data-icon attribute to specific links (see second list item).

                    + + +<ul data-role="listview" data-inset="true" data-split-theme="d" data-split-icon="delete"> + + + + + + +

                    Examples of all basic list swatches

                    + +

                    A swatch

                    + + +

                    B swatch

                    + + +

                    C swatch

                    + + +

                    D swatch

                    + + +

                    E swatch

                    + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-thumbnails.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-thumbnails.html new file mode 100644 index 0000000..1cc6a14 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-thumbnails.html @@ -0,0 +1,135 @@ + + + + + + jQuery Mobile Docs - Lists with Thumbnails + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/lists/lists-ul.html b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-ul.html new file mode 100644 index 0000000..e23106c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/lists/lists-ul.html @@ -0,0 +1,100 @@ + + + + + + jQuery Mobile Docs - Basic Lists + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/nav.html b/libs/js/jquery-mobile-1.1.0/docs/nav.html new file mode 100644 index 0000000..46e86d9 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/nav.html @@ -0,0 +1,296 @@ + + + + + + jQuery UI Mobile Framework - Documentation + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-alt.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-alt.html new file mode 100644 index 0000000..275f0b7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-alt.html @@ -0,0 +1,33 @@ + + + + + + jQuery Mobile Framework - Dialog Example + + + + + + + + + + +
                    +
                    +

                    Dialog

                    + +
                    + +
                    +

                    I'm colorful

                    +

                    This is a regular page, styled as a dialog. To create a dialog, just link to a normal page and include a transition and data-rel="dialog" attribute.

                    + Good for you + Don't care, really +
                    +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-buttons.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-buttons.html new file mode 100644 index 0000000..0a36872 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-buttons.html @@ -0,0 +1,33 @@ + + + + + + jQuery Mobile Framework - Dialog Example + + + + + + + + + + +
                    + + + +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-overlay.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-overlay.html new file mode 100644 index 0000000..81fb765 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-overlay.html @@ -0,0 +1,32 @@ + + + + + + jQuery Mobile Framework - Dialog Example + + + + + + + + + + +
                    +
                    +

                    Dialog

                    +
                    + +
                    +

                    Custom overlay

                    +

                    This dialog adds data-overlay-theme="e" to the page container to set the overlay swatch color.

                    + I like it +
                    + +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-success.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-success.html new file mode 100644 index 0000000..512c466 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-success.html @@ -0,0 +1,31 @@ + + + + + + jQuery Mobile Framework - Dialog Example + + + + + + + + + + +
                    + + +
                    +

                    Flickr upload:

                    +

                    Photos posted successfully

                    + + View photo page + Done +
                    +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-with-select.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-with-select.html new file mode 100644 index 0000000..2401afe --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog-with-select.html @@ -0,0 +1,118 @@ + + + + + + jQuery Mobile Framework - Dialog Example with Select + + + + + + + + + + + +
                    + +
                    +

                    Dialog select test

                    +
                    + + +
                    + + + + + + + +
                    + +
                    +

                    Sample Dialogs

                    +
                    + +
                    + +
                    +
                    + + +
                    + +
                    + + +
                    + + Real Submit Would go here +
                    + Cancel +
                    +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dialog.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog.html new file mode 100644 index 0000000..2594781 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dialog.html @@ -0,0 +1,34 @@ + + + + + + jQuery Mobile Framework - Dialog Example + + + + + + + + + + +
                    + +
                    +

                    Dialog

                    + +
                    + +
                    +

                    Delete page?

                    +

                    This is a regular page, styled as a dialog. To create a dialog, just link to a normal page and include a transition and data-rel="dialog" attribute.

                    + Sounds good + Cancel +
                    +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/docs-links-urltest/index.html b/libs/js/jquery-mobile-1.1.0/docs/pages/docs-links-urltest/index.html new file mode 100644 index 0000000..e5aea72 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/docs-links-urltest/index.html @@ -0,0 +1,28 @@ + + + + + + jQuery Mobile Framework - Test URL Example + + + + + + + + + + +
                    +
                    +

                    URL Test Page

                    +
                    +
                    +

                    This is a regular page that updated the url with a different value than was requested.

                    +
                    +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/animals.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/animals.html new file mode 100644 index 0000000..62a8fe9 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/animals.html @@ -0,0 +1,27 @@ + + + + + +Animals + + + + + + + + +
                    +

                    Animals

                    +
                    +

                    All your favorites from aardvarks to zebras.

                    +
                      +
                    • Pets
                    • +
                    • Farm Animals
                    • +
                    • Wild Animals
                    • +
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/category.php b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/category.php new file mode 100644 index 0000000..72c8947 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/category.php @@ -0,0 +1,150 @@ + array( + name => "Animals", + description => "All your favorites from aardvarks to zebras.", + items => array( + array( + name => "Pets", + ), + array( + name => "Farm Animals", + ), + array( + name => "Wild Animals", + ) + ) + ), + colors => array( + name => "Colors", + description => "Fresh colors from the magic rainbow.", + items => array( + array( + name => "Blue", + ), + array( + name => "Green", + ), + array( + name => "Orange", + ), + array( + name => "Purple", + ), + array( + name => "Red", + ), + array( + name => "Yellow", + ), + array( + name => "Violet", + ) + ) + ), + vehicles => array( + name => "Vehicles", + description => "Everything from cars to planes.", + items => array( + array( + name => "Cars", + ), + array( + name => "Planes", + ), + array( + name => "Construction", + ) + ) + ) +); + +// Get the name of the category to display from +// the query params for the script. + +$category_name = ''; +if ( $_GET[ 'id' ] ) { + $category_name = $_GET[ 'id' ]; +} + +// Now get the category data, by name, from our in-memory +// dictionary. This is the part where a script normally fetches +// the data from a database. + +$category_obj = $category_data[ $category_name ]; + +// Now figure out how the script is being called. If it's being +// called via XmlHttpRequest, then send the data back as JSON. +// If not, then send it back as a list in an HTML document. + +if( $_SERVER[ "HTTP_X_REQUESTED_WITH" ] && $_SERVER[ "HTTP_X_REQUESTED_WITH" ] ==="XMLHttpRequest" ) { + // Data should be written out as JSON. + header("Content-type: application/json"); + if ( !$category_obj ) { + echo 'null'; + } else { + echo '{"name":"' . $category_obj[ 'name' ] + . '","description":"' . $category_obj[ 'description' ] + . '","items":['; + + $arr = $category_obj[ 'items' ]; + $count = count($arr); + for ( $i = 0; $i < $count; $i++ ) { + if ( $i ) { + echo ","; + } + echo '{"name":"' . $arr[ $i ][ 'name' ] . '"}'; + } + echo "]}"; + } +} else { + // Data should be written out as HTML. + header("Content-type: text/html"); +?> + + + + + +Vehicles + + + + + +
                    +

                    +
                    + +

                    No matches found.

                    + +

                    +
                      +" . $arr[ $i ][ 'name' ] . "\n"; + } +?> +
                    + +
                    +
                    + + + + + + + +Colors + + + + + + + + +
                    +

                    Colors

                    +
                    +

                    Fresh colors from the magic rainbow.

                    +
                      +
                    • Blue
                    • +
                    • Green
                    • +
                    • Orange
                    • +
                    • Purple
                    • +
                    • Red
                    • +
                    • Yellow
                    • +
                    • Violet
                    • +
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/index.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/index.html new file mode 100644 index 0000000..4120c2c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/index.html @@ -0,0 +1,26 @@ + + + + + +Dynamic Page Samples + + + + + + + + +
                    +

                    Categories

                    + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/sample-reuse-page-external.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/sample-reuse-page-external.html new file mode 100644 index 0000000..18bf164 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/sample-reuse-page-external.html @@ -0,0 +1,121 @@ + + + + + +changePage JSON Sample + + + + + + + + + +
                    +

                    Categories

                    +
                    +

                    Select a Category Below:

                    + +
                    +
                    +
                    +

                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/sample-reuse-page.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/sample-reuse-page.html new file mode 100644 index 0000000..202bffd --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/sample-reuse-page.html @@ -0,0 +1,197 @@ + + + + + +changePage JSON Sample + + + + + + + + +
                    +

                    Categories

                    +
                    +

                    Select a Category Below:

                    + +
                    + +
                    +
                    +

                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/vehicles.html b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/vehicles.html new file mode 100644 index 0000000..cd1824e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/dynamic-samples/vehicles.html @@ -0,0 +1,27 @@ + + + + + +Vehicles + + + + + + + + +
                    +

                    Vehicles

                    +
                    +

                    Everything from cars to planes.

                    +
                      +
                    • Cars
                    • +
                    • Planes
                    • +
                    • Destruction
                    • +
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/index.html b/libs/js/jquery-mobile-1.1.0/docs/pages/index.html new file mode 100644 index 0000000..39c2891 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/index.html @@ -0,0 +1,52 @@ + + + + + + jQuery Mobile Docs - Pages + + + + + + + + + + +
                    + +
                    +

                    Pages

                    + Home + Search +
                    + +
                    + +

                    jQuery Mobile includes automatic AJAX page loading of external pages with back button history support, a set of animated page transitions and simple tools for displaying pages as dialogs.

                    + + + + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/multipage-template.html b/libs/js/jquery-mobile-1.1.0/docs/pages/multipage-template.html new file mode 100755 index 0000000..acd9643 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/multipage-template.html @@ -0,0 +1,83 @@ + + + + + + + Multi-page template + + + + + + + + + +
                    + +
                    +

                    Multi-page

                    +
                    + +
                    +

                    One

                    + +

                    I have an id of "one" on my page container. I'm first in the source order so I'm shown when the page loads.

                    + +

                    This is a multi-page boilerplate template that you can copy to build your first jQuery Mobile page. This template contains multiple "page" containers inside, unlike a single page template that has just one page within it.

                    +

                    Just view the source and copy the code to get started. All the CSS and JS is linked to the jQuery CDN versions so this is super easy to set up. Remember to include a meta viewport tag in the head to set the zoom level.

                    +

                    You link to internal pages by referring to the ID of the page you want to show. For example, to link to the page with an ID of "two", my link would have a href="#two" in the code.

                    + +

                    Show internal pages:

                    +

                    Show page "two"

                    +

                    Show page "popup" (as a dialog)

                    +
                    + +
                    +

                    Page Footer

                    +
                    +
                    + + + +
                    + +
                    +

                    Two

                    +
                    + +
                    +

                    Two

                    +

                    I have an id of "two" on my page container. I'm the second page container in this multi-page template.

                    +

                    Notice that the theme is different for this page because we've added a few data-theme swatch assigments here to show off how flexible it is. You can add any content or widget to these pages, but we're keeping these simple.

                    +

                    Back to page "one"

                    + +
                    + +
                    +

                    Page Footer

                    +
                    +
                    + + + + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-anatomy.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-anatomy.html new file mode 100644 index 0000000..7ca9e95 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-anatomy.html @@ -0,0 +1,225 @@ + + + + + + jQuery Mobile Docs - Anatomy of a Page + + + + + + + + + + +
                    + +
                    +

                    Anatomy of a Page

                    + Home + Search +
                    + +
                    +
                    +

                    The jQuery Mobile "page" structure is optimized to support either single pages, or local internal linked "pages" within a page.

                    + +

                    The goal of this model is to allow developers to create websites using best practices — where ordinary links will "just work" without any special configuration — while creating a rich, native-like experience that can't be achieved with standard HTTP requests.

                    + +

                    Mobile page structure

                    + +

                    A jQuery Mobile site must start with an HTML5 'doctype' to take full advantage of all of the framework's features. (Older devices with browsers that don't understand HTML5 will safely ignore the 'doctype' and various custom attributes.)

                    +

                    In the 'head', references to jQuery, jQuery Mobile and the mobile theme CSS are all required to start things off. jQuery Mobile 1.1 works with both 1.6.4 and 1.7.1 versions of jQuery core. We recommend linking to the files hosted on the jQuery CDN for best performance:

                    + +
                    
                    +<!DOCTYPE html> 
                    +<html> 
                    +	<head> 
                    +	<title>Page Title</title> 
                    +	
                    +	<meta name="viewport" content="width=device-width, initial-scale=1"> 
                    +
                    +	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
                    +	<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
                    +	<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
                    +</head> 
                    +
                    +<body> 
                    +...content goes here...
                    +</body>
                    +</html>
                    +
                    + +

                    Viewport meta tag

                    +

                    Note above that there is a meta viewport tag in the head to specify how the browser should display the page zoom level and dimensions. If this isn't set, many mobile browsers will use a "virtual" page width around 900 pixels to make it work well with existing desktop sites but the screens may look zoomed out and too wide. By setting the viewport attributes to content="width=device-width, initial-scale=1", the width will be set to the pixel width of the device screen.

                    + +
                    <meta name="viewport" content="width=device-width, initial-scale=1"> 
                    + +

                    These settings do not disable the user's ability to zoom the pages, which is nice from an accessibility perspective. There is a minor issue in iOS that doesn't properly set the width when changing orientations with these viewport settings, but this will hopefully be fixed in a future release. You can set other viewport values to disable zooming if required since this is part of your page content, not the library.

                    + +

                    Inside the body: Pages

                    +

                    Inside the <body> tag, each view or "page" on the mobile device is identified with an element (usually a div) with the data-role="page" attribute. View the data- attribute reference to see all the possible attributes you can add to pages.

                    + +
                    +
                    <div data-role="page"> 
                    +	...
                    +</div> 
                    +
                    +
                    + +

                    Within the "page" container, any valid HTML markup can be used, but for typical pages in jQuery Mobile, the immediate children of a "page" are divs with data-roles of "header", "content", and "footer".

                    + +
                    +
                    <div data-role="page"> 
                    +	<div data-role="header">...</div> 
                    +	<div data-role="content">...</div> 
                    +	<div data-role="footer">...</div> 
                    +</div> 
                    +
                    +
                    + + +

                    Putting it together: Basic single page template

                    + +

                    Putting it all together, this is the standard boilerplate page template you should start with on a project:

                    + +
                    
                    +<!DOCTYPE html> 
                    +<html> 
                    +	<head> 
                    +	<title>Page Title</title> 
                    +	
                    +	<meta name="viewport" content="width=device-width, initial-scale=1"> 
                    +
                    +	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
                    +	<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
                    +	<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
                    +</head> 
                    +<body> 
                    +
                    +<div data-role="page">
                    +
                    +	<div data-role="header">
                    +		<h1>Page Title</h1>
                    +	</div><!-- /header -->
                    +
                    +	<div data-role="content">	
                    +		<p>Page content goes here.</p>		
                    +	</div><!-- /content -->
                    +
                    +	<div data-role="footer">
                    +		<h4>Page Footer</h4>
                    +	</div><!-- /footer -->
                    +</div><!-- /page -->
                    +
                    +</body>
                    +</html>
                    +
                    + + View boilerplate template + + +

                    Multi-page template structure

                    + +

                    A single HTML document can contain multiple 'pages' that are loaded together by stacking multiple divs with a data-role of "page". Each 'page' block needs a unique ID (id="foo") that will be used to link internally between 'pages' (href="#foo"). When a link is clicked, the framework will look for an internal 'page' with the ID and transition it into view.

                    + +

                    Here is an example of a 2 "page" site built with two jQuery Mobile divs navigated by linking to an ID placed on each page wrapper. Note that the IDs on the page wrappers are only needed to support the internal page linking, and are optional if each page is a separate HTML document. Here is what two pages look inside the body element.

                    + +
                    
                    +<body> 
                    +
                    +<!-- Start of first page -->
                    +<div data-role="page" id="foo">
                    +
                    +	<div data-role="header">
                    +		<h1>Foo</h1>
                    +	</div><!-- /header -->
                    +
                    +	<div data-role="content">	
                    +		<p>I'm first in the source order so I'm shown as the page.</p>		
                    +		<p>View internal page called <a href="#bar">bar</a></p>	
                    +	</div><!-- /content -->
                    +
                    +	<div data-role="footer">
                    +		<h4>Page Footer</h4>
                    +	</div><!-- /footer -->
                    +</div><!-- /page -->
                    +
                    +
                    +<!-- Start of second page -->
                    +<div data-role="page" id="bar">
                    +
                    +	<div data-role="header">
                    +		<h1>Bar</h1>
                    +	</div><!-- /header -->
                    +
                    +	<div data-role="content">	
                    +		<p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my ID is beeing clicked.</p>		
                    +		<p><a href="#foo">Back to foo</a></p>	
                    +	</div><!-- /content -->
                    +
                    +	<div data-role="footer">
                    +		<h4>Page Footer</h4>
                    +	</div><!-- /footer -->
                    +</div><!-- /page -->
                    +</body>
                    +
                    + + View multi-page template + +

                    + +

                    PLEASE NOTE: Since we are using the hash to track navigation history for all the Ajax 'pages', it's not currently possible to deep link to an anchor (index.html#foo) on a page in jQuery Mobile, because the framework will look for a 'page' with an ID of #foo instead of the native behavior of scrolling to the content with that ID.

                    + + +

                    Conventions, not requirements

                    + +

                    Although the page structure outlined above is a recommended approach for a standard web app built with jQuery Mobile, the framework is very flexible with document structure. The page, header, content, and footer data-role elements are optional and are mostly helpful for providing some basic formatting and structure. The page wrapper that used to be required for auto-initialization to work is now optional for single page documents, so there isn't any required markup at all. For a web page with a custom layout, all of these structural elements can be omitted and the Ajax navigation and all widgets will work just like they do in the boilerplate structure. Behind the scenes, the framework will inject the page wrapper if it's not included in the markup because it’s needed for managing pages, but the starting markup can now be extremely simple.

                    + +

                    Note that in a multi-page setup, you are required to have page wrappers in your markup in order to group the content into multiple pages.

                    + + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-cache.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-cache.html new file mode 100644 index 0000000..c51107c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-cache.html @@ -0,0 +1,125 @@ + + + + + + jQuery Mobile Docs - Prefetching & caching pages + + + + + + + + + + +
                    + +
                    +

                    Prefetching & caching pages

                    + Home + Search +
                    + +
                    +
                    + + +

                    Prefetching pages

                    + +

                    Usually, it's a good idea to store your app's pages in several single-page templates instead of one large multi-page template. This minimizes the size of the page's DOM.

                    + +

                    When using single-page templates, you can prefetch pages into the DOM so that they're available instantly when the user visits them. To prefetch a page, add the data-prefetch attribute to a link that points to the page. jQuery Mobile then loads the target page in the background after the primary page has loaded and the pagecreate event has triggered. For example:

                    + +
                    
                    +<a href="prefetchThisPage.html" data-prefetch> ... </a>
                    +
                    + +

                    You can prefetch as many linked pages as you like. Just add data-prefetch to all the links you want to prefetch.

                    + +

                    Alternatively, you can prefetch a page programmatically using $.mobile.loadPage():

                    + +
                    
                    +$.mobile.loadPage( pageUrl, { showLoadMsg: false } );
                    +
                    + +

                    Another advantage of prefetching a page is that the user doesn't see the Ajax loading message when visiting the prefetched page. The Ajax loading message only appears if the framework hasn't finished prefetching the page by the time the link is followed.

                    + +

                    Prefetching pages naturally creates additional HTTP requests and uses bandwidth, so it's wise to use this feature only in situations where it's highly likely that the prefetched page will be visited. A common scenario is a photo gallery, where you can prefetch the "previous" and "next" photo pages so that the user can move quickly between photos.

                    + + +

                    DOM size management

                    + +

                    For animated page transitions to work, the pages you're transitioning from and to both need to be in the DOM. However, keeping old pages in the DOM quickly fills the browser's memory, and can cause some mobile browsers to slow down or even crash.

                    + +

                    jQuery Mobile therefore has a simple mechanism to keep the DOM tidy. Whenever it loads a page via Ajax, jQuery Mobile flags the page to be removed from the DOM when you navigate away from it later (technically, on the pagehide event). If you revisit a removed page, the browser may be able to retrieve the page's HTML file from its cache. If not, it refetches the file from the server. (In the case of nested list views, jQuery Mobile removes all the pages that make up the nested list once you navigate to a page that's not part of the list.)

                    + +

                    Pages inside a multi-page template aren't affected by this feature at all - jQuery Mobile only removes pages loaded via Ajax.

                    + + +

                    Caching pages in the DOM

                    + +

                    If you prefer, you can tell jQuery Mobile to keep previously-visited pages in the DOM instead of removing them. This lets you cache pages so that they're available instantly if the user returns to them.

                    + +

                    To keep all previously-visited pages in the DOM, set the domCache option on the page plugin to true, like this:

                    + +
                    
                    +$.mobile.page.prototype.options.domCache = true;
                    +
                    + +

                    Alternatively, to cache just a particular page, you can add the data-dom-cache="true" attribute to the page's container:

                    + +
                    
                    +<div data-role="page" id="cacheMe" data-dom-cache="true">
                    +
                    + +

                    You can also cache a page programmatically like this:

                    + +
                    
                    +pageContainerElement.page({ domCache: true });
                    +
                    + +

                    The drawback of DOM caching is that the DOM can get very large, resulting in slowdowns and memory issues on some devices. If you enable DOM caching, take care to manage the DOM yourself and test thoroughly on a range of devices.

                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-customtransitions.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-customtransitions.html new file mode 100644 index 0000000..6e6df97 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-customtransitions.html @@ -0,0 +1,297 @@ + + + + + + jQuery Mobile Docs - Transitions + + + + + + + + + + +
                    + +
                    +

                    Transitions

                    + Home + Search +
                    + +
                    +
                    + +

                    Creating custom CSS-based transitions

                    + + +

                    To create a custom CSS transition, select a class name that corresponds to the name of your transition, for example "slide", and then define your "in" and "out" CSS rules to take advantage of transitions or animation keyframes:

                    + +
                    
                    +		.slide.in {
                    +		 	-webkit-transform: translateX(0);
                    +			-moz-transform: translateX(0);
                    +			-webkit-animation-name: slideinfromright;
                    +			-moz-animation-name: slideinfromright;
                    +		}
                    +			
                    +		.slide.out {
                    +			-webkit-transform: translateX(-100%);
                    +			-moz-transform: translateX(-100%);
                    +			-webkit-animation-name: slideouttoleft;
                    +			-moz-animation-name: slideouttoleft;
                    +		}
                    +
                    +		@-webkit-keyframes slideinfromright {
                    +			from { -webkit-transform: translateX(100%); }
                    +			to { -webkit-transform: translateX(0); }
                    +		}
                    +		
                    +		@-webkit-keyframes slideouttoleft {
                    +			from { -webkit-transform: translateX(0); }
                    +			to { -webkit-transform: translateX(-100%); }
                    +		}
                    +	
                    +		@-moz-keyframes slideinfromright {
                    +			from { -moz-transform: translateX(100%); }
                    +			to { -moz-transform: translateX(0); }
                    +		}
                    +		
                    +		@-moz-keyframes slideouttoleft {
                    +			from { -moz-transform: translateX(0); }
                    +			to { -moz-transform: translateX(-100%); }
                    +		}
                    +		
                    +				
                    + +

                    During a CSS-based page transition, jQuery Mobile will place the class name of the transition on both the "from" and "to" pages involved in the transition. It then places an "out" class on the "from" page, and "in" class on the "to" page. The presence of these classes on the "from" and "to" page elements then triggers the animation CSS rules defined above. As of jQuery Mobile version 1.1, animation class additions are queued, rather than simultaneous, producing an out-then-in sequence, which is friendlier for mobile rendering than our previous simultaneous transition sequence.

                    + +

                    If your transition supports a reverse direction, you need to create CSS rules that use the reverse class in addition to the transition class name and the "in" and "out" classes:

                    + +
                    
                    +		.slide.in.reverse {
                    +			-webkit-transform: translateX(0);
                    +			-moz-transform: translateX(0);
                    +			-webkit-animation-name: slideinfromleft;
                    +			-moz-animation-name: slideinfromleft;
                    +		}
                    +
                    +		.slide.out.reverse {
                    +			-webkit-transform: translateX(100%);
                    +			-moz-transform: translateX(100%);
                    +			-webkit-animation-name: slideouttoright;
                    +			-moz-animation-name: slideouttoright;
                    +		}
                    +
                    +		@-webkit-keyframes slideinfromleft {
                    +			from { -webkit-transform: translateX(-100%); }
                    +			to { -webkit-transform: translateX(0); }
                    +		}
                    +
                    +		@-webkit-keyframes slideouttoright {
                    +			from { -webkit-transform: translateX(0); }
                    +			to { -webkit-transform: translateX(100%); }
                    +		}
                    +		
                    +		@-moz-keyframes slideinfromleft {
                    +			from { -moz-transform: translateX(-100%); }
                    +			to { -moz-transform: translateX(0); }
                    +		}
                    +
                    +		@-moz-keyframes slideouttoright {
                    +			from { -moz-transform: translateX(0); }
                    +			to { -moz-transform: translateX(100%); }
                    +		}
                    +		
                    +				
                    + +

                    After the CSS rules are in place, you simply specify the name of your transition within the @data-transition attribute of a navigation link:

                    + +
                    <a href="#page2" data-transition="slide">Page 2</a>
                    +				
                    + +

                    When the user clicks on the navigation link, jQuery Mobile will invoke your transition when it navigates to the page mentioned within the link.

                    + +

                    In case you were wondering why none of the CSS rules above specified any easing or duration, it's because the CSS for jQuery Mobile defines the default easing and duration in the following rules:

                    + +
                    
                    +		.in {
                    +			-webkit-animation-timing-function: ease-out;
                    +			-webkit-animation-duration: 350ms;
                    +			-moz-animation-timing-function: ease-out;
                    +			-moz-animation-duration: 350ms;
                    +		}
                    +
                    +		.out {
                    +			-webkit-animation-timing-function: ease-in;
                    +			-webkit-animation-duration: 225ms;
                    +			-moz-animation-timing-function: ease-in;
                    +			-moz-animation-duration: 225;
                    +		}
                    +				
                    + +

                    If you need to specify a different easing or duration, simply add the appropriate CSS3 property to your custom page transition rules.

                    + + +

                    Creating custom JavaScript-based transitions

                    + +

                    When a user clicks on a link within a page, jQuery Mobile checks if the link specifies a @data-transition attribute. The value of this attribute is the name of the transition to use when displaying the page referred to by the link. If there is no @data-transition attribute, the transition name specified by the configuration option $.mobile.defaultPageTransition is used for pages, and $.mobile.defaultDialogTransition is used for dialogs.

                    + +

                    After the new page is loaded, the $.mobile.transitionHandlers dictionary is used to see if any transition handler function is registered for the given transition name. If a handler is found, that handler is invoked to start and manage the transition. If no handler is found the handler specified by the configuration option $.mobile.defaultTransitionHandler is invoked.

                    + +

                    By default, the $.mobile.transitionHandlers dictionary is only populated with a single handler entry called "default". This handler plays a dual purpose of either executing a "none" transition, which removes the "ui-page-active" class from the page we are transitioning "from", and places it on the page we are transitioning "to", or a Queued CSS3 Animated Transition, such as the one explained above. If the transition is "none", it will be instantaneous; no animation, no fanfare.

                    + +

                    The $.mobile.defaultTransitionHandler points to a handler function that assumes the name is a CSS class name, and implements the "Pure CSS3 Based Transitions" section above.

                    + +

                    The default transition handler is available on the $.mobile namespace:

                    + +
                    
                    +$.mobile.transitionHandlers[ "default" ];
                    +		
                    + +

                    Transition Handlers

                    + +

                    A transition handler is a function with the following call signature:

                    + +
                    
                    +function myTransitionHandler(name, reverse, $to, $from)
                    +{
                    +    var deferred = new $.Deferred();
                    +
                    +    // Perform any actions or set-up necessary to kick-off
                    +    // your transition here. The only requirement is that
                    +    // whenever the transition completes, your code calls
                    +    // deferred.resolve(name, reverse, $to, $from).
                    +
                    +    // Return a promise.
                    +    return deferred.promise();
                    +}
                    +		
                    + +

                    Your handler must create a Deferred object and return a promise to the caller. The promise is used to communicate to the caller when your transition is actually complete. It is up to you to call deferred.resolve() at the correct time. If you are new to Deferred objects, you can find documentation here.

                    + +

                    Registering and Invoking Your Transition Handler

                    + +

                    Once you have created a transition handler function, you need to tell jQuery Mobile about it. To do this, simply add your handler to the $.mobile.transitionHandlers dictionary. Remember, the key used should be the name of your transition. This name is also the same name that will be used within the @data-transition attribute of any navigation links.

                    + +
                    
                    +// Define your transition handler:
                    +
                    +function myTransitionHandler(name, reverse, $to, $from)
                    +{
                    +    var deferred = new $.Deferred();
                    +
                    +    // Perform any actions or set-up necessary to kick-off
                    +    // your transition here. The only requirement is that
                    +    // whenever the transition completes, your code calls
                    +    // deferred.resolve(name, reverse, $to, $from).
                    +
                    +    // Return a promise.
                    +    return deferred.promise();
                    +}
                    +
                    +// Register it with jQuery Mobile:
                    +
                    +$.mobile.transitionHandlers["myTransition"] = myTransitionHandler;
                    +		
                    + +

                    Once you've registered your handler, you can invoke your transition by placing a data-transition attribute on a link:

                    + +
                    <a href="#page2" data-transition="myTransition">Page 2</a>
                    +		
                    + +

                    When the user clicks the link above, your transition handler will be invoked after the page is loaded and it is ready to be shown.

                    + +

                    Overriding a CSS Transition With Your Own Handler

                    + +

                    As previously mentioned the default transition handler assumes that any transition name other than "none" is a CSS class to be placed on the "from" and "to" elements to kick off a CSS3 animation. If you would like to override one of these built-in CSS transitions, you simply register your own handler with the same name as the CSS page transition you want to override. So for example, if I wanted to override the built-in "slide" CSS transition with my own JavaScript based transition, I would simply do the following:

                    + +
                    // Define your transition handler:
                    +
                    +function myTransitionHandler(name, reverse, $to, $from)
                    +{
                    +    var deferred = new $.Deferred();
                    +
                    +    // Perform any actions or set-up necessary to kick-off
                    +    // your transition here. The only requirement is that
                    +    // whenever the transition completes, your code calls
                    +    // deferred.resolve(name, reverse, $to, $from).
                    +
                    +    // Return a promise.
                    +    return deferred.promise();
                    +}
                    +
                    +// Register it with jQuery Mobile:
                    +
                    +$.mobile.transitionHandlers["slide"] = myTransitionHandler;
                    +		
                    + +

                    Once you do this, anytime the "slide" transition is invoked, your handler, instead of the default one, will be called to perform the transition.

                    + +

                    Overriding the Default Transition Handler

                    + +

                    The $.mobile.css3TransitionHandler function is the default transition handler that gets invoked when a transition name is used and not found in the $.mobile.transitionHandlers dictionary. If you want to install your own custom default handler, you simply set the $.mobile.defaultTransitionHandler to your handler:

                    + +
                    // Define your default transition handler:
                    +
                    +function myTransitionHandler(name, reverse, $to, $from)
                    +{
                    +    var deferred = new $.Deferred();
                    +
                    +    // Perform any actions or set-up necessary to kick-off
                    +    // your transition here. The only requirement is that
                    +    // whenever the transition completes, your code calls
                    +    // deferred.resolve(name, reverse, $to, $from).
                    +
                    +    // Return a promise.
                    +    return deferred.promise();
                    +}
                    +
                    +$.mobile.defaultTransitionHandler = myTransitionHandler;
                    +		
                    + +

                    Once you do this, your handler will be invoked any time a transition name is used but not found within the $.mobile.transitionHandlers dictionary.

                    + +

                    A model for Custom transition handler development

                    +

                    Transition handlers involve a number of critical operations, such as hiding any existing page, showing the new page, scrolling either to the top or a remembered scroll position on that new page, setting focus on the new page, and any animation and timing sequences you'd like to add. During development, we would recommend using jquery.mobile.transitions.js as a coding reference.

                    + +

                    Transitions and scroll position

                    +

                    One of the key things jQuery Mobile does is store your scroll position before starting a transition so it can restore you to the same place once you return to the page when hitting the Back button or closing a dialog. Here are the same buttons from the top to test the scrolling logic.

                    + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-dialogs.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-dialogs.html new file mode 100644 index 0000000..bf9b8ad --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-dialogs.html @@ -0,0 +1,129 @@ + + + + + + jQuery Mobile Docs - Dialogs + + + + + + + + + + +
                    + +
                    +

                    Dialogs

                    + Home + Search +
                    + +
                    +
                    +

                    Creating dialogs

                    +

                    Any page can be presented as a modal dialog by adding the data-rel="dialog" attribute to the page anchor link. When the "dialog" attribute is applied, the framework adds styles to add rounded corners, margins around the page and a dark background to make the "dialog" appear to be suspended above the page.

                    + +

                    + + <a href="foo.html" data-rel="dialog">Open dialog</a> + +

                    + + Open dialog + + + +

                    Transitions

                    +

                    By default, the dialog will open with a 'pop' transition. Like all pages, you can specify any page transition you want on the dialog by adding the data-transition attribute to the link. To make it feel more dialog-like, we recommend specifying a transition of "pop", "slideup" or "flip".

                    + + +<a href="foo.html" data-rel="dialog" data-transition="pop">Open dialog</a> + + + + + +

                    Closing dialogs

                    +

                    When any link is clicked within in a dialog, the framework will automatically close the dialog and transition to the requested page, just as if the dialog were a normal page. To create a "cancel" button in a dialog, just link to the page that triggered the dialog to open and add the data-rel="back" attribute to your link. This pattern of linking to the previous page is also usable in non-JS devices as well.

                    +

                    For JavaScript-generated links, you can simply set the href attribute to "#" and use the data-rel="back" attribute. You can also call the dialog's close() method to programmatically close dialogs, for example: $('.ui-dialog').dialog('close').

                    + +

                    Setting the close button text

                    +

                    Just like the page plugin, you can set a dialog's close button text through an option or data attribute. The option can be configured for all dialogs by binding to the mobileinit event and setting the $.mobile.dialog.prototype.options.closeBtnText property to a string of your choosing, or you can place the data attribute data-close-btn-text to configure the text from your markup.

                    + +

                    History & Back button behavior

                    +

                    Since dialogs are typically used to support actions within a page, the framework does not include dialogs in the hash state history tracking. This means that dialogs will not appear in your browsing history chronology when the Back button is clicked. For example, if you are on a page, click a link to open a dialog, close the dialog, then navigate to another page, if you were to click the browser's Back button at that point you will navigate back to the first page, not the dialog.

                    + +

                    Styling & theming

                    +

                    Dialogs can be styled with different theme swatches, just like any page by adding data-theme attributes to the header, content, or footer containers. Here is an example of a different dialog design:

                    + An alternate color scheme + +

                    Dialogs appear to be floating above an overlay layer. This overlay adopts the swatch A content color by default, but the data-overlay-theme attribute can be added to the page wrapper to set the overlay to any swatch letter. Here is an example of a dialog with the overlay set to swatch e:

                    + Custom overlay swatch + + +

                    Dialogs can also be used more like a control sheet to offer multiple buttons if you simply remove the top margin from the dialog's inner container element. For example, if your dialog page had a class of my-dialog, you could add this CSS to pin that dialog to the top: .ui-dialog.my-dialog .ui-dialog-contain { margin-top: 0 }, or you could just apply that style to all dialogs with .ui-dialog .ui-dialog-contain { margin-top: 0 }.

                    + Share photos... + +

                    Dialog width and margins

                    +

                    For the sake of readability, dialogs have a default max-width of 500 pixels (plus 15px padding on each side). There is also a 10% top margin to give dialogs larger top margin on larger screens, but collapse to a small margin on smartphones. To override these styles, add the following CSS override rule to your stylesheet and tweak as needed:

                    + +
                    +.ui-dialog .ui-header, 
                    +.ui-dialog .ui-content, 
                    +.ui-dialog .ui-footer { 
                    +	max-width: 500px; 
                    +	margin: 10% auto 15px auto; 
                    +}
                    +
                    + + + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-dynamic.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-dynamic.html new file mode 100644 index 0000000..deac20a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-dynamic.html @@ -0,0 +1,300 @@ + + + + + + jQuery Mobile Docs - Dynamically Injecting Pages + + + + + + + + + + +
                    + +
                    +

                    Dynamically Injecting Pages

                    + Home + Search +
                    + +
                    +
                    +

                    jQuery Mobile and Dynamic Page Generation

                    +

                    jQuery Mobile allows pages to be pulled into the DOM dynamically via its default click hijacking behavior, or through manual calls to $.mobile.changePage(). This is great for applications that generate HTML pages/fragments on the server-side, but there are sometimes cases where an application needs to dynamically generate page content on the client-side from JSON or some other format. This may be necessary for bandwidth/performance reasons, or because it is the data format of choice for the server they are interacting with.

                    +

                    For applications that need to generate page markup on the client-side, it's important to know about the notifications that are triggered during a $.mobile.changePage() call because they can be used as hooks into the navigation system that will allow you to generate your content at the appropriate time.

                    +

                    A call to changePage() will usually trigger the following event notifications:

                    +
                      +
                    • pagebeforechange +
                        +
                      • Fired off before any page loading or transition.
                      • +
                      • NOTE: This event was formerly known as "beforechangepage".
                      • +
                      +
                    • +
                    • pagechange +
                        +
                      • Fired off after all page loading and transitions.
                      • +
                      • NOTE: this event was formerly known as "changepage".
                      • +
                      +
                    • +
                    • pagechangefailed +
                        +
                      • Fired off if an error has occurred while attempting to dynamically load a new page.
                      • +
                      +
                    • +
                    +

                    These notifications are triggered on the parent container element ($.mobile.pageContainer) of pages, and will bubble all the way up to the document element and window.

                    +

                    For applications wishing to inject pages, or radically modify the content of an existing page, based on some non-HTML data, such as JSON or in-memory JS object, the pagebeforechange event is very useful since it gives you a hook for analyzing the URL or page element the application is being asked to load or switch to, and short-circuit the default changePage() behavior by simply calling preventDefault() on the pagebeforechange event.

                    +

                    To illustrate this technique, take a look at this working sample. In this sample, the main page starts off with a list of categories that the user can navigate into. The actual items in each category are stored in a JavaScript object in memory, for illustrative purposes, but the data can really come from anywhere.

                    +
                    
                    +var categoryData = {
                    +	animals: {
                    +		name: "Animals",
                    +		description: "All your favorites from aardvarks to zebras.",
                    +		items: [
                    +			{
                    +				name: "Pets"
                    +			},
                    +			{
                    +				name: "Farm Animals"
                    +			},
                    +			{
                    +				name: "Wild Animals"
                    +			}
                    +		]
                    +	},
                    +	colors: {
                    +		name: "Colors",
                    +		description: "Fresh colors from the magic rainbow.",
                    +		items: [
                    +			{
                    +				name: "Blue"
                    +			},
                    +			{
                    +				name: "Green"
                    +			},
                    +			{
                    +				name: "Orange"
                    +			},
                    +			{
                    +				name: "Purple"
                    +			},
                    +			{
                    +				name: "Red"
                    +			},
                    +			{
                    +				name: "Yellow"
                    +			},
                    +			{
                    +				name: "Violet"
                    +			}
                    +		]
                    +	},
                    +	vehicles: {
                    +		name: "Vehicles",
                    +		description: "Everything from cars to planes.",
                    +		items: [
                    +			{
                    +				name: "Cars"
                    +			},
                    +			{
                    +				name: "Planes"
                    +			},
                    +			{
                    +				name: "Construction"
                    +			}
                    +		]
                    +	}
                    +};
                    +
                    +

                    The application uses links with urls that contain a hash that tells the application what category items to display:

                    +
                    +
                    +  	<h2>Select a Category Below:</h2>
                    +  	<ul data-role="listview" data-inset="true">
                    +    	<li><a href="#category-items?category=animals">Animals</a></li>
                    +    	<li><a href="#category-items?category=colors">Colors</a></li>
                    +    	<li><a href="#category-items?category=vehicles">Vehicles</a></li>
                    +    </ul>
                    +
                    +
                    +

                    Internally, when the user clicks on one of these links, the application intercepts the internal $.mobile.changePage() call that is invoked by the frameworks' default link hijacking behavior. It then analyzes the URL for the page about to be loaded, and then decides whether or not it should handle the loading itself, or to let the normal changePage() code handle things.

                    +

                    The application was able to insert itself into the changePage() flow by binding to the pagebeforechange event at the document level:

                    +
                    +
                    +// Listen for any attempts to call changePage().
                    +$(document).bind( "pagebeforechange", function( e, data ) {
                    +
                    +	// We only want to handle changePage() calls where the caller is
                    +	// asking us to load a page by URL.
                    +	if ( typeof data.toPage === "string" ) {
                    +
                    +		// We are being asked to load a page by URL, but we only
                    +		// want to handle URLs that request the data for a specific
                    +		// category.
                    +		var u = $.mobile.path.parseUrl( data.toPage ),
                    +			re = /^#category-item/;
                    +
                    +		if ( u.hash.search(re) !== -1 ) {
                    +
                    +			// We're being asked to display the items for a specific category.
                    +			// Call our internal method that builds the content for the category
                    +			// on the fly based on our in-memory category data structure.
                    +			showCategory( u, data.options );
                    +
                    +			// Make sure to tell changePage() we've handled this call so it doesn't
                    +			// have to do anything.
                    +			e.preventDefault();
                    +		}
                    +	}
                    +});
                    +
                    +
                    +

                    So why listen at the document level? In short, because of deep-linking. We need our binding to be active before the jQuery Mobile framework initializes and decides how to process the initial URL that invoked the application.

                    +

                    When the callback for the pagebeforechange binding is invoked, the 2nd argument to the callback will be a data object that contains the arguments that were passed to the initial $.mobile.changePage() call. The properties of this object are as follows:

                    +
                      +
                    • toPage +
                        +
                      • Can be either a jQuery collection object containing the page to be transitioned to, OR a URL reference for a page to be loaded/transitioned to.
                      • +
                      +
                    • +
                    • options +
                        +
                      • Object containing the options that were passed in by the caller of the $.mobile.changePage() function.
                      • +
                      • A list of the options can be found here.
                      • +
                      +
                    • +
                    +

                    For our sample application, we are only interested in changePage() calls where URLs are initially passed in, so the first thing our callback does is check the type for the toPage. Next, with the help of some URL parsing utilities, it checks to make sure if the URL contains a hash that we are interested in handling ourselves. If so, it then calls an application function called showCategory() which will dynamically create the content for the category specified by the URL hash, and then it calls preventDefault() on the event.

                    +

                    Calling preventDefault() on a pagebeforechange event causes the originating $.mobile.changePage() call to exit without performing any work. Calling the preventDefault() method on the event is the equivalent of telling jQuery Mobile that you have handled the changePage() request yourself.

                    +

                    If preventDefault() is not called, changePage() will continue on processing as it normally does. One thing to point out about the data object that is passed into our callback, is that any changes you make to the toPage property, or options properties, will affect changePage() processing if preventDefault() is not called. So for example, if we wanted to redirect or map a specific URL to another internal/external page, our callback could simply set the data.toPage property in the callback to the URL or DOM element of the page to redirect to. Likewise, we could set, or un-set any option from within our callback, and changePage() would use the new settings.

                    +

                    So now that we know how to intercept changePage() calls, let's take a closer look at how this sample actually generates the markup for a page. Our example actually uses, or we should say, re-uses the same page to display each of the categories. Each time one of our special links is clicked, the function showCategory() gets invoked:

                    +
                    
                    +// Load the data for a specific category, based on
                    +// the URL passed in. Generate markup for the items in the
                    +// category, inject it into an embedded page, and then make
                    +// that page the current active page.
                    +function showCategory( urlObj, options )
                    +{
                    +	var categoryName = urlObj.hash.replace( /.*category=/, "" ),
                    +
                    +		// Get the object that represents the category we
                    +		// are interested in. Note, that at this point we could
                    +		// instead fire off an ajax request to fetch the data, but
                    +		// for the purposes of this sample, it's already in memory.
                    +		category = categoryData[ categoryName ],
                    +
                    +		// The pages we use to display our content are already in
                    +		// the DOM. The id of the page we are going to write our
                    +		// content into is specified in the hash before the '?'.
                    +		pageSelector = urlObj.hash.replace( /\?.*$/, "" );
                    +
                    +	if ( category ) {
                    +		// Get the page we are going to dump our content into.
                    +		var $page = $( pageSelector ),
                    +
                    +			// Get the header for the page.
                    +			$header = $page.children( ":jqmData(role=header)" ),
                    +
                    +			// Get the content area element for the page.
                    +			$content = $page.children( ":jqmData(role=content)" ),
                    +
                    +			// The markup we are going to inject into the content
                    +			// area of the page.
                    +			markup = "<p>" + category.description + "</p><ul data-role='listview' data-inset='true'>",
                    +
                    +			// The array of items for this category.
                    +			cItems = category.items,
                    +
                    +			// The number of items in the category.
                    +			numItems = cItems.length;
                    +
                    +		// Generate a list item for each item in the category
                    +		// and add it to our markup.
                    +		for ( var i = 0; i < numItems; i++ ) {
                    +			markup += "<li>" + cItems[i].name + "</li>";
                    +		}
                    +		markup += "</ul>";
                    +
                    +		// Find the h1 element in our header and inject the name of
                    +		// the category into it.
                    +		$header.find( "h1" ).html( category.name );
                    +
                    +		// Inject the category items markup into the content element.
                    +		$content.html( markup );
                    +
                    +		// Pages are lazily enhanced. We call page() on the page
                    +		// element to make sure it is always enhanced before we
                    +		// attempt to enhance the listview markup we just injected.
                    +		// Subsequent calls to page() are ignored since a page/widget
                    +		// can only be enhanced once.
                    +		$page.page();
                    +
                    +		// Enhance the listview we just injected.
                    +		$content.find( ":jqmData(role=listview)" ).listview();
                    +
                    +		// We don't want the data-url of the page we just modified
                    +		// to be the url that shows up in the browser's location field,
                    +		// so set the dataUrl option to the URL for the category
                    +		// we just loaded.
                    +		options.dataUrl = urlObj.href;
                    +
                    +		// Now call changePage() and tell it to switch to
                    +		// the page we just modified.
                    +		$.mobile.changePage( $page, options );
                    +	}
                    +}
                    +
                    +

                    In our sample app, the hash of the URL we handle contains 2 parts:

                    +
                    
                    +#category-items?category=vehicles
                    +
                    +

                    The first part, before the '?' is actually the id of the page to write content into, the part after the '?' is info the app uses to figure out what data it should use when generating the markup for the page. The first thing showCategory() does is deconstruct this hash to extract out the id of the page to write content into, and the name of the category it should use to get the correct set of data from our in-memory JavaScript category object. After it figures out what category data to use, it then generates the markup for the category, and then injects it into the header and content area of the page, wiping out any other markup that previously existed in those elements.

                    +

                    After it injects the markup, it then calls the appropriate jQuery Mobile widget calls to enhance the list markup it just injected. This is what turns the normal list markup into a fully styled listview with all its behaviors.

                    +

                    Once that's done, it then calls $.mobile.changePage(), passing it the DOM element of the page we just modified, to tell the framework that it wants to show that page.

                    +

                    Now an interesting problem here is that jQuery Mobile typically updates the browser's location hash with the URL associated with the page it is showing. Because we are re-using the same page for each category, this wouldn't be ideal, because the URL for that page has no specific category info associated with it. To get around this problem, showCategory() simply sets the dataUrl property on the options object it passes into changePage() to tell it to display our original URL instead.

                    +

                    That's the sample in a nutshell. It should be noted that this particular sample and its usage is not a very good example of an app that degrades gracefully when JavaScript is turned off. That means it probably won't work very well on C-Grade browsers. We will be posting other examples that demonstrate how to degrade gracefully in the future. Check this page for updates.

                    +
                    + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-links.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-links.html new file mode 100644 index 0000000..a5f41b3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-links.html @@ -0,0 +1,147 @@ + + + + + + jQuery Mobile Docs - Linking Pages + + + + + + + + + + +
                    + +
                    +

                    Linking pages

                    + Home + Search +
                    + +
                    +
                    +

                    Linking pages

                    + +

                    jQuery Mobile is designed to work with simple page linking conventions. Essentially, you can link pages and assets as you normally would, and jQuery Mobile will automatically handle page requests in a single-page model, using Ajax when possible. When Ajax isn't possible (such as a non-same-domain url, or if specified using certain attributes on the link), a normal http request is used instead.

                    + +

                    The goal of this model is to allow developers to create websites using best practices — where ordinary links will "just work" without any special configuration — while creating a rich, native-like experience that can't be achieved with standard HTTP requests.

                    + +

                    Default link behavior: Ajax

                    + +

                    To enable animated page transitions, all links that point to an external page (ex. products.html) will be loaded via Ajax. To do this unobtrusively, the framework parses the link's href to formulate an Ajax request (Hijax) and displays the loading spinner. All this happens automatically by jQuery Mobile.

                    + +

                    If the Ajax request is successful, the new page content is added to the DOM, all mobile widgets are auto-initialized, then the new page is animated into view with a page transition.

                    + +

                    If the Ajax request fails, the framework will display a small error message overlay (styled in the "e" swatch) that disappears after a brief time so this doesn't break the navigation flow. View an example of the error message.

                    + +

                    Note: You cannot link to a multipage document with Ajax navigation active because the framework will only load the first page it finds, not the full set of internal pages. In these cases, you must link without Ajax (see next section) for a full page refresh to prevent potential hash collisions. There is currently a subpage plugin that makes it possible to load in multi-page documents.

                    + + +

                    Linking without Ajax

                    + +

                    Links that point to other domains or that have rel="external", data-ajax="false" or target attributes will not be loaded with Ajax. Instead, these links will cause a full page refresh with no animated transition. Both attributes (rel="external" and data-ajax="false") have the same effect, but a different semantic meaning: rel="external" should be used when linking to another site or domain, while data-ajax="false" is useful for simply opting a page within your domain from being loaded via Ajax. Because of security restrictions, the framework always opts links to external domains out of the Ajax behavior.

                    +

                    In version 1.1, we've added support for using data-ajax="false" on a parent container which allows you to excluded a large number of links from the Ajax navigation system. This avoids the need to add this attribute to every link in a container.

                    +

                    Note: When building a jQuery Mobile application where the Ajax navigation system is disabled globally or frequently disabled on individual links, we recommend disabling the $.mobile.pushStateEnabled global configuration option to avoid inconsistent navigation behavior in some browsers.

                    + + + +

                    Linking within a multi-page document

                    + +

                    A single HTML document can contain one or many 'page' containers simply by stacking multiple divs with a data-role of "page". This allows you to build a small site or application within a single HTML document; jQuery Mobile will simply display the first 'page' it finds in the source order when the page loads.

                    + +

                    If a link in a multi-page document points to an anchor (#foo), the framework will look for a page wrapper with that ID (id="foo"). If it finds a page in the HTML document, it will transition the new page into view. You can seamlessly navigate between local, internal "pages" and external pages in jQuery Mobile. Both will look the same to the end user except that external pages will display the Ajax spinner while loading. In either situation, jQuery Mobile updates the page's URL hash to enable Back button support, deep-linking and bookmarking.

                    + +

                    It's important to note that if you are linking from a mobile page that was loaded via Ajax to a page that contains multiple internal pages, you need to add a rel="external" or data-ajax="false" to the link. This tells the framework to do a full page reload to clear out the Ajax hash in the URL. This is critical because Ajax pages use the hash (#) to track the Ajax history, while multiple internal pages use the hash to indicate internal pages so there will be conflicts in the hash between these two modes.

                    + +

                    For example, a link to a page containing multiple internal pages would look like this:

                    + + <a href="multipage.html" rel="external">Multi-page link</a> + + + +

                    "Back" button links

                    +

                    If you use the attribute data-rel="back" on an anchor, any clicks on that anchor will mimic the back button, going back one history entry and ignoring the anchor's default href. This is particularly useful when generating "back" buttons with JavaScript, such as a button to close a dialog. + When using this feature in your source markup, although browsers that support this feature will not use the specified href attribute, be sure to still provide a meaningful value that actually points to the URL of the referring page to allow the feature to work for users in C-Grade browsers. If users can reach this page from more than one referring pages, specify a sensible href so that the navigation remains logical for all users. + Also, please keep in mind that if you just want a reverse transition without actually going back in history, you should use the data-direction="reverse" attribute instead. + Note: data-direction="reverse" is meant to simply run the backwards version of the transition that will run on that page change, while data-rel="back" makes the link functionally equivalent to the browser's back button and all the standard back button logic applies. Adding data-direction="reverse" to a link with data-rel="back" will not reverse the reversed page transition and produce the "normal" version of the transition. +

                    + + +

                    Redirects and linking to directories

                    + +

                    When linking to directory indexes (such as href="typesofcats/" instead of href="typesofcats/index.html"), you must provide a trailing slash. This is because jQuery Mobile assumes the section after the last "/" character in a url is a filename, and it will remove that section when creating base urls from which future pages will be referenced.

                    + +

                    However, you can work around this issue by returning your page div with a data-url attribute already specified. When you do this, jQuery Mobile will use that attribute's value for updating the URL, instead of the url used to request that page. This also allows you to return urls that change as the result of a redirect, for example, you might post a form to "/login.html" but return a page from the url "/account" after a successful submission. This tool allows you to take control of the jQuery Mobile history stack in these situations. Here's an example:

                    + +

                    The following link points to "docs-links-urltest/index.html": Test Link which is a directory with an index page. The return page will update the hash as "/docs/pages/docs-links-urltest/" with a trailing slash. This is done via the data-url attribute in that page's source. Keep in mind that the value will replace the entire hash, and it is up to you to replace it with a URL that actually resolves to the correct page when requested via refresh or deep link.

                    + +

                    Learn more about the technical details of the navigation model and Ajax, hashes and history in jQuery mobile.

                    + + + +

                    Link examples

                    +

                    All standard HTML link types are supported in jQuery Mobile in addition to the types outlined above. Here is a sampler of many common link types:

                    + + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-navmodel.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-navmodel.html new file mode 100644 index 0000000..d267f82 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-navmodel.html @@ -0,0 +1,182 @@ + + + + + + jQuery Mobile Docs - Ajax, hashes & history + + + + + + + + + + +
                    + +
                    +

                    Ajax, hashes & history

                    + Home + Search +
                    + +
                    +
                    +

                    jQuery Mobile's navigation model

                    + +

                    A "page" in jQuery Mobile consists of an element (usually a div) with a data-role attribute set to "page", which generally contains div elements with roles of "header", "content", and "footer", each containing common markup, forms, and custom jQuery Mobile widgets.

                    + +

                    The basic workflow with page loading is as follows: first, a page is requested with a normal HTTP request, and subsequent "pages" are then requested and injected into that page's DOM. Because of this, the DOM may have a number of "pages" in it at a time, each of which can be re-visited by linking to its data-url attribute.

                    + +

                    When a url is initially requested, there may be one or more "pages" in the response, and only the first one will be shown. The advantage of storing more than one "page" is that it allows you to pre-fetch static pages that are likely to be visited.

                    + +

                    Hash and Ajax driven page navigation

                    + +

                    By default all navigation within jQuery Mobile is based on changes and updates to location.hash. Whenever possible, page changes will use a smooth transition between the current "page" and the next, whether it is either already present in the DOM, or is automatically loaded via Ajax.

                    + +

                    Hash values created by jQuery Mobile are normalized as full paths relative to the URL of the first "real" page that was loaded. The hash is always maintained as a valid URL, so any "page" in jQuery mobile can be bookmarked or referenced in a link. To retrieve a non-hash-based URL, simply remove the # from the address and refresh the page.

                    + +

                    In general, hash changes are created whenever a link is clicked in jQuery mobile. When a link is clicked, jQuery mobile will make sure that the link is referencing a local URL, and if so, it'll prevent the link's default click behavior from occurring and request the referenced url via Ajax instead. When the page returns successfully, it will set the location.hash to the new page's relative url.

                    + +

                    Hash changes that occur independently of a click, such as when a user clicks the back button, are handled through the hashchange event, which is bound to the window object using Ben Alman's hashchange special event plugin (included in jQuery Mobile). When a hash change occurs (and also when the first page loads), the hashchange event handler will send the location.hash to the $.mobile.changePage() function, which in turn either loads or reveals the referenced page.

                    + + +

                    Once the referenced page is present in the DOM, the $.mobile.changePage() function applies a transition between the current active page and the new page. Page transitions happen through adding and removing classes that apply CSS animations. For example, in a slide-left transition, the exiting page is given the classes "slideleft" and "out", and the entering page is given the classes "slideleft" and "in", as well as a class of "ui-page-active" to mark it as the new "active" page being viewed. When the animation is complete, the "in" and "out" classes are removed, and the exited page loses its "ui-page-active" class.

                    + +

                    pushState plugin

                    + +

                    There is an optional feature that converts the longer, hash-based URLs mentioned in the previous section into the full document path which is cleaner and makes the Ajax tracking transparent in the URL structure. This is built as an enhancement on top of the hash-based URL system for Ajax links. Note that despite the name, this feature technically converts hash-based urls by using history.replaceState (not history.pushState) in the current release because this works more reliably across our target platforms. For browsers that do not support history.replaceState, or if this feature is disabled, hash-based URLs will be used instead.

                    + +

                    Since the plugin initializes when the DOM is fully loaded you can enable and disable it manually by setting $.mobile.pushStateEnabled global configuration option to false anytime before document ready.

                    + +
                    +

                    Important: rel="external" and $.mobile.ajaxEnabled=false

                    +

                    Slightly different implementations of the replaceState API in various browsers can cause odd behavior in specific scenarios. For example, some browser implementations (including desktop browsers) implement the popstate event differently when linking externally and moving back to a page onto which state has already been pushed/replaced. When building a jQuery Mobile application where the ajax navigation is being explicitly disabled, either through the frequent use of rel="external" on links or by disabling Ajax navigation completely via the $.mobile.ajaxEnabled=false, we recommend disabling the pushState feature to fall back to the hash based navigation for more consistent behavior.

                    +
                    + +

                    changePage

                    + +

                    Within the framework, page changes - both for pages already in the DOM and for pages that need to be loaded via Ajax - use the $.mobile.changePage() function. $.mobile.changePage() contains all of the logic for finding pages to transition to and from, and how to handle various response conditions such as a page not found. $.mobile.changePage() can be called externally and accepts the following arguments (to, transition, back, changeHash). The to argument can accept either a string (such as a file url or local element's ID), an array (in which the first array item is any local page you'd like to transition from, and the second array item is the to page), or an object (with expected properties: url, type ("get" or "post"), and data (for serialized parameters)), the latter of which is useful for loading pages that expect form data. The transition argument accepts a string representing a named transition, such as "slide". The back argument accepts a boolean representing whether the transition should go forward or in reverse. Lastly, the changeHash argument accepts a boolean for whether you'd like the url to be updated upon a successful page change.

                    + +

                    The $.mobile.changePage() function is used in a number of places in jQuery Mobile. For example, when a link is clicked, its href attribute is normalized and then $.mobile.changePage() handles the rest. When forms are submitted, jQuery Mobile simply gathers a few of the form's attributes, serializes its data, and once again, $.mobile.changePage() is used to handle the submission and response. Also, links that create dialogs use $.mobile.changePage()to open a referenced page without updating the hash, which is useful for keeping dialogs out of history tracking.

                    + +

                    Base element

                    + +

                    Another key ingredient to jQuery Mobile's page navigation model is the base element, which is injected into the head and modified on every page change to ensure that any assets (images, CSS, JS, etc.) referenced on that page will be requested from a proper path. In browsers that don't support dynamic updates to the base element (such as Firefox 3.6), jQuery Mobile loops through all of the referenced assets on the page and prefixes their href and src attributes with the base path.

                    + + +

                    Developer explanation of base url management:

                    + +

                    jQuery Mobile manages http requests using a combination of generated absolute URL paths and manipulating a generated <base> element's href attribute. The combination of these two approaches allows us to create URLs that contain full path information for loading pages, and a base element to properly direct asset requests made by those loaded pages (such as images and stylesheets).

                    + +

                    TODO: update description of internal base and urlHistory objects

                    + +

                    Data-url storage

                    + +

                    The navigation model maintains a data-url attribute on all data-role="page" elements. This data-url attribute is used to track the origin of the page element. Pages embedded within the main application document all have their data-url parameter set to the ID of their element with data-role="page". The only exception to this is the first-page in the document. The first-page is special because it can be addressed by its id if it has one, or by the document or base URL (with no hash fragment).

                    + +

                    Pages that are external to the application document get pulled in dynamically via ajax, and their data-url is set to the site relative path to the external page. If you are running in an environment where loading an external page from a different domain is allowed, then the data-url is set to the absolute URL.

                    + +

                    Auto-generated pages and sub-hash urls

                    + +

                    Some plugins may choose to dynamically break a page's content into separate navigable pages, which can then be reached via deep links. One example of this would be the Listview plugin, which will break a nested UL (or OL) into separate pages, which are each given a data-url attribute so they can be linked to like any normal "page" in jQuery Mobile. However, in order to link to these pages, the page that generates them must first be requested from the server. To make this work, pages that are auto-generated by plugins use the following special data-url structure: + <div data-url="page.html&subpageidentifier">

                    + +

                    So, for example, a page generated by the listview plugin may have a data-url attribute like this: data-url="artists.html&ui-page=listview-1"

                    + +

                    When a page is requested, jQuery Mobile knows to split the URL at "&ui-page" and make an HTTP request to the portion of the URL before that key. In the case of the listview example mentioned above, the URL would look like this: http://example.com/artists.html&ui-page=listview-1 + ...and jQuery Mobile would request artists.html, which would then generate its sub-pages, creating the div with data-url="artists.html&ui-page=listview-1", which it will then display as the active page.

                    + +

                    Note that the data-url attribute of the element contains the full URL path, not just the portion after &ui-page=. This allows jQuery Mobile to use a single consistent mechanism that matches URLs to page data-url attributes.

                    + +

                    Cases when Ajax navigation will not be used

                    + +

                    Under certain conditions, normal http requests will be used instead of Ajax requests. One case where this is true is when linking to pages on external websites. You can also specify that a normal http request be made through the following link attributes:

                    + +
                      +
                    • rel=external

                    • +
                    • target (with any value, such as "_blank")

                    • + +

                    Form submissions

                    + +

                    Form submissions are handled automatically through the navigation model as well. Visit the forms section for more information.

                    + +

                    Using the Application Cache

                    + +

                    When using the application cache with jQuery Mobile there is at least one important issue to consider. Some browsers, when making requests to the cache will report an http status of 0 on success. This causes jQuery Core's $.ajax to trigger error handlers. The suggested workaround for users leveraging the application cache is to use a jQuery ajax pre-filter. Something like the following (credit to jammus for the snippet):

                    + +
                    
                    +
                    +$.ajaxPrefilter( function(options, originalOptions, jqXHR) {
                    +	if ( applicationCache &&
                    +		 applicationCache.status != applicationCache.UNCACHED &&
                    +		 applicationCache.status != applicationCache.OBSOLETE ) {
                    +		 // the important bit
                    +		 options.isLocal = true;
                    +	}
                    +});
                    +
                    +			
                    + +

                    Setting isLocal to true for your ajax requests will alert jQuery Core that it should handle the 0 return values differently. Local requests exhibit similar behavior (ie 0 statuses), and Core will then fall back to determining success based on the presence of content in the xhr responseText attribute.

                    + +

                    One important issue to note with the above is that it will set isLocal to true for all requests made via ajax regardless of whether they are in the manifest or not so long as the cache is valid. This works for now because Core only consults the isLocal value when the status is in fact 0 which doesn't affect uncached results. There is no long term guarantee that isLocal will remain isolated in its purpose for handling 0 status values. If that changes it may break your application.

                    + +

                    Known limitations

                    + +

                    The non-standard environment created by jQuery Mobile's page navigation model introduces some conditions of which you should be aware when building pages:

                    + +
                      +
                    • When linking to directories, without a filename url, (such as href="typesofcats/" instead of href="typesofcats/index.html"), you must provide a trailing slash. This is because jQuery Mobile assumes the section after the last "/" character in a url is a filename, and it will remove that section when creating base urls from which future pages will be referenced.

                    • +
                    • Documents loaded via Ajax will select the first page in the DOM of that document to be loaded as a JQM page element. As a result the developer must make sure to manage the ID attributes of the loaded page and child elements to prevent confusion when manipulating the DOM.

                    • +
                    • If you link to multipage document, you must use a data-ajax="false" attribute on the link to cause a full page refresh due to the limitation above where we only load the first page node in an Ajax request due to potential hash collisions. There is currently a subpage plugin that makes it possible to load in multi-page documents.

                    • +
                    • Any unique assets referenced by pages in a jQuery Mobile-driven site should be placed inside the "page" element (the element with a data-role attribute of "page"). For example, links to styles and scripts that are specific to a particular page can be referenced inside that div. However, a better approach is to use jQuery Mobile's page events to trigger specific scripting when certain pages load. Note: you can return a page from the server with a data-url already specified in the markup, and jQuery Mobile will use that for the hash update. This allows you to ensure directory paths resolve with a trailing slash and will therefore be used in the base url path for future requests.

                    • +
                    • Conversely, any non-unique assets (those used site-wide) should be referenced in the <head> section of an HTML document, or at the very least, outside of the "page" element, to prevent running scripts more than once.

                    • +
                    • The "ui-page" key name used in sub-hash url references can be set to any value you'd like, so as to blend into your URL structure. This value is stored in jQuery.mobile.subPageUrlKey.

                    • +
                    • When traveling back to a previously loaded jQuery Mobile document from an external or internal document with the push state plugin enabled, some browsers load and trigger the popstate event on the wrong document or for the wrong reasons (two edge cases recorded so far). If you are regularly linking to external documents and find the application behaving erratically try disabling pushstate support.

                    • +
                    • jQuery Mobile does not support query parameter passing to internal/embedded pages but there are two plugins that you can add to your project to support this feature. There is a lightweight page params plugin and a more fully featured jQuery Mobile router plugin for use with backbone.js or spine.js.

                    • +
                    • Since we use the URL hash to preserve Back button behavior, using page anchors to jump down to a position on the page isn't supported by using the traditional anchor link (#foo). Use the silentScroll method to scroll to a particular Y position without triggering scroll event listeners. You can pass in a yPos arguments to scroll to that Y location.

                    • +
                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-scripting.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-scripting.html new file mode 100644 index 0000000..18cef74 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-scripting.html @@ -0,0 +1,156 @@ + + + + + + jQuery Mobile Docs - Scripting pages + + + + + + + + + + +
                    + +
                    +

                    Scripting pages

                    + Home + Search +
                    + +
                    +
                    +

                    Scripting pages in jQuery Mobile

                    +

                    Since jQuery Mobile uses an Ajax-powered navigation system, there are a few helpful things to know when writing scripts that manipulate your content. You can explore the mobile API in more detail by reading up on global configuration options, events, and methods or dig into the technical details of the Ajax navigation model.

                    + +

                    Scripts & styles in the head

                    + +

                    When the user clicks a link in a jQuery Mobile-driven site, the default behavior of the navigation system is to use that link's href to formulate an Ajax request (instead of allowing the browser's default link behavior of requesting that href with full page load). When that Ajax request goes out, the framework will receive its entire text content, but it will only inject the contents of the response's body element (or more specifically the data-role="page" element, if it's provided), meaning nothing in the head of the page will be used (with the exception of the page title, which is fetched specifically). Please note that script's loaded dynamically in this fashion do not guarantee a load order in the same way they would if the page was loaded via a normal http request.

                    + +

                    This means that any scripts and styles referenced the head of a page won't have any effect when a page is loaded via Ajax, but they will execute if the page is requested normally via HTTP. When scripting jQuery Mobile sites, both scenarios need to be considered. The reason that the head of a page is ignored when requested via Ajax is that the potential of re-executing the same JavaScript is very high (it's common to reference the same scripts in every page of a site). Due to the complexity of attempting to work around that issue, we leave the task of executing page-specific scripts to the developer, and assume head scripts are only expected to execute once per browsing session.

                    + +

                    The simplest approach when building a jQuery Mobile site is to reference the same set of stylesheets and scripts in the head of every page. If you need to load in specific scripts or styles for a particular page, we recommend binding logic to the pageInit event (details below) to run necessary code when a specific page is created (which can be determined by its id attribute, or a number of other ways). Following this approach will ensure that the code executes if the page is loaded directly or is pulled in and shown via Ajax.

                    + +

                    Another approach for page-specific scripting would be to include scripts at the end of the body element when no data-role=page element is defined, or inside the first data-role=page element. If you include your custom scripting this way, be aware that these scripts will execute when that page is loaded via Ajax or regular HTTP, so if these scripts are the same on every page, you'll likely run into problems. If you're including scripts this way, we'd recommend enclosing your page content in a data-role="page" element, and placing scripts that are referenced on every page outside of that element. Scripts that are unique to that page can be placed in that element, to ensure that they execute when the page is fetched via Ajax.

                    + +

                    pageinit = DOM ready

                    + +

                    One of the first things people learn in jQuery is to use the $(document).ready() function for executing DOM-specific code as soon as the DOM is ready (which often occurs long before the onload event). However, in jQuery Mobile site and apps, pages are requested and injected into the same DOM as the user navigates, so the DOM ready event is not as useful, as it only executes for the first page. To execute code whenever a new page is loaded and created in jQuery Mobile, you can bind to the pageinit event.

                    + +

                    The pageinit event is triggered on a page when it is initialized, right after initialization occurs. Most of jQuery Mobile's official widgets auto-initialize themselves based on this event, and you can set up your code to do the same.

                    +
                    
                    +$( document ).delegate("#aboutPage", "pageinit", function() {
                    +  alert('A page with an ID of "aboutPage" was just created by jQuery Mobile!');
                    +});
                    +
                    + +

                    If you'd like to manipulate a page's contents before the pageinit event fires and widgets are auto-initialized, you can instead bind to the pagebeforecreate event:

                    + +
                    
                    +$( document ).delegate("#aboutPage", "pagebeforecreate", function() {
                    +  alert('A page with an ID of "aboutPage" is about to be created by jQuery Mobile!');
                    +});
                    +
                    + +

                    Important note: pageCreate() vs pageInit()

                    +

                    Prior to Beta 2 the recommendation to users wishing to manipulate jQuery Mobile enhanced page and child widget markup was to bind to the pagecreate event. In Beta 2 an internal change was made to decouple each of the widgets by binding to the pagecreate event in place of direct calls to the widget methods. As a result, users binding to the pagecreate in mobileinit would find their binding executing before the markup had been enhanced by each of the plugins. In keeping with the lifecycle of the jQuery UI Widget Factory, the initialization method is invoked after the create method, so the pageinit event provides the correct timing for post enhancement manipulation of the DOM and/or Javascript objects. + + In short, if you were previously using pagecreate to manipulate the enhanced markup before the page was shown, it's very likely you'll want to migrate to 'pageinit'. +

                    + + +

                    Changing pages

                    +

                    If you want to change the current active page with JavaScript, you can use the changePage method. There are a lot of methods and properties that you can set when changing pages, but here are two simple examples:

                    +
                    
                    +//transition to the "about us" page with a slideup transition
                    +$.mobile.changePage( "about/us.html", { transition: "slideup"} );
                    +
                    +//transition to the "search results" page, using data from a form with an ID of "search"" 	
                    +$.mobile.changePage( "searchresults.php", {
                    +	type: "post",
                    +	data: $("form#search").serialize()
                    +});
                    +
                    + +

                    Loading pages

                    +

                    To load an external page, enhance its content, and insert it into the DOM, use the loadPage method. There are a lot of methods and properties that you can set when loading pages, but here is a simple example:

                    +
                    
                    +//load the "about us" page into the DOM
                    +$.mobile.loadPage( "about/us.html" );
                    +
                    + +

                    Enhancing new markup

                    +

                    The page plugin dispatches a pageInit event, which most widgets use to auto-initialize themselves. As long as a widget plugin script is referenced, it will automatically enhance any instances of the widgets it finds on the page.

                    +

                    However, if you generate new markup client-side or load in content via Ajax and inject it into a page, you can trigger the create event to handle the auto-initialization for all the plugins contained within the new markup. This can be triggered on any element (even the page div itself), saving you the task of manually initializing each plugin (listview button, select, etc.).

                    +

                    For example, if a block of HTML markup (say a login form) was loaded in through Ajax, trigger the create event to automatically transform all the widgets it contains (inputs and buttons in this case) into the enhanced versions. The code for this scenario would be:

                    +
                    $( ...new markup that contains widgets... ).appendTo( ".ui-page" ).trigger( "create" );
                    +
                    + +

                    Create vs. refresh: An important distinction

                    +

                    Note that there is an important difference between the create event and refresh method that some widgets have. The create event is suited for enhancing raw markup that contains one or more widgets. The refresh method should be used on existing (already enhanced) widgets that have been manipulated programmatically and need the UI be updated to match.

                    + +

                    For example, if you had a page where you dynamically appended a new unordered list with data-role=listview attribute after page creation, triggering create on a parent element of that list would transform it into a listview styled widget. If more list items were then programmatically added, calling the listview’s refresh method would update just those new list items to the enhanced state and leave the existing list items untouched.

                    + + +

                    Scrolling to a position within a page

                    +

                    Since we use the URL hash to preserve Back button behavior, using page anchors to jump down to a position on the page isn't supported by using the traditional anchor link (#foo). Use the silentScroll method to scroll to a particular Y position without triggering scroll event listeners. You can pass in a yPos arguments to scroll to that Y location. For example:

                    +
                    
                    +//scroll to Y 300px
                    +$.mobile.silentScroll(300);
                    +
                    + +

                    Binding to mouse and touch events

                    +

                    One inportant consideration in mobile is handling mouse and touch events. These events differ significantly across mobile platforms, but the common denominator is that click events will work everywhere, but usually after a significant delay of 500-700ms. This delay is necessary for the browser to wait for double tap, scroll and extended hold tap events to potentially occur. To avoid this delay, it's possible to bind to touch events (ex. touchstart) but the issue with this approach is that some mobile platforms (WP7, Blackberry) don't support touch. To compound this issue, some platforms will emit both touch and mouse events so if you bind to both types, duplicate events will be fired for a single interaction.

                    +

                    Our solution is to create a set of virtual events that normalize mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. This still retains the order of event firing in the traditional mouse environment, should multiple handlers be registered on the same element for different events. The virtual mouse system exposes the following virtual events to jQuery bind methods: vmouseover, vmousedown, vmousemove, vmouseup, vclick, and vmousecancel

                    + + +

                    Passing parameters between pages

                    +

                    jQuery Mobile does not support query parameter passing to internal/embedded pages. For example, if the framework sees a link to "#somePage?someId=1" it interpret that as "#somePage" and navigate to the internal page div with an ID of somePage and apply a data-url of #somePage?someId=1 to that page container. Subsequent calls to other params such as "#somePage?someId=2" will find the same div because jQuery Mobile refers to the data-url on the div which is only set once and will remain at #somePage?someId=1.

                    + +

                    There are two plugins that you can add to your project if query parameters are needed between pages. There is a lightweight page params plugin and a more fully featured jQuery Mobile router plugin for use with backbone.js or spine.js.

                    + + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-template.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-template.html new file mode 100755 index 0000000..88e15ec --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-template.html @@ -0,0 +1,34 @@ + + + + + + + Single page template + + + + + + + +
                    + +
                    +

                    Single page

                    +
                    + +
                    +

                    This is a single page boilerplate template that you can copy to build your first jQuery Mobile page. Each link or form from here will pull a new page in via Ajax to support the animated page transitions.

                    +

                    Just view the source and copy the code to get started. All the CSS and JS is linked to the jQuery CDN versions so this is super easy to set up. Remember to include a meta viewport tag in the head to set the zoom level.

                    +

                    This template is standard HTML document with a single "page" container inside, unlike a multi-page template that has multiple pages within it. We strongly recommend building your site or app as a series of separate pages like this because it's cleaner, more lightweight and works better without JavaScript.

                    +
                    + +
                    +

                    Footer content

                    +
                    + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-titles.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-titles.html new file mode 100644 index 0000000..a7aad70 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-titles.html @@ -0,0 +1,82 @@ + + + + + + jQuery Mobile Docs - Page titles + + + + + + + + + + +
                    + +
                    +

                    Page titles

                    + Home + Search +
                    + +
                    +
                    + +

                    Titles in Ajax navigation

                    + +

                    When you load the first page of a jQuery Mobile based site, then click a link or submit a form, Ajax is used to pull in the content of the requested page. Having both pages in the DOM is essential to enable the animated page transitions, but one downside of this approach is that the page title is always that of the first page, not the subsequent page you’re viewing.

                    +

                    To remedy this, jQuery Mobile automatically parses the title of the page pulled via Ajax and changes the title attribute of the parent document to match.

                    + +

                    Titles in multi-page templates

                    + +

                    On multi-page documents, we follow a similiar convention, but since all the pages share a common title, we have a data-title attribute that can be added to each page container within a multi-page template to manually define a title. The title of the HTML document will be automatically updated to match the data-title of the page currently in view.

                    + +
                    
                    +<div data-role="page" id="foo" data-title="Page Foo">
                    +
                    +</div><!-- /page -->
                    +
                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions-dialog.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions-dialog.html new file mode 100644 index 0000000..88d6562 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions-dialog.html @@ -0,0 +1,34 @@ + + + + + + jQuery Mobile Framework - Dialog + + + + + + + + + + +
                    + +
                    +

                    Dialog

                    +
                    + +
                    +

                    That was an animated page transition effect to a dialog that we added with a data-transition attribute on the link.

                    +

                    Since it uses CSS animations, this should be hardware accelerated on many devices. To see transitions, 3D transform support is required so if you only saw a fade transition that's the reason.

                    + + Take me back +
                    +
                    + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions-page.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions-page.html new file mode 100644 index 0000000..daf9100 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions-page.html @@ -0,0 +1,69 @@ + + + + + + jQuery Mobile Framework - Page + + + + + + + + + + + + +
                    +
                    +

                    Page

                    +
                    + +
                    +

                    That was an animated page transition effect to a page that we added with a data-transition attribute on the link. This uses a different background theme swatch to see how that looks with the transitions.

                    +

                    Since it uses CSS animations, this should be hardware accelerated on many devices. To see transitions, 3D transform support is required so if you only saw a fade transition that's the reason.

                    + +
                    +

                    Here's a few form elements

                    + +

                    These are here to see if this slows down rendering.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + Take me back +
                    + +
                    +
                    + + +
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions.html b/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions.html new file mode 100644 index 0000000..01932f2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/page-transitions.html @@ -0,0 +1,174 @@ + + + + + + jQuery Mobile Docs - Transitions + + + + + + + + + + +
                    + +
                    +

                    Transitions

                    + Home + Search +
                    + +
                    +
                    +

                    Page transitions

                    + +

                    The jQuery Mobile framework includes a set of CSS-based transition effects that can be applied to any page link or form submission with Ajax navigation:

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

                    fade

                    dialogpage

                    pop

                    dialogpage

                    flip

                    dialogpage

                    turn

                    dialogpage

                    flow

                    dialogpage

                    slidefade

                    dialogpage

                    slide

                    dialogpage

                    slideup

                    dialogpage

                    slidedown

                    dialogpage

                    none

                    dialogpage
                    + + +

                    Only seeing fade transitions? To view all transition types, you must be on a browser that supports 3D transforms. By default, devices that lack 3D support (such as Android 2.x) will fallback to "fade" for all transition types. This behavior is configurable (see below).

                    + +

                    Transitions were originally inspired by jQtouch They've since been rebuilt, but props to David Kaneda and Jonathan Stark for the initial guidance.

                    + +

                    Setting a transition on a link or form submit

                    +

                    By default, the framework applies a fade transition. To set a custom transition effect, add the data-transition attribute to the link.

                    + + +<a href="index.html" data-transition="pop">I'll pop</a> + + +

                    When the Back button is pressed, the framework will automatically apply the reverse version of the transition that was used to show the page. To specify that the reverse version of a transition should be used, add the data-direction="reverse" attribute to a link.

                    + +

                    Global configuration of transitions

                    + +

                    Set the defaultPageTransition global option if you'd prefer a different default transition. Dialogs have a different option called defaultDialogTransition that can also set configured.

                    + + +

                    Browser support and performance

                    +

                    All transitions are built with CSS keyframe animations and include both -webkit vendor prefixed rules for iOS, Blackberry, Android, Safari and Chrome browsers and -moz rules for Firefox browsers. Support for keyframe animations and transition smoothness is determined by the browser version and hardware and will safely fall back to no transition if animations aren't supported. To proactively exclude transition in situations with poor performance, we exclude browsers that lack 3D transforms and provide a fallback transition and apply a max width for when transitions are applied.

                    + +

                    Defining fallback transitions for non-3D support

                    +

                    By default, all transitions except fade require 3D transform support. Devices that lack 3D support will fall back to a fade transition, regardless of the transition specified. We do this to proactively exclude poorly-performing platforms like Android 2.x from advanced transitions and ensure they still have a smooth experience. Note that there are platforms such as Android 3.0 that technically support 3D transforms, but still have poor animation performance so this won't guarantee that every browser will be 100% flicker-free but we try to target this responsibly.

                    + +

                    The fallback transition for browsers that don't support 3D transforms can be configured for each transition type, but by default we specify "fade" as the fallback. For example, this will set the fallback transition for the slideout transition to "none":

                    + $.mobile.transitionFallbacks.slideout = "none" + +

                    Setting a max width for transitions

                    +

                    By default, transitions can be disabled (set to "none") when the window width is greater than a certain pixel width. This feature is useful because transitions can be distracting or perform poorly on larger screens. This value is configurable via the global option $.mobile.maxTransitionWidth, which defaults to false. The option accepts any number representing a pixel width or false value. If it's not false, the handler will use a "none" transition when the window width is wider than the specified value.

                    + + + + + +

                    Creating custom transitions

                    + +

                    jQuery Mobile allows for the addition of custom transitions to the $.mobile.transitionHandlers dictionary so you can expand the selection of transitions on your site or app. + + + + + +

                    + + + +
                    + + + +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes.html b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes.html new file mode 100644 index 0000000..92f8876 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes.html @@ -0,0 +1,150 @@ + + + + + + jQuery Mobile Docs - Theming Pages + + + + + + + + + + +
                    + +
                    +

                    Theming pages

                    + Home + Search +
                    + +
                    +
                    + + + +

                    Page Theming

                    + +

                    jQuery Mobile has a rich theming system that gives you full control of how pages are styled. There is detailed theming documentation within each page widget, but let's look at a few high-level examples of how theming is applied.

                    + +

                    The data-theme attribute can be applied to the header and footer containers to apply any of the lettered theme color swatches. While the data-theme attribute could be added to the content container, we recommend adding it instead to div or container that has been assigned the data-role="page" attribute to ensure that the background color is applied to the full page. When this is done, all widgets on the page will also inherit the theme specified in the page container. However, headers and footers will default to theme "a". If you want to have a page with, for example, only theme "b" for all its elements, including its header and footer, you will need to specify data-theme="b" to the page div as well as the header and footer divs.

                    + +

                    The default Theme mixes styles from multiple swatches to create visual texture and present the various elements in optimal contrast to one another:

                    + +
                    +

                    Default Theme

                    +
                    + +
                    +

                    Default Theme Content Header

                    +

                    This is the default content color swatch and a preview of a link.

                    + + Button +
                    + +

                    And each of the five "swatches" applies its style consistently across all page elements, as shown below:

                    + +

                    Swatch A

                    +
                    +

                    Header A

                    +
                    + + +
                    +

                    Header

                    +

                    This is content color swatch "A" and a preview of a link.

                    + Button +
                    + + +

                    Swatch B

                    +
                    +

                    Header B

                    +
                    +
                    +

                    Header

                    +

                    This is content color swatch "B" and a preview of a link.

                    + Button +
                    + +

                    Swatch C

                    +
                    +

                    Header C

                    +
                    +
                    +

                    Header

                    +

                    This is content color swatch "C" and a preview of a link.

                    + Button +
                    + +

                    Swatch D

                    +
                    +

                    Header D

                    +
                    +
                    +

                    Header

                    +

                    This is content color swatch "D" and a preview of a link.

                    + Button +
                    + +

                    Swatch E

                    +
                    +

                    Header E

                    +
                    +
                    +

                    Header

                    +

                    This is content color swatch "E" and a preview of a link.

                    + Button +
                    + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-a.html b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-a.html new file mode 100644 index 0000000..9aae998 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-a.html @@ -0,0 +1,163 @@ + + + + + + jQuery Mobile Docs - Theming Pages + + + + + + + + + + +
                    + +
                    +

                    Theming pages

                    + Home + Search +
                    + +
                    +
                    + + + +

                    Theme A Sample Page

                    + +

                    This is an example of data-theme="a" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + +

                    Collapsible Sets

                    +
                    +
                    +

                    Section 1

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                    +
                    +
                    +

                    Section 2

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section 3

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    + +

                    Inset List

                    + + +
                    + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-b.html b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-b.html new file mode 100644 index 0000000..7803d1d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-b.html @@ -0,0 +1,163 @@ + + + + + + jQuery Mobile Docs - Theming Pages + + + + + + + + + + +
                    + +
                    +

                    Theming pages

                    + Home + Search +
                    + +
                    +
                    + + + +

                    Theme B Sample Page

                    + +

                    This is an example of data-theme="b" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + +

                    Collapsible Sets

                    +
                    +
                    +

                    Section 1

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                    +
                    +
                    +

                    Section 2

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section 3

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    + +

                    Inset List

                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-c.html b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-c.html new file mode 100644 index 0000000..2bbdd2f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-c.html @@ -0,0 +1,163 @@ + + + + + + jQuery Mobile Docs - Theming Pages + + + + + + + + + + +
                    + +
                    +

                    Theming pages

                    + Home + Search +
                    + +
                    +
                    + + + +

                    Theme C Sample Page

                    + +

                    This is an example of data-theme="c" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + +

                    Collapsible Sets

                    +
                    +
                    +

                    Section 1

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                    +
                    +
                    +

                    Section 2

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section 3

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    + +

                    Inset List

                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-d.html b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-d.html new file mode 100644 index 0000000..91e2136 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-d.html @@ -0,0 +1,163 @@ + + + + + + jQuery Mobile Docs - Theming Pages + + + + + + + + + + +
                    + +
                    +

                    Theming pages

                    + Home + Search +
                    + +
                    +
                    + + + +

                    Theme D Sample Page

                    + +

                    This is an example of data-theme="d" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + +

                    Collapsible Sets

                    +
                    +
                    +

                    Section 1

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                    +
                    +
                    +

                    Section 2

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section 3

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    + +

                    Inset List

                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-e.html b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-e.html new file mode 100644 index 0000000..b06458a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/pages-themes/theme-e.html @@ -0,0 +1,163 @@ + + + + + + jQuery Mobile Docs - Theming Pages + + + + + + + + + + +
                    + +
                    +

                    Theming pages

                    + Home + Search +
                    + +
                    +
                    + + + +

                    Theme E Sample Page

                    + +

                    This is an example of data-theme="e" applied to the same element as data-role="page", showing how the theme is inherited by widgets throughout the page.

                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + +
                    + +

                    Collapsible Sets

                    +
                    +
                    +

                    Section 1

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm visible by default because I have the data-collapsed="false" attribute; to collapse me, either click my header or expand another header in my set.

                    +
                    +
                    +

                    Section 2

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section 3

                    +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    + +

                    Inset List

                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/phonegap.html b/libs/js/jquery-mobile-1.1.0/docs/pages/phonegap.html new file mode 100644 index 0000000..51a53b3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/phonegap.html @@ -0,0 +1,115 @@ + + + + + + jQuery Mobile Docs - Phonegap + + + + + + + + + + +
                    + +
                    +

                    PhoneGap apps

                    + Home + Search +
                    + +
                    +
                    + + +

                    Building PhoneGap apps with jQuery Mobile

                    + +

                    PhoneGap is an HTML5 app platform that allows developers to author native applications with web technologies and get access to APIs and app stores. Applications are built as normal HTML pages and packaged up to run as a native application within a UIWebView or WebView (a chromeless browser, referred to hereafter as a webview). Since PhoneGap is frequently used in conjunction with jQuery Mobile, we wanted to offer a few tips and recommendations to help you get staretd.

                    + +

                    The initial application document is loaded by the PhoneGap application by a local file:// URL. This means that if you want to pull in pages from your company's remote server (phone home) you will have to refer to them with absolute URLs to your server. Because your document originates from a file:// URL, loading pages or assets from your remote server is considered a cross-domain request that can be blocked in certain scenarios.

                    + +

                    Your ability to access cross-domain pages from within a Phone Gap jQuery Mobile application is controlled by two key things: $.support.cors and $.mobile.allowCrossDomainPages, and can also be influenced by the white list feature in later builds of PhoneGap.

                    + +

                    $.support.cors

                    + +

                    In jQuery core, there is a $.support.cors boolean that indicates whether or not jQuery thinks the browser supports the W3C "Cross-Origin Resource Sharing" feature to support cross-domain requests.

                    + +

                    Since jQuery Mobile relies on jQuery core's $.ajax() functionality, $.support.cors must be set to true to tell $.ajax to load cross-domain pages. We've heard reports that webviews on some platforms, like BlackBerry, support cross-domain loading, but that jQuery core incorrectly sets $.support.cors value to false which disables cross-domain $.ajax() requests and will cause the page or assets to fail to load.

                    + +

                    $.mobile.buttonMarkup.hoverDelay

                    + +

                    If you find that the button down/hover state (lists, buttons, links etc) feels sluggish the $.mobile.buttonMarkup.hoverDelay setting might be of use. It will decrease the time between the touch event and the application of the relevant class but will also result in a higher chance that the same class will be applied even when the user is scrolling (eg, over a long list of links).

                    + +

                    $.mobile.allowCrossDomainPages

                    + +

                    When jQuery Mobile attempts to load an external page, the request runs through $.mobile.loadPage(). This will only allow cross-domain requests if the $.mobile.allowCrossDomainPages configuration option is set to true. Because the jQuery Mobile framework tracks what page is being viewed within the browser's location hash, it is possible for a cross-site scripting (XSS) attack to occur if the XSS code in question can manipulate the hash and set it to a cross-domain URL of its choice. This is the main reason that the default setting for $.mobile.allowCrossDomainPages is set to false.

                    + +

                    So in PhoneGap apps that must "phone home" by loading assets off a remote server, both the $.support.cors AND $.mobile.allowCrossDomainPages must be set to true. The $.mobile.allowCrossDomainPages option must be set before any cross-domain request is made so we recommend wrapping this in a mobileinit handler:

                    + +
                    $( document ).bind( "mobileinit", function() {
                    +    // Make your jQuery Mobile framework configuration changes here!
                    +
                    +    $.mobile.allowCrossDomainPages = true;
                    +});
                    + +

                    PhoneGap White Listing

                    + +

                    PhoneGap 1.0 introduced the idea of white-listing servers that its internal webview is allowed to make cross-domain requests to. You can find info about it here on the PhoneGap wiki:

                    + +

                    However, not all platforms support this white-listing feature so check the PhoneGap documentation for details. Older versions of PhoneGap prior to 1.0 defaulted to allowing cross-domain requests to any server.

                    + +

                    Still having issues?

                    + +

                    Here are a few more tips that aren't specifically related to PhoneGap but are good to know:

                    + +

                    We recommend disabling the pushState feature for installed apps because there are edge cases where this feature can cause unexpected navigation behavior and since URLs aren't visible in a webview, it's not worth keeping this active in these situations.

                    + +

                    Android enforces a timeout when loading URLs in a webview which may be too short for your needs. You can change this timeout by editing a Java class generated by the Eclipse plugin for Android:

                    + + super.setIntegerProperty("loadUrlTimeoutValue", 60000); + + + +
                    + + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/touchoverflow.html b/libs/js/jquery-mobile-1.1.0/docs/pages/touchoverflow.html new file mode 100644 index 0000000..e552a84 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/touchoverflow.html @@ -0,0 +1,127 @@ + + + + + + jQuery Mobile Docs - touchOverflow + + + + + + + + + + +
                    + +
                    +

                    touchOverflow

                    + Home + Search +
                    + +
                    +
                    + +
                    +

                    touchOverflowEnabled: Deprecated in 1.1.0

                    + +

                    Prior to jQuery Mobile 1.1, true fixed toolbar support was contingent on native browser support for the CSS property overflow-scrolling: touch, which is currently only supported in iOS5. As of version 1.1, jQuery Mobile no longer uses this CSS property at all. We've removed all internal usage of this property in the framework, but we've left it defined globally on the $.mobile object to reduce the risk that its removal will cause trouble with existing applications. This property is flagged for removal, so please update your code to no longer use it. The support test for this property, however, remains defined under $.support and we have no plans to remove that test at this time.

                    +
                    + +

                    touchOverflow: Improved page transitions and true fixed toolbars

                    + +

                    Currently, both the page you're viewing and the one you're navigating to are sitting next to each other in the viewport, which lets us leverage native scrolling for the broadest possible device support. The downside to this approach is that since both pages share the same viewport, when a page transition starts, we must first scroll to the top of the document, then start animating to ensure that the pages are lined up vertically. If you hit the Back button, we need to scroll up, transition, then restore the previous scroll position. Since mobile browsers are pretty slow, these scroll movements can detract from the flow of the experience.

                    + +

                    The way to really improve this situation is to have both pages in separate containers, each with its own internal scroll bar. The means no more scrolling the document or needing to restore scroll positions for a smoother experience. It also has the benefit of making fixed toolbars very easy to implement by simply placing them outside the containers with internal scrolling.

                    + +

                    How it works

                    + +

                    To leverage iOS5′s support for a touch-targeted version of overflow:auto which allows for internal scrolling regions with the native momentum scrolling, we've added a feature called touchOverflow that leverages these new CSS capabilities to enable us to bring both true “fixed” toolbars and super smooth transitions to iOS5, all by using web standards and very little additional code.

                    + +

                    A feature called touchOverflowEnabled is designed to leverage the upcoming wave of browsers that support overflow scrolling in CSS. Note that this feature is off by default to give us more time to test and debug this for best performance but we hope to turn it on by default at a later point. Here's how to enable this global option:

                    + +
                    <script>
                    +$(document).bind("mobileinit", function(){
                    +  $.mobile.touchOverflowEnabled = true;
                    +});
                    +</script>
                    + +

                    When this feature is activated, the framework looks for browser support for both the overflow: and -webkit-overflow-scrolling:touch CSS properties. In browsers that support both, it switches to a dual page container model with native overflow: scrolling within each, which brings true fixed toolbars smooth transitions. Coupled with iOS’s already excellent hardware-accelerated transitions, it's now possible to build interfaces that are very close to native performance.

                    + +

                    To demo this feature, check out this page in iOS5.

                    + +

                    A few downsides

                    + +

                    Nothing is perfect, especially a new feature, so there are a few downsides to keep in mind. When activating this feature:

                    + +
                      +
                    • Sometimes child elements like lists and forms wouldn't render when embedded in a page with overflow: in iOS5. This was a pretty random phenomenon but is not acceptable so we've added a translate-z CSS property which forces iOS to render the contents. The downside with this fix is that when a transform is applied, all elements are set to position:relative which can cause issues in your layout.
                    • +
                    • The -webkit-overflow-scrolling:touch property seems to disable the events to scroll you to the top of the page when the time is tapped in the status bar. We hope Apple fixes this because it's a very useful feature.
                    • +
                    • When overflow: and -webkit-overflow-scrolling:touch properties are set, iOS appears to ignore any overflow:hidden properties on the parent, which is the page in our case. So if you have an image or code block that is wider than the viewport, horizontal scrolling will be seen.
                    • +
                    • When this feature is active, we are disabling user zoom by manipulating the meta viewport tag because both the toolbars and page content can easily be zoomed to an odd size and it's very difficult to zoom back out. Even though we believe in allowing users to zoom the page, alleviating the usability concerns we have with fixed toolbars and overflow containers is more important.
                    • +
                    • Scroll position can be lost when going back to a page that has been re-loaded. If DOM caching is on, this shouldn't be as much of an issue.
                    • +
                    • This is still an experimental feature, so not all the kinks have been worked out yet. Use with caution and test thoroughly.
                    • +
                    + + + +

                    Don’t other mobile platforms already support overflow?

                    +

                    Yes, but there’s a catch. Both Android Honeycomb and the Blackberry PlayBook support overflow: properties, but we found in testing that their implementation of overflow wasn't smooth enough, so pages would stutter and hang during scrolling, leading to an unusable experience. We're working with device makers to ensure that they are included when performance improves.

                    +

                    More importantly, targeting overflow correctly is a major issue. If we simply placed an overflow: auto CSS rule on the pages, other popular mobile platforms like older versions of Android and iOS would essentially just clip off the content and make it effectively inaccessible (yes, you can do a two-finger scroll gesture in iOS but nobody knows that). The smart thing about Apple’s implementation for iOS5 is that they added an additional CSS property -webkit-overflow-scrolling:touch that allows us to test for this touch scrolling property and, if supported, add in the overflow rules for just those browsers. This is the only safe way to target overflow without resorting to complex and unmaintainable user agent detection.

                    +

                    We will be working with device and browser makers to encourage support for both these CSS-based properties because we strongly believe that this a critical piece needed to build rich mobile web apps. The project will add any vendor-prefixed additions to touch scrolling property if, for example, Opera, Firefox or Microsoft added this support. Once people see how much better page transitions and fixed toolbars are on iOS5, we’re hoping this will be supported quickly by other browsers. JS-based scroller scripts may still have a place in this new world as a polyfill for browsers that don’t yet support these new CSS capabilities but we see this as a brief, interim tool in the evolution of the mobile web.

                    + + + +

                    Debugging touchOverflow

                    +

                    Generally touchOverflow is only enabled on devices that support touch-scrolling of overflow areas, not desktop browsers. This can make it difficult to debug problems with the touchOverflow feature. To enable touchOverflow on all browsers, use the following code: + +

                    <script>
                    +$(document).bind("mobileinit", function() {
                    +  $.support.touchOverflow = true;
                    +  $.mobile.touchOverflowEnabled = true;
                    +});
                    +</script>
                    + + +
                    + + + +
                    + + + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/pages/transition-success.html b/libs/js/jquery-mobile-1.1.0/docs/pages/transition-success.html new file mode 100644 index 0000000..23eac4a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/pages/transition-success.html @@ -0,0 +1,33 @@ + + + + + + jQuery Mobile Framework - Dialog Example + + + + + + + + + + +
                    + +
                    +

                    Ta-da!

                    +
                    + +
                    +

                    That was an animated page transition effect that we added with a data-transition attribute on the link.

                    +

                    Since it uses CSS transforms, this should be hardware accelerated on many mobile devices.

                    +

                    What do you think?

                    + I like it +
                    +
                    + + + + diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-events.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-events.html new file mode 100644 index 0000000..d65dbc0 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-events.html @@ -0,0 +1,84 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    + +

                    Fixed toolbars

                    + Home + Search +
                    + +
                    +
                    +

                    Fixed toolbars

                    + + + +

                    The fixedtoolbar plugin has the following custom events:

                    + +
                    + +
                    create triggered when a fixed toolbar is created
                    +
                    + +
                    
                    +$( ".selector" ).fixedtoolbar({
                    +   create: function(event, ui) { ... }
                    +});		
                    +						
                    +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-a.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-a.html new file mode 100644 index 0000000..1c732e7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-a.html @@ -0,0 +1,299 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    + +
                    +
                    +
                    +

                    2,146 Songs

                    +
                    +
                    + +
                    +
                    + +
                    +
                    +
                    + + +
                    +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    + + +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-b.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-b.html new file mode 100644 index 0000000..3550110 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-b.html @@ -0,0 +1,129 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    + + +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-c.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-c.html new file mode 100644 index 0000000..5404cd4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-c.html @@ -0,0 +1,129 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    + + +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-d.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-d.html new file mode 100644 index 0000000..59e3be1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-d.html @@ -0,0 +1,153 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-e.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-e.html new file mode 100644 index 0000000..74300cf --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-e.html @@ -0,0 +1,153 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-f.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-f.html new file mode 100644 index 0000000..5ba4cf5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-f.html @@ -0,0 +1,129 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    + + +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-g.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-g.html new file mode 100644 index 0000000..efbfc18 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-g.html @@ -0,0 +1,231 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    + + +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-h.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-h.html new file mode 100644 index 0000000..a4710c4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms-h.html @@ -0,0 +1,135 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +
                    + Link + + + + +
                    +
                    + +
                    +
                    +

                    Forms in fixed toolbar demos

                    +

                    These pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons. +

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +
                    + + + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms.html new file mode 100644 index 0000000..bb82528 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-forms.html @@ -0,0 +1,45 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + + + +
                    + +
                    + + + + + + +

                    Fixed + Forms

                    +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-methods.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-methods.html new file mode 100644 index 0000000..912fa32 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-methods.html @@ -0,0 +1,134 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    + +

                    Fixed toolbars

                    + Home + Search +
                    + +
                    +
                    +

                    Fixed toolbars

                    + + + + + + + + +

                    The fixedtoolbar plugin has the following methods:

                    + +
                    + +
                    show show the toolbar
                    +
                    +
                    
                    +		    $("[data-position='fixed']").fixedtoolbar('show');
                    +		   				
                    + +
                    +

                    Note:Prior to version 1.1, the following syntax was used to show the toolbars, but it is no longer supported:

                    +
                    
                    +$.mobile.fixedToolbars
                    +   .show(true);
                    +
                    + + +
                    + +
                    + +
                    hide hide the toolbar (if it's not a fullscreen toolbar, it'll toggle back to static positioning, which may or may not be hidden from view depending on scroll)
                    +
                    +
                    
                    +$("[data-position='fixed']").fixedtoolbar('hide');
                    +		   				
                    +
                    + +
                    toggle calls either the show or the hide method, depending on whether the toolbar is visible.
                    +
                    +
                    
                    +$("[data-position='fixed']").fixedtoolbar('toggle');
                    +		   				
                    +
                    + +
                    updatePagePadding update the padding (either top or bottom, depending on if the toolbar is a header or a footer) of the page element parent of the toolbar to match the height of the toolbar.
                    +
                    +
                    
                    +$("[data-position='fixed']").fixedtoolbar('updatePagePadding');
                    +		   				
                    + +

                    There is also an updatelayout event that can be used to trigger the toolbars to re-position. Developers who are building dynamic applications that inject content into the current page can also manually trigger this updatelayout event to ensure components on the page update in response to the new content that was just added. This event is used internally in the collapsible and listview filter plugins and is powerful because it's not toolbar-specific -- any widget can be built to listen for the updatelayout event to update the widget in response.

                    +
                    + +
                    destroy destroy at fixedtoolbar (restore the element to its initial state)
                    +
                    +
                    
                    +$("[data-position='fixed']").fixedtoolbar('destroy');
                    +		   				
                    +
                    + + +
                    + + + + + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-options.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-options.html new file mode 100644 index 0000000..12367f6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed-options.html @@ -0,0 +1,177 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    + +

                    Fixed toolbars

                    + Home + Search +
                    + +
                    +
                    +

                    Fixed toolbars

                    + + + +

                    The fixedtoolbar plugin has the following options:

                    + + +
                    + +
                    visibleOnPageShow boolean
                    +
                    +

                    default: true

                    +

                    This determines whether the toolbar is visible or not when its parent page is shown. This option is also exposed as a data attribute: data-visible-on-page-show="false"

                    +
                    $("[data-role=header]").fixedtoolbar({ visibleOnPageShow: false });
                    +
                    + +
                    disablePageZoom boolean
                    +
                    +

                    default: true

                    +

                    This determines whether user-scaling should be disabled on pages that contain fixed toolbars. This option is also exposed as a data attribute: data-disable-page-zoom="false"

                    +
                    $("[data-role=header]").fixedtoolbar({ disablePageZoom: false });
                    +
                    + +
                    transition string
                    +
                    +

                    default: "slide" (which ends up using slideup and slidedown)

                    +

                    The transition that should be used for showing and hiding a fixed toolbar. Possible values are "none", "fade", and "slide" (or you can write a CSS transition of your own and use that too). This option is also exposed as a data attribute: data-transition="fade"

                    +
                    $("[data-role=header]").fixedtoolbar({ transition: "fade" });
                    +
                    + +
                    fullscreen boolean
                    +
                    +

                    default: false

                    +

                    Fullscreen fixed toolbars sit on top of the content at all times when they are visible, and unlike regular fixed toolbars, fullscreen toolbars do not fall back to static positioning when toggled, instead they disappear from the screen entirely. Fullscreen toolbars are ideal for more immersive interfaces, like a photo viewer that is meant to fill the entire screen with the photo itself and no distractions. This page demonstrates toolbars that use the fullscreen option. This option is also exposed as a data attribute: data-fullscreen="true"

                    +
                    $("[data-role=header]").fixedtoolbar({ fullscreen: true });
                    + +

                    Note:While the data-attribute syntax for this option has not changed, it is now only supported on the toolbar element itself, and not the page element.

                    + +
                    + +
                    tapToggle boolean
                    +
                    +

                    default: true

                    +

                    Enable or disable the user's ability to toggle toolbar visibility with a tap on the screen (or a click, for mouse users). This option is also exposed as a data attribute: data-tap-toggle="true"

                    +
                    $("[data-role=header]").fixedtoolbar({ tapToggle: true });
                    + +
                    +

                    Note: This behavior was formerly configurable as follows, but as of version 1.1 this syntax is no longer supported: +

                    	
                    +$.mobile.fixedToolbars
                    +   .setTouchToggleEnabled(false);
                    +
                    + +
                    + +
                    + + + +
                    tapToggleBlacklist string
                    +
                    +

                    default: "a, .ui-header-fixed, .ui-footer-fixed"

                    +

                    A list of jQuery selectors that, when tapped, will not cause the toolbars to be toggled.

                    +
                    $("[data-role=header]").fixedtoolbar({ tapToggleBlacklist: "a, input, select, textarea, .ui-header-fixed, .ui-footer-fixed" });
                    +
                    + +
                    hideDuringFocus string
                    +
                    +

                    default: "input, select, textarea"

                    +

                    A list of jQuery selectors that should cause the toolbars to hide while focused, except if they are in a fixed toolbar.

                    +
                    $("[data-role=header]").fixedtoolbar({ hideDuringFocus: "input, select, textarea" });
                    +
                    + + +
                    updatePagePadding boolean
                    +
                    +

                    default: true

                    +

                    Since toolbars can vary in height depending on the content they contain, this option automatically updates the padding on the page element to ensure that fixed toolbars have adequate space in the document when they are statically positioned, and when scrolled to the top or bottom of the page. When enabled, the padding updates during many operations, such as pageshow, during page transitions, and on resize and orientationchange. As an optimization, we would recommend that you consider disabling this option and adding a rule to your CSS to set the padding of the page div to match the EM height of your toolbars, such as .ui-page-header-fixed { padding-top: 4.5em; }. This option is also exposed as a data attribute: data-update-page-paddinge="false"

                    +
                    $("[data-role=header]").fixedtoolbar({ updatePagePadding: false });
                    +
                    + + +
                    supportBlacklist function
                    +
                    +

                    default: function that returns a boolean value

                    +

                    CSS position: fixed support is very difficult to test; in fact, at the time of version 1.1 release, there was no known way to reasonably test for fixed support without turning up false positives or negatives in certain popular browsers. This option is a function that attempts to opt-out some popular platforms that are known to be troublesome with position: fixed . Often, these platforms support position: fixed partially, which can be worse than not supporting it at all. If overriding this option with your own blacklist logic, you simply need to provide a function that returns a true or false result when called upon initialization. You must set it on mobileinit, so that it applies when the plugin is initially created.

                    +
                    
                    +$( document ).bind("mobileinit", function(){
                    +  $.mobile.fixedtoolbar.prototype.options.supportBlacklist = function(){
                    +    var result;
                    +    // logic to determine whether result should be true or false
                    +    return result;
                    +  };
                    +})
                    +
                    + + +
                    initSelector CSS selector string
                    +
                    +

                    default: ":jqmData(position='fixed')"

                    +

                    This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as fixed toolbars. To change which elements are initialized, bind this option to the mobileinit event:

                    +
                    $( document ).bind( "mobileinit", function(){
                    +	$.mobile.fixedtoolbar.prototype.options.initSelector = ".myselector";
                    +});
                    +
                    +
                    + + + +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed.html new file mode 100644 index 0000000..24b4387 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fixed.html @@ -0,0 +1,231 @@ + + + + + + jQuery Mobile Framework - Fixed Toolbars + + + + + + + + + + +
                    + +
                    +

                    Fixed toolbars

                    + Home + Search +
                    + +
                    +
                    +

                    Fixed toolbars

                    + + + + +

                    In browsers that support CSS position: fixed (most desktop browsers, iOS5+, Android 2.2+, BlackBerry 6, and others), toolbars that use the "fixedtoolbar" plugin will be fixed to the top or bottom of the viewport, while the page content scrolls freely in between. In browsers that don't support fixed positioning, the toolbars will remain positioned in flow, at the top or bottom of the page.

                    + +

                    To enable this behavior on a header or footer, add the data-position="fixed" attribute to a jQuery Mobile header or footer element.

                    + +

                    Fixed header markup example:

                    +
                    	
                    +<div data-role="header" data-position="fixed">
                    +	<h1>Fixed Header!</h1>
                    +</div>
                    +		
                    + +

                    Fixed footer markup example:

                    +
                    	
                    +<div data-role="footer" data-position="fixed">
                    +	<h1>Fixed Footer!</h1>
                    +</div>
                    +		
                    + +

                    Fullscreen Toolbars

                    +

                    Fullscreen fixed toolbars sit on top of the content at all times when they are visible, and unlike regular fixed toolbars, fullscreen toolbars do not fall back to static positioning when toggled. Instead they disappear from the screen entirely. Fullscreen toolbars are ideal for more immersive interfaces, like a photo viewer that is meant to fill the entire screen with the photo itself and no distractions.

                    + +

                    To enable this option on a fixed header or footer, add the data-fullscreen attribute to the element.

                    + +
                    	
                    +<div data-role="header" data-position="fixed" data-fullscreen="true">
                    +	<h1>Fixed Header!</h1>
                    +</div>
                    +				
                    + + +

                    Forms in toolbars

                    + +

                    While all form elements are now tested to work correctly within static toolbars as of jQuery Mobile 1.1, we recommend extensive testing when using form elements within fixed toolbars or within any position: fixed elements. This can potentially trigger a number of unpredictable issues in various mobile browsers, Android 2.2/2.3 in particular (detailed in Known issues in Android 2.2/2.3, below).

                    + +

                    Changes in jQuery Mobile 1.1

                    + +

                    Prior to version 1.1, jQuery Mobile used dynamically re-positioned toolbars for the fixed header effect because very few mobile browsers supported the position:fixed CSS property, and simulating fixed support through the use of "fake" JavaScript overflow-scrolling behavior would have reduced our browser support reach, in addition to feeling unnatural on certain platforms. This behavior was not ideal, and jQuery Mobile 1.1 took a new approach to fixed toolbars that allows much broader support. The framework now offers true fixed toolbars on many popular platforms, while gracefully degrading non-supporting platforms to static positioning.

                    + +

                    Polyfilling older platforms

                    +

                    The fixed toolbar plugin degrades gracefully in platforms that do not support CSS position:fixed properly, such as iOS4.3. If you still need to support fixed toolbars on that platform (with the show/hide behavior) included in previous releases, Filament Group has developed a polyfill that you can use.

                    + + + +

                    Just include the CSS and JS files after your references to jQuery Mobile and Fixed toolbars will work similar to jQuery Mobile 1.0 in iOS4.3, with the inclusion of the new API for the 1.1 fixedtoolbar plugin.

                    + +

                    If you have any improvements to suggest, fork the gist on github and let us know!

                    + +

                    Known issue with form controls inside fixed toolbars, and programatic scroll

                    +

                    An obscure issue exists in iOS5 and some Android platforms where form controls placed inside fixed-positioned containers can lose their hit area when the window is programatically scrolled (using window.scrollTo for example). This is not an issue specific to jQuery Mobile, but because of it, we recommend not programatically scrolling a document when using form controls inside jQuery Mobile fixed toolbars. This ticket from the Device Bugs project tracker explains this problem in more detail.

                    + + +

                    Known issues in Android 2.2/2.3

                    +

                    Android 2.2/2.3’s implementation of position: fixed; can, in conjunction with seemingly unrelated styles and markup patterns, cause a number of strange issues, particularly in the case of position: absolute elements inside of position: fixed elements. While we’ve done our best to work around a number of these unique bugs within the scope of the library, custom styles may cause a number of issues.

                    +
                      +
                    • Form elements elsewhere on the page—select menus in particular—can fail to respond to user interaction when an empty absolute positioned element is placed within a fixed position element. In rare cases—and specific to Android 2.2—this can cause entire pages to fail to respond to user interaction. This can seemingly be solved by adding any character to the absolute positioned element, including a non-breaking space, and in some cases even whitespace.
                    • +
                    • The above-described issue can also be triggered by an absolute positioned image inside of a fixed position element, but only when that image is using something other than its inherent dimensions. If a height or width is specified on the image using CSS, or the image src is invalid (thus having no inherent height and width), this issue can occur. If an image that is inherently, say, 50x50 pixels is placed in a fixed element and left at its inherent dimensions, this issue does not seem to occur.
                    • +
                    • When a position: fixed element appears anywhere on a page, most 2D CSS transforms will fail. Oddly, only translate transforms seem unaffected by this. Even more oddly, this issue is solved by setting a CSS opacity of .9 or below on the parent of the fixed element.
                    • +
                    • Combinations of position: fixed and overflow properties are best avoided, as both have been known to cause unpredictable issues in older versions of Android OS.
                    • +
                    • Any element that triggers the on-screen keyboard, when placed inside a position: fixed element, will fail to respond to user input when using anything other than the default keyboard. This includes Swype, XT9 or, it seems, any input method apart from the standard non-predictive keyboard.
                    • +
                    + +

                    While we will continue to try to find ways to mitigate these bugs as best we can, we currently advise against implementing fixed toolbars containing complicated user styles and form elements without extensive testing in all versions of Android’s native browser.

                    + +

                    The following pages are designed to test fixed toolbars and form elements: + demo app, + text inputs, + search inputs, + radio toggles, + checkbox toggles, + slider, + select, and + buttons.

                    + + +
                    +

                    No longer supported: touchOverflowEnabled

                    + +

                    Prior to jQuery Mobile 1.1, true fixed toolbar support was contingent on native browser support for the CSS property overflow-scrolling: touch, which is currently only supported in iOS5. As of version 1.1, jQuery Mobile no longer uses this CSS property at all. We've removed all internal usage of this property in the framework, but we've left it defined globally on the $.mobile object to reduce the risk that its removal will cause trouble with existing applications. This property is flagged for removal, so please update your code to no longer use it. The support test for this property, however, remains defined under $.support and we have no plans to remove that test at this time.

                    +
                    +
                    + + +

                    The rest of the page is just sample content to make the page very long

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    And an inset list

                    + + + +
                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + +

                    Embedded form

                    + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + +
                    + + +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +

                    A bit more text

                    + +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    + + + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + +
                    +

                    Fixed Footer

                    +
                    + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fullscreen.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fullscreen.html new file mode 100644 index 0000000..683f7b8 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-fullscreen.html @@ -0,0 +1,68 @@ + + + + + + jQuery Mobile Framework - Fullscreen Fixed toolbars + + + + + + + + + + +
                    + +
                    +

                    Fullscreen fixed header

                    + Home + Search +
                    + +
                    +
                    + Photo Run + +

                    This page demonstrates the "fullscreen" toolbar mode. This toolbar treatment is used in special cases where you want the content to fill the whole screen, and you want the header and footer toolbars to appear and disappear when the page is clicked responsively — a common scenario for photo, image or video viewers.

                    + +

                    To enable this toolbar feature type, you apply the data-fullscreen="true" attribute and the data-position="fixed" attribute to both the header and footer div elements, or whichever you want to be full-screen.

                    + +

                    Keep in mind that the toolbars in this mode will sit over page content, so not all content will be accessible with the toolbars open, just as shown in this demo.

                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-themes.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-themes.html new file mode 100644 index 0000000..fe91b34 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/bars-themes.html @@ -0,0 +1,177 @@ + + + + + + jQuery Mobile Framework - Theming Toolbars + + + + + + + + + + +
                    + +
                    +

                    Bar theming

                    + Home + Search +
                    + + +
                    +
                    +

                    Both the header and footer bars will be styled by default with the theme's "a" color swatch (black in the default theme) because these bars are typically primary in the visual hierarchy of a page.

                    + + +

                    Theming headers and footers

                    +

                    To set the header or footer bars to a different color in your theme, add the data-theme attribute and specify the letter of the theme swatch (a, b, c, etc.). For example, this will set the bar to swatch "b" (blue in the default theme):

                    + +
                    +
                    +<div data-role="header" data-theme="b"> 
                    +	<h1>Page Title</h1> 
                    +</div> 
                    +
                    +
                    + + +

                    Theming buttons in toolbars

                    + +

                    Any link added inside the header block will be automatically styled as a button that matches the color of the bar's theme swatch. To make a button stand out as a primary call to action, the data-theme attribute can be used to specify a contrasting button color from a different theme swatch. For example, if we set the header to theme "c" (light gray), both buttons would be styled as the "c" button by default. If we wanted the Save button to visually pop, we can override the color by setting the data-theme attribute to "b" (blue in our default theme) on the Save button's anchor.

                    + +
                    +
                    +<a href="add-user.php" data-theme="b">Save</a> 
                    +
                    +
                    + + + +

                    Theme variations

                    +

                    This is a demo of the variation that can be achieved by tweaking the theme swatches and buttons inside the headers and footers.

                    +

                    Headers

                    + + +
                    +

                    Bar theme "a"

                    + New +
                    + +
                    + Cancel +

                    Bar theme "a"

                    + Save +
                    + +
                    +

                    Bar theme "b"

                    + New +
                    + +
                    + Cancel +

                    Bar theme "b"

                    + Save +
                    + +
                    +

                    Bar theme "c"

                    + New +
                    + +
                    + Cancel +

                    Bar theme "c"

                    + Save +
                    + +
                    +

                    Bar theme "d"

                    + New +
                    + +
                    + Cancel +

                    Bar theme "d"

                    + Save +
                    + +

                    Footers

                    +

                    These are examples of a footer with link buttons inside. Note that footers do not have the same prescriptive markup conventions as headers with button slots so use layout grids or custom styles to achieve the design you want.

                    + + + +
                    + left + right + up + down +
                    + +
                    + left + right + up + down +
                    + +
                    + left + right + up + down +
                    + +
                    + left + right + up + down +
                    + +
                    + left + right + up + down +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-bars.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-bars.html new file mode 100644 index 0000000..ffed0e5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-bars.html @@ -0,0 +1,85 @@ + + + + + + jQuery Mobile Docs - Toolbar Basics + + + + + + + + + + +
                    + +
                    +

                    Toolbar basics

                    + Home + Search +
                    + +
                    +
                    +

                    Toolbar types

                    + +

                    In jQuery Mobile, there are two standard types of toolbars: Headers and Footers.

                    + +
                    • The Header bar serves as the page title, is usually the first element inside each mobile page, and typically contains a page title and up to two buttons.
                    • + +
                    • The Footer bar is usually the last element inside each mobile page, and tends to be more freeform than the header in terms of content and functionality, but typically contains a combination of text and buttons.
                    • +
                    + +

                    It's very common to have a horizontal navigation or tab bar inside the header or footer; jQuery Mobile includes a navbar widget that turns an unordered list of links into a horizontal button bar, which works well in these instances.

                    + +

                    View the data- attribute reference to see all the possible attributes you can add to toolbars.

                    + + +

                    Toolbar positioning options

                    + +

                    Header and footers can be positioned on the page in a few different ways. By default, the toolbars use the "inline" positioning mode. In this mode, the headers and footer sit in the natural document flow (the default HTML behavior), which ensures that they are visible on all devices, regardless of JavaScript and CSS positioning support.

                    + +

                    A "fixed" positioning mode fixes the toolbars to either the top or bottom of the viewport on browsers that support CSS fixed positioning (which includes most desktop browsers, iOS5+, Android 2.2+, BlackBerry 6, and others). In browsers that don't support fixed positioning, the toolbars will fall back to static, inline position in the page.

                    +

                    When tap-toggling is enabled, tapping the screen will toggle the visibility of the fixed toolbars. Tapping the page when the toolbars aren't visible brings them into view. Tapping again hides them until you tap again. This gives users the option to hide the toolbars until needed to maximize screen real estate. One caveat is that fixed toolbars never truly hide, but toggle between fixed and static positioning. This means that if you're at the top of a page, you can't tap-toggle a header toolbar out of view, as it instead toggles into its spot in the document flow at the top of the page. The same goes for fixed footers when scrolled to the very bottom of a document.

                    +

                    To set this behavior on a header or footer, add the data-position="fixed" attribute to the header or footer element.

                    + +

                    A "fullscreen" position mode works just like the fixed mode except that the toolbars overlay the page content, rather than reserving a place in the document when not in fixed mode. This is useful for immersive apps like photo or video viewers where you want the content to fill the whole screen and toolbars can be hidden or summoned to appear by tapping the screen. Keep in mind that the toolbars in this mode will sit over page content so this is best used for specific situations.

                    + + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-footers.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-footers.html new file mode 100644 index 0000000..0a30d2a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-footers.html @@ -0,0 +1,153 @@ + + + + + + jQuery Mobile Docs - Footer Configuration + + + + + + + + + + +
                    + +
                    +

                    Footers

                    + Home + Search +
                    + +
                    +
                    +

                    Footer bar structure

                    + +

                    The footer bar has the same basic structure as the header except it uses the data-role attribute value of footer.

                    + +
                    +
                    +<div data-role="footer"> 
                    +	<h4>Footer content</h4> 
                    +</div> 
                    +
                    +
                    + + +

                    The footer toolbar will be be themed with the "a" swatch by default (black in the default theme) but you can easily set the theme swatch color.

                    + +
                    +

                    Footer content

                    +
                    + +

                    The page footer is very similar to the header in terms of options and configuration. The primary difference is that the footer is designed to be less structured than the header to allow for more flexibility, so the framework doesn't automatically place buttons to the left or right based on source order as it does in the header.

                    +

                    Since footers do not have the same prescriptive markup conventions as headers, we recommend using layout grids or writing custom styles to achieve the design you want.

                    + + + +

                    Adding buttons

                    + +

                    Any link or valid button markup added to the footer will automatically be turned into a button. To save space, buttons in toolbars are automatically set to inline styling so the button is only as wide as the text and icons it contains.

                    + +

                    By default, toolbars don't have any padding to accommodate nav bars and other widgets. To include padding on the bar, add a class="ui-bar" to the footer.

                    + + +
                    
                    +<div data-role="footer" class="ui-bar">
                    +	<a href="index.html" data-role="button" data-icon="plus">Add</a>
                    +	<a href="index.html" data-role="button" data-icon="arrow-u">Up</a>
                    +	<a href="index.html" data-role="button" data-icon="arrow-d">Down</a>
                    +</div>
                    +
                    + +

                    This creates this toolbar with buttons sitting in a row

                    + +
                    + Add + Up + Down +
                    + +

                    Note that .ui-bar should not be added to header or footer bars that span the full width of the page, as the additional padding will cause a full-width element to break out of its parent container. To add padding inside of a full-width toolbar, wrap the toolbar's contents in an element and apply the padding to that element.

                    + +

                    To group buttons together into a button set, wrap the links in a wrapper with data-role="controlgroup" and data-type="horizontal" attributes.

                    + +<div data-role="controlgroup" data-type="horizontal"> + +

                    This creates a grouped set of buttons:

                    + +
                    +
                    + Add + Up + Down +
                    +
                    + + + +

                    Adding form elements

                    + +

                    Forms elements and other content can also be added to toolbars. Here is an example of a select menu inside a footer bar. We recommend using mini-sized form elements in toolbars by adding the data-mini="true" attribute:

                    + + +
                    + + +
                    + + + + + + +

                    Fixed & Persistent footers

                    +

                    In situations where the footer is a global navigation element, you may want it to appear fixed so it doesn't scroll out of view. It's also possible to make a fixed toolbar persistent so it appears to not move between page transitions. This can be accomplished by using the persistent footer feature included in jQuery Mobile.

                    + +

                    To make a footer persistent between transitions, add the data-id attribute to the footer of all relevant pages and use the same id value for each. For example, by adding data-id="myfooter" to the current page and the target page, the framework will keep the footer anchors in the same spot during the page animation. This effect will only work correctly if the header and footer toolbars are set to data-position="fixed" so they are in view during the transition.

                    + + + + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-headers.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-headers.html new file mode 100644 index 0000000..90e5aa3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-headers.html @@ -0,0 +1,216 @@ + + + + + + jQuery Mobile Docs - Header Bars + + + + + + + + + + +
                    + +
                    +

                    Headers

                    + Home + Search +
                    + +
                    +
                    +

                    Header structure

                    +

                    The header is a toolbar at the top of the page that usually contains the page title text and optional buttons positioned to the the left and/or right of the title for navigation or actions. Headers can optionally be positioned as fixed so they remain at the top of the screen at all times instead of scrolling with the page.

                    + +

                    The title text is normally an H1 heading element but it's possible to use any heading level (H1-H6) to allow for semantic flexibility. For example, a page containing multiple mobile 'pages' may use a H1 element on the home 'page' and a H2 element on the secondary pages. All heading levels are styled identically by default to maintain visual consistency.

                    + +
                    +
                    +<div data-role="header"> 
                    +	<h1>Page Title</h1> 
                    +</div> 
                    +
                    +
                    + +

                    Default header features

                    +

                    The header toolbar is themed with the "a" swatch by default (black in the default theme) but you can easily set the theme swatch color.

                    + + + +
                    +

                    Page title

                    +
                    + + +

                    Adding buttons

                    + + + + + +

                    In the standard header configuration, there are slots for buttons on either side of the text heading. Each button is typically an anchor element, but any valid button markup will work. To save space, buttons in toolbars are set to inline styling so the button is only as wide as the text and icons it contains.

                    + + + + +

                    Default button positioning

                    + +

                    The header plugin looks for immediate children of the header container, and automatically sets the first link in the left button slot and the second link in the right. In this example, the 'Cancel' button will appear in the left slot and 'Save' will appear in the right slot based on their sequence in the source order.

                    + + +
                    			
                    +<div data-role="header" data-position="inline">
                    +	<a href="index.html" data-icon="delete">Cancel</a>
                    +	<h1>Edit Contact</h1>
                    +	<a href="index.html" data-icon="check">Save</a>
                    +</div>
                    +
                    + + +
                    + Cancel +

                    Edit Contact

                    + Save +
                    + +

                    Making buttons visually stand out

                    + +

                    Buttons automatically adopt the swatch color of the bar they sit in, so a link in a header bar with the "a" color will also be styled as "a" colored buttons. It's simple to make a button visually stand out. Here, we add the data-theme attribute and set the color swatch for the button to "b" to make the "Save" button pop.

                    + +
                    			
                    +<div data-role="header" data-position="inline">
                    +	<a href="index.html" data-icon="delete">Cancel</a>
                    +	<h1>Edit Contact</h1>
                    +	<a href="index.html" data-icon="check" data-theme="b">Save</a>
                    +</div>
                    +
                    + + +
                    + Cancel +

                    Edit Contact

                    + Save +
                    + +

                    Controlling button position with classes

                    + +

                    The button position can also be controlled by adding classes to the button anchors, rather than relying on source order. This is especially useful if you only want a button in the right slot. To specify the button position, add the class of ui-btn-left or ui-btn-right to the anchor.

                    + + + + +
                    +
                    
                    +<div data-role="header" data-position="inline"> 
                    +	<h1>Page Title</h1>
                    +	<a href="index.html" data-icon="gear" class="ui-btn-right">Options</a>
                    +</div>
                    +
                    +
                    + +
                    +

                    Page Title

                    + Options +
                    + + +

                    Adding buttons to toolbars without heading

                    + +

                    The heading in the header bar has some margin that will give the bar its height. If you choose not to use a heading, you will need to add an element with class="ui-title" so that the bar can get the height and display correctly.

                    + + +
                    +
                    
                    +<div data-role="header" data-position="inline"> 
                    +	<a href="index.html" data-icon="gear" class="ui-btn-right">Options</a>
                    +	<span class="ui-title" />
                    +</div>
                    +	
                    +
                    +
                    + +
                    + Options + +
                    + + + +

                    Adding Back buttons

                    + +

                    jQuery Mobile has a feature to automatically create and append "back" buttons to any header, though it is disabled by default. This is primarily useful in chromeless installed applications, such as those running in a native app webview. The framework automatically generates a "back" button on a header when the page plugin's addBackBtn option is true. This can also be set via markup if the page div has a data-add-back-btn="true" attribute.

                    + + +

                    If you use the attribute data-rel="back" on an anchor, any clicks on that anchor will mimic the back button, going back one history entry and ignoring the anchor's default href. This is particularly useful when linking back to a named page, such as a link that says "home", or when generating "back" buttons with JavaScript, such as a button to close a dialog. When using this feature in your source markup, be sure to provide a meaningful href that actually points to the URL of the referring page. This will allow the feature to work for users in C-Grade browsers.

                    +

                    If you just want a reverse transition without actually going back in history, you should use the data-direction="reverse" attribute.

                    + +

                    Customizing the back button text

                    + +

                    If you'd like to configure the back button text, you can either use the data-back-btn-text="previous" attribute on your page element, or set it programmatically via the page plugin's options:
                    $.mobile.page.prototype.options.backBtnText = "previous";

                    + +

                    Default back button style

                    +

                    If you'd like to configure the back button role-theme, you can use:
                    $.mobile.page.prototype.options.backBtnTheme = "a";
                    + If you're doing this programmatically, set this option inside the mobileinit event handler.

                    + +

                    Custom header configurations

                    +

                    If you need to to create a header that doesn't follow the default configuration, simply wrap your custom styled markup in any container, such as div. The plugin won't apply the automatic button logic to the wrapped content inside the header container so you can write custom styles for laying out the content in your header.

                    + +

                    It's also possible to create custom bars without using the header data-role at all. For example, start with any container and add the ui-bar class to apply standard bar padding and add the ui-bar-b class to assign the bar swatch styles from your theme. (The "b" can be any swatch letter.)

                    + +
                    
                    +<div class="ui-bar ui-bar-b">
                    +	<h3>I'm just a div with bar classes and a <a href="#" data-role="button">Button</a></h3>
                    +</div>
                    +			
                    + +

                    This will produce this bar:

                    +
                    +

                    I'm just a div with bar classes and a mini inline Button

                    +
                    + +

                    Note that .ui-bar should not be added to header or footer bars that span the full width of the page, as the additional padding will cause a full-width element to break out of its parent container. To add padding inside of a full-width toolbar, wrap the toolbar's contents in an element and apply the padding to that element instead.

                    + +

                    By writing some simple styles, it's easy to build message bars like this:

                    + +
                    + +

                    This is an alert message.

                    And here's some additional text in a paragraph.

                    +
                    +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-navbar.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-navbar.html new file mode 100644 index 0000000..1f65ba2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/docs-navbar.html @@ -0,0 +1,318 @@ + + + + + + jQuery Mobile Docs - Navbar + + + + + + + + + + +
                    + +
                    +

                    Navbar

                    + Home + Search +
                    + +
                    +
                    +

                    Simple navbar

                    + +

                    jQuery Mobile has a very basic navbar widget that is useful for providing up to 5 buttons with optional icons in a bar, typically within a header or footer. There is also a persistent navbar variation that works more like a tab bar that stays fixed as you navigate across pages.

                    +

                    A navbar is coded as an unordered list of links wrapped in a container element that has the data-role="navbar" attribute. To set one of the links to the active (selected) state, add class="ui-btn-active" to the anchor. In this example, we have a two-button navbar in the footer with the "One" item set to active:

                    + +
                    
                    +<div data-role="navbar">
                    +	<ul>
                    +		<li><a href="a.html" class="ui-btn-active">One</a></li>
                    +		<li><a href="b.html">Two</a></li>
                    +	</ul>
                    +</div><!-- /navbar -->
                    +
                    + +

                    The navbar items are set to divide the space evenly so in this case, each button is 1/2 the width of the browser window:

                    + + +
                    + +
                    + + +

                    Adding a third item will automatically make each button 1/3 the width of the browser window:

                    + + +
                    + +
                    + + +

                    Adding a fourth more item will automatically make each button 1/4 the width of the browser window:

                    + + +
                    + +
                    + + +

                    The navbar maxes out with 5 items, each 1/5 the width of the browser window:

                    + + +
                    + +
                    + + +

                    If more than 5 items are added, the navbar will simply wrap to multiple lines:

                    + +
                    + +
                    + +

                    Navbars with 1 item will simply render as 100%.

                    + +
                    + +
                    + +

                    Navbars in headers

                    + +

                    If you want to add a navbar to the top of the page, you can still have a page title and buttons. Just add the navbar container inside the header block, right after the title and buttons in the source order.

                    + +
                    +

                    I'm a header

                    + Options + +
                    + +
                    +
                    + +

                    Navbars in footers

                    + +

                    If you want to add a navbar to the bottom of the page so it acts more like a tab bar, simply wrap the navbar in a container with a data-role="footer"

                    +
                    
                    +<div data-role="footer">		
                    +	<div data-role="navbar">
                    +		<ul>
                    +			<li><a href="#">One</a></li>
                    +			<li><a href="#">Two</a></li>
                    +			<li><a href="#">Three</a></li>
                    +		</ul>
                    +	</div><!-- /navbar -->
                    +</div><!-- /footer -->
                    +
                    +
                    +
                    + +
                    +
                    + +

                    Icons in navbars

                    + +

                    Icons can be added to navbar items by adding the data-icon attribute specifying a standard mobile icon to each anchor. By default, icons are added above the text (data-iconpos="top"). The following examples add icons to a navbar in a footer.

                    + +
                    +
                    + +
                    +
                    + +

                    The icon position is set on the navbar container instead of for individual links within for visual consistency. For example, to place the icons below the labels, add the data-iconpos="bottom" attribute to the navbar container.

                    +
                    
                    +<div data-role="navbar" data-iconpos="bottom">
                    +
                    +

                    This will result in a bottom icon alignment:

                    +
                    +
                    + +
                    +
                    + +

                    The icon position can be set to data-iconpos="left":

                    + +
                    +
                    + +
                    +
                    + +

                    Or the icon position can be set to data-iconpos="right":

                    + +
                    +
                    + +
                    +
                    + +

                    Using 3rd party icon sets

                    + +

                    You can add any of the popular icon libraries like Glyphish to achieve the iOS style tab that has large icons stacked on top of text labels. All that is required is a bit of custom styles to link to the icons and position them in the navbar. Here is an example using Glyphish icons and custom styles (view page source for styles) in our navbar:

                    + + + + + + +

                    Icons by Joseph Wain / glyphish.com. Licensed under the Creative Commons Attribution 3.0 United States License.

                    + + +

                    Theming navbars

                    + +

                    Navbars inherit the theme swatch from their parent container, just like buttons. If a navbar is placed in the header or footer toolbar, it will inherit the default toolbar swatch (A) for bars unless you set this in the markup.

                    +

                    Here are a few examples of navbars in various container swatches that automatically inherit their parent's swatch letter. Note that in these examples, instead of using a data-theme attribute, we're manually adding the swatch classes to apply the body swatch (ui-body-a) and the class to add the standard body padding (ui-body), but the inheritance works the same way:

                    + +
                    +

                    Swatch A

                    +
                    + +
                    +
                    + +
                    +

                    Swatch B

                    +
                    + +
                    +
                    + +

                    To set the theme color for a navbar item, add the data-theme attribute to the individual links and specify a theme swatch. Note that applying a theme swatch to the navbar container is not supported.

                    +
                    +
                    + +
                    +
                    + + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-a.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-a.html new file mode 100644 index 0000000..91b7f74 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-a.html @@ -0,0 +1,114 @@ + + + + + + jQuery Mobile Framework - Persistent footer A + + + + + + + + + + +
                    + +
                    +

                    Friends

                    + Home + Search +
                    + + + +
                    +
                    + +
                    +
                    + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-b.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-b.html new file mode 100644 index 0000000..85fddb1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-b.html @@ -0,0 +1,140 @@ + + + + + + jQuery Mobile Framework - Persistent footer B + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-c.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-c.html new file mode 100644 index 0000000..3a11873 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-c.html @@ -0,0 +1,121 @@ + + + + + + jQuery Mobile Framework - Persistent footer C + + + + + + + + + + +
                    + +
                    +

                    Inbox

                    + Home + Search +
                    + +
                    + + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + +
                    +
                    + +
                    +
                    + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-d.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-d.html new file mode 100644 index 0000000..572b819 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/footer-persist-d.html @@ -0,0 +1,92 @@ + + + + + + jQuery Mobile Framework - Persistent footer C + + + + + + + + + +
                    + +
                    +

                    Info

                    + Home + Search +
                    + +
                    +
                    +

                    About persistent toolbars

                    +

                    These pages are a demo of persistent toolbars. Click on any of the links in the footer, and you'll see the page content transition, but both the persistent header and footer on these pages remains in place durning the animation to a new HTML page.

                    +

                    To tell the framework to apply the persistent behavior, add a data-id attribute to the footer of all HTML pages in the navigation set to the same ID. It's that simple: if the page you're navigating to has a header or footer with the same data-id, the toolbars will appear fixed outside of the transition. Each of these pages has a different transition to test out how this works.

                    + +

                    Typically, the persistent toolbar technique will be combined with fixed positioning. In this example, the footer also has a navbar, like this:

                    + +
                    	
                    +<div data-role="footer" data-id="foo1" data-position="fixed">
                    +	<div data-role="navbar">
                    +		<ul>
                    +			<li><a href="a.html">Friends</a></li>
                    +			<li><a href="b.html">Albums</a></li>
                    +			<li><a href="c.html">Emails</a></li>
                    +			<li><a href="d.html" >Info</a></li>
                    +		</ul>
                    +	</div><!-- /navbar -->
                    +</div><!-- /footer -->
                    +
                    +

                    To set the active state of an item in a persistent toolbar, add a class of ui-state-persist in addition to ui-btn-active to the corresponding anchor.

                    + +
                    	
                    +<li><a href="d.html" class="ui-btn-active ui-state-persist">Info</a></li>
                    +
                    + +

                    A note about transitions

                    +

                    The slide, slideup, slidedown, fade or none page transitions all work great with persistent fixed toolbars. However, intensive 3D transitions like flip, turn, and flow can cause positioning and animation performance issues with this technique so we don't recommend using them.

                    + +
                    + +
                    + +
                    + +

                    More in this section

                    + + +
                    +
                    + +
                    + +
                    +
                    + +
                    +
                    + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/09-chat2.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/09-chat2.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/09-chat2.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/09-chat2.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/100-coffee.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/100-coffee.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/100-coffee.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/100-coffee.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/18-envelope.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/18-envelope.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/18-envelope.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/18-envelope.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/19-gear.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/19-gear.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/19-gear.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/19-gear.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/21-skull.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/21-skull.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/21-skull.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/21-skull.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/30-key.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/30-key.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/30-key.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/30-key.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/34-coffee.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/34-coffee.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/34-coffee.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/34-coffee.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/88-beermug.png b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/88-beermug.png similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/88-beermug.png rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/88-beermug.png diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/Read me first - license.txt b/libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/Read me first - license.txt similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/glyphish-icons/Read me first - license.txt rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/glyphish-icons/Read me first - license.txt diff --git a/libs/js/jquery-mobile-1.0.1pre/docs/toolbars/images/photo-run.jpeg b/libs/js/jquery-mobile-1.1.0/docs/toolbars/images/photo-run.jpeg similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/docs/toolbars/images/photo-run.jpeg rename to libs/js/jquery-mobile-1.1.0/docs/toolbars/images/photo-run.jpeg diff --git a/libs/js/jquery-mobile-1.1.0/docs/toolbars/index.html b/libs/js/jquery-mobile-1.1.0/docs/toolbars/index.html new file mode 100644 index 0000000..98f7432 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/docs/toolbars/index.html @@ -0,0 +1,45 @@ + + + + + + jQuery Mobile Docs - Toolbars + + + + + + + + + + +
                    + +
                    +

                    Toolbars

                    + Home + Search +
                    + +
                    + +

                    Toolbars are used for headers, footers, and utility bars throughout mobile sites and applications. jQuery Mobile provides a standard set of bars and navigation tools to cover most standard scenarios.

                    + + + + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/experiments/scrollview/index.html b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/index.html new file mode 100644 index 0000000..cbf5f58 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/index.html @@ -0,0 +1,67 @@ + + + + + + jQuery Mobile: Scrollview Demos and Tests + + + + + + + + + + + + + +
                    +
                    +

                    jQuery Mobile Framework

                    +

                    A few examples tweaked to make use of the scrollview component.

                    +

                    Alpha Release

                    +
                    + + +
                    + + diff --git a/src/widgets/common/js/jquery.easing.1.3.js b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/jquery.easing.1.3.js similarity index 100% rename from src/widgets/common/js/jquery.easing.1.3.js rename to libs/js/jquery-mobile-1.1.0/experiments/scrollview/jquery.easing.1.3.js diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/jquery.mobile.scrollview.css b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/jquery.mobile.scrollview.css similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/jquery.mobile.scrollview.css rename to libs/js/jquery-mobile-1.1.0/experiments/scrollview/jquery.mobile.scrollview.css diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/jquery.mobile.scrollview.js b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/jquery.mobile.scrollview.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/jquery.mobile.scrollview.js rename to libs/js/jquery-mobile-1.1.0/experiments/scrollview/jquery.mobile.scrollview.js diff --git a/libs/js/jquery-mobile-1.1.0/experiments/scrollview/lists-divider.html b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/lists-divider.html new file mode 100644 index 0000000..636e6ff --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/lists-divider.html @@ -0,0 +1,152 @@ + + + + + + jQuery Mobile Docs - Lists + + + + + + + + + + + + + +
                    + +
                    +

                    List dividers

                    +
                    + + +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview-direction.html b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview-direction.html new file mode 100644 index 0000000..505f3be --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview-direction.html @@ -0,0 +1,779 @@ + + + + + + jQuery Mobile Docs - Lists + + + + + + + + + + + + + +
                    + +
                    +

                    Scroll View Direction Locking

                    +
                    + +
                    +

                    Scrollview

                    +

                    To turn an element into a scrollview, simply add a data-scroll="true" to the element. By default, a scrollview can scroll in both the horizontal and vertical directions. If the user drags the view horizontally (left or right), or vertically (up or down), scrolling will be locked so that it only scrolls in that one dimension. If the user drags the view diagonally, he will be able to scroll in both directions at the same time.

                    +
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    +

                    When there are nested scrollviews, if the user drags in a single dimension and hits either end of the view, the drag will be propagated up to the next outer scrollview that can handle a drag in that dimension. So for example, if you drag the scrollview above so that it reaches the top of its view, the entire page will start to scroll upward if you continue dragging. This is because the drag was propagated from the scrollview with the letters in it, out to the scrollview containing the entire content for the page.

                    +

                    Horizontal Scrollview

                    +

                    A scrollview can be set up so that it only scrolls in the horizontal direction. Simply place a data-scroll="x" on the element you want to scroll:

                    +
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    +

                    Vertical Scrollview

                    +

                    A scrollview can be set up so that it only scrolls in the vertical direction. Simply place a data-scroll="y" on the element you want to scroll:

                    +
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    +

                    Scrollview Paging

                    +

                    A scrollview can be set up so that it scrolls by pages. This feature is only enabled for horizontal or vertical scrollviews. Use data-scroll="xp" or data-scroll="yp" to turn on paging. The following scrollview pages horizontally.

                    +
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    z
                    +
                    0
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    4
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    8
                    +
                    9
                    +
                    a
                    +
                    b
                    +
                    c
                    +
                    d
                    +
                    e
                    +
                    f
                    +
                    g
                    +
                    h
                    +
                    i
                    +
                    j
                    +
                    k
                    +
                    l
                    +
                    m
                    +
                    n
                    +
                    o
                    +
                    p
                    +
                    q
                    +
                    r
                    +
                    s
                    +
                    t
                    +
                    u
                    +
                    v
                    +
                    w
                    +
                    x
                    +
                    y
                    +
                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +

                     

                    +

                    +
                    +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview-nested.html b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview-nested.html new file mode 100644 index 0000000..e4107c7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview-nested.html @@ -0,0 +1,166 @@ + + + + + + jQuery Mobile Docs - Lists + + + + + + + + + + + + + +
                    + +
                    +

                    Nested Scrollviews

                    +
                    + +
                    +

                    Example 1

                    +

                    In the following example the #4 is actually a vertical scrollview embedded within a horizontal scrollview.

                    +
                    +
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    +
                    +
                    4
                    +
                    A
                    +
                    B
                    +
                    +
                    +
                    C
                    +
                    @
                    +
                    #
                    +
                    $
                    +
                    %
                    +
                    &
                    +
                    *
                    +
                    +
                    +
                    D
                    +
                    E
                    +
                    F
                    +
                    +
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    +
                    +

                    Example 2

                    +

                    In the following example the #4 is actually a nested horizontal scrollview embedded within a horizontal scrollview. The idea here is that if you drag-scroll the nested scrollview, once it reaches either end of its view, it should start scrolling the outer view.

                    +
                    +
                    +
                    1
                    +
                    2
                    +
                    3
                    +
                    +
                    +
                    4
                    +
                    A
                    +
                    B
                    +
                    C
                    +
                    D
                    +
                    E
                    +
                    F
                    +
                    +
                    +
                    5
                    +
                    6
                    +
                    7
                    +
                    +
                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +

                    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui.Donec non enim in turpis pulvinar facilisis. Ut felis.

                    +

                     

                    +

                    +
                    +
                    + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview.js b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/scrollview.js rename to libs/js/jquery-mobile-1.1.0/experiments/scrollview/scrollview.js diff --git a/libs/js/jquery-mobile-1.1.0/experiments/scrollview/sv-test-01.html b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/sv-test-01.html new file mode 100644 index 0000000..e9734ad --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/sv-test-01.html @@ -0,0 +1,253 @@ + + + + + +Scrollview Test 1 - Form Element Event Test + + + + + + + + +
                    +
                    +

                    Form Element Event Test

                    +
                    + + +
                    +

                    The form elements on this page are wrapped by a special div that has event handlers for touchstart, touchmove and touchstop. The checkboxes below control how the event within these handlers is treated when they fire. Use this page to figure out how the various event treatments impact the form elements on you mobile device, then add to the notes at the bottom of the page.

                    +

                    All scrolling on this page is performed by the native viewport, there are no scrollviews on this page.

                    +
                    +
                    + + + + + + + + + + + + +
                    +
                    +
                    +
                    +

                    Form elements

                    +
                    + + +
                    +
                    + + +
                    +
                    + + +
                    +
                    + + +
                    +
                    + + +
                    +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + +
                    +
                    +
                    +
                    + Font styling: + + + + + + +
                    +
                    +
                    +
                    + Choose a pet: + + + + + + + + +
                    +
                    +
                    +
                    + Layout view: + + + + + + +
                    +
                    +
                    + + +
                    +
                    + + +
                    +
                    +
                    +
                    + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Notes

                    +
                      +
                    • iOS +
                        +
                      • None
                      • +
                      +
                    • +
                    • Android +
                        +
                      • HTC Incredible - Android 2.1 (HTC Sense) +
                          +
                        • Calling preventDefault() on the touchstart event prevents te following elements from working properly: +
                            +
                          • Textfield
                          • +
                          • Textarea
                          • +
                          • Checkbox
                          • +
                          • Radio
                          • +
                          • Button
                          • +
                          +
                        • +
                        +
                      • +
                      • Motorola Droid X - Android 2.2 ()
                      • +
                      +
                    • +
                    • Black Berry OS 6 +
                        +
                      • None
                      • +
                      +
                    • +
                    +
                    + +
                    + + + + \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/sv-test-02.html b/libs/js/jquery-mobile-1.1.0/experiments/scrollview/sv-test-02.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/sv-test-02.html rename to libs/js/jquery-mobile-1.1.0/experiments/scrollview/sv-test-02.html diff --git a/libs/js/jquery-mobile-1.0.1pre/external/qunit.css b/libs/js/jquery-mobile-1.1.0/external/qunit.css similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/external/qunit.css rename to libs/js/jquery-mobile-1.1.0/external/qunit.css diff --git a/libs/js/jquery-mobile-1.0.1pre/external/qunit.js b/libs/js/jquery-mobile-1.1.0/external/qunit.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/external/qunit.js rename to libs/js/jquery-mobile-1.1.0/external/qunit.js diff --git a/libs/js/jquery-mobile-1.1.0/external/r.js/dist/r.js b/libs/js/jquery-mobile-1.1.0/external/r.js/dist/r.js new file mode 100644 index 0000000..9741071 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/external/r.js/dist/r.js @@ -0,0 +1,9862 @@ +/** + * @license r.js 1.0.7+ Fri, 30 Mar 2012 00:24:35 GMT Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/* + * This is a bootstrap script to allow running RequireJS in the command line + * in either a Java/Rhino or Node environment. It is modified by the top-level + * dist.js file to inject other files to completely enable this file. It is + * the shell of the r.js file. + */ + +/*jslint evil: true, nomen: true */ +/*global readFile: true, process: false, Packages: false, print: false, +console: false, java: false, module: false, requirejsVars */ + +var requirejs, require, define; +(function (console, args, readFileFunc) { + + var fileName, env, fs, vm, path, exec, rhinoContext, dir, nodeRequire, + nodeDefine, exists, reqMain, loadedOptimizedLib, + version = '1.0.7+ Fri, 30 Mar 2012 00:24:35 GMT', + jsSuffixRegExp = /\.js$/, + commandOption = '', + useLibLoaded = {}, + //Used by jslib/rhino/args.js + rhinoArgs = args, + readFile = typeof readFileFunc !== 'undefined' ? readFileFunc : null; + + function showHelp() { + console.log('See https://github.com/jrburke/r.js for usage.'); + } + + if (typeof Packages !== 'undefined') { + env = 'rhino'; + + fileName = args[0]; + + if (fileName && fileName.indexOf('-') === 0) { + commandOption = fileName.substring(1); + fileName = args[1]; + } + + //Set up execution context. + rhinoContext = Packages.org.mozilla.javascript.ContextFactory.getGlobal().enterContext(); + + exec = function (string, name) { + return rhinoContext.evaluateString(this, string, name, 0, null); + }; + + exists = function (fileName) { + return (new java.io.File(fileName)).exists(); + }; + + //Define a console.log for easier logging. Don't + //get fancy though. + if (typeof console === 'undefined') { + console = { + log: function () { + print.apply(undefined, arguments); + } + }; + } + } else if (typeof process !== 'undefined') { + env = 'node'; + + //Get the fs module via Node's require before it + //gets replaced. Used in require/node.js + fs = require('fs'); + vm = require('vm'); + path = require('path'); + nodeRequire = require; + nodeDefine = define; + reqMain = require.main; + + //Temporarily hide require and define to allow require.js to define + //them. + require = undefined; + define = undefined; + + readFile = function (path) { + return fs.readFileSync(path, 'utf8'); + }; + + exec = function (string, name) { + return vm.runInThisContext(this.requirejsVars.require.makeNodeWrapper(string), + name ? fs.realpathSync(name) : ''); + }; + + exists = function (fileName) { + return path.existsSync(fileName); + }; + + + fileName = process.argv[2]; + + if (fileName && fileName.indexOf('-') === 0) { + commandOption = fileName.substring(1); + fileName = process.argv[3]; + } + } + + /** vim: et:ts=4:sw=4:sts=4 + * @license RequireJS 1.0.7 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +/*jslint strict: false, plusplus: false, sub: true */ +/*global window, navigator, document, importScripts, jQuery, setTimeout, opera */ + + +(function () { + //Change this version number for each release. + var version = "1.0.7", + commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, + cjsRequireRegExp = /require\(\s*["']([^'"\s]+)["']\s*\)/g, + currDirRegExp = /^\.\//, + jsSuffixRegExp = /\.js$/, + ostring = Object.prototype.toString, + ap = Array.prototype, + aps = ap.slice, + apsp = ap.splice, + isBrowser = !!(typeof window !== "undefined" && navigator && document), + isWebWorker = !isBrowser && typeof importScripts !== "undefined", + //PS3 indicates loaded and complete, but need to wait for complete + //specifically. Sequence is "loading", "loaded", execution, + // then "complete". The UA check is unfortunate, but not sure how + //to feature test w/o causing perf issues. + readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ? + /^complete$/ : /^(complete|loaded)$/, + defContextName = "_", + //Oh the tragedy, detecting opera. See the usage of isOpera for reason. + isOpera = typeof opera !== "undefined" && opera.toString() === "[object Opera]", + empty = {}, + contexts = {}, + globalDefQueue = [], + interactiveScript = null, + checkLoadedDepth = 0, + useInteractive = false, + reservedDependencies = { + require: true, + module: true, + exports: true + }, + req, cfg = {}, currentlyAddingScript, s, head, baseElement, scripts, script, + src, subPath, mainScript, dataMain, globalI, ctx, jQueryCheck, checkLoadedTimeoutId; + + function isFunction(it) { + return ostring.call(it) === "[object Function]"; + } + + function isArray(it) { + return ostring.call(it) === "[object Array]"; + } + + /** + * Simple function to mix in properties from source into target, + * but only if target does not already have a property of the same name. + * This is not robust in IE for transferring methods that match + * Object.prototype names, but the uses of mixin here seem unlikely to + * trigger a problem related to that. + */ + function mixin(target, source, force) { + for (var prop in source) { + if (!(prop in empty) && (!(prop in target) || force)) { + target[prop] = source[prop]; + } + } + return req; + } + + /** + * Constructs an error with a pointer to an URL with more information. + * @param {String} id the error ID that maps to an ID on a web page. + * @param {String} message human readable error. + * @param {Error} [err] the original error, if there is one. + * + * @returns {Error} + */ + function makeError(id, msg, err) { + var e = new Error(msg + '\nhttp://requirejs.org/docs/errors.html#' + id); + if (err) { + e.originalError = err; + } + return e; + } + + /** + * Used to set up package paths from a packagePaths or packages config object. + * @param {Object} pkgs the object to store the new package config + * @param {Array} currentPackages an array of packages to configure + * @param {String} [dir] a prefix dir to use. + */ + function configurePackageDir(pkgs, currentPackages, dir) { + var i, location, pkgObj; + + for (i = 0; (pkgObj = currentPackages[i]); i++) { + pkgObj = typeof pkgObj === "string" ? { name: pkgObj } : pkgObj; + location = pkgObj.location; + + //Add dir to the path, but avoid paths that start with a slash + //or have a colon (indicates a protocol) + if (dir && (!location || (location.indexOf("/") !== 0 && location.indexOf(":") === -1))) { + location = dir + "/" + (location || pkgObj.name); + } + + //Create a brand new object on pkgs, since currentPackages can + //be passed in again, and config.pkgs is the internal transformed + //state for all package configs. + pkgs[pkgObj.name] = { + name: pkgObj.name, + location: location || pkgObj.name, + //Remove leading dot in main, so main paths are normalized, + //and remove any trailing .js, since different package + //envs have different conventions: some use a module name, + //some use a file name. + main: (pkgObj.main || "main") + .replace(currDirRegExp, '') + .replace(jsSuffixRegExp, '') + }; + } + } + + /** + * jQuery 1.4.3-1.5.x use a readyWait/ready() pairing to hold DOM + * ready callbacks, but jQuery 1.6 supports a holdReady() API instead. + * At some point remove the readyWait/ready() support and just stick + * with using holdReady. + */ + function jQueryHoldReady($, shouldHold) { + if ($.holdReady) { + $.holdReady(shouldHold); + } else if (shouldHold) { + $.readyWait += 1; + } else { + $.ready(true); + } + } + + if (typeof define !== "undefined") { + //If a define is already in play via another AMD loader, + //do not overwrite. + return; + } + + if (typeof requirejs !== "undefined") { + if (isFunction(requirejs)) { + //Do not overwrite and existing requirejs instance. + return; + } else { + cfg = requirejs; + requirejs = undefined; + } + } + + //Allow for a require config object + if (typeof require !== "undefined" && !isFunction(require)) { + //assume it is a config object. + cfg = require; + require = undefined; + } + + /** + * Creates a new context for use in require and define calls. + * Handle most of the heavy lifting. Do not want to use an object + * with prototype here to avoid using "this" in require, in case it + * needs to be used in more super secure envs that do not want this. + * Also there should not be that many contexts in the page. Usually just + * one for the default context, but could be extra for multiversion cases + * or if a package needs a special context for a dependency that conflicts + * with the standard context. + */ + function newContext(contextName) { + var context, resume, + config = { + waitSeconds: 7, + baseUrl: "./", + paths: {}, + pkgs: {}, + catchError: {} + }, + defQueue = [], + specified = { + "require": true, + "exports": true, + "module": true + }, + urlMap = {}, + defined = {}, + loaded = {}, + waiting = {}, + waitAry = [], + urlFetched = {}, + managerCounter = 0, + managerCallbacks = {}, + plugins = {}, + //Used to indicate which modules in a build scenario + //need to be full executed. + needFullExec = {}, + fullExec = {}, + resumeDepth = 0; + + /** + * Trims the . and .. from an array of path segments. + * It will keep a leading path segment if a .. will become + * the first path segment, to help with module name lookups, + * which act like paths, but can be remapped. But the end result, + * all paths that use this function should look normalized. + * NOTE: this method MODIFIES the input array. + * @param {Array} ary the array of path segments. + */ + function trimDots(ary) { + var i, part; + for (i = 0; (part = ary[i]); i++) { + if (part === ".") { + ary.splice(i, 1); + i -= 1; + } else if (part === "..") { + if (i === 1 && (ary[2] === '..' || ary[0] === '..')) { + //End of the line. Keep at least one non-dot + //path segment at the front so it can be mapped + //correctly to disk. Otherwise, there is likely + //no path mapping for a path starting with '..'. + //This can still fail, but catches the most reasonable + //uses of .. + break; + } else if (i > 0) { + ary.splice(i - 1, 2); + i -= 2; + } + } + } + } + + /** + * Given a relative module name, like ./something, normalize it to + * a real name that can be mapped to a path. + * @param {String} name the relative name + * @param {String} baseName a real name that the name arg is relative + * to. + * @returns {String} normalized name + */ + function normalize(name, baseName) { + var pkgName, pkgConfig; + + //Adjust any relative paths. + if (name && name.charAt(0) === ".") { + //If have a base name, try to normalize against it, + //otherwise, assume it is a top-level require that will + //be relative to baseUrl in the end. + if (baseName) { + if (config.pkgs[baseName]) { + //If the baseName is a package name, then just treat it as one + //name to concat the name with. + baseName = [baseName]; + } else { + //Convert baseName to array, and lop off the last part, + //so that . matches that "directory" and not name of the baseName's + //module. For instance, baseName of "one/two/three", maps to + //"one/two/three.js", but we want the directory, "one/two" for + //this normalization. + baseName = baseName.split("/"); + baseName = baseName.slice(0, baseName.length - 1); + } + + name = baseName.concat(name.split("/")); + trimDots(name); + + //Some use of packages may use a . path to reference the + //"main" module name, so normalize for that. + pkgConfig = config.pkgs[(pkgName = name[0])]; + name = name.join("/"); + if (pkgConfig && name === pkgName + '/' + pkgConfig.main) { + name = pkgName; + } + } else if (name.indexOf("./") === 0) { + // No baseName, so this is ID is resolved relative + // to baseUrl, pull off the leading dot. + name = name.substring(2); + } + } + return name; + } + + /** + * Creates a module mapping that includes plugin prefix, module + * name, and path. If parentModuleMap is provided it will + * also normalize the name via require.normalize() + * + * @param {String} name the module name + * @param {String} [parentModuleMap] parent module map + * for the module name, used to resolve relative names. + * + * @returns {Object} + */ + function makeModuleMap(name, parentModuleMap) { + var index = name ? name.indexOf("!") : -1, + prefix = null, + parentName = parentModuleMap ? parentModuleMap.name : null, + originalName = name, + normalizedName, url, pluginModule; + + if (index !== -1) { + prefix = name.substring(0, index); + name = name.substring(index + 1, name.length); + } + + if (prefix) { + prefix = normalize(prefix, parentName); + } + + //Account for relative paths if there is a base name. + if (name) { + if (prefix) { + pluginModule = defined[prefix]; + if (pluginModule && pluginModule.normalize) { + //Plugin is loaded, use its normalize method. + normalizedName = pluginModule.normalize(name, function (name) { + return normalize(name, parentName); + }); + } else { + normalizedName = normalize(name, parentName); + } + } else { + //A regular module. + normalizedName = normalize(name, parentName); + + url = urlMap[normalizedName]; + if (!url) { + //Calculate url for the module, if it has a name. + //Use name here since nameToUrl also calls normalize, + //and for relative names that are outside the baseUrl + //this causes havoc. Was thinking of just removing + //parentModuleMap to avoid extra normalization, but + //normalize() still does a dot removal because of + //issue #142, so just pass in name here and redo + //the normalization. Paths outside baseUrl are just + //messy to support. + url = context.nameToUrl(name, null, parentModuleMap); + + //Store the URL mapping for later. + urlMap[normalizedName] = url; + } + } + } + + return { + prefix: prefix, + name: normalizedName, + parentMap: parentModuleMap, + url: url, + originalName: originalName, + fullName: prefix ? prefix + "!" + (normalizedName || '') : normalizedName + }; + } + + /** + * Determine if priority loading is done. If so clear the priorityWait + */ + function isPriorityDone() { + var priorityDone = true, + priorityWait = config.priorityWait, + priorityName, i; + if (priorityWait) { + for (i = 0; (priorityName = priorityWait[i]); i++) { + if (!loaded[priorityName]) { + priorityDone = false; + break; + } + } + if (priorityDone) { + delete config.priorityWait; + } + } + return priorityDone; + } + + function makeContextModuleFunc(func, relModuleMap, enableBuildCallback) { + return function () { + //A version of a require function that passes a moduleName + //value for items that may need to + //look up paths relative to the moduleName + var args = aps.call(arguments, 0), lastArg; + if (enableBuildCallback && + isFunction((lastArg = args[args.length - 1]))) { + lastArg.__requireJsBuild = true; + } + args.push(relModuleMap); + return func.apply(null, args); + }; + } + + /** + * Helper function that creates a require function object to give to + * modules that ask for it as a dependency. It needs to be specific + * per module because of the implication of path mappings that may + * need to be relative to the module name. + */ + function makeRequire(relModuleMap, enableBuildCallback, altRequire) { + var modRequire = makeContextModuleFunc(altRequire || context.require, relModuleMap, enableBuildCallback); + + mixin(modRequire, { + nameToUrl: makeContextModuleFunc(context.nameToUrl, relModuleMap), + toUrl: makeContextModuleFunc(context.toUrl, relModuleMap), + defined: makeContextModuleFunc(context.requireDefined, relModuleMap), + specified: makeContextModuleFunc(context.requireSpecified, relModuleMap), + isBrowser: req.isBrowser + }); + return modRequire; + } + + /* + * Queues a dependency for checking after the loader is out of a + * "paused" state, for example while a script file is being loaded + * in the browser, where it may have many modules defined in it. + */ + function queueDependency(manager) { + context.paused.push(manager); + } + + function execManager(manager) { + var i, ret, err, errFile, errModuleTree, + cb = manager.callback, + map = manager.map, + fullName = map.fullName, + args = manager.deps, + listeners = manager.listeners, + execCb = config.requireExecCb || req.execCb, + cjsModule; + + //Call the callback to define the module, if necessary. + if (cb && isFunction(cb)) { + if (config.catchError.define) { + try { + ret = execCb(fullName, manager.callback, args, defined[fullName]); + } catch (e) { + err = e; + } + } else { + ret = execCb(fullName, manager.callback, args, defined[fullName]); + } + + if (fullName) { + //If setting exports via "module" is in play, + //favor that over return value and exports. After that, + //favor a non-undefined return value over exports use. + cjsModule = manager.cjsModule; + if (cjsModule && + cjsModule.exports !== undefined && + //Make sure it is not already the exports value + cjsModule.exports !== defined[fullName]) { + ret = defined[fullName] = manager.cjsModule.exports; + } else if (ret === undefined && manager.usingExports) { + //exports already set the defined value. + ret = defined[fullName]; + } else { + //Use the return value from the function. + defined[fullName] = ret; + //If this module needed full execution in a build + //environment, mark that now. + if (needFullExec[fullName]) { + fullExec[fullName] = true; + } + } + } + } else if (fullName) { + //May just be an object definition for the module. Only + //worry about defining if have a module name. + ret = defined[fullName] = cb; + + //If this module needed full execution in a build + //environment, mark that now. + if (needFullExec[fullName]) { + fullExec[fullName] = true; + } + } + + //Clean up waiting. Do this before error calls, and before + //calling back listeners, so that bookkeeping is correct + //in the event of an error and error is reported in correct order, + //since the listeners will likely have errors if the + //onError function does not throw. + if (waiting[manager.id]) { + delete waiting[manager.id]; + manager.isDone = true; + context.waitCount -= 1; + if (context.waitCount === 0) { + //Clear the wait array used for cycles. + waitAry = []; + } + } + + //Do not need to track manager callback now that it is defined. + delete managerCallbacks[fullName]; + + //Allow instrumentation like the optimizer to know the order + //of modules executed and their dependencies. + if (req.onResourceLoad && !manager.placeholder) { + req.onResourceLoad(context, map, manager.depArray); + } + + if (err) { + errFile = (fullName ? makeModuleMap(fullName).url : '') || + err.fileName || err.sourceURL; + errModuleTree = err.moduleTree; + err = makeError('defineerror', 'Error evaluating ' + + 'module "' + fullName + '" at location "' + + errFile + '":\n' + + err + '\nfileName:' + errFile + + '\nlineNumber: ' + (err.lineNumber || err.line), err); + err.moduleName = fullName; + err.moduleTree = errModuleTree; + return req.onError(err); + } + + //Let listeners know of this manager's value. + for (i = 0; (cb = listeners[i]); i++) { + cb(ret); + } + + return undefined; + } + + /** + * Helper that creates a callack function that is called when a dependency + * is ready, and sets the i-th dependency for the manager as the + * value passed to the callback generated by this function. + */ + function makeArgCallback(manager, i) { + return function (value) { + //Only do the work if it has not been done + //already for a dependency. Cycle breaking + //logic in forceExec could mean this function + //is called more than once for a given dependency. + if (!manager.depDone[i]) { + manager.depDone[i] = true; + manager.deps[i] = value; + manager.depCount -= 1; + if (!manager.depCount) { + //All done, execute! + execManager(manager); + } + } + }; + } + + function callPlugin(pluginName, depManager) { + var map = depManager.map, + fullName = map.fullName, + name = map.name, + plugin = plugins[pluginName] || + (plugins[pluginName] = defined[pluginName]), + load; + + //No need to continue if the manager is already + //in the process of loading. + if (depManager.loading) { + return; + } + depManager.loading = true; + + load = function (ret) { + depManager.callback = function () { + return ret; + }; + execManager(depManager); + + loaded[depManager.id] = true; + + //The loading of this plugin + //might have placed other things + //in the paused queue. In particular, + //a loader plugin that depends on + //a different plugin loaded resource. + resume(); + }; + + //Allow plugins to load other code without having to know the + //context or how to "complete" the load. + load.fromText = function (moduleName, text) { + /*jslint evil: true */ + var hasInteractive = useInteractive; + + //Indicate a the module is in process of loading. + loaded[moduleName] = false; + context.scriptCount += 1; + + //Indicate this is not a "real" module, so do not track it + //for builds, it does not map to a real file. + context.fake[moduleName] = true; + + //Turn off interactive script matching for IE for any define + //calls in the text, then turn it back on at the end. + if (hasInteractive) { + useInteractive = false; + } + + req.exec(text); + + if (hasInteractive) { + useInteractive = true; + } + + //Support anonymous modules. + context.completeLoad(moduleName); + }; + + //No need to continue if the plugin value has already been + //defined by a build. + if (fullName in defined) { + load(defined[fullName]); + } else { + //Use parentName here since the plugin's name is not reliable, + //could be some weird string with no path that actually wants to + //reference the parentName's path. + plugin.load(name, makeRequire(map.parentMap, true, function (deps, cb) { + var moduleDeps = [], + i, dep, depMap; + //Convert deps to full names and hold on to them + //for reference later, when figuring out if they + //are blocked by a circular dependency. + for (i = 0; (dep = deps[i]); i++) { + depMap = makeModuleMap(dep, map.parentMap); + deps[i] = depMap.fullName; + if (!depMap.prefix) { + moduleDeps.push(deps[i]); + } + } + depManager.moduleDeps = (depManager.moduleDeps || []).concat(moduleDeps); + return context.require(deps, cb); + }), load, config); + } + } + + /** + * Adds the manager to the waiting queue. Only fully + * resolved items should be in the waiting queue. + */ + function addWait(manager) { + if (!waiting[manager.id]) { + waiting[manager.id] = manager; + waitAry.push(manager); + context.waitCount += 1; + } + } + + /** + * Function added to every manager object. Created out here + * to avoid new function creation for each manager instance. + */ + function managerAdd(cb) { + this.listeners.push(cb); + } + + function getManager(map, shouldQueue) { + var fullName = map.fullName, + prefix = map.prefix, + plugin = prefix ? plugins[prefix] || + (plugins[prefix] = defined[prefix]) : null, + manager, created, pluginManager, prefixMap; + + if (fullName) { + manager = managerCallbacks[fullName]; + } + + if (!manager) { + created = true; + manager = { + //ID is just the full name, but if it is a plugin resource + //for a plugin that has not been loaded, + //then add an ID counter to it. + id: (prefix && !plugin ? + (managerCounter++) + '__p@:' : '') + + (fullName || '__r@' + (managerCounter++)), + map: map, + depCount: 0, + depDone: [], + depCallbacks: [], + deps: [], + listeners: [], + add: managerAdd + }; + + specified[manager.id] = true; + + //Only track the manager/reuse it if this is a non-plugin + //resource. Also only track plugin resources once + //the plugin has been loaded, and so the fullName is the + //true normalized value. + if (fullName && (!prefix || plugins[prefix])) { + managerCallbacks[fullName] = manager; + } + } + + //If there is a plugin needed, but it is not loaded, + //first load the plugin, then continue on. + if (prefix && !plugin) { + prefixMap = makeModuleMap(prefix); + + //Clear out defined and urlFetched if the plugin was previously + //loaded/defined, but not as full module (as in a build + //situation). However, only do this work if the plugin is in + //defined but does not have a module export value. + if (prefix in defined && !defined[prefix]) { + delete defined[prefix]; + delete urlFetched[prefixMap.url]; + } + + pluginManager = getManager(prefixMap, true); + pluginManager.add(function (plugin) { + //Create a new manager for the normalized + //resource ID and have it call this manager when + //done. + var newMap = makeModuleMap(map.originalName, map.parentMap), + normalizedManager = getManager(newMap, true); + + //Indicate this manager is a placeholder for the real, + //normalized thing. Important for when trying to map + //modules and dependencies, for instance, in a build. + manager.placeholder = true; + + normalizedManager.add(function (resource) { + manager.callback = function () { + return resource; + }; + execManager(manager); + }); + }); + } else if (created && shouldQueue) { + //Indicate the resource is not loaded yet if it is to be + //queued. + loaded[manager.id] = false; + queueDependency(manager); + addWait(manager); + } + + return manager; + } + + function main(inName, depArray, callback, relModuleMap) { + var moduleMap = makeModuleMap(inName, relModuleMap), + name = moduleMap.name, + fullName = moduleMap.fullName, + manager = getManager(moduleMap), + id = manager.id, + deps = manager.deps, + i, depArg, depName, depPrefix, cjsMod; + + if (fullName) { + //If module already defined for context, or already loaded, + //then leave. Also leave if jQuery is registering but it does + //not match the desired version number in the config. + if (fullName in defined || loaded[id] === true || + (fullName === "jquery" && config.jQuery && + config.jQuery !== callback().fn.jquery)) { + return; + } + + //Set specified/loaded here for modules that are also loaded + //as part of a layer, where onScriptLoad is not fired + //for those cases. Do this after the inline define and + //dependency tracing is done. + specified[id] = true; + loaded[id] = true; + + //If module is jQuery set up delaying its dom ready listeners. + if (fullName === "jquery" && callback) { + jQueryCheck(callback()); + } + } + + //Attach real depArray and callback to the manager. Do this + //only if the module has not been defined already, so do this after + //the fullName checks above. IE can call main() more than once + //for a module. + manager.depArray = depArray; + manager.callback = callback; + + //Add the dependencies to the deps field, and register for callbacks + //on the dependencies. + for (i = 0; i < depArray.length; i++) { + depArg = depArray[i]; + //There could be cases like in IE, where a trailing comma will + //introduce a null dependency, so only treat a real dependency + //value as a dependency. + if (depArg) { + //Split the dependency name into plugin and name parts + depArg = makeModuleMap(depArg, (name ? moduleMap : relModuleMap)); + depName = depArg.fullName; + depPrefix = depArg.prefix; + + //Fix the name in depArray to be just the name, since + //that is how it will be called back later. + depArray[i] = depName; + + //Fast path CommonJS standard dependencies. + if (depName === "require") { + deps[i] = makeRequire(moduleMap); + } else if (depName === "exports") { + //CommonJS module spec 1.1 + deps[i] = defined[fullName] = {}; + manager.usingExports = true; + } else if (depName === "module") { + //CommonJS module spec 1.1 + manager.cjsModule = cjsMod = deps[i] = { + id: name, + uri: name ? context.nameToUrl(name, null, relModuleMap) : undefined, + exports: defined[fullName] + }; + } else if (depName in defined && !(depName in waiting) && + (!(fullName in needFullExec) || + (fullName in needFullExec && fullExec[depName]))) { + //Module already defined, and not in a build situation + //where the module is a something that needs full + //execution and this dependency has not been fully + //executed. See r.js's requirePatch.js for more info + //on fullExec. + deps[i] = defined[depName]; + } else { + //Mark this dependency as needing full exec if + //the current module needs full exec. + if (fullName in needFullExec) { + needFullExec[depName] = true; + //Reset state so fully executed code will get + //picked up correctly. + delete defined[depName]; + urlFetched[depArg.url] = false; + } + + //Either a resource that is not loaded yet, or a plugin + //resource for either a plugin that has not + //loaded yet. + manager.depCount += 1; + manager.depCallbacks[i] = makeArgCallback(manager, i); + getManager(depArg, true).add(manager.depCallbacks[i]); + } + } + } + + //Do not bother tracking the manager if it is all done. + if (!manager.depCount) { + //All done, execute! + execManager(manager); + } else { + addWait(manager); + } + } + + /** + * Convenience method to call main for a define call that was put on + * hold in the defQueue. + */ + function callDefMain(args) { + main.apply(null, args); + } + + /** + * jQuery 1.4.3+ supports ways to hold off calling + * calling jQuery ready callbacks until all scripts are loaded. Be sure + * to track it if the capability exists.. Also, since jQuery 1.4.3 does + * not register as a module, need to do some global inference checking. + * Even if it does register as a module, not guaranteed to be the precise + * name of the global. If a jQuery is tracked for this context, then go + * ahead and register it as a module too, if not already in process. + */ + jQueryCheck = function (jqCandidate) { + if (!context.jQuery) { + var $ = jqCandidate || (typeof jQuery !== "undefined" ? jQuery : null); + + if ($) { + //If a specific version of jQuery is wanted, make sure to only + //use this jQuery if it matches. + if (config.jQuery && $.fn.jquery !== config.jQuery) { + return; + } + + if ("holdReady" in $ || "readyWait" in $) { + context.jQuery = $; + + //Manually create a "jquery" module entry if not one already + //or in process. Note this could trigger an attempt at + //a second jQuery registration, but does no harm since + //the first one wins, and it is the same value anyway. + callDefMain(["jquery", [], function () { + return jQuery; + }]); + + //Ask jQuery to hold DOM ready callbacks. + if (context.scriptCount) { + jQueryHoldReady($, true); + context.jQueryIncremented = true; + } + } + } + } + }; + + function findCycle(manager, traced) { + var fullName = manager.map.fullName, + depArray = manager.depArray, + fullyLoaded = true, + i, depName, depManager, result; + + if (manager.isDone || !fullName || !loaded[fullName]) { + return result; + } + + //Found the cycle. + if (traced[fullName]) { + return manager; + } + + traced[fullName] = true; + + //Trace through the dependencies. + if (depArray) { + for (i = 0; i < depArray.length; i++) { + //Some array members may be null, like if a trailing comma + //IE, so do the explicit [i] access and check if it has a value. + depName = depArray[i]; + if (!loaded[depName] && !reservedDependencies[depName]) { + fullyLoaded = false; + break; + } + depManager = waiting[depName]; + if (depManager && !depManager.isDone && loaded[depName]) { + result = findCycle(depManager, traced); + if (result) { + break; + } + } + } + if (!fullyLoaded) { + //Discard the cycle that was found, since it cannot + //be forced yet. Also clear this module from traced. + result = undefined; + delete traced[fullName]; + } + } + + return result; + } + + function forceExec(manager, traced) { + var fullName = manager.map.fullName, + depArray = manager.depArray, + i, depName, depManager, prefix, prefixManager, value; + + + if (manager.isDone || !fullName || !loaded[fullName]) { + return undefined; + } + + if (fullName) { + if (traced[fullName]) { + return defined[fullName]; + } + + traced[fullName] = true; + } + + //Trace through the dependencies. + if (depArray) { + for (i = 0; i < depArray.length; i++) { + //Some array members may be null, like if a trailing comma + //IE, so do the explicit [i] access and check if it has a value. + depName = depArray[i]; + if (depName) { + //First, make sure if it is a plugin resource that the + //plugin is not blocked. + prefix = makeModuleMap(depName).prefix; + if (prefix && (prefixManager = waiting[prefix])) { + forceExec(prefixManager, traced); + } + depManager = waiting[depName]; + if (depManager && !depManager.isDone && loaded[depName]) { + value = forceExec(depManager, traced); + manager.depCallbacks[i](value); + } + } + } + } + + return defined[fullName]; + } + + /** + * Checks if all modules for a context are loaded, and if so, evaluates the + * new ones in right dependency order. + * + * @private + */ + function checkLoaded() { + var waitInterval = config.waitSeconds * 1000, + //It is possible to disable the wait interval by using waitSeconds of 0. + expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(), + noLoads = "", hasLoadedProp = false, stillLoading = false, + cycleDeps = [], + i, prop, err, manager, cycleManager, moduleDeps; + + //If there are items still in the paused queue processing wait. + //This is particularly important in the sync case where each paused + //item is processed right away but there may be more waiting. + if (context.pausedCount > 0) { + return undefined; + } + + //Determine if priority loading is done. If so clear the priority. If + //not, then do not check + if (config.priorityWait) { + if (isPriorityDone()) { + //Call resume, since it could have + //some waiting dependencies to trace. + resume(); + } else { + return undefined; + } + } + + //See if anything is still in flight. + for (prop in loaded) { + if (!(prop in empty)) { + hasLoadedProp = true; + if (!loaded[prop]) { + if (expired) { + noLoads += prop + " "; + } else { + stillLoading = true; + if (prop.indexOf('!') === -1) { + //No reason to keep looking for unfinished + //loading. If the only stillLoading is a + //plugin resource though, keep going, + //because it may be that a plugin resource + //is waiting on a non-plugin cycle. + cycleDeps = []; + break; + } else { + moduleDeps = managerCallbacks[prop] && managerCallbacks[prop].moduleDeps; + if (moduleDeps) { + cycleDeps.push.apply(cycleDeps, moduleDeps); + } + } + } + } + } + } + + //Check for exit conditions. + if (!hasLoadedProp && !context.waitCount) { + //If the loaded object had no items, then the rest of + //the work below does not need to be done. + return undefined; + } + if (expired && noLoads) { + //If wait time expired, throw error of unloaded modules. + err = makeError("timeout", "Load timeout for modules: " + noLoads); + err.requireType = "timeout"; + err.requireModules = noLoads; + err.contextName = context.contextName; + return req.onError(err); + } + + //If still loading but a plugin is waiting on a regular module cycle + //break the cycle. + if (stillLoading && cycleDeps.length) { + for (i = 0; (manager = waiting[cycleDeps[i]]); i++) { + if ((cycleManager = findCycle(manager, {}))) { + forceExec(cycleManager, {}); + break; + } + } + + } + + //If still waiting on loads, and the waiting load is something + //other than a plugin resource, or there are still outstanding + //scripts, then just try back later. + if (!expired && (stillLoading || context.scriptCount)) { + //Something is still waiting to load. Wait for it, but only + //if a timeout is not already in effect. + if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { + checkLoadedTimeoutId = setTimeout(function () { + checkLoadedTimeoutId = 0; + checkLoaded(); + }, 50); + } + return undefined; + } + + //If still have items in the waiting cue, but all modules have + //been loaded, then it means there are some circular dependencies + //that need to be broken. + //However, as a waiting thing is fired, then it can add items to + //the waiting cue, and those items should not be fired yet, so + //make sure to redo the checkLoaded call after breaking a single + //cycle, if nothing else loaded then this logic will pick it up + //again. + if (context.waitCount) { + //Cycle through the waitAry, and call items in sequence. + for (i = 0; (manager = waitAry[i]); i++) { + forceExec(manager, {}); + } + + //If anything got placed in the paused queue, run it down. + if (context.paused.length) { + resume(); + } + + //Only allow this recursion to a certain depth. Only + //triggered by errors in calling a module in which its + //modules waiting on it cannot finish loading, or some circular + //dependencies that then may add more dependencies. + //The value of 5 is a bit arbitrary. Hopefully just one extra + //pass, or two for the case of circular dependencies generating + //more work that gets resolved in the sync node case. + if (checkLoadedDepth < 5) { + checkLoadedDepth += 1; + checkLoaded(); + } + } + + checkLoadedDepth = 0; + + //Check for DOM ready, and nothing is waiting across contexts. + req.checkReadyState(); + + return undefined; + } + + /** + * Resumes tracing of dependencies and then checks if everything is loaded. + */ + resume = function () { + var manager, map, url, i, p, args, fullName; + + //Any defined modules in the global queue, intake them now. + context.takeGlobalQueue(); + + resumeDepth += 1; + + if (context.scriptCount <= 0) { + //Synchronous envs will push the number below zero with the + //decrement above, be sure to set it back to zero for good measure. + //require() calls that also do not end up loading scripts could + //push the number negative too. + context.scriptCount = 0; + } + + //Make sure any remaining defQueue items get properly processed. + while (defQueue.length) { + args = defQueue.shift(); + if (args[0] === null) { + return req.onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); + } else { + callDefMain(args); + } + } + + //Skip the resume of paused dependencies + //if current context is in priority wait. + if (!config.priorityWait || isPriorityDone()) { + while (context.paused.length) { + p = context.paused; + context.pausedCount += p.length; + //Reset paused list + context.paused = []; + + for (i = 0; (manager = p[i]); i++) { + map = manager.map; + url = map.url; + fullName = map.fullName; + + //If the manager is for a plugin managed resource, + //ask the plugin to load it now. + if (map.prefix) { + callPlugin(map.prefix, manager); + } else { + //Regular dependency. + if (!urlFetched[url] && !loaded[fullName]) { + (config.requireLoad || req.load)(context, fullName, url); + + //Mark the URL as fetched, but only if it is + //not an empty: URL, used by the optimizer. + //In that case we need to be sure to call + //load() for each module that is mapped to + //empty: so that dependencies are satisfied + //correctly. + if (url.indexOf('empty:') !== 0) { + urlFetched[url] = true; + } + } + } + } + + //Move the start time for timeout forward. + context.startTime = (new Date()).getTime(); + context.pausedCount -= p.length; + } + } + + //Only check if loaded when resume depth is 1. It is likely that + //it is only greater than 1 in sync environments where a factory + //function also then calls the callback-style require. In those + //cases, the checkLoaded should not occur until the resume + //depth is back at the top level. + if (resumeDepth === 1) { + checkLoaded(); + } + + resumeDepth -= 1; + + return undefined; + }; + + //Define the context object. Many of these fields are on here + //just to make debugging easier. + context = { + contextName: contextName, + config: config, + defQueue: defQueue, + waiting: waiting, + waitCount: 0, + specified: specified, + loaded: loaded, + urlMap: urlMap, + urlFetched: urlFetched, + scriptCount: 0, + defined: defined, + paused: [], + pausedCount: 0, + plugins: plugins, + needFullExec: needFullExec, + fake: {}, + fullExec: fullExec, + managerCallbacks: managerCallbacks, + makeModuleMap: makeModuleMap, + normalize: normalize, + /** + * Set a configuration for the context. + * @param {Object} cfg config object to integrate. + */ + configure: function (cfg) { + var paths, prop, packages, pkgs, packagePaths, requireWait; + + //Make sure the baseUrl ends in a slash. + if (cfg.baseUrl) { + if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== "/") { + cfg.baseUrl += "/"; + } + } + + //Save off the paths and packages since they require special processing, + //they are additive. + paths = config.paths; + packages = config.packages; + pkgs = config.pkgs; + + //Mix in the config values, favoring the new values over + //existing ones in context.config. + mixin(config, cfg, true); + + //Adjust paths if necessary. + if (cfg.paths) { + for (prop in cfg.paths) { + if (!(prop in empty)) { + paths[prop] = cfg.paths[prop]; + } + } + config.paths = paths; + } + + packagePaths = cfg.packagePaths; + if (packagePaths || cfg.packages) { + //Convert packagePaths into a packages config. + if (packagePaths) { + for (prop in packagePaths) { + if (!(prop in empty)) { + configurePackageDir(pkgs, packagePaths[prop], prop); + } + } + } + + //Adjust packages if necessary. + if (cfg.packages) { + configurePackageDir(pkgs, cfg.packages); + } + + //Done with modifications, assing packages back to context config + config.pkgs = pkgs; + } + + //If priority loading is in effect, trigger the loads now + if (cfg.priority) { + //Hold on to requireWait value, and reset it after done + requireWait = context.requireWait; + + //Allow tracing some require calls to allow the fetching + //of the priority config. + context.requireWait = false; + //But first, call resume to register any defined modules that may + //be in a data-main built file before the priority config + //call. + resume(); + + context.require(cfg.priority); + + //Trigger a resume right away, for the case when + //the script with the priority load is done as part + //of a data-main call. In that case the normal resume + //call will not happen because the scriptCount will be + //at 1, since the script for data-main is being processed. + resume(); + + //Restore previous state. + context.requireWait = requireWait; + config.priorityWait = cfg.priority; + } + + //If a deps array or a config callback is specified, then call + //require with those args. This is useful when require is defined as a + //config object before require.js is loaded. + if (cfg.deps || cfg.callback) { + context.require(cfg.deps || [], cfg.callback); + } + }, + + requireDefined: function (moduleName, relModuleMap) { + return makeModuleMap(moduleName, relModuleMap).fullName in defined; + }, + + requireSpecified: function (moduleName, relModuleMap) { + return makeModuleMap(moduleName, relModuleMap).fullName in specified; + }, + + require: function (deps, callback, relModuleMap) { + var moduleName, fullName, moduleMap; + if (typeof deps === "string") { + if (isFunction(callback)) { + //Invalid call + return req.onError(makeError("requireargs", "Invalid require call")); + } + + //Synchronous access to one module. If require.get is + //available (as in the Node adapter), prefer that. + //In this case deps is the moduleName and callback is + //the relModuleMap + if (req.get) { + return req.get(context, deps, callback); + } + + //Just return the module wanted. In this scenario, the + //second arg (if passed) is just the relModuleMap. + moduleName = deps; + relModuleMap = callback; + + //Normalize module name, if it contains . or .. + moduleMap = makeModuleMap(moduleName, relModuleMap); + fullName = moduleMap.fullName; + + if (!(fullName in defined)) { + return req.onError(makeError("notloaded", "Module name '" + + moduleMap.fullName + + "' has not been loaded yet for context: " + + contextName)); + } + return defined[fullName]; + } + + //Call main but only if there are dependencies or + //a callback to call. + if (deps && deps.length || callback) { + main(null, deps, callback, relModuleMap); + } + + //If the require call does not trigger anything new to load, + //then resume the dependency processing. + if (!context.requireWait) { + while (!context.scriptCount && context.paused.length) { + resume(); + } + } + return context.require; + }, + + /** + * Internal method to transfer globalQueue items to this context's + * defQueue. + */ + takeGlobalQueue: function () { + //Push all the globalDefQueue items into the context's defQueue + if (globalDefQueue.length) { + //Array splice in the values since the context code has a + //local var ref to defQueue, so cannot just reassign the one + //on context. + apsp.apply(context.defQueue, + [context.defQueue.length - 1, 0].concat(globalDefQueue)); + globalDefQueue = []; + } + }, + + /** + * Internal method used by environment adapters to complete a load event. + * A load event could be a script load or just a load pass from a synchronous + * load call. + * @param {String} moduleName the name of the module to potentially complete. + */ + completeLoad: function (moduleName) { + var args; + + context.takeGlobalQueue(); + + while (defQueue.length) { + args = defQueue.shift(); + + if (args[0] === null) { + args[0] = moduleName; + break; + } else if (args[0] === moduleName) { + //Found matching define call for this script! + break; + } else { + //Some other named define call, most likely the result + //of a build layer that included many define calls. + callDefMain(args); + args = null; + } + } + if (args) { + callDefMain(args); + } else { + //A script that does not call define(), so just simulate + //the call for it. Special exception for jQuery dynamic load. + callDefMain([moduleName, [], + moduleName === "jquery" && typeof jQuery !== "undefined" ? + function () { + return jQuery; + } : null]); + } + + //Doing this scriptCount decrement branching because sync envs + //need to decrement after resume, otherwise it looks like + //loading is complete after the first dependency is fetched. + //For browsers, it works fine to decrement after, but it means + //the checkLoaded setTimeout 50 ms cost is taken. To avoid + //that cost, decrement beforehand. + if (req.isAsync) { + context.scriptCount -= 1; + } + resume(); + if (!req.isAsync) { + context.scriptCount -= 1; + } + }, + + /** + * Converts a module name + .extension into an URL path. + * *Requires* the use of a module name. It does not support using + * plain URLs like nameToUrl. + */ + toUrl: function (moduleNamePlusExt, relModuleMap) { + var index = moduleNamePlusExt.lastIndexOf("."), + ext = null; + + if (index !== -1) { + ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length); + moduleNamePlusExt = moduleNamePlusExt.substring(0, index); + } + + return context.nameToUrl(moduleNamePlusExt, ext, relModuleMap); + }, + + /** + * Converts a module name to a file path. Supports cases where + * moduleName may actually be just an URL. + */ + nameToUrl: function (moduleName, ext, relModuleMap) { + var paths, pkgs, pkg, pkgPath, syms, i, parentModule, url, + config = context.config; + + //Normalize module name if have a base relative module name to work from. + moduleName = normalize(moduleName, relModuleMap && relModuleMap.fullName); + + //If a colon is in the URL, it indicates a protocol is used and it is just + //an URL to a file, or if it starts with a slash or ends with .js, it is just a plain file. + //The slash is important for protocol-less URLs as well as full paths. + if (req.jsExtRegExp.test(moduleName)) { + //Just a plain path, not module name lookup, so just return it. + //Add extension if it is included. This is a bit wonky, only non-.js things pass + //an extension, this method probably needs to be reworked. + url = moduleName + (ext ? ext : ""); + } else { + //A module that needs to be converted to a path. + paths = config.paths; + pkgs = config.pkgs; + + syms = moduleName.split("/"); + //For each module name segment, see if there is a path + //registered for it. Start with most specific name + //and work up from it. + for (i = syms.length; i > 0; i--) { + parentModule = syms.slice(0, i).join("/"); + if (paths[parentModule]) { + syms.splice(0, i, paths[parentModule]); + break; + } else if ((pkg = pkgs[parentModule])) { + //If module name is just the package name, then looking + //for the main module. + if (moduleName === pkg.name) { + pkgPath = pkg.location + '/' + pkg.main; + } else { + pkgPath = pkg.location; + } + syms.splice(0, i, pkgPath); + break; + } + } + + //Join the path parts together, then figure out if baseUrl is needed. + url = syms.join("/") + (ext || ".js"); + url = (url.charAt(0) === '/' || url.match(/^\w+:/) ? "" : config.baseUrl) + url; + } + + return config.urlArgs ? url + + ((url.indexOf('?') === -1 ? '?' : '&') + + config.urlArgs) : url; + } + }; + + //Make these visible on the context so can be called at the very + //end of the file to bootstrap + context.jQueryCheck = jQueryCheck; + context.resume = resume; + + return context; + } + + /** + * Main entry point. + * + * If the only argument to require is a string, then the module that + * is represented by that string is fetched for the appropriate context. + * + * If the first argument is an array, then it will be treated as an array + * of dependency string names to fetch. An optional function callback can + * be specified to execute when all of those dependencies are available. + * + * Make a local req variable to help Caja compliance (it assumes things + * on a require that are not standardized), and to give a short + * name for minification/local scope use. + */ + req = requirejs = function (deps, callback) { + + //Find the right context, use default + var contextName = defContextName, + context, config; + + // Determine if have config object in the call. + if (!isArray(deps) && typeof deps !== "string") { + // deps is a config object + config = deps; + if (isArray(callback)) { + // Adjust args if there are dependencies + deps = callback; + callback = arguments[2]; + } else { + deps = []; + } + } + + if (config && config.context) { + contextName = config.context; + } + + context = contexts[contextName] || + (contexts[contextName] = newContext(contextName)); + + if (config) { + context.configure(config); + } + + return context.require(deps, callback); + }; + + /** + * Support require.config() to make it easier to cooperate with other + * AMD loaders on globally agreed names. + */ + req.config = function (config) { + return req(config); + }; + + /** + * Export require as a global, but only if it does not already exist. + */ + if (!require) { + require = req; + } + + /** + * Global require.toUrl(), to match global require, mostly useful + * for debugging/work in the global space. + */ + req.toUrl = function (moduleNamePlusExt) { + return contexts[defContextName].toUrl(moduleNamePlusExt); + }; + + req.version = version; + + //Used to filter out dependencies that are already paths. + req.jsExtRegExp = /^\/|:|\?|\.js$/; + s = req.s = { + contexts: contexts, + //Stores a list of URLs that should not get async script tag treatment. + skipAsync: {} + }; + + req.isAsync = req.isBrowser = isBrowser; + if (isBrowser) { + head = s.head = document.getElementsByTagName("head")[0]; + //If BASE tag is in play, using appendChild is a problem for IE6. + //When that browser dies, this can be removed. Details in this jQuery bug: + //http://dev.jquery.com/ticket/2709 + baseElement = document.getElementsByTagName("base")[0]; + if (baseElement) { + head = s.head = baseElement.parentNode; + } + } + + /** + * Any errors that require explicitly generates will be passed to this + * function. Intercept/override it if you want custom error handling. + * @param {Error} err the error object. + */ + req.onError = function (err) { + throw err; + }; + + /** + * Does the request to load a module for the browser case. + * Make this a separate function to allow other environments + * to override it. + * + * @param {Object} context the require context to find state. + * @param {String} moduleName the name of the module. + * @param {Object} url the URL to the module. + */ + req.load = function (context, moduleName, url) { + req.resourcesReady(false); + + context.scriptCount += 1; + req.attach(url, context, moduleName); + + //If tracking a jQuery, then make sure its ready callbacks + //are put on hold to prevent its ready callbacks from + //triggering too soon. + if (context.jQuery && !context.jQueryIncremented) { + jQueryHoldReady(context.jQuery, true); + context.jQueryIncremented = true; + } + }; + + function getInteractiveScript() { + var scripts, i, script; + if (interactiveScript && interactiveScript.readyState === 'interactive') { + return interactiveScript; + } + + scripts = document.getElementsByTagName('script'); + for (i = scripts.length - 1; i > -1 && (script = scripts[i]); i--) { + if (script.readyState === 'interactive') { + return (interactiveScript = script); + } + } + + return null; + } + + /** + * The function that handles definitions of modules. Differs from + * require() in that a string for the module should be the first argument, + * and the function to execute after dependencies are loaded should + * return a value to define the module corresponding to the first argument's + * name. + */ + define = function (name, deps, callback) { + var node, context; + + //Allow for anonymous functions + if (typeof name !== 'string') { + //Adjust args appropriately + callback = deps; + deps = name; + name = null; + } + + //This module may not have dependencies + if (!isArray(deps)) { + callback = deps; + deps = []; + } + + //If no name, and callback is a function, then figure out if it a + //CommonJS thing with dependencies. + if (!deps.length && isFunction(callback)) { + //Remove comments from the callback string, + //look for require calls, and pull them into the dependencies, + //but only if there are function args. + if (callback.length) { + callback + .toString() + .replace(commentRegExp, "") + .replace(cjsRequireRegExp, function (match, dep) { + deps.push(dep); + }); + + //May be a CommonJS thing even without require calls, but still + //could use exports, and module. Avoid doing exports and module + //work though if it just needs require. + //REQUIRES the function to expect the CommonJS variables in the + //order listed below. + deps = (callback.length === 1 ? ["require"] : ["require", "exports", "module"]).concat(deps); + } + } + + //If in IE 6-8 and hit an anonymous define() call, do the interactive + //work. + if (useInteractive) { + node = currentlyAddingScript || getInteractiveScript(); + if (node) { + if (!name) { + name = node.getAttribute("data-requiremodule"); + } + context = contexts[node.getAttribute("data-requirecontext")]; + } + } + + //Always save off evaluating the def call until the script onload handler. + //This allows multiple modules to be in a file without prematurely + //tracing dependencies, and allows for anonymous module support, + //where the module name is not known until the script onload event + //occurs. If no context, use the global queue, and get it processed + //in the onscript load callback. + (context ? context.defQueue : globalDefQueue).push([name, deps, callback]); + + return undefined; + }; + + define.amd = { + multiversion: true, + plugins: true, + jQuery: true + }; + + /** + * Executes the text. Normally just uses eval, but can be modified + * to use a more environment specific call. + * @param {String} text the text to execute/evaluate. + */ + req.exec = function (text) { + return eval(text); + }; + + /** + * Executes a module callack function. Broken out as a separate function + * solely to allow the build system to sequence the files in the built + * layer in the right sequence. + * + * @private + */ + req.execCb = function (name, callback, args, exports) { + return callback.apply(exports, args); + }; + + + /** + * Adds a node to the DOM. Public function since used by the order plugin. + * This method should not normally be called by outside code. + */ + req.addScriptToDom = function (node) { + //For some cache cases in IE 6-8, the script executes before the end + //of the appendChild execution, so to tie an anonymous define + //call to the module name (which is stored on the node), hold on + //to a reference to this node, but clear after the DOM insertion. + currentlyAddingScript = node; + if (baseElement) { + head.insertBefore(node, baseElement); + } else { + head.appendChild(node); + } + currentlyAddingScript = null; + }; + + /** + * callback for script loads, used to check status of loading. + * + * @param {Event} evt the event from the browser for the script + * that was loaded. + * + * @private + */ + req.onScriptLoad = function (evt) { + //Using currentTarget instead of target for Firefox 2.0's sake. Not + //all old browsers will be supported, but this one was easy enough + //to support and still makes sense. + var node = evt.currentTarget || evt.srcElement, contextName, moduleName, + context; + + if (evt.type === "load" || (node && readyRegExp.test(node.readyState))) { + //Reset interactive script so a script node is not held onto for + //to long. + interactiveScript = null; + + //Pull out the name of the module and the context. + contextName = node.getAttribute("data-requirecontext"); + moduleName = node.getAttribute("data-requiremodule"); + context = contexts[contextName]; + + contexts[contextName].completeLoad(moduleName); + + //Clean up script binding. Favor detachEvent because of IE9 + //issue, see attachEvent/addEventListener comment elsewhere + //in this file. + if (node.detachEvent && !isOpera) { + //Probably IE. If not it will throw an error, which will be + //useful to know. + node.detachEvent("onreadystatechange", req.onScriptLoad); + } else { + node.removeEventListener("load", req.onScriptLoad, false); + } + } + }; + + /** + * Attaches the script represented by the URL to the current + * environment. Right now only supports browser loading, + * but can be redefined in other environments to do the right thing. + * @param {String} url the url of the script to attach. + * @param {Object} context the context that wants the script. + * @param {moduleName} the name of the module that is associated with the script. + * @param {Function} [callback] optional callback, defaults to require.onScriptLoad + * @param {String} [type] optional type, defaults to text/javascript + * @param {Function} [fetchOnlyFunction] optional function to indicate the script node + * should be set up to fetch the script but do not attach it to the DOM + * so that it can later be attached to execute it. This is a way for the + * order plugin to support ordered loading in IE. Once the script is fetched, + * but not executed, the fetchOnlyFunction will be called. + */ + req.attach = function (url, context, moduleName, callback, type, fetchOnlyFunction) { + var node; + if (isBrowser) { + //In the browser so use a script tag + callback = callback || req.onScriptLoad; + node = context && context.config && context.config.xhtml ? + document.createElementNS("http://www.w3.org/1999/xhtml", "html:script") : + document.createElement("script"); + node.type = type || (context && context.config.scriptType) || + "text/javascript"; + node.charset = "utf-8"; + //Use async so Gecko does not block on executing the script if something + //like a long-polling comet tag is being run first. Gecko likes + //to evaluate scripts in DOM order, even for dynamic scripts. + //It will fetch them async, but only evaluate the contents in DOM + //order, so a long-polling script tag can delay execution of scripts + //after it. But telling Gecko we expect async gets us the behavior + //we want -- execute it whenever it is finished downloading. Only + //Helps Firefox 3.6+ + //Allow some URLs to not be fetched async. Mostly helps the order! + //plugin + node.async = !s.skipAsync[url]; + + if (context) { + node.setAttribute("data-requirecontext", context.contextName); + } + node.setAttribute("data-requiremodule", moduleName); + + //Set up load listener. Test attachEvent first because IE9 has + //a subtle issue in its addEventListener and script onload firings + //that do not match the behavior of all other browsers with + //addEventListener support, which fire the onload event for a + //script right after the script execution. See: + //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution + //UNFORTUNATELY Opera implements attachEvent but does not follow the script + //script execution mode. + if (node.attachEvent && !isOpera) { + //Probably IE. IE (at least 6-8) do not fire + //script onload right after executing the script, so + //we cannot tie the anonymous define call to a name. + //However, IE reports the script as being in "interactive" + //readyState at the time of the define call. + useInteractive = true; + + + if (fetchOnlyFunction) { + //Need to use old school onreadystate here since + //when the event fires and the node is not attached + //to the DOM, the evt.srcElement is null, so use + //a closure to remember the node. + node.onreadystatechange = function (evt) { + //Script loaded but not executed. + //Clear loaded handler, set the real one that + //waits for script execution. + if (node.readyState === 'loaded') { + node.onreadystatechange = null; + node.attachEvent("onreadystatechange", callback); + fetchOnlyFunction(node); + } + }; + } else { + node.attachEvent("onreadystatechange", callback); + } + } else { + node.addEventListener("load", callback, false); + } + node.src = url; + + //Fetch only means waiting to attach to DOM after loaded. + if (!fetchOnlyFunction) { + req.addScriptToDom(node); + } + + return node; + } else if (isWebWorker) { + //In a web worker, use importScripts. This is not a very + //efficient use of importScripts, importScripts will block until + //its script is downloaded and evaluated. However, if web workers + //are in play, the expectation that a build has been done so that + //only one script needs to be loaded anyway. This may need to be + //reevaluated if other use cases become common. + importScripts(url); + + //Account for anonymous modules + context.completeLoad(moduleName); + } + return null; + }; + + //Look for a data-main script attribute, which could also adjust the baseUrl. + if (isBrowser) { + //Figure out baseUrl. Get it from the script tag with require.js in it. + scripts = document.getElementsByTagName("script"); + + for (globalI = scripts.length - 1; globalI > -1 && (script = scripts[globalI]); globalI--) { + //Set the "head" where we can append children by + //using the script's parent. + if (!head) { + head = script.parentNode; + } + + //Look for a data-main attribute to set main script for the page + //to load. If it is there, the path to data main becomes the + //baseUrl, if it is not already set. + if ((dataMain = script.getAttribute('data-main'))) { + if (!cfg.baseUrl) { + //Pull off the directory of data-main for use as the + //baseUrl. + src = dataMain.split('/'); + mainScript = src.pop(); + subPath = src.length ? src.join('/') + '/' : './'; + + //Set final config. + cfg.baseUrl = subPath; + //Strip off any trailing .js since dataMain is now + //like a module name. + dataMain = mainScript.replace(jsSuffixRegExp, ''); + } + + //Put the data-main script in the files to load. + cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain]; + + break; + } + } + } + + //See if there is nothing waiting across contexts, and if not, trigger + //resourcesReady. + req.checkReadyState = function () { + var contexts = s.contexts, prop; + for (prop in contexts) { + if (!(prop in empty)) { + if (contexts[prop].waitCount) { + return; + } + } + } + req.resourcesReady(true); + }; + + /** + * Internal function that is triggered whenever all scripts/resources + * have been loaded by the loader. Can be overridden by other, for + * instance the domReady plugin, which wants to know when all resources + * are loaded. + */ + req.resourcesReady = function (isReady) { + var contexts, context, prop; + + //First, set the public variable indicating that resources are loading. + req.resourcesDone = isReady; + + if (req.resourcesDone) { + //If jQuery with DOM ready delayed, release it now. + contexts = s.contexts; + for (prop in contexts) { + if (!(prop in empty)) { + context = contexts[prop]; + if (context.jQueryIncremented) { + jQueryHoldReady(context.jQuery, false); + context.jQueryIncremented = false; + } + } + } + } + }; + + //FF < 3.6 readyState fix. Needed so that domReady plugin + //works well in that environment, since require.js is normally + //loaded via an HTML script tag so it will be there before window load, + //where the domReady plugin is more likely to be loaded after window load. + req.pageLoaded = function () { + if (document.readyState !== "complete") { + document.readyState = "complete"; + } + }; + if (isBrowser) { + if (document.addEventListener) { + if (!document.readyState) { + document.readyState = "loading"; + window.addEventListener("load", req.pageLoaded, false); + } + } + } + + //Set up default context. If require was a configuration object, use that as base config. + req(cfg); + + //If modules are built into require.js, then need to make sure dependencies are + //traced. Use a setTimeout in the browser world, to allow all the modules to register + //themselves. In a non-browser env, assume that modules are not built into require.js, + //which seems odd to do on the server. + if (req.isAsync && typeof setTimeout !== "undefined") { + ctx = s.contexts[(cfg.context || defContextName)]; + //Indicate that the script that includes require() is still loading, + //so that require()'d dependencies are not traced until the end of the + //file is parsed (approximated via the setTimeout call). + ctx.requireWait = true; + setTimeout(function () { + ctx.requireWait = false; + + if (!ctx.scriptCount) { + ctx.resume(); + } + req.checkReadyState(); + }, 0); + } +}()); + + + if (env === 'rhino') { + /** + * @license RequireJS rhino Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global require: false, java: false, load: false */ + +(function () { + + require.load = function (context, moduleName, url) { + //Indicate a the module is in process of loading. + context.scriptCount += 1; + + load(url); + + //Support anonymous modules. + context.completeLoad(moduleName); + }; + +}()); + } else if (env === 'node') { + this.requirejsVars = { + require: require, + requirejs: require, + define: define, + nodeRequire: nodeRequire + }; + require.nodeRequire = nodeRequire; + + /** + * @license RequireJS node Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint regexp: false, strict: false */ +/*global require: false, define: false, requirejsVars: false, process: false */ + +/** + * This adapter assumes that x.js has loaded it and set up + * some variables. This adapter just allows limited RequireJS + * usage from within the requirejs directory. The general + * node adapater is r.js. + */ + +(function () { + var nodeReq = requirejsVars.nodeRequire, + req = requirejsVars.require, + def = requirejsVars.define, + fs = nodeReq('fs'), + path = nodeReq('path'), + vm = nodeReq('vm'); + + //Supply an implementation that allows synchronous get of a module. + req.get = function (context, moduleName, relModuleMap) { + if (moduleName === "require" || moduleName === "exports" || moduleName === "module") { + req.onError(new Error("Explicit require of " + moduleName + " is not allowed.")); + } + + var ret, + moduleMap = context.makeModuleMap(moduleName, relModuleMap); + + //Normalize module name, if it contains . or .. + moduleName = moduleMap.fullName; + + if (moduleName in context.defined) { + ret = context.defined[moduleName]; + } else { + if (ret === undefined) { + //Try to dynamically fetch it. + req.load(context, moduleName, moduleMap.url); + //The above call is sync, so can do the next thing safely. + ret = context.defined[moduleName]; + } + } + + return ret; + }; + + //Add wrapper around the code so that it gets the requirejs + //API instead of the Node API, and it is done lexically so + //that it survives later execution. + req.makeNodeWrapper = function (contents) { + return '(function (require, requirejs, define) { ' + + contents + + '\n}(requirejsVars.require, requirejsVars.requirejs, requirejsVars.define));'; + }; + + requirejsVars.nodeLoad = req.load = function (context, moduleName, url) { + var contents, err; + + //Indicate a the module is in process of loading. + context.scriptCount += 1; + + if (path.existsSync(url)) { + contents = fs.readFileSync(url, 'utf8'); + + contents = req.makeNodeWrapper(contents); + try { + vm.runInThisContext(contents, fs.realpathSync(url)); + } catch (e) { + err = new Error('Evaluating ' + url + ' as module "' + + moduleName + '" failed with error: ' + e); + err.originalError = e; + err.moduleName = moduleName; + err.fileName = url; + return req.onError(err); + } + } else { + def(moduleName, function () { + try { + return (context.config.nodeRequire || req.nodeRequire)(moduleName); + } catch (e) { + err = new Error('Calling node\'s require("' + + moduleName + '") failed with error: ' + e); + err.originalError = e; + err.moduleName = moduleName; + return req.onError(err); + } + }); + } + + //Support anonymous modules. + context.completeLoad(moduleName); + + return undefined; + }; + + //Override to provide the function wrapper for define/require. + req.exec = function (text) { + /*jslint evil: true */ + text = req.makeNodeWrapper(text); + return eval(text); + }; + + //Hold on to the original execCb to use in useLib calls. + requirejsVars.nodeRequireExecCb = require.execCb; +}()); + + } + + //Support a default file name to execute. Useful for hosted envs + //like Joyent where it defaults to a server.js as the only executed + //script. But only do it if this is not an optimization run. + if (commandOption !== 'o' && (!fileName || !jsSuffixRegExp.test(fileName))) { + fileName = 'main.js'; + } + + /** + * Loads the library files that can be used for the optimizer, or for other + * tasks. + */ + function loadLib() { + /** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global Packages: false, process: false, window: false, navigator: false, + document: false, define: false */ + +/** + * A plugin that modifies any /env/ path to be the right path based on + * the host environment. Right now only works for Node, Rhino and browser. + */ +(function () { + var pathRegExp = /(\/|^)env\/|\{env\}/, + env = 'unknown'; + + if (typeof Packages !== 'undefined') { + env = 'rhino'; + } else if (typeof process !== 'undefined') { + env = 'node'; + } else if (typeof window !== "undefined" && navigator && document) { + env = 'browser'; + } + + define('env', { + load: function (name, req, load, config) { + //Allow override in the config. + if (config.env) { + env = config.env; + } + + name = name.replace(pathRegExp, function (match, prefix) { + if (match.indexOf('{') === -1) { + return prefix + env + '/'; + } else { + return env; + } + }); + + req([name], function (mod) { + load(mod); + }); + } + }); +}()); +if(env === 'node') { +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, process: false */ + +define('node/args', function () { + //Do not return the "node" or "r.js" arguments + var args = process.argv.slice(2); + + //Ignore any command option used for rq.js + if (args[0] && args[0].indexOf('-' === 0)) { + args = args.slice(1); + } + + return args; +}); + +} + +if(env === 'rhino') { +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, process: false */ + +var jsLibRhinoArgs = (typeof rhinoArgs !== 'undefined' && rhinoArgs) || [].concat(Array.prototype.slice.call(arguments, 0)); + +define('rhino/args', function () { + var args = jsLibRhinoArgs; + + //Ignore any command option used for rq.js + if (args[0] && args[0].indexOf('-' === 0)) { + args = args.slice(1); + } + + return args; +}); + +} + +if(env === 'node') { +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, console: false */ + +define('node/load', ['fs'], function (fs) { + function load(fileName) { + var contents = fs.readFileSync(fileName, 'utf8'); + process.compile(contents, fileName); + } + + return load; +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +define('rhino/load', function () { + return load; +}); + +} + +if(env === 'node') { +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: false, octal:false, strict: false */ +/*global define: false, process: false */ + +define('node/file', ['fs', 'path'], function (fs, path) { + + var isWindows = process.platform === 'win32', + windowsDriveRegExp = /^[a-zA-Z]\:\/$/, + file; + + function frontSlash(path) { + return path.replace(/\\/g, '/'); + } + + function exists(path) { + if (isWindows && path.charAt(path.length - 1) === '/' && + path.charAt(path.length - 2) !== ':') { + path = path.substring(0, path.length - 1); + } + + try { + fs.statSync(path); + return true; + } catch (e) { + return false; + } + } + + function mkDir(dir) { + if (!exists(dir) && (!isWindows || !windowsDriveRegExp.test(dir))) { + fs.mkdirSync(dir, 511); + } + } + + function mkFullDir(dir) { + var parts = dir.split('/'), + currDir = '', + first = true; + + parts.forEach(function (part) { + //First part may be empty string if path starts with a slash. + currDir += part + '/'; + first = false; + + if (part) { + mkDir(currDir); + } + }); + } + + file = { + backSlashRegExp: /\\/g, + exclusionRegExp: /^\./, + getLineSeparator: function () { + return '/'; + }, + + exists: function (fileName) { + return exists(fileName); + }, + + parent: function (fileName) { + var parts = fileName.split('/'); + parts.pop(); + return parts.join('/'); + }, + + /** + * Gets the absolute file path as a string, normalized + * to using front slashes for path separators. + * @param {String} fileName + */ + absPath: function (fileName) { + return frontSlash(path.normalize(frontSlash(fs.realpathSync(fileName)))); + }, + + normalize: function (fileName) { + return frontSlash(path.normalize(fileName)); + }, + + isFile: function (path) { + return fs.statSync(path).isFile(); + }, + + isDirectory: function (path) { + return fs.statSync(path).isDirectory(); + }, + + getFilteredFileList: function (/*String*/startDir, /*RegExp*/regExpFilters, /*boolean?*/makeUnixPaths) { + //summary: Recurses startDir and finds matches to the files that match regExpFilters.include + //and do not match regExpFilters.exclude. Or just one regexp can be passed in for regExpFilters, + //and it will be treated as the "include" case. + //Ignores files/directories that start with a period (.) unless exclusionRegExp + //is set to another value. + var files = [], topDir, regExpInclude, regExpExclude, dirFileArray, + i, stat, filePath, ok, dirFiles, fileName; + + topDir = startDir; + + regExpInclude = regExpFilters.include || regExpFilters; + regExpExclude = regExpFilters.exclude || null; + + if (file.exists(topDir)) { + dirFileArray = fs.readdirSync(topDir); + for (i = 0; i < dirFileArray.length; i++) { + fileName = dirFileArray[i]; + filePath = path.join(topDir, fileName); + stat = fs.statSync(filePath); + if (stat.isFile()) { + if (makeUnixPaths) { + //Make sure we have a JS string. + if (filePath.indexOf("/") === -1) { + filePath = frontSlash(filePath); + } + } + + ok = true; + if (regExpInclude) { + ok = filePath.match(regExpInclude); + } + if (ok && regExpExclude) { + ok = !filePath.match(regExpExclude); + } + + if (ok && (!file.exclusionRegExp || + !file.exclusionRegExp.test(fileName))) { + files.push(filePath); + } + } else if (stat.isDirectory() && + (!file.exclusionRegExp || !file.exclusionRegExp.test(fileName))) { + dirFiles = this.getFilteredFileList(filePath, regExpFilters, makeUnixPaths); + files.push.apply(files, dirFiles); + } + } + } + + return files; //Array + }, + + copyDir: function (/*String*/srcDir, /*String*/destDir, /*RegExp?*/regExpFilter, /*boolean?*/onlyCopyNew) { + //summary: copies files from srcDir to destDir using the regExpFilter to determine if the + //file should be copied. Returns a list file name strings of the destinations that were copied. + regExpFilter = regExpFilter || /\w/; + + //Normalize th directory names, but keep front slashes. + //path module on windows now returns backslashed paths. + srcDir = frontSlash(path.normalize(srcDir)); + destDir = frontSlash(path.normalize(destDir)); + + var fileNames = file.getFilteredFileList(srcDir, regExpFilter, true), + copiedFiles = [], i, srcFileName, destFileName; + + for (i = 0; i < fileNames.length; i++) { + srcFileName = fileNames[i]; + destFileName = srcFileName.replace(srcDir, destDir); + + if (file.copyFile(srcFileName, destFileName, onlyCopyNew)) { + copiedFiles.push(destFileName); + } + } + + return copiedFiles.length ? copiedFiles : null; //Array or null + }, + + copyFile: function (/*String*/srcFileName, /*String*/destFileName, /*boolean?*/onlyCopyNew) { + //summary: copies srcFileName to destFileName. If onlyCopyNew is set, it only copies the file if + //srcFileName is newer than destFileName. Returns a boolean indicating if the copy occurred. + var parentDir; + + //logger.trace("Src filename: " + srcFileName); + //logger.trace("Dest filename: " + destFileName); + + //If onlyCopyNew is true, then compare dates and only copy if the src is newer + //than dest. + if (onlyCopyNew) { + if (file.exists(destFileName) && fs.statSync(destFileName).mtime.getTime() >= fs.statSync(srcFileName).mtime.getTime()) { + return false; //Boolean + } + } + + //Make sure destination dir exists. + parentDir = path.dirname(destFileName); + if (!file.exists(parentDir)) { + mkFullDir(parentDir); + } + + fs.writeFileSync(destFileName, fs.readFileSync(srcFileName, 'binary'), 'binary'); + + return true; //Boolean + }, + + /** + * Renames a file. May fail if "to" already exists or is on another drive. + */ + renameFile: function (from, to) { + return fs.renameSync(from, to); + }, + + /** + * Reads a *text* file. + */ + readFile: function (/*String*/path, /*String?*/encoding) { + if (encoding === 'utf-8') { + encoding = 'utf8'; + } + if (!encoding) { + encoding = 'utf8'; + } + + var text = fs.readFileSync(path, encoding); + + //Hmm, would not expect to get A BOM, but it seems to happen, + //remove it just in case. + if (text.indexOf('\uFEFF') === 0) { + text = text.substring(1, text.length); + } + + return text; + }, + + saveUtf8File: function (/*String*/fileName, /*String*/fileContents) { + //summary: saves a *text* file using UTF-8 encoding. + file.saveFile(fileName, fileContents, "utf8"); + }, + + saveFile: function (/*String*/fileName, /*String*/fileContents, /*String?*/encoding) { + //summary: saves a *text* file. + var parentDir; + + if (encoding === 'utf-8') { + encoding = 'utf8'; + } + if (!encoding) { + encoding = 'utf8'; + } + + //Make sure destination directories exist. + parentDir = path.dirname(fileName); + if (!file.exists(parentDir)) { + mkFullDir(parentDir); + } + + fs.writeFileSync(fileName, fileContents, encoding); + }, + + deleteFile: function (/*String*/fileName) { + //summary: deletes a file or directory if it exists. + var files, i, stat; + if (file.exists(fileName)) { + stat = fs.statSync(fileName); + if (stat.isDirectory()) { + files = fs.readdirSync(fileName); + for (i = 0; i < files.length; i++) { + this.deleteFile(path.join(fileName, files[i])); + } + fs.rmdirSync(fileName); + } else { + fs.unlinkSync(fileName); + } + } + } + }; + + return file; + +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +//Helper functions to deal with file I/O. + +/*jslint plusplus: false, strict: false */ +/*global java: false, define: false */ + +define('rhino/file', function () { + var file = { + backSlashRegExp: /\\/g, + + exclusionRegExp: /^\./, + + getLineSeparator: function () { + return file.lineSeparator; + }, + + lineSeparator: java.lang.System.getProperty("line.separator"), //Java String + + exists: function (fileName) { + return (new java.io.File(fileName)).exists(); + }, + + parent: function (fileName) { + return file.absPath((new java.io.File(fileName)).getParentFile()); + }, + + normalize: function (fileName) { + return file.absPath(fileName); + }, + + isFile: function (path) { + return (new java.io.File(path)).isFile(); + }, + + isDirectory: function (path) { + return (new java.io.File(path)).isDirectory(); + }, + + /** + * Gets the absolute file path as a string, normalized + * to using front slashes for path separators. + * @param {java.io.File||String} file + */ + absPath: function (fileObj) { + if (typeof fileObj === "string") { + fileObj = new java.io.File(fileObj); + } + return (fileObj.getAbsolutePath() + "").replace(file.backSlashRegExp, "/"); + }, + + getFilteredFileList: function (/*String*/startDir, /*RegExp*/regExpFilters, /*boolean?*/makeUnixPaths, /*boolean?*/startDirIsJavaObject) { + //summary: Recurses startDir and finds matches to the files that match regExpFilters.include + //and do not match regExpFilters.exclude. Or just one regexp can be passed in for regExpFilters, + //and it will be treated as the "include" case. + //Ignores files/directories that start with a period (.) unless exclusionRegExp + //is set to another value. + var files = [], topDir, regExpInclude, regExpExclude, dirFileArray, + i, fileObj, filePath, ok, dirFiles; + + topDir = startDir; + if (!startDirIsJavaObject) { + topDir = new java.io.File(startDir); + } + + regExpInclude = regExpFilters.include || regExpFilters; + regExpExclude = regExpFilters.exclude || null; + + if (topDir.exists()) { + dirFileArray = topDir.listFiles(); + for (i = 0; i < dirFileArray.length; i++) { + fileObj = dirFileArray[i]; + if (fileObj.isFile()) { + filePath = fileObj.getPath(); + if (makeUnixPaths) { + //Make sure we have a JS string. + filePath = String(filePath); + if (filePath.indexOf("/") === -1) { + filePath = filePath.replace(/\\/g, "/"); + } + } + + ok = true; + if (regExpInclude) { + ok = filePath.match(regExpInclude); + } + if (ok && regExpExclude) { + ok = !filePath.match(regExpExclude); + } + + if (ok && (!file.exclusionRegExp || + !file.exclusionRegExp.test(fileObj.getName()))) { + files.push(filePath); + } + } else if (fileObj.isDirectory() && + (!file.exclusionRegExp || !file.exclusionRegExp.test(fileObj.getName()))) { + dirFiles = this.getFilteredFileList(fileObj, regExpFilters, makeUnixPaths, true); + files.push.apply(files, dirFiles); + } + } + } + + return files; //Array + }, + + copyDir: function (/*String*/srcDir, /*String*/destDir, /*RegExp?*/regExpFilter, /*boolean?*/onlyCopyNew) { + //summary: copies files from srcDir to destDir using the regExpFilter to determine if the + //file should be copied. Returns a list file name strings of the destinations that were copied. + regExpFilter = regExpFilter || /\w/; + + var fileNames = file.getFilteredFileList(srcDir, regExpFilter, true), + copiedFiles = [], i, srcFileName, destFileName; + + for (i = 0; i < fileNames.length; i++) { + srcFileName = fileNames[i]; + destFileName = srcFileName.replace(srcDir, destDir); + + if (file.copyFile(srcFileName, destFileName, onlyCopyNew)) { + copiedFiles.push(destFileName); + } + } + + return copiedFiles.length ? copiedFiles : null; //Array or null + }, + + copyFile: function (/*String*/srcFileName, /*String*/destFileName, /*boolean?*/onlyCopyNew) { + //summary: copies srcFileName to destFileName. If onlyCopyNew is set, it only copies the file if + //srcFileName is newer than destFileName. Returns a boolean indicating if the copy occurred. + var destFile = new java.io.File(destFileName), srcFile, parentDir, + srcChannel, destChannel; + + //logger.trace("Src filename: " + srcFileName); + //logger.trace("Dest filename: " + destFileName); + + //If onlyCopyNew is true, then compare dates and only copy if the src is newer + //than dest. + if (onlyCopyNew) { + srcFile = new java.io.File(srcFileName); + if (destFile.exists() && destFile.lastModified() >= srcFile.lastModified()) { + return false; //Boolean + } + } + + //Make sure destination dir exists. + parentDir = destFile.getParentFile(); + if (!parentDir.exists()) { + if (!parentDir.mkdirs()) { + throw "Could not create directory: " + parentDir.getAbsolutePath(); + } + } + + //Java's version of copy file. + srcChannel = new java.io.FileInputStream(srcFileName).getChannel(); + destChannel = new java.io.FileOutputStream(destFileName).getChannel(); + destChannel.transferFrom(srcChannel, 0, srcChannel.size()); + srcChannel.close(); + destChannel.close(); + + return true; //Boolean + }, + + /** + * Renames a file. May fail if "to" already exists or is on another drive. + */ + renameFile: function (from, to) { + return (new java.io.File(from)).renameTo((new java.io.File(to))); + }, + + readFile: function (/*String*/path, /*String?*/encoding) { + //A file read function that can deal with BOMs + encoding = encoding || "utf-8"; + var fileObj = new java.io.File(path), + input = new java.io.BufferedReader(new java.io.InputStreamReader(new java.io.FileInputStream(fileObj), encoding)), + stringBuffer, line; + try { + stringBuffer = new java.lang.StringBuffer(); + line = input.readLine(); + + // Byte Order Mark (BOM) - The Unicode Standard, version 3.0, page 324 + // http://www.unicode.org/faq/utf_bom.html + + // Note that when we use utf-8, the BOM should appear as "EF BB BF", but it doesn't due to this bug in the JDK: + // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058 + if (line && line.length() && line.charAt(0) === 0xfeff) { + // Eat the BOM, since we've already found the encoding on this file, + // and we plan to concatenating this buffer with others; the BOM should + // only appear at the top of a file. + line = line.substring(1); + } + while (line !== null) { + stringBuffer.append(line); + stringBuffer.append(file.lineSeparator); + line = input.readLine(); + } + //Make sure we return a JavaScript string and not a Java string. + return String(stringBuffer.toString()); //String + } finally { + input.close(); + } + }, + + saveUtf8File: function (/*String*/fileName, /*String*/fileContents) { + //summary: saves a file using UTF-8 encoding. + file.saveFile(fileName, fileContents, "utf-8"); + }, + + saveFile: function (/*String*/fileName, /*String*/fileContents, /*String?*/encoding) { + //summary: saves a file. + var outFile = new java.io.File(fileName), outWriter, parentDir, os; + + parentDir = outFile.getAbsoluteFile().getParentFile(); + if (!parentDir.exists()) { + if (!parentDir.mkdirs()) { + throw "Could not create directory: " + parentDir.getAbsolutePath(); + } + } + + if (encoding) { + outWriter = new java.io.OutputStreamWriter(new java.io.FileOutputStream(outFile), encoding); + } else { + outWriter = new java.io.OutputStreamWriter(new java.io.FileOutputStream(outFile)); + } + + os = new java.io.BufferedWriter(outWriter); + try { + os.write(fileContents); + } finally { + os.close(); + } + }, + + deleteFile: function (/*String*/fileName) { + //summary: deletes a file or directory if it exists. + var fileObj = new java.io.File(fileName), files, i; + if (fileObj.exists()) { + if (fileObj.isDirectory()) { + files = fileObj.listFiles(); + for (i = 0; i < files.length; i++) { + this.deleteFile(files[i]); + } + } + fileObj["delete"](); + } + } + }; + + return file; +}); + +} +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: true */ +/*global define */ + +define('lang', function () { + 'use strict'; + + var lang = { + backSlashRegExp: /\\/g, + ostring: Object.prototype.toString, + + isArray: Array.isArray || function (it) { + return lang.ostring.call(it) === "[object Array]"; + }, + + isFunction: function(it) { + return lang.ostring.call(it) === "[object Function]"; + }, + + isRegExp: function(it) { + return it && it instanceof RegExp; + }, + + _mixin: function(dest, source, override){ + var name; + for (name in source) { + if(source.hasOwnProperty(name) + && (override || !dest.hasOwnProperty(name))) { + dest[name] = source[name]; + } + } + + return dest; // Object + }, + + /** + * mixin({}, obj1, obj2) is allowed. If the last argument is a boolean, + * then the source objects properties are force copied over to dest. + */ + mixin: function(dest){ + var parameters = Array.prototype.slice.call(arguments), + override, i, l; + + if (!dest) { dest = {}; } + + if (parameters.length > 2 && typeof arguments[parameters.length-1] === 'boolean') { + override = parameters.pop(); + } + + for (i = 1, l = parameters.length; i < l; i++) { + lang._mixin(dest, parameters[i], override); + } + return dest; // Object + }, + + delegate: (function () { + // boodman/crockford delegation w/ cornford optimization + function TMP() {} + return function (obj, props) { + TMP.prototype = obj; + var tmp = new TMP(); + TMP.prototype = null; + if (props) { + lang.mixin(tmp, props); + } + return tmp; // Object + }; + }()) + }; + return lang; +}); + +if(env === 'node') { +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, console: false */ + +define('node/print', function () { + function print(msg) { + console.log(msg); + } + + return print; +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, print: false */ + +define('rhino/print', function () { + return print; +}); + +} +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint nomen: false, strict: false */ +/*global define: false */ + +define('logger', ['env!env/print'], function (print) { + var logger = { + TRACE: 0, + INFO: 1, + WARN: 2, + ERROR: 3, + SILENT: 4, + level: 0, + logPrefix: "", + + logLevel: function( level ) { + this.level = level; + }, + + trace: function (message) { + if (this.level <= this.TRACE) { + this._print(message); + } + }, + + info: function (message) { + if (this.level <= this.INFO) { + this._print(message); + } + }, + + warn: function (message) { + if (this.level <= this.WARN) { + this._print(message); + } + }, + + error: function (message) { + if (this.level <= this.ERROR) { + this._print(message); + } + }, + + _print: function (message) { + this._sysPrint((this.logPrefix ? (this.logPrefix + " ") : "") + message); + }, + + _sysPrint: function (message) { + print(message); + } + }; + + return logger; +}); +//Just a blank file to use when building the optimizer with the optimizer, +//so that the build does not attempt to inline some env modules, +//like Node's fs and path. + +//Just a blank file to use when building the optimizer with the optimizer, +//so that the build does not attempt to inline some env modules, +//like Node's fs and path. + +define('uglifyjs/parse-js', ["require", "exports", "module"], function(require, exports, module) { +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + + This version is suitable for Node.js. With minimal changes (the + exports stuff) it should work on any JS platform. + + This file contains the tokenizer/parser. It is a port to JavaScript + of parse-js [1], a JavaScript parser library written in Common Lisp + by Marijn Haverbeke. Thank you Marijn! + + [1] http://marijn.haverbeke.nl/parse-js/ + + Exported functions: + + - tokenizer(code) -- returns a function. Call the returned + function to fetch the next token. + + - parse(code) -- returns an AST of the given JavaScript code. + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2010 (c) Mihai Bazon + Based on parse-js (http://marijn.haverbeke.nl/parse-js/). + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +/* -----[ Tokenizer (constants) ]----- */ + +var KEYWORDS = array_to_hash([ + "break", + "case", + "catch", + "const", + "continue", + "default", + "delete", + "do", + "else", + "finally", + "for", + "function", + "if", + "in", + "instanceof", + "new", + "return", + "switch", + "throw", + "try", + "typeof", + "var", + "void", + "while", + "with" +]); + +var RESERVED_WORDS = array_to_hash([ + "abstract", + "boolean", + "byte", + "char", + "class", + "debugger", + "double", + "enum", + "export", + "extends", + "final", + "float", + "goto", + "implements", + "import", + "int", + "interface", + "long", + "native", + "package", + "private", + "protected", + "public", + "short", + "static", + "super", + "synchronized", + "throws", + "transient", + "volatile" +]); + +var KEYWORDS_BEFORE_EXPRESSION = array_to_hash([ + "return", + "new", + "delete", + "throw", + "else", + "case" +]); + +var KEYWORDS_ATOM = array_to_hash([ + "false", + "null", + "true", + "undefined" +]); + +var OPERATOR_CHARS = array_to_hash(characters("+-*&%=<>!?|~^")); + +var RE_HEX_NUMBER = /^0x[0-9a-f]+$/i; +var RE_OCT_NUMBER = /^0[0-7]+$/; +var RE_DEC_NUMBER = /^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i; + +var OPERATORS = array_to_hash([ + "in", + "instanceof", + "typeof", + "new", + "void", + "delete", + "++", + "--", + "+", + "-", + "!", + "~", + "&", + "|", + "^", + "*", + "/", + "%", + ">>", + "<<", + ">>>", + "<", + ">", + "<=", + ">=", + "==", + "===", + "!=", + "!==", + "?", + "=", + "+=", + "-=", + "/=", + "*=", + "%=", + ">>=", + "<<=", + ">>>=", + "|=", + "^=", + "&=", + "&&", + "||" +]); + +var WHITESPACE_CHARS = array_to_hash(characters(" \u00a0\n\r\t\f\u000b\u200b\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000")); + +var PUNC_BEFORE_EXPRESSION = array_to_hash(characters("[{}(,.;:")); + +var PUNC_CHARS = array_to_hash(characters("[]{}(),;:")); + +var REGEXP_MODIFIERS = array_to_hash(characters("gmsiy")); + +/* -----[ Tokenizer ]----- */ + +// regexps adapted from http://xregexp.com/plugins/#unicode +var UNICODE = { + letter: new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0523\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0621-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971\\u0972\\u097B-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D28\\u0D2A-\\u0D39\\u0D3D\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC\\u0EDD\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8B\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10D0-\\u10FA\\u10FC\\u1100-\\u1159\\u115F-\\u11A2\\u11A8-\\u11F9\\u1200-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u1676\\u1681-\\u169A\\u16A0-\\u16EA\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19A9\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u2094\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2183\\u2184\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2C6F\\u2C71-\\u2C7D\\u2C80-\\u2CE4\\u2D00-\\u2D25\\u2D30-\\u2D65\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005\\u3006\\u3031-\\u3035\\u303B\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31B7\\u31F0-\\u31FF\\u3400\\u4DB5\\u4E00\\u9FC3\\uA000-\\uA48C\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA65F\\uA662-\\uA66E\\uA67F-\\uA697\\uA717-\\uA71F\\uA722-\\uA788\\uA78B\\uA78C\\uA7FB-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA90A-\\uA925\\uA930-\\uA946\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAC00\\uD7A3\\uF900-\\uFA2D\\uFA30-\\uFA6A\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"), + non_spacing_mark: new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"), + space_combining_mark: new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"), + connector_punctuation: new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]") +}; + +function is_letter(ch) { + return UNICODE.letter.test(ch); +}; + +function is_digit(ch) { + ch = ch.charCodeAt(0); + return ch >= 48 && ch <= 57; //XXX: find out if "UnicodeDigit" means something else than 0..9 +}; + +function is_alphanumeric_char(ch) { + return is_digit(ch) || is_letter(ch); +}; + +function is_unicode_combining_mark(ch) { + return UNICODE.non_spacing_mark.test(ch) || UNICODE.space_combining_mark.test(ch); +}; + +function is_unicode_connector_punctuation(ch) { + return UNICODE.connector_punctuation.test(ch); +}; + +function is_identifier_start(ch) { + return ch == "$" || ch == "_" || is_letter(ch); +}; + +function is_identifier_char(ch) { + return is_identifier_start(ch) + || is_unicode_combining_mark(ch) + || is_digit(ch) + || is_unicode_connector_punctuation(ch) + || ch == "\u200c" // zero-width non-joiner + || ch == "\u200d" // zero-width joiner (in my ECMA-262 PDF, this is also 200c) + ; +}; + +function parse_js_number(num) { + if (RE_HEX_NUMBER.test(num)) { + return parseInt(num.substr(2), 16); + } else if (RE_OCT_NUMBER.test(num)) { + return parseInt(num.substr(1), 8); + } else if (RE_DEC_NUMBER.test(num)) { + return parseFloat(num); + } +}; + +function JS_Parse_Error(message, line, col, pos) { + this.message = message; + this.line = line + 1; + this.col = col + 1; + this.pos = pos + 1; + this.stack = new Error().stack; +}; + +JS_Parse_Error.prototype.toString = function() { + return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack; +}; + +function js_error(message, line, col, pos) { + throw new JS_Parse_Error(message, line, col, pos); +}; + +function is_token(token, type, val) { + return token.type == type && (val == null || token.value == val); +}; + +var EX_EOF = {}; + +function tokenizer($TEXT) { + + var S = { + text : $TEXT.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, ''), + pos : 0, + tokpos : 0, + line : 0, + tokline : 0, + col : 0, + tokcol : 0, + newline_before : false, + regex_allowed : false, + comments_before : [] + }; + + function peek() { return S.text.charAt(S.pos); }; + + function next(signal_eof, in_string) { + var ch = S.text.charAt(S.pos++); + if (signal_eof && !ch) + throw EX_EOF; + if (ch == "\n") { + S.newline_before = S.newline_before || !in_string; + ++S.line; + S.col = 0; + } else { + ++S.col; + } + return ch; + }; + + function eof() { + return !S.peek(); + }; + + function find(what, signal_eof) { + var pos = S.text.indexOf(what, S.pos); + if (signal_eof && pos == -1) throw EX_EOF; + return pos; + }; + + function start_token() { + S.tokline = S.line; + S.tokcol = S.col; + S.tokpos = S.pos; + }; + + function token(type, value, is_comment) { + S.regex_allowed = ((type == "operator" && !HOP(UNARY_POSTFIX, value)) || + (type == "keyword" && HOP(KEYWORDS_BEFORE_EXPRESSION, value)) || + (type == "punc" && HOP(PUNC_BEFORE_EXPRESSION, value))); + var ret = { + type : type, + value : value, + line : S.tokline, + col : S.tokcol, + pos : S.tokpos, + endpos : S.pos, + nlb : S.newline_before + }; + if (!is_comment) { + ret.comments_before = S.comments_before; + S.comments_before = []; + } + S.newline_before = false; + return ret; + }; + + function skip_whitespace() { + while (HOP(WHITESPACE_CHARS, peek())) + next(); + }; + + function read_while(pred) { + var ret = "", ch = peek(), i = 0; + while (ch && pred(ch, i++)) { + ret += next(); + ch = peek(); + } + return ret; + }; + + function parse_error(err) { + js_error(err, S.tokline, S.tokcol, S.tokpos); + }; + + function read_num(prefix) { + var has_e = false, after_e = false, has_x = false, has_dot = prefix == "."; + var num = read_while(function(ch, i){ + if (ch == "x" || ch == "X") { + if (has_x) return false; + return has_x = true; + } + if (!has_x && (ch == "E" || ch == "e")) { + if (has_e) return false; + return has_e = after_e = true; + } + if (ch == "-") { + if (after_e || (i == 0 && !prefix)) return true; + return false; + } + if (ch == "+") return after_e; + after_e = false; + if (ch == ".") { + if (!has_dot && !has_x) + return has_dot = true; + return false; + } + return is_alphanumeric_char(ch); + }); + if (prefix) + num = prefix + num; + var valid = parse_js_number(num); + if (!isNaN(valid)) { + return token("num", valid); + } else { + parse_error("Invalid syntax: " + num); + } + }; + + function read_escaped_char(in_string) { + var ch = next(true, in_string); + switch (ch) { + case "n" : return "\n"; + case "r" : return "\r"; + case "t" : return "\t"; + case "b" : return "\b"; + case "v" : return "\u000b"; + case "f" : return "\f"; + case "0" : return "\0"; + case "x" : return String.fromCharCode(hex_bytes(2)); + case "u" : return String.fromCharCode(hex_bytes(4)); + case "\n": return ""; + default : return ch; + } + }; + + function hex_bytes(n) { + var num = 0; + for (; n > 0; --n) { + var digit = parseInt(next(true), 16); + if (isNaN(digit)) + parse_error("Invalid hex-character pattern in string"); + num = (num << 4) | digit; + } + return num; + }; + + function read_string() { + return with_eof_error("Unterminated string constant", function(){ + var quote = next(), ret = ""; + for (;;) { + var ch = next(true); + if (ch == "\\") { + // read OctalEscapeSequence (XXX: deprecated if "strict mode") + // https://github.com/mishoo/UglifyJS/issues/178 + var octal_len = 0, first = null; + ch = read_while(function(ch){ + if (ch >= "0" && ch <= "7") { + if (!first) { + first = ch; + return ++octal_len; + } + else if (first <= "3" && octal_len <= 2) return ++octal_len; + else if (first >= "4" && octal_len <= 1) return ++octal_len; + } + return false; + }); + if (octal_len > 0) ch = String.fromCharCode(parseInt(ch, 8)); + else ch = read_escaped_char(true); + } + else if (ch == quote) break; + ret += ch; + } + return token("string", ret); + }); + }; + + function read_line_comment() { + next(); + var i = find("\n"), ret; + if (i == -1) { + ret = S.text.substr(S.pos); + S.pos = S.text.length; + } else { + ret = S.text.substring(S.pos, i); + S.pos = i; + } + return token("comment1", ret, true); + }; + + function read_multiline_comment() { + next(); + return with_eof_error("Unterminated multiline comment", function(){ + var i = find("*/", true), + text = S.text.substring(S.pos, i); + S.pos = i + 2; + S.line += text.split("\n").length - 1; + S.newline_before = text.indexOf("\n") >= 0; + + // https://github.com/mishoo/UglifyJS/issues/#issue/100 + if (/^@cc_on/i.test(text)) { + warn("WARNING: at line " + S.line); + warn("*** Found \"conditional comment\": " + text); + warn("*** UglifyJS DISCARDS ALL COMMENTS. This means your code might no longer work properly in Internet Explorer."); + } + + return token("comment2", text, true); + }); + }; + + function read_name() { + var backslash = false, name = "", ch; + while ((ch = peek()) != null) { + if (!backslash) { + if (ch == "\\") backslash = true, next(); + else if (is_identifier_char(ch)) name += next(); + else break; + } + else { + if (ch != "u") parse_error("Expecting UnicodeEscapeSequence -- uXXXX"); + ch = read_escaped_char(); + if (!is_identifier_char(ch)) parse_error("Unicode char: " + ch.charCodeAt(0) + " is not valid in identifier"); + name += ch; + backslash = false; + } + } + return name; + }; + + function read_regexp(regexp) { + return with_eof_error("Unterminated regular expression", function(){ + var prev_backslash = false, ch, in_class = false; + while ((ch = next(true))) if (prev_backslash) { + regexp += "\\" + ch; + prev_backslash = false; + } else if (ch == "[") { + in_class = true; + regexp += ch; + } else if (ch == "]" && in_class) { + in_class = false; + regexp += ch; + } else if (ch == "/" && !in_class) { + break; + } else if (ch == "\\") { + prev_backslash = true; + } else { + regexp += ch; + } + var mods = read_name(); + return token("regexp", [ regexp, mods ]); + }); + }; + + function read_operator(prefix) { + function grow(op) { + if (!peek()) return op; + var bigger = op + peek(); + if (HOP(OPERATORS, bigger)) { + next(); + return grow(bigger); + } else { + return op; + } + }; + return token("operator", grow(prefix || next())); + }; + + function handle_slash() { + next(); + var regex_allowed = S.regex_allowed; + switch (peek()) { + case "/": + S.comments_before.push(read_line_comment()); + S.regex_allowed = regex_allowed; + return next_token(); + case "*": + S.comments_before.push(read_multiline_comment()); + S.regex_allowed = regex_allowed; + return next_token(); + } + return S.regex_allowed ? read_regexp("") : read_operator("/"); + }; + + function handle_dot() { + next(); + return is_digit(peek()) + ? read_num(".") + : token("punc", "."); + }; + + function read_word() { + var word = read_name(); + return !HOP(KEYWORDS, word) + ? token("name", word) + : HOP(OPERATORS, word) + ? token("operator", word) + : HOP(KEYWORDS_ATOM, word) + ? token("atom", word) + : token("keyword", word); + }; + + function with_eof_error(eof_error, cont) { + try { + return cont(); + } catch(ex) { + if (ex === EX_EOF) parse_error(eof_error); + else throw ex; + } + }; + + function next_token(force_regexp) { + if (force_regexp != null) + return read_regexp(force_regexp); + skip_whitespace(); + start_token(); + var ch = peek(); + if (!ch) return token("eof"); + if (is_digit(ch)) return read_num(); + if (ch == '"' || ch == "'") return read_string(); + if (HOP(PUNC_CHARS, ch)) return token("punc", next()); + if (ch == ".") return handle_dot(); + if (ch == "/") return handle_slash(); + if (HOP(OPERATOR_CHARS, ch)) return read_operator(); + if (ch == "\\" || is_identifier_start(ch)) return read_word(); + parse_error("Unexpected character '" + ch + "'"); + }; + + next_token.context = function(nc) { + if (nc) S = nc; + return S; + }; + + return next_token; + +}; + +/* -----[ Parser (constants) ]----- */ + +var UNARY_PREFIX = array_to_hash([ + "typeof", + "void", + "delete", + "--", + "++", + "!", + "~", + "-", + "+" +]); + +var UNARY_POSTFIX = array_to_hash([ "--", "++" ]); + +var ASSIGNMENT = (function(a, ret, i){ + while (i < a.length) { + ret[a[i]] = a[i].substr(0, a[i].length - 1); + i++; + } + return ret; +})( + ["+=", "-=", "/=", "*=", "%=", ">>=", "<<=", ">>>=", "|=", "^=", "&="], + { "=": true }, + 0 +); + +var PRECEDENCE = (function(a, ret){ + for (var i = 0, n = 1; i < a.length; ++i, ++n) { + var b = a[i]; + for (var j = 0; j < b.length; ++j) { + ret[b[j]] = n; + } + } + return ret; +})( + [ + ["||"], + ["&&"], + ["|"], + ["^"], + ["&"], + ["==", "===", "!=", "!=="], + ["<", ">", "<=", ">=", "in", "instanceof"], + [">>", "<<", ">>>"], + ["+", "-"], + ["*", "/", "%"] + ], + {} +); + +var STATEMENTS_WITH_LABELS = array_to_hash([ "for", "do", "while", "switch" ]); + +var ATOMIC_START_TOKEN = array_to_hash([ "atom", "num", "string", "regexp", "name" ]); + +/* -----[ Parser ]----- */ + +function NodeWithToken(str, start, end) { + this.name = str; + this.start = start; + this.end = end; +}; + +NodeWithToken.prototype.toString = function() { return this.name; }; + +function parse($TEXT, exigent_mode, embed_tokens) { + + var S = { + input : typeof $TEXT == "string" ? tokenizer($TEXT, true) : $TEXT, + token : null, + prev : null, + peeked : null, + in_function : 0, + in_loop : 0, + labels : [] + }; + + S.token = next(); + + function is(type, value) { + return is_token(S.token, type, value); + }; + + function peek() { return S.peeked || (S.peeked = S.input()); }; + + function next() { + S.prev = S.token; + if (S.peeked) { + S.token = S.peeked; + S.peeked = null; + } else { + S.token = S.input(); + } + return S.token; + }; + + function prev() { + return S.prev; + }; + + function croak(msg, line, col, pos) { + var ctx = S.input.context(); + js_error(msg, + line != null ? line : ctx.tokline, + col != null ? col : ctx.tokcol, + pos != null ? pos : ctx.tokpos); + }; + + function token_error(token, msg) { + croak(msg, token.line, token.col); + }; + + function unexpected(token) { + if (token == null) + token = S.token; + token_error(token, "Unexpected token: " + token.type + " (" + token.value + ")"); + }; + + function expect_token(type, val) { + if (is(type, val)) { + return next(); + } + token_error(S.token, "Unexpected token " + S.token.type + ", expected " + type); + }; + + function expect(punc) { return expect_token("punc", punc); }; + + function can_insert_semicolon() { + return !exigent_mode && ( + S.token.nlb || is("eof") || is("punc", "}") + ); + }; + + function semicolon() { + if (is("punc", ";")) next(); + else if (!can_insert_semicolon()) unexpected(); + }; + + function as() { + return slice(arguments); + }; + + function parenthesised() { + expect("("); + var ex = expression(); + expect(")"); + return ex; + }; + + function add_tokens(str, start, end) { + return str instanceof NodeWithToken ? str : new NodeWithToken(str, start, end); + }; + + function maybe_embed_tokens(parser) { + if (embed_tokens) return function() { + var start = S.token; + var ast = parser.apply(this, arguments); + ast[0] = add_tokens(ast[0], start, prev()); + return ast; + }; + else return parser; + }; + + var statement = maybe_embed_tokens(function() { + if (is("operator", "/") || is("operator", "/=")) { + S.peeked = null; + S.token = S.input(S.token.value.substr(1)); // force regexp + } + switch (S.token.type) { + case "num": + case "string": + case "regexp": + case "operator": + case "atom": + return simple_statement(); + + case "name": + return is_token(peek(), "punc", ":") + ? labeled_statement(prog1(S.token.value, next, next)) + : simple_statement(); + + case "punc": + switch (S.token.value) { + case "{": + return as("block", block_()); + case "[": + case "(": + return simple_statement(); + case ";": + next(); + return as("block"); + default: + unexpected(); + } + + case "keyword": + switch (prog1(S.token.value, next)) { + case "break": + return break_cont("break"); + + case "continue": + return break_cont("continue"); + + case "debugger": + semicolon(); + return as("debugger"); + + case "do": + return (function(body){ + expect_token("keyword", "while"); + return as("do", prog1(parenthesised, semicolon), body); + })(in_loop(statement)); + + case "for": + return for_(); + + case "function": + return function_(true); + + case "if": + return if_(); + + case "return": + if (S.in_function == 0) + croak("'return' outside of function"); + return as("return", + is("punc", ";") + ? (next(), null) + : can_insert_semicolon() + ? null + : prog1(expression, semicolon)); + + case "switch": + return as("switch", parenthesised(), switch_block_()); + + case "throw": + if (S.token.nlb) + croak("Illegal newline after 'throw'"); + return as("throw", prog1(expression, semicolon)); + + case "try": + return try_(); + + case "var": + return prog1(var_, semicolon); + + case "const": + return prog1(const_, semicolon); + + case "while": + return as("while", parenthesised(), in_loop(statement)); + + case "with": + return as("with", parenthesised(), statement()); + + default: + unexpected(); + } + } + }); + + function labeled_statement(label) { + S.labels.push(label); + var start = S.token, stat = statement(); + if (exigent_mode && !HOP(STATEMENTS_WITH_LABELS, stat[0])) + unexpected(start); + S.labels.pop(); + return as("label", label, stat); + }; + + function simple_statement() { + return as("stat", prog1(expression, semicolon)); + }; + + function break_cont(type) { + var name; + if (!can_insert_semicolon()) { + name = is("name") ? S.token.value : null; + } + if (name != null) { + next(); + if (!member(name, S.labels)) + croak("Label " + name + " without matching loop or statement"); + } + else if (S.in_loop == 0) + croak(type + " not inside a loop or switch"); + semicolon(); + return as(type, name); + }; + + function for_() { + expect("("); + var init = null; + if (!is("punc", ";")) { + init = is("keyword", "var") + ? (next(), var_(true)) + : expression(true, true); + if (is("operator", "in")) + return for_in(init); + } + return regular_for(init); + }; + + function regular_for(init) { + expect(";"); + var test = is("punc", ";") ? null : expression(); + expect(";"); + var step = is("punc", ")") ? null : expression(); + expect(")"); + return as("for", init, test, step, in_loop(statement)); + }; + + function for_in(init) { + var lhs = init[0] == "var" ? as("name", init[1][0]) : init; + next(); + var obj = expression(); + expect(")"); + return as("for-in", init, lhs, obj, in_loop(statement)); + }; + + var function_ = function(in_statement) { + var name = is("name") ? prog1(S.token.value, next) : null; + if (in_statement && !name) + unexpected(); + expect("("); + return as(in_statement ? "defun" : "function", + name, + // arguments + (function(first, a){ + while (!is("punc", ")")) { + if (first) first = false; else expect(","); + if (!is("name")) unexpected(); + a.push(S.token.value); + next(); + } + next(); + return a; + })(true, []), + // body + (function(){ + ++S.in_function; + var loop = S.in_loop; + S.in_loop = 0; + var a = block_(); + --S.in_function; + S.in_loop = loop; + return a; + })()); + }; + + function if_() { + var cond = parenthesised(), body = statement(), belse; + if (is("keyword", "else")) { + next(); + belse = statement(); + } + return as("if", cond, body, belse); + }; + + function block_() { + expect("{"); + var a = []; + while (!is("punc", "}")) { + if (is("eof")) unexpected(); + a.push(statement()); + } + next(); + return a; + }; + + var switch_block_ = curry(in_loop, function(){ + expect("{"); + var a = [], cur = null; + while (!is("punc", "}")) { + if (is("eof")) unexpected(); + if (is("keyword", "case")) { + next(); + cur = []; + a.push([ expression(), cur ]); + expect(":"); + } + else if (is("keyword", "default")) { + next(); + expect(":"); + cur = []; + a.push([ null, cur ]); + } + else { + if (!cur) unexpected(); + cur.push(statement()); + } + } + next(); + return a; + }); + + function try_() { + var body = block_(), bcatch, bfinally; + if (is("keyword", "catch")) { + next(); + expect("("); + if (!is("name")) + croak("Name expected"); + var name = S.token.value; + next(); + expect(")"); + bcatch = [ name, block_() ]; + } + if (is("keyword", "finally")) { + next(); + bfinally = block_(); + } + if (!bcatch && !bfinally) + croak("Missing catch/finally blocks"); + return as("try", body, bcatch, bfinally); + }; + + function vardefs(no_in) { + var a = []; + for (;;) { + if (!is("name")) + unexpected(); + var name = S.token.value; + next(); + if (is("operator", "=")) { + next(); + a.push([ name, expression(false, no_in) ]); + } else { + a.push([ name ]); + } + if (!is("punc", ",")) + break; + next(); + } + return a; + }; + + function var_(no_in) { + return as("var", vardefs(no_in)); + }; + + function const_() { + return as("const", vardefs()); + }; + + function new_() { + var newexp = expr_atom(false), args; + if (is("punc", "(")) { + next(); + args = expr_list(")"); + } else { + args = []; + } + return subscripts(as("new", newexp, args), true); + }; + + var expr_atom = maybe_embed_tokens(function(allow_calls) { + if (is("operator", "new")) { + next(); + return new_(); + } + if (is("punc")) { + switch (S.token.value) { + case "(": + next(); + return subscripts(prog1(expression, curry(expect, ")")), allow_calls); + case "[": + next(); + return subscripts(array_(), allow_calls); + case "{": + next(); + return subscripts(object_(), allow_calls); + } + unexpected(); + } + if (is("keyword", "function")) { + next(); + return subscripts(function_(false), allow_calls); + } + if (HOP(ATOMIC_START_TOKEN, S.token.type)) { + var atom = S.token.type == "regexp" + ? as("regexp", S.token.value[0], S.token.value[1]) + : as(S.token.type, S.token.value); + return subscripts(prog1(atom, next), allow_calls); + } + unexpected(); + }); + + function expr_list(closing, allow_trailing_comma, allow_empty) { + var first = true, a = []; + while (!is("punc", closing)) { + if (first) first = false; else expect(","); + if (allow_trailing_comma && is("punc", closing)) break; + if (is("punc", ",") && allow_empty) { + a.push([ "atom", "undefined" ]); + } else { + a.push(expression(false)); + } + } + next(); + return a; + }; + + function array_() { + return as("array", expr_list("]", !exigent_mode, true)); + }; + + function object_() { + var first = true, a = []; + while (!is("punc", "}")) { + if (first) first = false; else expect(","); + if (!exigent_mode && is("punc", "}")) + // allow trailing comma + break; + var type = S.token.type; + var name = as_property_name(); + if (type == "name" && (name == "get" || name == "set") && !is("punc", ":")) { + a.push([ as_name(), function_(false), name ]); + } else { + expect(":"); + a.push([ name, expression(false) ]); + } + } + next(); + return as("object", a); + }; + + function as_property_name() { + switch (S.token.type) { + case "num": + case "string": + return prog1(S.token.value, next); + } + return as_name(); + }; + + function as_name() { + switch (S.token.type) { + case "name": + case "operator": + case "keyword": + case "atom": + return prog1(S.token.value, next); + default: + unexpected(); + } + }; + + function subscripts(expr, allow_calls) { + if (is("punc", ".")) { + next(); + return subscripts(as("dot", expr, as_name()), allow_calls); + } + if (is("punc", "[")) { + next(); + return subscripts(as("sub", expr, prog1(expression, curry(expect, "]"))), allow_calls); + } + if (allow_calls && is("punc", "(")) { + next(); + return subscripts(as("call", expr, expr_list(")")), true); + } + return expr; + }; + + function maybe_unary(allow_calls) { + if (is("operator") && HOP(UNARY_PREFIX, S.token.value)) { + return make_unary("unary-prefix", + prog1(S.token.value, next), + maybe_unary(allow_calls)); + } + var val = expr_atom(allow_calls); + while (is("operator") && HOP(UNARY_POSTFIX, S.token.value) && !S.token.nlb) { + val = make_unary("unary-postfix", S.token.value, val); + next(); + } + return val; + }; + + function make_unary(tag, op, expr) { + if ((op == "++" || op == "--") && !is_assignable(expr)) + croak("Invalid use of " + op + " operator"); + return as(tag, op, expr); + }; + + function expr_op(left, min_prec, no_in) { + var op = is("operator") ? S.token.value : null; + if (op && op == "in" && no_in) op = null; + var prec = op != null ? PRECEDENCE[op] : null; + if (prec != null && prec > min_prec) { + next(); + var right = expr_op(maybe_unary(true), prec, no_in); + return expr_op(as("binary", op, left, right), min_prec, no_in); + } + return left; + }; + + function expr_ops(no_in) { + return expr_op(maybe_unary(true), 0, no_in); + }; + + function maybe_conditional(no_in) { + var expr = expr_ops(no_in); + if (is("operator", "?")) { + next(); + var yes = expression(false); + expect(":"); + return as("conditional", expr, yes, expression(false, no_in)); + } + return expr; + }; + + function is_assignable(expr) { + if (!exigent_mode) return true; + switch (expr[0]+"") { + case "dot": + case "sub": + case "new": + case "call": + return true; + case "name": + return expr[1] != "this"; + } + }; + + function maybe_assign(no_in) { + var left = maybe_conditional(no_in), val = S.token.value; + if (is("operator") && HOP(ASSIGNMENT, val)) { + if (is_assignable(left)) { + next(); + return as("assign", ASSIGNMENT[val], left, maybe_assign(no_in)); + } + croak("Invalid assignment"); + } + return left; + }; + + var expression = maybe_embed_tokens(function(commas, no_in) { + if (arguments.length == 0) + commas = true; + var expr = maybe_assign(no_in); + if (commas && is("punc", ",")) { + next(); + return as("seq", expr, expression(true, no_in)); + } + return expr; + }); + + function in_loop(cont) { + try { + ++S.in_loop; + return cont(); + } finally { + --S.in_loop; + } + }; + + return as("toplevel", (function(a){ + while (!is("eof")) + a.push(statement()); + return a; + })([])); + +}; + +/* -----[ Utilities ]----- */ + +function curry(f) { + var args = slice(arguments, 1); + return function() { return f.apply(this, args.concat(slice(arguments))); }; +}; + +function prog1(ret) { + if (ret instanceof Function) + ret = ret(); + for (var i = 1, n = arguments.length; --n > 0; ++i) + arguments[i](); + return ret; +}; + +function array_to_hash(a) { + var ret = {}; + for (var i = 0; i < a.length; ++i) + ret[a[i]] = true; + return ret; +}; + +function slice(a, start) { + return Array.prototype.slice.call(a, start || 0); +}; + +function characters(str) { + return str.split(""); +}; + +function member(name, array) { + for (var i = array.length; --i >= 0;) + if (array[i] == name) + return true; + return false; +}; + +function HOP(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +}; + +var warn = function() {}; + +/* -----[ Exports ]----- */ + +exports.tokenizer = tokenizer; +exports.parse = parse; +exports.slice = slice; +exports.curry = curry; +exports.member = member; +exports.array_to_hash = array_to_hash; +exports.PRECEDENCE = PRECEDENCE; +exports.KEYWORDS_ATOM = KEYWORDS_ATOM; +exports.RESERVED_WORDS = RESERVED_WORDS; +exports.KEYWORDS = KEYWORDS; +exports.ATOMIC_START_TOKEN = ATOMIC_START_TOKEN; +exports.OPERATORS = OPERATORS; +exports.is_alphanumeric_char = is_alphanumeric_char; +exports.set_logger = function(logger) { + warn = logger; +}; + +}); +define('uglifyjs/squeeze-more', ["require", "exports", "module", "./parse-js", "./process"], function(require, exports, module) { + +var jsp = require("./parse-js"), + pro = require("./process"), + slice = jsp.slice, + member = jsp.member, + curry = jsp.curry, + MAP = pro.MAP, + PRECEDENCE = jsp.PRECEDENCE, + OPERATORS = jsp.OPERATORS; + +function ast_squeeze_more(ast) { + var w = pro.ast_walker(), walk = w.walk, scope; + function with_scope(s, cont) { + var save = scope, ret; + scope = s; + ret = cont(); + scope = save; + return ret; + }; + function _lambda(name, args, body) { + return [ this[0], name, args, with_scope(body.scope, curry(MAP, body, walk)) ]; + }; + return w.with_walkers({ + "toplevel": function(body) { + return [ this[0], with_scope(this.scope, curry(MAP, body, walk)) ]; + }, + "function": _lambda, + "defun": _lambda, + "new": function(ctor, args) { + if (ctor[0] == "name") { + if (ctor[1] == "Array" && !scope.has("Array")) { + if (args.length != 1) { + return [ "array", args ]; + } else { + return walk([ "call", [ "name", "Array" ], args ]); + } + } else if (ctor[1] == "Object" && !scope.has("Object")) { + if (!args.length) { + return [ "object", [] ]; + } else { + return walk([ "call", [ "name", "Object" ], args ]); + } + } else if ((ctor[1] == "RegExp" || ctor[1] == "Function" || ctor[1] == "Error") && !scope.has(ctor[1])) { + return walk([ "call", [ "name", ctor[1] ], args]); + } + } + }, + "call": function(expr, args) { + if (expr[0] == "dot" && expr[2] == "toString" && args.length == 0) { + // foo.toString() ==> foo+"" + return [ "binary", "+", expr[1], [ "string", "" ]]; + } + if (expr[0] == "name") { + if (expr[1] == "Array" && args.length != 1 && !scope.has("Array")) { + return [ "array", args ]; + } + if (expr[1] == "Object" && !args.length && !scope.has("Object")) { + return [ "object", [] ]; + } + if (expr[1] == "String" && !scope.has("String")) { + return [ "binary", "+", args[0], [ "string", "" ]]; + } + } + } + }, function() { + return walk(pro.ast_add_scope(ast)); + }); +}; + +exports.ast_squeeze_more = ast_squeeze_more; + +});define('uglifyjs/process', ["require", "exports", "module", "./parse-js", "./squeeze-more"], function(require, exports, module) { + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + + This version is suitable for Node.js. With minimal changes (the + exports stuff) it should work on any JS platform. + + This file implements some AST processors. They work on data built + by parse-js. + + Exported functions: + + - ast_mangle(ast, options) -- mangles the variable/function names + in the AST. Returns an AST. + + - ast_squeeze(ast) -- employs various optimizations to make the + final generated code even smaller. Returns an AST. + + - gen_code(ast, options) -- generates JS code from the AST. Pass + true (or an object, see the code for some options) as second + argument to get "pretty" (indented) code. + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2010 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +var jsp = require("./parse-js"), + slice = jsp.slice, + member = jsp.member, + PRECEDENCE = jsp.PRECEDENCE, + OPERATORS = jsp.OPERATORS; + +/* -----[ helper for AST traversal ]----- */ + +function ast_walker() { + function _vardefs(defs) { + return [ this[0], MAP(defs, function(def){ + var a = [ def[0] ]; + if (def.length > 1) + a[1] = walk(def[1]); + return a; + }) ]; + }; + function _block(statements) { + var out = [ this[0] ]; + if (statements != null) + out.push(MAP(statements, walk)); + return out; + }; + var walkers = { + "string": function(str) { + return [ this[0], str ]; + }, + "num": function(num) { + return [ this[0], num ]; + }, + "name": function(name) { + return [ this[0], name ]; + }, + "toplevel": function(statements) { + return [ this[0], MAP(statements, walk) ]; + }, + "block": _block, + "splice": _block, + "var": _vardefs, + "const": _vardefs, + "try": function(t, c, f) { + return [ + this[0], + MAP(t, walk), + c != null ? [ c[0], MAP(c[1], walk) ] : null, + f != null ? MAP(f, walk) : null + ]; + }, + "throw": function(expr) { + return [ this[0], walk(expr) ]; + }, + "new": function(ctor, args) { + return [ this[0], walk(ctor), MAP(args, walk) ]; + }, + "switch": function(expr, body) { + return [ this[0], walk(expr), MAP(body, function(branch){ + return [ branch[0] ? walk(branch[0]) : null, + MAP(branch[1], walk) ]; + }) ]; + }, + "break": function(label) { + return [ this[0], label ]; + }, + "continue": function(label) { + return [ this[0], label ]; + }, + "conditional": function(cond, t, e) { + return [ this[0], walk(cond), walk(t), walk(e) ]; + }, + "assign": function(op, lvalue, rvalue) { + return [ this[0], op, walk(lvalue), walk(rvalue) ]; + }, + "dot": function(expr) { + return [ this[0], walk(expr) ].concat(slice(arguments, 1)); + }, + "call": function(expr, args) { + return [ this[0], walk(expr), MAP(args, walk) ]; + }, + "function": function(name, args, body) { + return [ this[0], name, args.slice(), MAP(body, walk) ]; + }, + "defun": function(name, args, body) { + return [ this[0], name, args.slice(), MAP(body, walk) ]; + }, + "if": function(conditional, t, e) { + return [ this[0], walk(conditional), walk(t), walk(e) ]; + }, + "for": function(init, cond, step, block) { + return [ this[0], walk(init), walk(cond), walk(step), walk(block) ]; + }, + "for-in": function(vvar, key, hash, block) { + return [ this[0], walk(vvar), walk(key), walk(hash), walk(block) ]; + }, + "while": function(cond, block) { + return [ this[0], walk(cond), walk(block) ]; + }, + "do": function(cond, block) { + return [ this[0], walk(cond), walk(block) ]; + }, + "return": function(expr) { + return [ this[0], walk(expr) ]; + }, + "binary": function(op, left, right) { + return [ this[0], op, walk(left), walk(right) ]; + }, + "unary-prefix": function(op, expr) { + return [ this[0], op, walk(expr) ]; + }, + "unary-postfix": function(op, expr) { + return [ this[0], op, walk(expr) ]; + }, + "sub": function(expr, subscript) { + return [ this[0], walk(expr), walk(subscript) ]; + }, + "object": function(props) { + return [ this[0], MAP(props, function(p){ + return p.length == 2 + ? [ p[0], walk(p[1]) ] + : [ p[0], walk(p[1]), p[2] ]; // get/set-ter + }) ]; + }, + "regexp": function(rx, mods) { + return [ this[0], rx, mods ]; + }, + "array": function(elements) { + return [ this[0], MAP(elements, walk) ]; + }, + "stat": function(stat) { + return [ this[0], walk(stat) ]; + }, + "seq": function() { + return [ this[0] ].concat(MAP(slice(arguments), walk)); + }, + "label": function(name, block) { + return [ this[0], name, walk(block) ]; + }, + "with": function(expr, block) { + return [ this[0], walk(expr), walk(block) ]; + }, + "atom": function(name) { + return [ this[0], name ]; + } + }; + + var user = {}; + var stack = []; + function walk(ast) { + if (ast == null) + return null; + try { + stack.push(ast); + var type = ast[0]; + var gen = user[type]; + if (gen) { + var ret = gen.apply(ast, ast.slice(1)); + if (ret != null) + return ret; + } + gen = walkers[type]; + return gen.apply(ast, ast.slice(1)); + } finally { + stack.pop(); + } + }; + + function dive(ast) { + if (ast == null) + return null; + try { + stack.push(ast); + return walkers[ast[0]].apply(ast, ast.slice(1)); + } finally { + stack.pop(); + } + }; + + function with_walkers(walkers, cont){ + var save = {}, i; + for (i in walkers) if (HOP(walkers, i)) { + save[i] = user[i]; + user[i] = walkers[i]; + } + var ret = cont(); + for (i in save) if (HOP(save, i)) { + if (!save[i]) delete user[i]; + else user[i] = save[i]; + } + return ret; + }; + + return { + walk: walk, + dive: dive, + with_walkers: with_walkers, + parent: function() { + return stack[stack.length - 2]; // last one is current node + }, + stack: function() { + return stack; + } + }; +}; + +/* -----[ Scope and mangling ]----- */ + +function Scope(parent) { + this.names = {}; // names defined in this scope + this.mangled = {}; // mangled names (orig.name => mangled) + this.rev_mangled = {}; // reverse lookup (mangled => orig.name) + this.cname = -1; // current mangled name + this.refs = {}; // names referenced from this scope + this.uses_with = false; // will become TRUE if with() is detected in this or any subscopes + this.uses_eval = false; // will become TRUE if eval() is detected in this or any subscopes + this.parent = parent; // parent scope + this.children = []; // sub-scopes + if (parent) { + this.level = parent.level + 1; + parent.children.push(this); + } else { + this.level = 0; + } +}; + +var base54 = (function(){ + var DIGITS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_"; + return function(num) { + var ret = ""; + do { + ret = DIGITS.charAt(num % 54) + ret; + num = Math.floor(num / 54); + } while (num > 0); + return ret; + }; +})(); + +Scope.prototype = { + has: function(name) { + for (var s = this; s; s = s.parent) + if (HOP(s.names, name)) + return s; + }, + has_mangled: function(mname) { + for (var s = this; s; s = s.parent) + if (HOP(s.rev_mangled, mname)) + return s; + }, + toJSON: function() { + return { + names: this.names, + uses_eval: this.uses_eval, + uses_with: this.uses_with + }; + }, + + next_mangled: function() { + // we must be careful that the new mangled name: + // + // 1. doesn't shadow a mangled name from a parent + // scope, unless we don't reference the original + // name from this scope OR from any sub-scopes! + // This will get slow. + // + // 2. doesn't shadow an original name from a parent + // scope, in the event that the name is not mangled + // in the parent scope and we reference that name + // here OR IN ANY SUBSCOPES! + // + // 3. doesn't shadow a name that is referenced but not + // defined (possibly global defined elsewhere). + for (;;) { + var m = base54(++this.cname), prior; + + // case 1. + prior = this.has_mangled(m); + if (prior && this.refs[prior.rev_mangled[m]] === prior) + continue; + + // case 2. + prior = this.has(m); + if (prior && prior !== this && this.refs[m] === prior && !prior.has_mangled(m)) + continue; + + // case 3. + if (HOP(this.refs, m) && this.refs[m] == null) + continue; + + // I got "do" once. :-/ + if (!is_identifier(m)) + continue; + + return m; + } + }, + set_mangle: function(name, m) { + this.rev_mangled[m] = name; + return this.mangled[name] = m; + }, + get_mangled: function(name, newMangle) { + if (this.uses_eval || this.uses_with) return name; // no mangle if eval or with is in use + var s = this.has(name); + if (!s) return name; // not in visible scope, no mangle + if (HOP(s.mangled, name)) return s.mangled[name]; // already mangled in this scope + if (!newMangle) return name; // not found and no mangling requested + return s.set_mangle(name, s.next_mangled()); + }, + references: function(name) { + return name && !this.parent || this.uses_with || this.uses_eval || this.refs[name]; + }, + define: function(name, type) { + if (name != null) { + if (type == "var" || !HOP(this.names, name)) + this.names[name] = type || "var"; + return name; + } + } +}; + +function ast_add_scope(ast) { + + var current_scope = null; + var w = ast_walker(), walk = w.walk; + var having_eval = []; + + function with_new_scope(cont) { + current_scope = new Scope(current_scope); + current_scope.labels = new Scope(); + var ret = current_scope.body = cont(); + ret.scope = current_scope; + current_scope = current_scope.parent; + return ret; + }; + + function define(name, type) { + return current_scope.define(name, type); + }; + + function reference(name) { + current_scope.refs[name] = true; + }; + + function _lambda(name, args, body) { + var is_defun = this[0] == "defun"; + return [ this[0], is_defun ? define(name, "defun") : name, args, with_new_scope(function(){ + if (!is_defun) define(name, "lambda"); + MAP(args, function(name){ define(name, "arg") }); + return MAP(body, walk); + })]; + }; + + function _vardefs(type) { + return function(defs) { + MAP(defs, function(d){ + define(d[0], type); + if (d[1]) reference(d[0]); + }); + }; + }; + + function _breacont(label) { + if (label) + current_scope.labels.refs[label] = true; + }; + + return with_new_scope(function(){ + // process AST + var ret = w.with_walkers({ + "function": _lambda, + "defun": _lambda, + "label": function(name, stat) { current_scope.labels.define(name) }, + "break": _breacont, + "continue": _breacont, + "with": function(expr, block) { + for (var s = current_scope; s; s = s.parent) + s.uses_with = true; + }, + "var": _vardefs("var"), + "const": _vardefs("const"), + "try": function(t, c, f) { + if (c != null) return [ + this[0], + MAP(t, walk), + [ define(c[0], "catch"), MAP(c[1], walk) ], + f != null ? MAP(f, walk) : null + ]; + }, + "name": function(name) { + if (name == "eval") + having_eval.push(current_scope); + reference(name); + } + }, function(){ + return walk(ast); + }); + + // the reason why we need an additional pass here is + // that names can be used prior to their definition. + + // scopes where eval was detected and their parents + // are marked with uses_eval, unless they define the + // "eval" name. + MAP(having_eval, function(scope){ + if (!scope.has("eval")) while (scope) { + scope.uses_eval = true; + scope = scope.parent; + } + }); + + // for referenced names it might be useful to know + // their origin scope. current_scope here is the + // toplevel one. + function fixrefs(scope, i) { + // do children first; order shouldn't matter + for (i = scope.children.length; --i >= 0;) + fixrefs(scope.children[i]); + for (i in scope.refs) if (HOP(scope.refs, i)) { + // find origin scope and propagate the reference to origin + for (var origin = scope.has(i), s = scope; s; s = s.parent) { + s.refs[i] = origin; + if (s === origin) break; + } + } + }; + fixrefs(current_scope); + + return ret; + }); + +}; + +/* -----[ mangle names ]----- */ + +function ast_mangle(ast, options) { + var w = ast_walker(), walk = w.walk, scope; + options = options || {}; + + function get_mangled(name, newMangle) { + if (!options.toplevel && !scope.parent) return name; // don't mangle toplevel + if (options.except && member(name, options.except)) + return name; + return scope.get_mangled(name, newMangle); + }; + + function get_define(name) { + if (options.defines) { + // we always lookup a defined symbol for the current scope FIRST, so declared + // vars trump a DEFINE symbol, but if no such var is found, then match a DEFINE value + if (!scope.has(name)) { + if (HOP(options.defines, name)) { + return options.defines[name]; + } + } + return null; + } + }; + + function _lambda(name, args, body) { + if (!options.no_functions) { + var is_defun = this[0] == "defun", extra; + if (name) { + if (is_defun) name = get_mangled(name); + else if (body.scope.references(name)) { + extra = {}; + if (!(scope.uses_eval || scope.uses_with)) + name = extra[name] = scope.next_mangled(); + else + extra[name] = name; + } + else name = null; + } + } + body = with_scope(body.scope, function(){ + args = MAP(args, function(name){ return get_mangled(name) }); + return MAP(body, walk); + }, extra); + return [ this[0], name, args, body ]; + }; + + function with_scope(s, cont, extra) { + var _scope = scope; + scope = s; + if (extra) for (var i in extra) if (HOP(extra, i)) { + s.set_mangle(i, extra[i]); + } + for (var i in s.names) if (HOP(s.names, i)) { + get_mangled(i, true); + } + var ret = cont(); + ret.scope = s; + scope = _scope; + return ret; + }; + + function _vardefs(defs) { + return [ this[0], MAP(defs, function(d){ + return [ get_mangled(d[0]), walk(d[1]) ]; + }) ]; + }; + + function _breacont(label) { + if (label) return [ this[0], scope.labels.get_mangled(label) ]; + }; + + return w.with_walkers({ + "function": _lambda, + "defun": function() { + // move function declarations to the top when + // they are not in some block. + var ast = _lambda.apply(this, arguments); + switch (w.parent()[0]) { + case "toplevel": + case "function": + case "defun": + return MAP.at_top(ast); + } + return ast; + }, + "label": function(label, stat) { + if (scope.labels.refs[label]) return [ + this[0], + scope.labels.get_mangled(label, true), + walk(stat) + ]; + return walk(stat); + }, + "break": _breacont, + "continue": _breacont, + "var": _vardefs, + "const": _vardefs, + "name": function(name) { + return get_define(name) || [ this[0], get_mangled(name) ]; + }, + "try": function(t, c, f) { + return [ this[0], + MAP(t, walk), + c != null ? [ get_mangled(c[0]), MAP(c[1], walk) ] : null, + f != null ? MAP(f, walk) : null ]; + }, + "toplevel": function(body) { + var self = this; + return with_scope(self.scope, function(){ + return [ self[0], MAP(body, walk) ]; + }); + } + }, function() { + return walk(ast_add_scope(ast)); + }); +}; + +/* -----[ + - compress foo["bar"] into foo.bar, + - remove block brackets {} where possible + - join consecutive var declarations + - various optimizations for IFs: + - if (cond) foo(); else bar(); ==> cond?foo():bar(); + - if (cond) foo(); ==> cond&&foo(); + - if (foo) return bar(); else return baz(); ==> return foo?bar():baz(); // also for throw + - if (foo) return bar(); else something(); ==> {if(foo)return bar();something()} + ]----- */ + +var warn = function(){}; + +function best_of(ast1, ast2) { + return gen_code(ast1).length > gen_code(ast2[0] == "stat" ? ast2[1] : ast2).length ? ast2 : ast1; +}; + +function last_stat(b) { + if (b[0] == "block" && b[1] && b[1].length > 0) + return b[1][b[1].length - 1]; + return b; +} + +function aborts(t) { + if (t) switch (last_stat(t)[0]) { + case "return": + case "break": + case "continue": + case "throw": + return true; + } +}; + +function boolean_expr(expr) { + return ( (expr[0] == "unary-prefix" + && member(expr[1], [ "!", "delete" ])) || + + (expr[0] == "binary" + && member(expr[1], [ "in", "instanceof", "==", "!=", "===", "!==", "<", "<=", ">=", ">" ])) || + + (expr[0] == "binary" + && member(expr[1], [ "&&", "||" ]) + && boolean_expr(expr[2]) + && boolean_expr(expr[3])) || + + (expr[0] == "conditional" + && boolean_expr(expr[2]) + && boolean_expr(expr[3])) || + + (expr[0] == "assign" + && expr[1] === true + && boolean_expr(expr[3])) || + + (expr[0] == "seq" + && boolean_expr(expr[expr.length - 1])) + ); +}; + +function empty(b) { + return !b || (b[0] == "block" && (!b[1] || b[1].length == 0)); +}; + +function is_string(node) { + return (node[0] == "string" || + node[0] == "unary-prefix" && node[1] == "typeof" || + node[0] == "binary" && node[1] == "+" && + (is_string(node[2]) || is_string(node[3]))); +}; + +var when_constant = (function(){ + + var $NOT_CONSTANT = {}; + + // this can only evaluate constant expressions. If it finds anything + // not constant, it throws $NOT_CONSTANT. + function evaluate(expr) { + switch (expr[0]) { + case "string": + case "num": + return expr[1]; + case "name": + case "atom": + switch (expr[1]) { + case "true": return true; + case "false": return false; + case "null": return null; + } + break; + case "unary-prefix": + switch (expr[1]) { + case "!": return !evaluate(expr[2]); + case "typeof": return typeof evaluate(expr[2]); + case "~": return ~evaluate(expr[2]); + case "-": return -evaluate(expr[2]); + case "+": return +evaluate(expr[2]); + } + break; + case "binary": + var left = expr[2], right = expr[3]; + switch (expr[1]) { + case "&&" : return evaluate(left) && evaluate(right); + case "||" : return evaluate(left) || evaluate(right); + case "|" : return evaluate(left) | evaluate(right); + case "&" : return evaluate(left) & evaluate(right); + case "^" : return evaluate(left) ^ evaluate(right); + case "+" : return evaluate(left) + evaluate(right); + case "*" : return evaluate(left) * evaluate(right); + case "/" : return evaluate(left) / evaluate(right); + case "%" : return evaluate(left) % evaluate(right); + case "-" : return evaluate(left) - evaluate(right); + case "<<" : return evaluate(left) << evaluate(right); + case ">>" : return evaluate(left) >> evaluate(right); + case ">>>" : return evaluate(left) >>> evaluate(right); + case "==" : return evaluate(left) == evaluate(right); + case "===" : return evaluate(left) === evaluate(right); + case "!=" : return evaluate(left) != evaluate(right); + case "!==" : return evaluate(left) !== evaluate(right); + case "<" : return evaluate(left) < evaluate(right); + case "<=" : return evaluate(left) <= evaluate(right); + case ">" : return evaluate(left) > evaluate(right); + case ">=" : return evaluate(left) >= evaluate(right); + case "in" : return evaluate(left) in evaluate(right); + case "instanceof" : return evaluate(left) instanceof evaluate(right); + } + } + throw $NOT_CONSTANT; + }; + + return function(expr, yes, no) { + try { + var val = evaluate(expr), ast; + switch (typeof val) { + case "string": ast = [ "string", val ]; break; + case "number": ast = [ "num", val ]; break; + case "boolean": ast = [ "name", String(val) ]; break; + default: throw new Error("Can't handle constant of type: " + (typeof val)); + } + return yes.call(expr, ast, val); + } catch(ex) { + if (ex === $NOT_CONSTANT) { + if (expr[0] == "binary" + && (expr[1] == "===" || expr[1] == "!==") + && ((is_string(expr[2]) && is_string(expr[3])) + || (boolean_expr(expr[2]) && boolean_expr(expr[3])))) { + expr[1] = expr[1].substr(0, 2); + } + else if (no && expr[0] == "binary" + && (expr[1] == "||" || expr[1] == "&&")) { + // the whole expression is not constant but the lval may be... + try { + var lval = evaluate(expr[2]); + expr = ((expr[1] == "&&" && (lval ? expr[3] : lval)) || + (expr[1] == "||" && (lval ? lval : expr[3])) || + expr); + } catch(ex2) { + // IGNORE... lval is not constant + } + } + return no ? no.call(expr, expr) : null; + } + else throw ex; + } + }; + +})(); + +function warn_unreachable(ast) { + if (!empty(ast)) + warn("Dropping unreachable code: " + gen_code(ast, true)); +}; + +function prepare_ifs(ast) { + var w = ast_walker(), walk = w.walk; + // In this first pass, we rewrite ifs which abort with no else with an + // if-else. For example: + // + // if (x) { + // blah(); + // return y; + // } + // foobar(); + // + // is rewritten into: + // + // if (x) { + // blah(); + // return y; + // } else { + // foobar(); + // } + function redo_if(statements) { + statements = MAP(statements, walk); + + for (var i = 0; i < statements.length; ++i) { + var fi = statements[i]; + if (fi[0] != "if") continue; + + if (fi[3] && walk(fi[3])) continue; + + var t = walk(fi[2]); + if (!aborts(t)) continue; + + var conditional = walk(fi[1]); + + var e_body = statements.slice(i + 1); + var e = e_body.length == 1 ? e_body[0] : [ "block", e_body ]; + + var ret = statements.slice(0, i).concat([ [ + fi[0], // "if" + conditional, // conditional + t, // then + e // else + ] ]); + + return redo_if(ret); + } + + return statements; + }; + + function redo_if_lambda(name, args, body) { + body = redo_if(body); + return [ this[0], name, args, body ]; + }; + + function redo_if_block(statements) { + return [ this[0], statements != null ? redo_if(statements) : null ]; + }; + + return w.with_walkers({ + "defun": redo_if_lambda, + "function": redo_if_lambda, + "block": redo_if_block, + "splice": redo_if_block, + "toplevel": function(statements) { + return [ this[0], redo_if(statements) ]; + }, + "try": function(t, c, f) { + return [ + this[0], + redo_if(t), + c != null ? [ c[0], redo_if(c[1]) ] : null, + f != null ? redo_if(f) : null + ]; + } + }, function() { + return walk(ast); + }); +}; + +function for_side_effects(ast, handler) { + var w = ast_walker(), walk = w.walk; + var $stop = {}, $restart = {}; + function stop() { throw $stop }; + function restart() { throw $restart }; + function found(){ return handler.call(this, this, w, stop, restart) }; + function unary(op) { + if (op == "++" || op == "--") + return found.apply(this, arguments); + }; + return w.with_walkers({ + "try": found, + "throw": found, + "return": found, + "new": found, + "switch": found, + "break": found, + "continue": found, + "assign": found, + "call": found, + "if": found, + "for": found, + "for-in": found, + "while": found, + "do": found, + "return": found, + "unary-prefix": unary, + "unary-postfix": unary, + "defun": found + }, function(){ + while (true) try { + walk(ast); + break; + } catch(ex) { + if (ex === $stop) break; + if (ex === $restart) continue; + throw ex; + } + }); +}; + +function ast_lift_variables(ast) { + var w = ast_walker(), walk = w.walk, scope; + function do_body(body, env) { + var _scope = scope; + scope = env; + body = MAP(body, walk); + var hash = {}, names = MAP(env.names, function(type, name){ + if (type != "var") return MAP.skip; + if (!env.references(name)) return MAP.skip; + hash[name] = true; + return [ name ]; + }); + if (names.length > 0) { + // looking for assignments to any of these variables. + // we can save considerable space by moving the definitions + // in the var declaration. + for_side_effects([ "block", body ], function(ast, walker, stop, restart) { + if (ast[0] == "assign" + && ast[1] === true + && ast[2][0] == "name" + && HOP(hash, ast[2][1])) { + // insert the definition into the var declaration + for (var i = names.length; --i >= 0;) { + if (names[i][0] == ast[2][1]) { + if (names[i][1]) // this name already defined, we must stop + stop(); + names[i][1] = ast[3]; // definition + names.push(names.splice(i, 1)[0]); + break; + } + } + // remove this assignment from the AST. + var p = walker.parent(); + if (p[0] == "seq") { + var a = p[2]; + a.unshift(0, p.length); + p.splice.apply(p, a); + } + else if (p[0] == "stat") { + p.splice(0, p.length, "block"); // empty statement + } + else { + stop(); + } + restart(); + } + stop(); + }); + body.unshift([ "var", names ]); + } + scope = _scope; + return body; + }; + function _vardefs(defs) { + var ret = null; + for (var i = defs.length; --i >= 0;) { + var d = defs[i]; + if (!d[1]) continue; + d = [ "assign", true, [ "name", d[0] ], d[1] ]; + if (ret == null) ret = d; + else ret = [ "seq", d, ret ]; + } + if (ret == null) { + if (w.parent()[0] == "for-in") + return [ "name", defs[0][0] ]; + return MAP.skip; + } + return [ "stat", ret ]; + }; + function _toplevel(body) { + return [ this[0], do_body(body, this.scope) ]; + }; + return w.with_walkers({ + "function": function(name, args, body){ + for (var i = args.length; --i >= 0 && !body.scope.references(args[i]);) + args.pop(); + if (!body.scope.references(name)) name = null; + return [ this[0], name, args, do_body(body, body.scope) ]; + }, + "defun": function(name, args, body){ + if (!scope.references(name)) return MAP.skip; + for (var i = args.length; --i >= 0 && !body.scope.references(args[i]);) + args.pop(); + return [ this[0], name, args, do_body(body, body.scope) ]; + }, + "var": _vardefs, + "toplevel": _toplevel + }, function(){ + return walk(ast_add_scope(ast)); + }); +}; + +function ast_squeeze(ast, options) { + options = defaults(options, { + make_seqs : true, + dead_code : true, + no_warnings : false, + keep_comps : true + }); + + var w = ast_walker(), walk = w.walk; + + function negate(c) { + var not_c = [ "unary-prefix", "!", c ]; + switch (c[0]) { + case "unary-prefix": + return c[1] == "!" && boolean_expr(c[2]) ? c[2] : not_c; + case "seq": + c = slice(c); + c[c.length - 1] = negate(c[c.length - 1]); + return c; + case "conditional": + return best_of(not_c, [ "conditional", c[1], negate(c[2]), negate(c[3]) ]); + case "binary": + var op = c[1], left = c[2], right = c[3]; + if (!options.keep_comps) switch (op) { + case "<=" : return [ "binary", ">", left, right ]; + case "<" : return [ "binary", ">=", left, right ]; + case ">=" : return [ "binary", "<", left, right ]; + case ">" : return [ "binary", "<=", left, right ]; + } + switch (op) { + case "==" : return [ "binary", "!=", left, right ]; + case "!=" : return [ "binary", "==", left, right ]; + case "===" : return [ "binary", "!==", left, right ]; + case "!==" : return [ "binary", "===", left, right ]; + case "&&" : return best_of(not_c, [ "binary", "||", negate(left), negate(right) ]); + case "||" : return best_of(not_c, [ "binary", "&&", negate(left), negate(right) ]); + } + break; + } + return not_c; + }; + + function make_conditional(c, t, e) { + var make_real_conditional = function() { + if (c[0] == "unary-prefix" && c[1] == "!") { + return e ? [ "conditional", c[2], e, t ] : [ "binary", "||", c[2], t ]; + } else { + return e ? best_of( + [ "conditional", c, t, e ], + [ "conditional", negate(c), e, t ] + ) : [ "binary", "&&", c, t ]; + } + }; + // shortcut the conditional if the expression has a constant value + return when_constant(c, function(ast, val){ + warn_unreachable(val ? e : t); + return (val ? t : e); + }, make_real_conditional); + }; + + function rmblock(block) { + if (block != null && block[0] == "block" && block[1]) { + if (block[1].length == 1) + block = block[1][0]; + else if (block[1].length == 0) + block = [ "block" ]; + } + return block; + }; + + function _lambda(name, args, body) { + return [ this[0], name, args, tighten(body, "lambda") ]; + }; + + // this function does a few things: + // 1. discard useless blocks + // 2. join consecutive var declarations + // 3. remove obviously dead code + // 4. transform consecutive statements using the comma operator + // 5. if block_type == "lambda" and it detects constructs like if(foo) return ... - rewrite like if (!foo) { ... } + function tighten(statements, block_type) { + statements = MAP(statements, walk); + + statements = statements.reduce(function(a, stat){ + if (stat[0] == "block") { + if (stat[1]) { + a.push.apply(a, stat[1]); + } + } else { + a.push(stat); + } + return a; + }, []); + + statements = (function(a, prev){ + statements.forEach(function(cur){ + if (prev && ((cur[0] == "var" && prev[0] == "var") || + (cur[0] == "const" && prev[0] == "const"))) { + prev[1] = prev[1].concat(cur[1]); + } else { + a.push(cur); + prev = cur; + } + }); + return a; + })([]); + + if (options.dead_code) statements = (function(a, has_quit){ + statements.forEach(function(st){ + if (has_quit) { + if (st[0] == "function" || st[0] == "defun") { + a.push(st); + } + else if (st[0] == "var" || st[0] == "const") { + if (!options.no_warnings) + warn("Variables declared in unreachable code"); + st[1] = MAP(st[1], function(def){ + if (def[1] && !options.no_warnings) + warn_unreachable([ "assign", true, [ "name", def[0] ], def[1] ]); + return [ def[0] ]; + }); + a.push(st); + } + else if (!options.no_warnings) + warn_unreachable(st); + } + else { + a.push(st); + if (member(st[0], [ "return", "throw", "break", "continue" ])) + has_quit = true; + } + }); + return a; + })([]); + + if (options.make_seqs) statements = (function(a, prev) { + statements.forEach(function(cur){ + if (prev && prev[0] == "stat" && cur[0] == "stat") { + prev[1] = [ "seq", prev[1], cur[1] ]; + } else { + a.push(cur); + prev = cur; + } + }); + if (a.length >= 2 + && a[a.length-2][0] == "stat" + && (a[a.length-1][0] == "return" || a[a.length-1][0] == "throw") + && a[a.length-1][1]) + { + a.splice(a.length - 2, 2, + [ a[a.length-1][0], + [ "seq", a[a.length-2][1], a[a.length-1][1] ]]); + } + return a; + })([]); + + // this increases jQuery by 1K. Probably not such a good idea after all.. + // part of this is done in prepare_ifs anyway. + // if (block_type == "lambda") statements = (function(i, a, stat){ + // while (i < statements.length) { + // stat = statements[i++]; + // if (stat[0] == "if" && !stat[3]) { + // if (stat[2][0] == "return" && stat[2][1] == null) { + // a.push(make_if(negate(stat[1]), [ "block", statements.slice(i) ])); + // break; + // } + // var last = last_stat(stat[2]); + // if (last[0] == "return" && last[1] == null) { + // a.push(make_if(stat[1], [ "block", stat[2][1].slice(0, -1) ], [ "block", statements.slice(i) ])); + // break; + // } + // } + // a.push(stat); + // } + // return a; + // })(0, []); + + return statements; + }; + + function make_if(c, t, e) { + return when_constant(c, function(ast, val){ + if (val) { + t = walk(t); + warn_unreachable(e); + return t || [ "block" ]; + } else { + e = walk(e); + warn_unreachable(t); + return e || [ "block" ]; + } + }, function() { + return make_real_if(c, t, e); + }); + }; + + function make_real_if(c, t, e) { + c = walk(c); + t = walk(t); + e = walk(e); + + if (empty(t)) { + c = negate(c); + t = e; + e = null; + } else if (empty(e)) { + e = null; + } else { + // if we have both else and then, maybe it makes sense to switch them? + (function(){ + var a = gen_code(c); + var n = negate(c); + var b = gen_code(n); + if (b.length < a.length) { + var tmp = t; + t = e; + e = tmp; + c = n; + } + })(); + } + if (empty(e) && empty(t)) + return [ "stat", c ]; + var ret = [ "if", c, t, e ]; + if (t[0] == "if" && empty(t[3]) && empty(e)) { + ret = best_of(ret, walk([ "if", [ "binary", "&&", c, t[1] ], t[2] ])); + } + else if (t[0] == "stat") { + if (e) { + if (e[0] == "stat") { + ret = best_of(ret, [ "stat", make_conditional(c, t[1], e[1]) ]); + } + } + else { + ret = best_of(ret, [ "stat", make_conditional(c, t[1]) ]); + } + } + else if (e && t[0] == e[0] && (t[0] == "return" || t[0] == "throw") && t[1] && e[1]) { + ret = best_of(ret, [ t[0], make_conditional(c, t[1], e[1] ) ]); + } + else if (e && aborts(t)) { + ret = [ [ "if", c, t ] ]; + if (e[0] == "block") { + if (e[1]) ret = ret.concat(e[1]); + } + else { + ret.push(e); + } + ret = walk([ "block", ret ]); + } + else if (t && aborts(e)) { + ret = [ [ "if", negate(c), e ] ]; + if (t[0] == "block") { + if (t[1]) ret = ret.concat(t[1]); + } else { + ret.push(t); + } + ret = walk([ "block", ret ]); + } + return ret; + }; + + function _do_while(cond, body) { + return when_constant(cond, function(cond, val){ + if (!val) { + warn_unreachable(body); + return [ "block" ]; + } else { + return [ "for", null, null, null, walk(body) ]; + } + }); + }; + + return w.with_walkers({ + "sub": function(expr, subscript) { + if (subscript[0] == "string") { + var name = subscript[1]; + if (is_identifier(name)) + return [ "dot", walk(expr), name ]; + else if (/^[1-9][0-9]*$/.test(name) || name === "0") + return [ "sub", walk(expr), [ "num", parseInt(name, 10) ] ]; + } + }, + "if": make_if, + "toplevel": function(body) { + return [ "toplevel", tighten(body) ]; + }, + "switch": function(expr, body) { + var last = body.length - 1; + return [ "switch", walk(expr), MAP(body, function(branch, i){ + var block = tighten(branch[1]); + if (i == last && block.length > 0) { + var node = block[block.length - 1]; + if (node[0] == "break" && !node[1]) + block.pop(); + } + return [ branch[0] ? walk(branch[0]) : null, block ]; + }) ]; + }, + "function": _lambda, + "defun": _lambda, + "block": function(body) { + if (body) return rmblock([ "block", tighten(body) ]); + }, + "binary": function(op, left, right) { + return when_constant([ "binary", op, walk(left), walk(right) ], function yes(c){ + return best_of(walk(c), this); + }, function no() { + return function(){ + if(op != "==" && op != "!=") return; + var l = walk(left), r = walk(right); + if(l && l[0] == "unary-prefix" && l[1] == "!" && l[2][0] == "num") + left = ['num', +!l[2][1]]; + else if (r && r[0] == "unary-prefix" && r[1] == "!" && r[2][0] == "num") + right = ['num', +!r[2][1]]; + return ["binary", op, left, right]; + }() || this; + }); + }, + "conditional": function(c, t, e) { + return make_conditional(walk(c), walk(t), walk(e)); + }, + "try": function(t, c, f) { + return [ + "try", + tighten(t), + c != null ? [ c[0], tighten(c[1]) ] : null, + f != null ? tighten(f) : null + ]; + }, + "unary-prefix": function(op, expr) { + expr = walk(expr); + var ret = [ "unary-prefix", op, expr ]; + if (op == "!") + ret = best_of(ret, negate(expr)); + return when_constant(ret, function(ast, val){ + return walk(ast); // it's either true or false, so minifies to !0 or !1 + }, function() { return ret }); + }, + "name": function(name) { + switch (name) { + case "true": return [ "unary-prefix", "!", [ "num", 0 ]]; + case "false": return [ "unary-prefix", "!", [ "num", 1 ]]; + } + }, + "while": _do_while, + "assign": function(op, lvalue, rvalue) { + lvalue = walk(lvalue); + rvalue = walk(rvalue); + var okOps = [ '+', '-', '/', '*', '%', '>>', '<<', '>>>', '|', '^', '&' ]; + if (op === true && lvalue[0] === "name" && rvalue[0] === "binary" && + ~okOps.indexOf(rvalue[1]) && rvalue[2][0] === "name" && + rvalue[2][1] === lvalue[1]) { + return [ this[0], rvalue[1], lvalue, rvalue[3] ] + } + return [ this[0], op, lvalue, rvalue ]; + } + }, function() { + for (var i = 0; i < 2; ++i) { + ast = prepare_ifs(ast); + ast = walk(ast); + } + return ast; + }); +}; + +/* -----[ re-generate code from the AST ]----- */ + +var DOT_CALL_NO_PARENS = jsp.array_to_hash([ + "name", + "array", + "object", + "string", + "dot", + "sub", + "call", + "regexp", + "defun" +]); + +function make_string(str, ascii_only) { + var dq = 0, sq = 0; + str = str.replace(/[\\\b\f\n\r\t\x22\x27\u2028\u2029\0]/g, function(s){ + switch (s) { + case "\\": return "\\\\"; + case "\b": return "\\b"; + case "\f": return "\\f"; + case "\n": return "\\n"; + case "\r": return "\\r"; + case "\t": return "\\t"; + case "\u2028": return "\\u2028"; + case "\u2029": return "\\u2029"; + case '"': ++dq; return '"'; + case "'": ++sq; return "'"; + case "\0": return "\\0"; + } + return s; + }); + if (ascii_only) str = to_ascii(str); + if (dq > sq) return "'" + str.replace(/\x27/g, "\\'") + "'"; + else return '"' + str.replace(/\x22/g, '\\"') + '"'; +}; + +function to_ascii(str) { + return str.replace(/[\u0080-\uffff]/g, function(ch) { + var code = ch.charCodeAt(0).toString(16); + while (code.length < 4) code = "0" + code; + return "\\u" + code; + }); +}; + +var SPLICE_NEEDS_BRACKETS = jsp.array_to_hash([ "if", "while", "do", "for", "for-in", "with" ]); + +function gen_code(ast, options) { + options = defaults(options, { + indent_start : 0, + indent_level : 4, + quote_keys : false, + space_colon : false, + beautify : false, + ascii_only : false, + inline_script: false + }); + var beautify = !!options.beautify; + var indentation = 0, + newline = beautify ? "\n" : "", + space = beautify ? " " : ""; + + function encode_string(str) { + var ret = make_string(str, options.ascii_only); + if (options.inline_script) + ret = ret.replace(/<\x2fscript([>\/\t\n\f\r ])/gi, "<\\/script$1"); + return ret; + }; + + function make_name(name) { + name = name.toString(); + if (options.ascii_only) + name = to_ascii(name); + return name; + }; + + function indent(line) { + if (line == null) + line = ""; + if (beautify) + line = repeat_string(" ", options.indent_start + indentation * options.indent_level) + line; + return line; + }; + + function with_indent(cont, incr) { + if (incr == null) incr = 1; + indentation += incr; + try { return cont.apply(null, slice(arguments, 1)); } + finally { indentation -= incr; } + }; + + function add_spaces(a) { + if (beautify) + return a.join(" "); + var b = []; + for (var i = 0; i < a.length; ++i) { + var next = a[i + 1]; + b.push(a[i]); + if (next && + ((/[a-z0-9_\x24]$/i.test(a[i].toString()) && /^[a-z0-9_\x24]/i.test(next.toString())) || + (/[\+\-]$/.test(a[i].toString()) && /^[\+\-]/.test(next.toString())))) { + b.push(" "); + } + } + return b.join(""); + }; + + function add_commas(a) { + return a.join("," + space); + }; + + function parenthesize(expr) { + var gen = make(expr); + for (var i = 1; i < arguments.length; ++i) { + var el = arguments[i]; + if ((el instanceof Function && el(expr)) || expr[0] == el) + return "(" + gen + ")"; + } + return gen; + }; + + function best_of(a) { + if (a.length == 1) { + return a[0]; + } + if (a.length == 2) { + var b = a[1]; + a = a[0]; + return a.length <= b.length ? a : b; + } + return best_of([ a[0], best_of(a.slice(1)) ]); + }; + + function needs_parens(expr) { + if (expr[0] == "function" || expr[0] == "object") { + // dot/call on a literal function requires the + // function literal itself to be parenthesized + // only if it's the first "thing" in a + // statement. This means that the parent is + // "stat", but it could also be a "seq" and + // we're the first in this "seq" and the + // parent is "stat", and so on. Messy stuff, + // but it worths the trouble. + var a = slice(w.stack()), self = a.pop(), p = a.pop(); + while (p) { + if (p[0] == "stat") return true; + if (((p[0] == "seq" || p[0] == "call" || p[0] == "dot" || p[0] == "sub" || p[0] == "conditional") && p[1] === self) || + ((p[0] == "binary" || p[0] == "assign" || p[0] == "unary-postfix") && p[2] === self)) { + self = p; + p = a.pop(); + } else { + return false; + } + } + } + return !HOP(DOT_CALL_NO_PARENS, expr[0]); + }; + + function make_num(num) { + var str = num.toString(10), a = [ str.replace(/^0\./, ".") ], m; + if (Math.floor(num) === num) { + if (num >= 0) { + a.push("0x" + num.toString(16).toLowerCase(), // probably pointless + "0" + num.toString(8)); // same. + } else { + a.push("-0x" + (-num).toString(16).toLowerCase(), // probably pointless + "-0" + (-num).toString(8)); // same. + } + if ((m = /^(.*?)(0+)$/.exec(num))) { + a.push(m[1] + "e" + m[2].length); + } + } else if ((m = /^0?\.(0+)(.*)$/.exec(num))) { + a.push(m[2] + "e-" + (m[1].length + m[2].length), + str.substr(str.indexOf("."))); + } + return best_of(a); + }; + + var w = ast_walker(); + var make = w.walk; + return w.with_walkers({ + "string": encode_string, + "num": make_num, + "name": make_name, + "toplevel": function(statements) { + return make_block_statements(statements) + .join(newline + newline); + }, + "splice": function(statements) { + var parent = w.parent(); + if (HOP(SPLICE_NEEDS_BRACKETS, parent)) { + // we need block brackets in this case + return make_block.apply(this, arguments); + } else { + return MAP(make_block_statements(statements, true), + function(line, i) { + // the first line is already indented + return i > 0 ? indent(line) : line; + }).join(newline); + } + }, + "block": make_block, + "var": function(defs) { + return "var " + add_commas(MAP(defs, make_1vardef)) + ";"; + }, + "const": function(defs) { + return "const " + add_commas(MAP(defs, make_1vardef)) + ";"; + }, + "try": function(tr, ca, fi) { + var out = [ "try", make_block(tr) ]; + if (ca) out.push("catch", "(" + ca[0] + ")", make_block(ca[1])); + if (fi) out.push("finally", make_block(fi)); + return add_spaces(out); + }, + "throw": function(expr) { + return add_spaces([ "throw", make(expr) ]) + ";"; + }, + "new": function(ctor, args) { + args = args.length > 0 ? "(" + add_commas(MAP(args, function(expr){ + return parenthesize(expr, "seq"); + })) + ")" : ""; + return add_spaces([ "new", parenthesize(ctor, "seq", "binary", "conditional", "assign", function(expr){ + var w = ast_walker(), has_call = {}; + try { + w.with_walkers({ + "call": function() { throw has_call }, + "function": function() { return this } + }, function(){ + w.walk(expr); + }); + } catch(ex) { + if (ex === has_call) + return true; + throw ex; + } + }) + args ]); + }, + "switch": function(expr, body) { + return add_spaces([ "switch", "(" + make(expr) + ")", make_switch_block(body) ]); + }, + "break": function(label) { + var out = "break"; + if (label != null) + out += " " + make_name(label); + return out + ";"; + }, + "continue": function(label) { + var out = "continue"; + if (label != null) + out += " " + make_name(label); + return out + ";"; + }, + "conditional": function(co, th, el) { + return add_spaces([ parenthesize(co, "assign", "seq", "conditional"), "?", + parenthesize(th, "seq"), ":", + parenthesize(el, "seq") ]); + }, + "assign": function(op, lvalue, rvalue) { + if (op && op !== true) op += "="; + else op = "="; + return add_spaces([ make(lvalue), op, parenthesize(rvalue, "seq") ]); + }, + "dot": function(expr) { + var out = make(expr), i = 1; + if (expr[0] == "num") { + if (!/\./.test(expr[1])) + out += "."; + } else if (needs_parens(expr)) + out = "(" + out + ")"; + while (i < arguments.length) + out += "." + make_name(arguments[i++]); + return out; + }, + "call": function(func, args) { + var f = make(func); + if (f.charAt(0) != "(" && needs_parens(func)) + f = "(" + f + ")"; + return f + "(" + add_commas(MAP(args, function(expr){ + return parenthesize(expr, "seq"); + })) + ")"; + }, + "function": make_function, + "defun": make_function, + "if": function(co, th, el) { + var out = [ "if", "(" + make(co) + ")", el ? make_then(th) : make(th) ]; + if (el) { + out.push("else", make(el)); + } + return add_spaces(out); + }, + "for": function(init, cond, step, block) { + var out = [ "for" ]; + init = (init != null ? make(init) : "").replace(/;*\s*$/, ";" + space); + cond = (cond != null ? make(cond) : "").replace(/;*\s*$/, ";" + space); + step = (step != null ? make(step) : "").replace(/;*\s*$/, ""); + var args = init + cond + step; + if (args == "; ; ") args = ";;"; + out.push("(" + args + ")", make(block)); + return add_spaces(out); + }, + "for-in": function(vvar, key, hash, block) { + return add_spaces([ "for", "(" + + (vvar ? make(vvar).replace(/;+$/, "") : make(key)), + "in", + make(hash) + ")", make(block) ]); + }, + "while": function(condition, block) { + return add_spaces([ "while", "(" + make(condition) + ")", make(block) ]); + }, + "do": function(condition, block) { + return add_spaces([ "do", make(block), "while", "(" + make(condition) + ")" ]) + ";"; + }, + "return": function(expr) { + var out = [ "return" ]; + if (expr != null) out.push(make(expr)); + return add_spaces(out) + ";"; + }, + "binary": function(operator, lvalue, rvalue) { + var left = make(lvalue), right = make(rvalue); + // XXX: I'm pretty sure other cases will bite here. + // we need to be smarter. + // adding parens all the time is the safest bet. + if (member(lvalue[0], [ "assign", "conditional", "seq" ]) || + lvalue[0] == "binary" && PRECEDENCE[operator] > PRECEDENCE[lvalue[1]] || + lvalue[0] == "function" && needs_parens(this)) { + left = "(" + left + ")"; + } + if (member(rvalue[0], [ "assign", "conditional", "seq" ]) || + rvalue[0] == "binary" && PRECEDENCE[operator] >= PRECEDENCE[rvalue[1]] && + !(rvalue[1] == operator && member(operator, [ "&&", "||", "*" ]))) { + right = "(" + right + ")"; + } + else if (!beautify && options.inline_script && (operator == "<" || operator == "<<") + && rvalue[0] == "regexp" && /^script/i.test(rvalue[1])) { + right = " " + right; + } + return add_spaces([ left, operator, right ]); + }, + "unary-prefix": function(operator, expr) { + var val = make(expr); + if (!(expr[0] == "num" || (expr[0] == "unary-prefix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr))) + val = "(" + val + ")"; + return operator + (jsp.is_alphanumeric_char(operator.charAt(0)) ? " " : "") + val; + }, + "unary-postfix": function(operator, expr) { + var val = make(expr); + if (!(expr[0] == "num" || (expr[0] == "unary-postfix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr))) + val = "(" + val + ")"; + return val + operator; + }, + "sub": function(expr, subscript) { + var hash = make(expr); + if (needs_parens(expr)) + hash = "(" + hash + ")"; + return hash + "[" + make(subscript) + "]"; + }, + "object": function(props) { + var obj_needs_parens = needs_parens(this); + if (props.length == 0) + return obj_needs_parens ? "({})" : "{}"; + var out = "{" + newline + with_indent(function(){ + return MAP(props, function(p){ + if (p.length == 3) { + // getter/setter. The name is in p[0], the arg.list in p[1][2], the + // body in p[1][3] and type ("get" / "set") in p[2]. + return indent(make_function(p[0], p[1][2], p[1][3], p[2])); + } + var key = p[0], val = parenthesize(p[1], "seq"); + if (options.quote_keys) { + key = encode_string(key); + } else if ((typeof key == "number" || !beautify && +key + "" == key) + && parseFloat(key) >= 0) { + key = make_num(+key); + } else if (!is_identifier(key)) { + key = encode_string(key); + } + return indent(add_spaces(beautify && options.space_colon + ? [ key, ":", val ] + : [ key + ":", val ])); + }).join("," + newline); + }) + newline + indent("}"); + return obj_needs_parens ? "(" + out + ")" : out; + }, + "regexp": function(rx, mods) { + return "/" + rx + "/" + mods; + }, + "array": function(elements) { + if (elements.length == 0) return "[]"; + return add_spaces([ "[", add_commas(MAP(elements, function(el, i){ + if (!beautify && el[0] == "atom" && el[1] == "undefined") return i === elements.length - 1 ? "," : ""; + return parenthesize(el, "seq"); + })), "]" ]); + }, + "stat": function(stmt) { + return make(stmt).replace(/;*\s*$/, ";"); + }, + "seq": function() { + return add_commas(MAP(slice(arguments), make)); + }, + "label": function(name, block) { + return add_spaces([ make_name(name), ":", make(block) ]); + }, + "with": function(expr, block) { + return add_spaces([ "with", "(" + make(expr) + ")", make(block) ]); + }, + "atom": function(name) { + return make_name(name); + } + }, function(){ return make(ast) }); + + // The squeezer replaces "block"-s that contain only a single + // statement with the statement itself; technically, the AST + // is correct, but this can create problems when we output an + // IF having an ELSE clause where the THEN clause ends in an + // IF *without* an ELSE block (then the outer ELSE would refer + // to the inner IF). This function checks for this case and + // adds the block brackets if needed. + function make_then(th) { + if (th == null) return ";"; + if (th[0] == "do") { + // https://github.com/mishoo/UglifyJS/issues/#issue/57 + // IE croaks with "syntax error" on code like this: + // if (foo) do ... while(cond); else ... + // we need block brackets around do/while + return make_block([ th ]); + } + var b = th; + while (true) { + var type = b[0]; + if (type == "if") { + if (!b[3]) + // no else, we must add the block + return make([ "block", [ th ]]); + b = b[3]; + } + else if (type == "while" || type == "do") b = b[2]; + else if (type == "for" || type == "for-in") b = b[4]; + else break; + } + return make(th); + }; + + function make_function(name, args, body, keyword) { + var out = keyword || "function"; + if (name) { + out += " " + make_name(name); + } + out += "(" + add_commas(MAP(args, make_name)) + ")"; + out = add_spaces([ out, make_block(body) ]); + return needs_parens(this) ? "(" + out + ")" : out; + }; + + function must_has_semicolon(node) { + switch (node[0]) { + case "with": + case "while": + return empty(node[2]); // `with' or `while' with empty body? + case "for": + case "for-in": + return empty(node[4]); // `for' with empty body? + case "if": + if (empty(node[2]) && !node[3]) return true; // `if' with empty `then' and no `else' + if (node[3]) { + if (empty(node[3])) return true; // `else' present but empty + return must_has_semicolon(node[3]); // dive into the `else' branch + } + return must_has_semicolon(node[2]); // dive into the `then' branch + } + }; + + function make_block_statements(statements, noindent) { + for (var a = [], last = statements.length - 1, i = 0; i <= last; ++i) { + var stat = statements[i]; + var code = make(stat); + if (code != ";") { + if (!beautify && i == last && !must_has_semicolon(stat)) { + code = code.replace(/;+\s*$/, ""); + } + a.push(code); + } + } + return noindent ? a : MAP(a, indent); + }; + + function make_switch_block(body) { + var n = body.length; + if (n == 0) return "{}"; + return "{" + newline + MAP(body, function(branch, i){ + var has_body = branch[1].length > 0, code = with_indent(function(){ + return indent(branch[0] + ? add_spaces([ "case", make(branch[0]) + ":" ]) + : "default:"); + }, 0.5) + (has_body ? newline + with_indent(function(){ + return make_block_statements(branch[1]).join(newline); + }) : ""); + if (!beautify && has_body && i < n - 1) + code += ";"; + return code; + }).join(newline) + newline + indent("}"); + }; + + function make_block(statements) { + if (!statements) return ";"; + if (statements.length == 0) return "{}"; + return "{" + newline + with_indent(function(){ + return make_block_statements(statements).join(newline); + }) + newline + indent("}"); + }; + + function make_1vardef(def) { + var name = def[0], val = def[1]; + if (val != null) + name = add_spaces([ make_name(name), "=", parenthesize(val, "seq") ]); + return name; + }; + +}; + +function split_lines(code, max_line_length) { + var splits = [ 0 ]; + jsp.parse(function(){ + var next_token = jsp.tokenizer(code); + var last_split = 0; + var prev_token; + function current_length(tok) { + return tok.pos - last_split; + }; + function split_here(tok) { + last_split = tok.pos; + splits.push(last_split); + }; + function custom(){ + var tok = next_token.apply(this, arguments); + out: { + if (prev_token) { + if (prev_token.type == "keyword") break out; + } + if (current_length(tok) > max_line_length) { + switch (tok.type) { + case "keyword": + case "atom": + case "name": + case "punc": + split_here(tok); + break out; + } + } + } + prev_token = tok; + return tok; + }; + custom.context = function() { + return next_token.context.apply(this, arguments); + }; + return custom; + }()); + return splits.map(function(pos, i){ + return code.substring(pos, splits[i + 1] || code.length); + }).join("\n"); +}; + +/* -----[ Utilities ]----- */ + +function repeat_string(str, i) { + if (i <= 0) return ""; + if (i == 1) return str; + var d = repeat_string(str, i >> 1); + d += d; + if (i & 1) d += str; + return d; +}; + +function defaults(args, defs) { + var ret = {}; + if (args === true) + args = {}; + for (var i in defs) if (HOP(defs, i)) { + ret[i] = (args && HOP(args, i)) ? args[i] : defs[i]; + } + return ret; +}; + +function is_identifier(name) { + return /^[a-z_$][a-z0-9_$]*$/i.test(name) + && name != "this" + && !HOP(jsp.KEYWORDS_ATOM, name) + && !HOP(jsp.RESERVED_WORDS, name) + && !HOP(jsp.KEYWORDS, name); +}; + +function HOP(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +}; + +// some utilities + +var MAP; + +(function(){ + MAP = function(a, f, o) { + var ret = [], top = [], i; + function doit() { + var val = f.call(o, a[i], i); + if (val instanceof AtTop) { + val = val.v; + if (val instanceof Splice) { + top.push.apply(top, val.v); + } else { + top.push(val); + } + } + else if (val != skip) { + if (val instanceof Splice) { + ret.push.apply(ret, val.v); + } else { + ret.push(val); + } + } + }; + if (a instanceof Array) for (i = 0; i < a.length; ++i) doit(); + else for (i in a) if (HOP(a, i)) doit(); + return top.concat(ret); + }; + MAP.at_top = function(val) { return new AtTop(val) }; + MAP.splice = function(val) { return new Splice(val) }; + var skip = MAP.skip = {}; + function AtTop(val) { this.v = val }; + function Splice(val) { this.v = val }; +})(); + +/* -----[ Exports ]----- */ + +exports.ast_walker = ast_walker; +exports.ast_mangle = ast_mangle; +exports.ast_squeeze = ast_squeeze; +exports.ast_lift_variables = ast_lift_variables; +exports.gen_code = gen_code; +exports.ast_add_scope = ast_add_scope; +exports.set_logger = function(logger) { warn = logger }; +exports.make_string = make_string; +exports.split_lines = split_lines; +exports.MAP = MAP; + +// keep this last! +exports.ast_squeeze_more = require("./squeeze-more").ast_squeeze_more; + +});define('uglifyjs/index', ["require", "exports", "module", "./parse-js", "./process"], function(require, exports, module) { + +//convienence function(src, [options]); +function uglify(orig_code, options){ + options || (options = {}); + var jsp = uglify.parser; + var pro = uglify.uglify; + + var ast = jsp.parse(orig_code, options.strict_semicolons); // parse code and get the initial AST + ast = pro.ast_mangle(ast, options.mangle_options); // get a new AST with mangled names + ast = pro.ast_squeeze(ast, options.squeeze_options); // get an AST with compression optimizations + var final_code = pro.gen_code(ast, options.gen_options); // compressed code here + return final_code; +}; + +uglify.parser = require("./parse-js"); +uglify.uglify = require("./process"); + +module.exports = uglify + +});/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: false, strict: false */ +/*global define: false */ + +define('parse', ['./uglifyjs/index'], function (uglify) { + var parser = uglify.parser, + processor = uglify.uglify, + ostring = Object.prototype.toString, + isArray; + + if (Array.isArray) { + isArray = Array.isArray; + } else { + isArray = function (it) { + return ostring.call(it) === "[object Array]"; + }; + } + + /** + * Determines if the AST node is an array literal + */ + function isArrayLiteral(node) { + return node[0] === 'array'; + } + + /** + * Determines if the AST node is an object literal + */ + function isObjectLiteral(node) { + return node[0] === 'object'; + } + + /** + * Converts a regular JS array of strings to an AST node that + * represents that array. + * @param {Array} ary + * @param {Node} an AST node that represents an array of strings. + */ + function toAstArray(ary) { + var output = [ + 'array', + [] + ], + i, item; + + for (i = 0; (item = ary[i]); i++) { + output[1].push([ + 'string', + item + ]); + } + + return output; + } + + /** + * Validates a node as being an object literal (like for i18n bundles) + * or an array literal with just string members. If an array literal, + * only return array members that are full strings. So the caller of + * this function should use the return value as the new value for the + * node. + * + * This function does not need to worry about comments, they are not + * present in this AST. + * + * @param {Node} node an AST node. + * + * @returns {Node} an AST node to use for the valid dependencies. + * If null is returned, then it means the input node was not a valid + * dependency. + */ + function validateDeps(node) { + var newDeps = ['array', []], + arrayArgs, i, dep; + + if (!node) { + return null; + } + + if (isObjectLiteral(node) || node[0] === 'function') { + return node; + } + + //Dependencies can be an object literal or an array. + if (!isArrayLiteral(node)) { + return null; + } + + arrayArgs = node[1]; + + for (i = 0; i < arrayArgs.length; i++) { + dep = arrayArgs[i]; + if (dep[0] === 'string') { + newDeps[1].push(dep); + } + } + return newDeps[1].length ? newDeps : null; + } + + /** + * Gets dependencies from a node, but only if it is an array literal, + * and only if the dependency is a string literal. + * + * This function does not need to worry about comments, they are not + * present in this AST. + * + * @param {Node} node an AST node. + * + * @returns {Array} of valid dependencies. + * If null is returned, then it means the input node was not a valid + * array literal, or did not have any string literals.. + */ + function getValidDeps(node) { + var newDeps = [], + arrayArgs, i, dep; + + if (!node) { + return null; + } + + if (isObjectLiteral(node) || node[0] === 'function') { + return null; + } + + //Dependencies can be an object literal or an array. + if (!isArrayLiteral(node)) { + return null; + } + + arrayArgs = node[1]; + + for (i = 0; i < arrayArgs.length; i++) { + dep = arrayArgs[i]; + if (dep[0] === 'string') { + newDeps.push(dep[1]); + } + } + return newDeps.length ? newDeps : null; + } + + /** + * Main parse function. Returns a string of any valid require or define/require.def + * calls as part of one JavaScript source string. + * @param {String} moduleName the module name that represents this file. + * It is used to create a default define if there is not one already for the file. + * This allows properly tracing dependencies for builds. Otherwise, if + * the file just has a require() call, the file dependencies will not be + * properly reflected: the file will come before its dependencies. + * @param {String} moduleName + * @param {String} fileName + * @param {String} fileContents + * @param {Object} options optional options. insertNeedsDefine: true will + * add calls to require.needsDefine() if appropriate. + * @returns {String} JS source string or null, if no require or define/require.def + * calls are found. + */ + function parse(moduleName, fileName, fileContents, options) { + options = options || {}; + + //Set up source input + var moduleDeps = [], + result = '', + moduleList = [], + needsDefine = true, + astRoot = parser.parse(fileContents), + i, moduleCall, depString; + + parse.recurse(astRoot, function (callName, config, name, deps) { + //If name is an array, it means it is an anonymous module, + //so adjust args appropriately. An anonymous module could + //have a FUNCTION as the name type, but just ignore those + //since we just want to find dependencies. + if (name && isArrayLiteral(name)) { + deps = name; + name = null; + } + + if (!(deps = getValidDeps(deps))) { + deps = []; + } + + //Get the name as a string literal, if it is available. + if (name && name[0] === 'string') { + name = name[1]; + } else { + name = null; + } + + if (callName === 'define' && (!name || name === moduleName)) { + needsDefine = false; + } + + if (!name) { + //If there is no module name, the dependencies are for + //this file/default module name. + moduleDeps = moduleDeps.concat(deps); + } else { + moduleList.push({ + name: name, + deps: deps + }); + } + + //If define was found, no need to dive deeper, unless + //the config explicitly wants to dig deeper. + return !options.findNestedDependencies; + }, options); + + if (options.insertNeedsDefine && needsDefine) { + result += 'require.needsDefine("' + moduleName + '");'; + } + + if (moduleDeps.length || moduleList.length) { + for (i = 0; (moduleCall = moduleList[i]); i++) { + if (result) { + result += '\n'; + } + + //If this is the main module for this file, combine any + //"anonymous" dependencies (could come from a nested require + //call) with this module. + if (moduleCall.name === moduleName) { + moduleCall.deps = moduleCall.deps.concat(moduleDeps); + moduleDeps = []; + } + + depString = moduleCall.deps.length ? '["' + moduleCall.deps.join('","') + '"]' : '[]'; + result += 'define("' + moduleCall.name + '",' + depString + ');'; + } + if (moduleDeps.length) { + if (result) { + result += '\n'; + } + depString = moduleDeps.length ? '["' + moduleDeps.join('","') + '"]' : '[]'; + result += 'define("' + moduleName + '",' + depString + ');'; + } + } + + return result ? result : null; + } + + //Add some private methods to object for use in derived objects. + parse.isArray = isArray; + parse.isObjectLiteral = isObjectLiteral; + parse.isArrayLiteral = isArrayLiteral; + + /** + * Handles parsing a file recursively for require calls. + * @param {Array} parentNode the AST node to start with. + * @param {Function} onMatch function to call on a parse match. + * @param {Object} [options] This is normally the build config options if + * it is passed. + * @param {Function} [recurseCallback] function to call on each valid + * node, defaults to parse.parseNode. + */ + parse.recurse = function (parentNode, onMatch, options, recurseCallback) { + var hasHas = options && options.has, + i, node; + + recurseCallback = recurseCallback || this.parseNode; + + if (isArray(parentNode)) { + for (i = 0; i < parentNode.length; i++) { + node = parentNode[i]; + if (isArray(node)) { + //If has config is in play, if calls have been converted + //by this point to be true/false values. So, if + //options has a 'has' value, skip if branches that have + //literal false values. + + //uglify returns if constructs in an array: + //[0]: 'if' + //[1]: the condition, ['name', true | false] for the has replaced case. + //[2]: the block to process if true + //[3]: the block to process if false + //For if/else if/else, the else if is in the [3], + //so only ever have to deal with this structure. + if (hasHas && node[0] === 'if' && node[1] && node[1][0] === 'name' && + (node[1][1] === 'true' || node[1][1] === 'false')) { + if (node[1][1] === 'true') { + this.recurse([node[2]], onMatch, options, recurseCallback); + } else { + this.recurse([node[3]], onMatch, options, recurseCallback); + } + } else { + if (recurseCallback(node, onMatch)) { + //The onMatch indicated parsing should + //stop for children of this node. + continue; + } + this.recurse(node, onMatch, options, recurseCallback); + } + } + } + } + }; + + /** + * Determines if the file defines require(). + * @param {String} fileName + * @param {String} fileContents + * @returns {Boolean} + */ + parse.definesRequire = function (fileName, fileContents) { + var astRoot = parser.parse(fileContents); + return this.nodeHasRequire(astRoot); + }; + + /** + * Finds require("") calls inside a CommonJS anonymous module wrapped in a + * define(function(require, exports, module){}) wrapper. These dependencies + * will be added to a modified define() call that lists the dependencies + * on the outside of the function. + * @param {String} fileName + * @param {String} fileContents + * @returns {Array} an array of module names that are dependencies. Always + * returns an array, but could be of length zero. + */ + parse.getAnonDeps = function (fileName, fileContents) { + var astRoot = parser.parse(fileContents), + defFunc = this.findAnonDefineFactory(astRoot); + + return parse.getAnonDepsFromNode(defFunc); + }; + + /** + * Finds require("") calls inside a CommonJS anonymous module wrapped + * in a define function, given an AST node for the definition function. + * @param {Node} node the AST node for the definition function. + * @returns {Array} and array of dependency names. Can be of zero length. + */ + parse.getAnonDepsFromNode = function (node) { + var deps = [], + funcArgLength; + + if (node) { + this.findRequireDepNames(node, deps); + + //If no deps, still add the standard CommonJS require, exports, module, + //in that order, to the deps, but only if specified as function args. + //In particular, if exports is used, it is favored over the return + //value of the function, so only add it if asked. + funcArgLength = node[2] && node[2].length; + if (funcArgLength) { + deps = (funcArgLength > 1 ? ["require", "exports", "module"] : + ["require"]).concat(deps); + } + } + return deps; + }; + + /** + * Finds the function in define(function (require, exports, module){}); + * @param {Array} node + * @returns {Boolean} + */ + parse.findAnonDefineFactory = function (node) { + var callback, i, n, call, args; + + if (isArray(node)) { + if (node[0] === 'call') { + call = node[1]; + args = node[2]; + if ((call[0] === 'name' && call[1] === 'define') || + (call[0] === 'dot' && call[1][1] === 'require' && call[2] === 'def')) { + + //There should only be one argument and it should be a function, + //or a named module with function as second arg + if (args.length === 1 && args[0][0] === 'function') { + return args[0]; + } else if (args.length === 2 && args[0][0] === 'string' && + args[1][0] === 'function') { + return args[1]; + } + } + } + + //Check child nodes + for (i = 0; i < node.length; i++) { + n = node[i]; + if ((callback = this.findAnonDefineFactory(n))) { + return callback; + } + } + } + + return null; + }; + + /** + * Finds any config that is passed to requirejs. + * @param {String} fileName + * @param {String} fileContents + * + * @returns {Object} a config object. Will be null if no config. + * Can throw an error if the config in the file cannot be evaluated in + * a build context to valid JavaScript. + */ + parse.findConfig = function (fileName, fileContents) { + /*jslint evil: true */ + //This is a litle bit inefficient, it ends up with two uglifyjs parser + //calls. Can revisit later, but trying to build out larger functional + //pieces first. + var foundConfig = null, + astRoot = parser.parse(fileContents); + + parse.recurse(astRoot, function (configNode) { + var jsConfig; + + if (!foundConfig && configNode) { + jsConfig = parse.nodeToString(configNode); + foundConfig = eval('(' + jsConfig + ')'); + return foundConfig; + } + return undefined; + }, null, parse.parseConfigNode); + + return foundConfig; + }; + + /** + * Finds all dependencies specified in dependency arrays and inside + * simplified commonjs wrappers. + * @param {String} fileName + * @param {String} fileContents + * + * @returns {Array} an array of dependency strings. The dependencies + * have not been normalized, they may be relative IDs. + */ + parse.findDependencies = function (fileName, fileContents, options) { + //This is a litle bit inefficient, it ends up with two uglifyjs parser + //calls. Can revisit later, but trying to build out larger functional + //pieces first. + var dependencies = [], + astRoot = parser.parse(fileContents); + + parse.recurse(astRoot, function (callName, config, name, deps) { + //Normalize the input args. + if (name && isArrayLiteral(name)) { + deps = name; + name = null; + } + + if ((deps = getValidDeps(deps))) { + dependencies = dependencies.concat(deps); + } + }, options); + + return dependencies; + }; + + /** + * Finds only CJS dependencies, ones that are the form require('stringLiteral') + */ + parse.findCjsDependencies = function (fileName, fileContents, options) { + //This is a litle bit inefficient, it ends up with two uglifyjs parser + //calls. Can revisit later, but trying to build out larger functional + //pieces first. + var dependencies = [], + astRoot = parser.parse(fileContents); + + parse.recurse(astRoot, function (dep) { + dependencies.push(dep); + }, options, function (node, onMatch) { + + var call, args; + + if (!isArray(node)) { + return false; + } + + if (node[0] === 'call') { + call = node[1]; + args = node[2]; + + if (call) { + //A require('') use. + if (call[0] === 'name' && call[1] === 'require' && + args[0][0] === 'string') { + return onMatch(args[0][1]); + } + } + } + + return false; + + }); + + return dependencies; + }; + + /** + * Determines if define(), require({}|[]) or requirejs was called in the + * file. Also finds out if define() is declared and if define.amd is called. + */ + parse.usesAmdOrRequireJs = function (fileName, fileContents, options) { + var astRoot = parser.parse(fileContents), + uses; + + parse.recurse(astRoot, function (prop) { + if (!uses) { + uses = {}; + } + uses[prop] = true; + }, options, parse.findAmdOrRequireJsNode); + + return uses; + }; + + /** + * Determines if require(''), exports.x =, module.exports =, + * __dirname, __filename are used. So, not strictly traditional CommonJS, + * also checks for Node variants. + */ + parse.usesCommonJs = function (fileName, fileContents, options) { + var uses = null, + assignsExports = false, + astRoot = parser.parse(fileContents); + + parse.recurse(astRoot, function (prop) { + if (prop === 'varExports') { + assignsExports = true; + } else if (prop !== 'exports' || !assignsExports) { + if (!uses) { + uses = {}; + } + uses[prop] = true; + } + }, options, function (node, onMatch) { + + var call, args; + + if (!isArray(node)) { + return false; + } + + if (node[0] === 'name' && (node[1] === '__dirname' || node[1] === '__filename')) { + return onMatch(node[1].substring(2)); + } else if (node[0] === 'var' && node[1] && node[1][0] && node[1][0][0] === 'exports') { + //Hmm, a variable assignment for exports, so does not use cjs exports. + return onMatch('varExports'); + } else if (node[0] === 'assign' && node[2] && node[2][0] === 'dot') { + args = node[2][1]; + + if (args) { + //An exports or module.exports assignment. + if (args[0] === 'name' && args[1] === 'module' && + node[2][2] === 'exports') { + return onMatch('moduleExports'); + } else if (args[0] === 'name' && args[1] === 'exports') { + return onMatch('exports'); + } + } + } else if (node[0] === 'call') { + call = node[1]; + args = node[2]; + + if (call) { + //A require('') use. + if (call[0] === 'name' && call[1] === 'require' && + args[0][0] === 'string') { + return onMatch('require'); + } + } + } + + return false; + + }); + + return uses; + }; + + + parse.findRequireDepNames = function (node, deps) { + var moduleName, i, n, call, args; + + if (isArray(node)) { + if (node[0] === 'call') { + call = node[1]; + args = node[2]; + + if (call && call[0] === 'name' && call[1] === 'require') { + moduleName = args[0]; + if (moduleName[0] === 'string') { + deps.push(moduleName[1]); + } + } + + + } + + //Check child nodes + for (i = 0; i < node.length; i++) { + n = node[i]; + this.findRequireDepNames(n, deps); + } + } + }; + + /** + * Determines if a given node contains a require() definition. + * @param {Array} node + * @returns {Boolean} + */ + parse.nodeHasRequire = function (node) { + if (this.isDefineNode(node)) { + return true; + } + + if (isArray(node)) { + for (var i = 0, n; i < node.length; i++) { + n = node[i]; + if (this.nodeHasRequire(n)) { + return true; + } + } + } + + return false; + }; + + /** + * Is the given node the actual definition of define(). Actually uses + * the definition of define.amd to find require. + * @param {Array} node + * @returns {Boolean} + */ + parse.isDefineNode = function (node) { + //Actually look for the define.amd = assignment, since + //that is more indicative of RequireJS vs a plain require definition. + var assign; + if (!node) { + return null; + } + + if (node[0] === 'assign' && node[1] === true) { + assign = node[2]; + if (assign[0] === 'dot' && assign[1][0] === 'name' && + assign[1][1] === 'define' && assign[2] === 'amd') { + return true; + } + } + return false; + }; + + /** + * Determines if a specific node is a valid require or define/require.def call. + * @param {Array} node + * @param {Function} onMatch a function to call when a match is found. + * It is passed the match name, and the config, name, deps possible args. + * The config, name and deps args are not normalized. + * + * @returns {String} a JS source string with the valid require/define call. + * Otherwise null. + */ + parse.parseNode = function (node, onMatch) { + var call, name, config, deps, args, cjsDeps; + + if (!isArray(node)) { + return false; + } + + if (node[0] === 'call') { + call = node[1]; + args = node[2]; + + if (call) { + if (call[0] === 'name' && + (call[1] === 'require' || call[1] === 'requirejs')) { + + //It is a plain require() call. + config = args[0]; + deps = args[1]; + if (isArrayLiteral(config)) { + deps = config; + config = null; + } + + if (!(deps = validateDeps(deps))) { + return null; + } + + return onMatch("require", null, null, deps); + + } else if (call[0] === 'name' && call[1] === 'define') { + + //A define call + name = args[0]; + deps = args[1]; + //Only allow define calls that match what is expected + //in an AMD call: + //* first arg should be string, array, function or object + //* second arg optional, or array, function or object. + //This helps weed out calls to a non-AMD define, but it is + //not completely robust. Someone could create a define + //function that still matches this shape, but this is the + //best that is possible, and at least allows UglifyJS, + //which does create its own internal define in one file, + //to be inlined. + if (((name[0] === 'string' || isArrayLiteral(name) || + name[0] === 'function' || isObjectLiteral(name))) && + (!deps || isArrayLiteral(deps) || + deps[0] === 'function' || isObjectLiteral(deps) || + // allow define(['dep'], factory) pattern + (isArrayLiteral(name) && deps[0] === 'name' && args.length === 2))) { + + //If first arg is a function, could be a commonjs wrapper, + //look inside for commonjs dependencies. + //Also, if deps is a function look for commonjs deps. + if (name && name[0] === 'function') { + cjsDeps = parse.getAnonDepsFromNode(name); + if (cjsDeps.length) { + name = toAstArray(cjsDeps); + } + } else if (deps && deps[0] === 'function') { + cjsDeps = parse.getAnonDepsFromNode(deps); + if (cjsDeps.length) { + deps = toAstArray(cjsDeps); + } + } + + return onMatch("define", null, name, deps); + } + } + } + } + + return false; + }; + + /** + * Looks for define(), require({} || []), requirejs({} || []) calls. + */ + parse.findAmdOrRequireJsNode = function (node, onMatch) { + var call, args, configNode, type; + + if (!isArray(node)) { + return false; + } + + if (node[0] === 'defun' && node[1] === 'define') { + type = 'declaresDefine'; + } else if (node[0] === 'assign' && node[2] && node[2][2] === 'amd' && + node[2][1] && node[2][1][0] === 'name' && + node[2][1][1] === 'define') { + type = 'defineAmd'; + } else if (node[0] === 'call') { + call = node[1]; + args = node[2]; + + if (call) { + if ((call[0] === 'dot' && + (call[1] && call[1][0] === 'name' && + (call[1][1] === 'require' || call[1][1] === 'requirejs')) && + call[2] === 'config')) { + //A require.config() or requirejs.config() call. + type = call[1][1] + 'Config'; + } else if (call[0] === 'name' && + (call[1] === 'require' || call[1] === 'requirejs')) { + //A require() or requirejs() config call. + //Only want ones that start with an object or an array. + configNode = args[0]; + if (configNode[0] === 'object' || configNode[0] === 'array') { + type = call[1]; + } + } else if (call[0] === 'name' && call[1] === 'define') { + //A define call. + type = 'define'; + } + } + } + + if (type) { + return onMatch(type); + } + + return false; + }; + + /** + * Determines if a specific node is a valid require/requirejs config + * call. That includes calls to require/requirejs.config(). + * @param {Array} node + * @param {Function} onMatch a function to call when a match is found. + * It is passed the match name, and the config, name, deps possible args. + * The config, name and deps args are not normalized. + * + * @returns {String} a JS source string with the valid require/define call. + * Otherwise null. + */ + parse.parseConfigNode = function (node, onMatch) { + var call, configNode, args; + + if (!isArray(node)) { + return false; + } + + if (node[0] === 'call') { + call = node[1]; + args = node[2]; + + if (call) { + //A require.config() or requirejs.config() call. + if ((call[0] === 'dot' && + (call[1] && call[1][0] === 'name' && + (call[1][1] === 'require' || call[1][1] === 'requirejs')) && + call[2] === 'config') || + //A require() or requirejs() config call. + + (call[0] === 'name' && + (call[1] === 'require' || call[1] === 'requirejs')) + ) { + //It is a plain require() call. + configNode = args[0]; + + if (configNode[0] !== 'object') { + return null; + } + + return onMatch(configNode); + + } + } + } + + return false; + }; + + /** + * Converts an AST node into a JS source string. Does not maintain formatting + * or even comments from original source, just returns valid JS source. + * @param {Array} node + * @returns {String} a JS source string. + */ + parse.nodeToString = function (node) { + return processor.gen_code(node, true); + }; + + return parse; +}); +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint regexp: false, strict: false, plusplus: false */ +/*global define: false */ + +define('pragma', ['parse', 'logger'], function (parse, logger) { + + function Temp() {} + + function create(obj, mixin) { + Temp.prototype = obj; + var temp = new Temp(), prop; + + //Avoid any extra memory hanging around + Temp.prototype = null; + + if (mixin) { + for (prop in mixin) { + if (mixin.hasOwnProperty(prop) && !(prop in temp)) { + temp[prop] = mixin[prop]; + } + } + } + + return temp; // Object + } + + var pragma = { + conditionalRegExp: /(exclude|include)Start\s*\(\s*["'](\w+)["']\s*,(.*)\)/, + useStrictRegExp: /['"]use strict['"];/g, + hasRegExp: /has\s*\(\s*['"]([^'"]+)['"]\s*\)/g, + nsRegExp: /(^|[^\.])(requirejs|require|define)\s*\(/, + nsWrapRegExp: /\/\*requirejs namespace: true \*\//, + apiDefRegExp: /var requirejs, require, define;/, + defineCheckRegExp: /typeof\s+define\s*===\s*["']function["']\s*&&\s*define\s*\.\s*amd/g, + defineJQueryRegExp: /typeof\s+define\s*===\s*["']function["']\s*&&\s*define\s*\.\s*amd\s*&&\s*define\s*\.\s*amd\s*\.\s*jQuery/g, + defineHasRegExp: /typeof\s+define\s*==(=)?\s*['"]function['"]\s*&&\s*typeof\s+define\.amd\s*==(=)?\s*['"]object['"]\s*&&\s*define\.amd/g, + defineTernaryRegExp: /typeof\s+define\s*===\s*['"]function["']\s*&&\s*define\s*\.\s*amd\s*\?\s*define/, + amdefineRegExp: /if\s*\(\s*typeof define\s*\!==\s*'function'\s*\)\s*\{\s*[^\{\}]+amdefine[^\{\}]+\}/g, + + removeStrict: function (contents, config) { + return config.useStrict ? contents : contents.replace(pragma.useStrictRegExp, ''); + }, + + namespace: function (fileContents, ns, onLifecycleName) { + if (ns) { + //Namespace require/define calls + fileContents = fileContents.replace(pragma.nsRegExp, '$1' + ns + '.$2('); + + //Namespace define ternary use: + fileContents = fileContents.replace(pragma.defineTernaryRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define.amd ? " + ns + ".define"); + + //Namespace define jquery use: + fileContents = fileContents.replace(pragma.defineJQueryRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define.amd && " + ns + ".define.amd.jQuery"); + + //Namespace has.js define use: + fileContents = fileContents.replace(pragma.defineHasRegExp, + "typeof " + ns + ".define === 'function' && typeof " + ns + ".define.amd === 'object' && " + ns + ".define.amd"); + + //Namespace define checks. + //Do this one last, since it is a subset of the more specific + //checks above. + fileContents = fileContents.replace(pragma.defineCheckRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define.amd"); + + //Check for require.js with the require/define definitions + if (pragma.apiDefRegExp.test(fileContents) && + fileContents.indexOf("if (typeof " + ns + " === 'undefined')") === -1) { + //Wrap the file contents in a typeof check, and a function + //to contain the API globals. + fileContents = "var " + ns + ";(function () { if (typeof " + + ns + " === 'undefined') {\n" + + ns + ' = {};\n' + + fileContents + + "\n" + + ns + ".requirejs = requirejs;" + + ns + ".require = require;" + + ns + ".define = define;\n" + + "}\n}());"; + } + + //Finally, if the file wants a special wrapper because it ties + //in to the requirejs internals in a way that would not fit + //the above matches, do that. Look for /*requirejs namespace: true*/ + if (pragma.nsWrapRegExp.test(fileContents)) { + //Remove the pragma. + fileContents = fileContents.replace(pragma.nsWrapRegExp, ''); + + //Alter the contents. + fileContents = '(function () {\n' + + 'var require = ' + ns + '.require,' + + 'requirejs = ' + ns + '.requirejs,' + + 'define = ' + ns + '.define;\n' + + fileContents + + '\n}());' + } + } + + return fileContents; + }, + + /** + * processes the fileContents for some //>> conditional statements + */ + process: function (fileName, fileContents, config, onLifecycleName, pluginCollector) { + /*jslint evil: true */ + var foundIndex = -1, startIndex = 0, lineEndIndex, conditionLine, + matches, type, marker, condition, isTrue, endRegExp, endMatches, + endMarkerIndex, shouldInclude, startLength, lifecycleHas, deps, + i, dep, moduleName, + lifecyclePragmas, pragmas = config.pragmas, hasConfig = config.has, + //Legacy arg defined to help in dojo conversion script. Remove later + //when dojo no longer needs conversion: + kwArgs = pragmas; + + //Mix in a specific lifecycle scoped object, to allow targeting + //some pragmas/has tests to only when files are saved, or at different + //lifecycle events. Do not bother with kwArgs in this section, since + //the old dojo kwArgs were for all points in the build lifecycle. + if (onLifecycleName) { + lifecyclePragmas = config['pragmas' + onLifecycleName]; + lifecycleHas = config['has' + onLifecycleName]; + + if (lifecyclePragmas) { + pragmas = create(pragmas || {}, lifecyclePragmas); + } + + if (lifecycleHas) { + hasConfig = create(hasConfig || {}, lifecycleHas); + } + } + + //Replace has references if desired + if (hasConfig) { + fileContents = fileContents.replace(pragma.hasRegExp, function (match, test) { + if (test in hasConfig) { + return !!hasConfig[test]; + } + return match; + }); + } + + if (!config.skipPragmas) { + + while ((foundIndex = fileContents.indexOf("//>>", startIndex)) !== -1) { + //Found a conditional. Get the conditional line. + lineEndIndex = fileContents.indexOf("\n", foundIndex); + if (lineEndIndex === -1) { + lineEndIndex = fileContents.length - 1; + } + + //Increment startIndex past the line so the next conditional search can be done. + startIndex = lineEndIndex + 1; + + //Break apart the conditional. + conditionLine = fileContents.substring(foundIndex, lineEndIndex + 1); + matches = conditionLine.match(pragma.conditionalRegExp); + if (matches) { + type = matches[1]; + marker = matches[2]; + condition = matches[3]; + isTrue = false; + //See if the condition is true. + try { + isTrue = !!eval("(" + condition + ")"); + } catch (e) { + throw "Error in file: " + + fileName + + ". Conditional comment: " + + conditionLine + + " failed with this error: " + e; + } + + //Find the endpoint marker. + endRegExp = new RegExp('\\/\\/\\>\\>\\s*' + type + 'End\\(\\s*[\'"]' + marker + '[\'"]\\s*\\)', "g"); + endMatches = endRegExp.exec(fileContents.substring(startIndex, fileContents.length)); + if (endMatches) { + endMarkerIndex = startIndex + endRegExp.lastIndex - endMatches[0].length; + + //Find the next line return based on the match position. + lineEndIndex = fileContents.indexOf("\n", endMarkerIndex); + if (lineEndIndex === -1) { + lineEndIndex = fileContents.length - 1; + } + + //Should we include the segment? + shouldInclude = ((type === "exclude" && !isTrue) || (type === "include" && isTrue)); + + //Remove the conditional comments, and optionally remove the content inside + //the conditional comments. + startLength = startIndex - foundIndex; + fileContents = fileContents.substring(0, foundIndex) + + (shouldInclude ? fileContents.substring(startIndex, endMarkerIndex) : "") + + fileContents.substring(lineEndIndex + 1, fileContents.length); + + //Move startIndex to foundIndex, since that is the new position in the file + //where we need to look for more conditionals in the next while loop pass. + startIndex = foundIndex; + } else { + throw "Error in file: " + + fileName + + ". Cannot find end marker for conditional comment: " + + conditionLine; + + } + } + } + } + + //If need to find all plugin resources to optimize, do that now, + //before namespacing, since the namespacing will change the API + //names. + //If there is a plugin collector, scan the file for plugin resources. + if (config.optimizeAllPluginResources && pluginCollector) { + try { + deps = parse.findDependencies(fileName, fileContents); + if (deps.length) { + for (i = 0; (dep = deps[i]); i++) { + if (dep.indexOf('!') !== -1) { + (pluginCollector[moduleName] || + (pluginCollector[moduleName] = [])).push(dep); + } + } + } + } catch (eDep) { + logger.error('Parse error looking for plugin resources in ' + + fileName + ', skipping.'); + } + } + + //Strip amdefine use for node-shared modules. + fileContents = fileContents.replace(pragma.amdefineRegExp, ''); + + //Do namespacing + if (onLifecycleName === 'OnSave' && config.namespace) { + fileContents = pragma.namespace(fileContents, config.namespace, onLifecycleName); + } + + + return pragma.removeStrict(fileContents, config); + } + }; + + return pragma; +}); +if(env === 'node') { +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false */ + +define('node/optimize', {}); + +} + +if(env === 'rhino') { +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false, plusplus: false */ +/*global define: false, java: false, Packages: false */ + +define('rhino/optimize', ['logger'], function (logger) { + + //Add .reduce to Rhino so UglifyJS can run in Rhino, + //inspired by https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/reduce + //but rewritten for brevity, and to be good enough for use by UglifyJS. + if (!Array.prototype.reduce) { + Array.prototype.reduce = function (fn /*, initialValue */) { + var i = 0, + length = this.length, + accumulator; + + if (arguments.length >= 2) { + accumulator = arguments[1]; + } else { + do { + if (i in this) { + accumulator = this[i++]; + break; + } + } + while (true); + } + + for (; i < length; i++) { + if (i in this) { + accumulator = fn.call(undefined, accumulator, this[i], i, this); + } + } + + return accumulator; + }; + } + + var JSSourceFilefromCode, optimize; + + //Bind to Closure compiler, but if it is not available, do not sweat it. + try { + JSSourceFilefromCode = java.lang.Class.forName('com.google.javascript.jscomp.JSSourceFile').getMethod('fromCode', [java.lang.String, java.lang.String]); + } catch (e) {} + + //Helper for closure compiler, because of weird Java-JavaScript interactions. + function closurefromCode(filename, content) { + return JSSourceFilefromCode.invoke(null, [filename, content]); + } + + optimize = { + closure: function (fileName, fileContents, keepLines, config) { + config = config || {}; + var jscomp = Packages.com.google.javascript.jscomp, + flags = Packages.com.google.common.flags, + //Fake extern + externSourceFile = closurefromCode("fakeextern.js", " "), + //Set up source input + jsSourceFile = closurefromCode(String(fileName), String(fileContents)), + options, option, FLAG_compilation_level, compiler, + Compiler = Packages.com.google.javascript.jscomp.Compiler, + result; + + logger.trace("Minifying file: " + fileName); + + //Set up options + options = new jscomp.CompilerOptions(); + for (option in config.CompilerOptions) { + // options are false by default and jslint wanted an if statement in this for loop + if (config.CompilerOptions[option]) { + options[option] = config.CompilerOptions[option]; + } + + } + options.prettyPrint = keepLines || options.prettyPrint; + + FLAG_compilation_level = jscomp.CompilationLevel[config.CompilationLevel || 'SIMPLE_OPTIMIZATIONS']; + FLAG_compilation_level.setOptionsForCompilationLevel(options); + + //Trigger the compiler + Compiler.setLoggingLevel(Packages.java.util.logging.Level[config.loggingLevel || 'WARNING']); + compiler = new Compiler(); + + result = compiler.compile(externSourceFile, jsSourceFile, options); + if (!result.success) { + logger.error('Cannot closure compile file: ' + fileName + '. Skipping it.'); + } else { + fileContents = compiler.toSource(); + } + + return fileContents; + } + }; + + return optimize; +}); +} +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: false, nomen: false, regexp: false */ +/*global define: false */ + +define('optimize', [ 'lang', 'logger', 'env!env/optimize', 'env!env/file', 'parse', + 'pragma', 'uglifyjs/index'], +function (lang, logger, envOptimize, file, parse, + pragma, uglify) { + + var optimize, + cssImportRegExp = /\@import\s+(url\()?\s*([^);]+)\s*(\))?([\w, ]*)(;)?/g, + cssUrlRegExp = /\url\(\s*([^\)]+)\s*\)?/g; + + /** + * If an URL from a CSS url value contains start/end quotes, remove them. + * This is not done in the regexp, since my regexp fu is not that strong, + * and the CSS spec allows for ' and " in the URL if they are backslash escaped. + * @param {String} url + */ + function cleanCssUrlQuotes(url) { + //Make sure we are not ending in whitespace. + //Not very confident of the css regexps above that there will not be ending + //whitespace. + url = url.replace(/\s+$/, ""); + + if (url.charAt(0) === "'" || url.charAt(0) === "\"") { + url = url.substring(1, url.length - 1); + } + + return url; + } + + /** + * Inlines nested stylesheets that have @import calls in them. + * @param {String} fileName the file name + * @param {String} fileContents the file contents + * @param {String} cssImportIgnore comma delimited string of files to ignore + * @param {Object} included an object used to track the files already imported + */ + function flattenCss(fileName, fileContents, cssImportIgnore, included) { + //Find the last slash in the name. + fileName = fileName.replace(lang.backSlashRegExp, "/"); + var endIndex = fileName.lastIndexOf("/"), + //Make a file path based on the last slash. + //If no slash, so must be just a file name. Use empty string then. + filePath = (endIndex !== -1) ? fileName.substring(0, endIndex + 1) : "", + //store a list of merged files + importList = []; + + //Make sure we have a delimited ignore list to make matching faster + if (cssImportIgnore && cssImportIgnore.charAt(cssImportIgnore.length - 1) !== ",") { + cssImportIgnore += ","; + } + + fileContents = fileContents.replace(cssImportRegExp, function (fullMatch, urlStart, importFileName, urlEnd, mediaTypes) { + //Only process media type "all" or empty media type rules. + if (mediaTypes && ((mediaTypes.replace(/^\s\s*/, '').replace(/\s\s*$/, '')) !== "all")) { + return fullMatch; + } + + importFileName = cleanCssUrlQuotes(importFileName); + + //Ignore the file import if it is part of an ignore list. + if (cssImportIgnore && cssImportIgnore.indexOf(importFileName + ",") !== -1) { + return fullMatch; + } + + //Make sure we have a unix path for the rest of the operation. + importFileName = importFileName.replace(lang.backSlashRegExp, "/"); + + try { + //if a relative path, then tack on the filePath. + //If it is not a relative path, then the readFile below will fail, + //and we will just skip that import. + var fullImportFileName = importFileName.charAt(0) === "/" ? importFileName : filePath + importFileName, + importContents = file.readFile(fullImportFileName), i, + importEndIndex, importPath, fixedUrlMatch, colonIndex, parts, flat; + + //Skip the file if it has already been included. + if (included[fullImportFileName]) { + return ''; + } + included[fullImportFileName] = true; + + //Make sure to flatten any nested imports. + flat = flattenCss(fullImportFileName, importContents, cssImportIgnore, included); + importContents = flat.fileContents; + + if (flat.importList.length) { + importList.push.apply(importList, flat.importList); + } + + //Make the full import path + importEndIndex = importFileName.lastIndexOf("/"); + + //Make a file path based on the last slash. + //If no slash, so must be just a file name. Use empty string then. + importPath = (importEndIndex !== -1) ? importFileName.substring(0, importEndIndex + 1) : ""; + + //fix url() on relative import (#5) + importPath = importPath.replace(/^\.\//, ''); + + //Modify URL paths to match the path represented by this file. + importContents = importContents.replace(cssUrlRegExp, function (fullMatch, urlMatch) { + fixedUrlMatch = cleanCssUrlQuotes(urlMatch); + fixedUrlMatch = fixedUrlMatch.replace(lang.backSlashRegExp, "/"); + + //Only do the work for relative URLs. Skip things that start with / or have + //a protocol. + colonIndex = fixedUrlMatch.indexOf(":"); + if (fixedUrlMatch.charAt(0) !== "/" && (colonIndex === -1 || colonIndex > fixedUrlMatch.indexOf("/"))) { + //It is a relative URL, tack on the path prefix + urlMatch = importPath + fixedUrlMatch; + } else { + logger.trace(importFileName + "\n URL not a relative URL, skipping: " + urlMatch); + } + + //Collapse .. and . + parts = urlMatch.split("/"); + for (i = parts.length - 1; i > 0; i--) { + if (parts[i] === ".") { + parts.splice(i, 1); + } else if (parts[i] === "..") { + if (i !== 0 && parts[i - 1] !== "..") { + parts.splice(i - 1, 2); + i -= 1; + } + } + } + + return "url(" + parts.join("/") + ")"; + }); + + importList.push(fullImportFileName); + return importContents; + } catch (e) { + logger.warn(fileName + "\n Cannot inline css import, skipping: " + importFileName); + return fullMatch; + } + }); + + return { + importList : importList, + fileContents : fileContents + }; + } + + optimize = { + licenseCommentRegExp: /\/\*[\s\S]*?\*\//g, + + /** + * Optimizes a file that contains JavaScript content. Optionally collects + * plugin resources mentioned in a file, and then passes the content + * through an minifier if one is specified via config.optimize. + * + * @param {String} fileName the name of the file to optimize + * @param {String} outFileName the name of the file to use for the + * saved optimized content. + * @param {Object} config the build config object. + * @param {String} [moduleName] the module name to use for the file. + * Used for plugin resource collection. + * @param {Array} [pluginCollector] storage for any plugin resources + * found. + */ + jsFile: function (fileName, outFileName, config, moduleName, pluginCollector) { + var parts = (config.optimize + "").split('.'), + optimizerName = parts[0], + keepLines = parts[1] === 'keepLines', + fileContents; + + fileContents = file.readFile(fileName); + + fileContents = optimize.js(fileName, fileContents, optimizerName, + keepLines, config, pluginCollector); + + file.saveUtf8File(outFileName, fileContents); + }, + + /** + * Optimizes a file that contains JavaScript content. Optionally collects + * plugin resources mentioned in a file, and then passes the content + * through an minifier if one is specified via config.optimize. + * + * @param {String} fileName the name of the file that matches the + * fileContents. + * @param {String} fileContents the string of JS to optimize. + * @param {String} [optimizerName] optional name of the optimizer to + * use. 'uglify' is default. + * @param {Boolean} [keepLines] whether to keep line returns in the optimization. + * @param {Object} [config] the build config object. + * @param {Array} [pluginCollector] storage for any plugin resources + * found. + */ + js: function (fileName, fileContents, optimizerName, keepLines, config, pluginCollector) { + var licenseContents = '', + optFunc, match, comment; + + config = config || {}; + + //Apply pragmas/namespace renaming + fileContents = pragma.process(fileName, fileContents, config, 'OnSave', pluginCollector); + + //Optimize the JS files if asked. + if (optimizerName && optimizerName !== 'none') { + optFunc = envOptimize[optimizerName] || optimize.optimizers[optimizerName]; + if (!optFunc) { + throw new Error('optimizer with name of "' + + optimizerName + + '" not found for this environment'); + } + + if (config.preserveLicenseComments) { + //Pull out any license comments for prepending after optimization. + optimize.licenseCommentRegExp.lastIndex = 0; + while ((match = optimize.licenseCommentRegExp.exec(fileContents))) { + comment = match[0]; + //Only keep the comments if they are license comments. + if (comment.indexOf('@license') !== -1 || + comment.indexOf('/*!') === 0) { + licenseContents += comment + '\n'; + } + } + } + + fileContents = licenseContents + optFunc(fileName, fileContents, keepLines, + config[optimizerName]); + } + + return fileContents; + }, + + /** + * Optimizes one CSS file, inlining @import calls, stripping comments, and + * optionally removes line returns. + * @param {String} fileName the path to the CSS file to optimize + * @param {String} outFileName the path to save the optimized file. + * @param {Object} config the config object with the optimizeCss and + * cssImportIgnore options. + */ + cssFile: function (fileName, outFileName, config) { + + //Read in the file. Make sure we have a JS string. + var originalFileContents = file.readFile(fileName), + flat = flattenCss(fileName, originalFileContents, config.cssImportIgnore, {}), + fileContents = flat.fileContents, + startIndex, endIndex, buildText; + + //Do comment removal. + try { + if (config.optimizeCss.indexOf(".keepComments") === -1) { + startIndex = -1; + //Get rid of comments. + while ((startIndex = fileContents.indexOf("/*")) !== -1) { + endIndex = fileContents.indexOf("*/", startIndex + 2); + if (endIndex === -1) { + throw "Improper comment in CSS file: " + fileName; + } + fileContents = fileContents.substring(0, startIndex) + fileContents.substring(endIndex + 2, fileContents.length); + } + } + //Get rid of newlines. + if (config.optimizeCss.indexOf(".keepLines") === -1) { + fileContents = fileContents.replace(/[\r\n]/g, ""); + fileContents = fileContents.replace(/\s+/g, " "); + fileContents = fileContents.replace(/\{\s/g, "{"); + fileContents = fileContents.replace(/\s\}/g, "}"); + } else { + //Remove multiple empty lines. + fileContents = fileContents.replace(/(\r\n)+/g, "\r\n"); + fileContents = fileContents.replace(/(\n)+/g, "\n"); + } + } catch (e) { + fileContents = originalFileContents; + logger.error("Could not optimized CSS file: " + fileName + ", error: " + e); + } + + file.saveUtf8File(outFileName, fileContents); + + //text output to stdout and/or written to build.txt file + buildText = "\n"+ outFileName.replace(config.dir, "") +"\n----------------\n"; + flat.importList.push(fileName); + buildText += flat.importList.map(function(path){ + return path.replace(config.dir, ""); + }).join("\n"); + return buildText +"\n"; + }, + + /** + * Optimizes CSS files, inlining @import calls, stripping comments, and + * optionally removes line returns. + * @param {String} startDir the path to the top level directory + * @param {Object} config the config object with the optimizeCss and + * cssImportIgnore options. + */ + css: function (startDir, config) { + var buildText = "", + i, fileName, fileList; + if (config.optimizeCss.indexOf("standard") !== -1) { + fileList = file.getFilteredFileList(startDir, /\.css$/, true); + if (fileList) { + for (i = 0; i < fileList.length; i++) { + fileName = fileList[i]; + logger.trace("Optimizing (" + config.optimizeCss + ") CSS file: " + fileName); + buildText += optimize.cssFile(fileName, fileName, config); + } + } + } + return buildText; + }, + + optimizers: { + uglify: function (fileName, fileContents, keepLines, config) { + var parser = uglify.parser, + processor = uglify.uglify, + ast; + + config = config || {}; + + logger.trace("Uglifying file: " + fileName); + + try { + ast = parser.parse(fileContents, config.strict_semicolons); + ast = processor.ast_mangle(ast, config); + ast = processor.ast_squeeze(ast, config); + + fileContents = processor.gen_code(ast, config); + } catch (e) { + logger.error('Cannot uglify file: ' + fileName + '. Skipping it. Error is:\n' + e.toString()); + } + return fileContents; + } + } + }; + + return optimize; +}); +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +/* + * This file patches require.js to communicate with the build system. + */ + +/*jslint nomen: false, plusplus: false, regexp: false, strict: false */ +/*global require: false, define: true */ + +//NOT asking for require as a dependency since the goal is to modify the +//global require below +define('requirePatch', [ 'env!env/file', 'pragma', 'parse'], +function (file, pragma, parse) { + + var allowRun = true; + + //This method should be called when the patches to require should take hold. + return function () { + if (!allowRun) { + return; + } + allowRun = false; + + var layer, + pluginBuilderRegExp = /(["']?)pluginBuilder(["']?)\s*[=\:]\s*["']([^'"\s]+)["']/, + oldDef; + + + /** Print out some extrs info about the module tree that caused the error. **/ + require.onError = function (err) { + + var msg = '\nIn module tree:\n', + standardIndent = ' ', + tree = err.moduleTree, + i, j, mod; + + if (tree && tree.length > 0) { + for (i = tree.length - 1; i > -1 && (mod = tree[i]); i--) { + for (j = tree.length - i; j > -1; j--) { + msg += standardIndent; + } + msg += mod + '\n'; + } + + err = new Error(err.toString() + msg); + } + + throw err; + }; + + //Stored cached file contents for reuse in other layers. + require._cachedFileContents = {}; + + /** Reset state for each build layer pass. */ + require._buildReset = function () { + var oldContext = require.s.contexts._; + + //Clear up the existing context. + delete require.s.contexts._; + + //Set up new context, so the layer object can hold onto it. + require({}); + + layer = require._layer = { + buildPathMap: {}, + buildFileToModule: {}, + buildFilePaths: [], + pathAdded: {}, + modulesWithNames: {}, + needsDefine: {}, + existingRequireUrl: "", + context: require.s.contexts._ + }; + + //Return the previous context in case it is needed, like for + //the basic config object. + return oldContext; + }; + + require._buildReset(); + + /** + * Makes sure the URL is something that can be supported by the + * optimization tool. + * @param {String} url + * @returns {Boolean} + */ + require._isSupportedBuildUrl = function (url) { + //Ignore URLs with protocols, hosts or question marks, means either network + //access is needed to fetch it or it is too dynamic. Note that + //on Windows, full paths are used for some urls, which include + //the drive, like c:/something, so need to test for something other + //than just a colon. + return url.indexOf("://") === -1 && url.indexOf("?") === -1 && + url.indexOf('empty:') !== 0 && url.indexOf('//') !== 0; + }; + + //Override define() to catch modules that just define an object, so that + //a dummy define call is not put in the build file for them. They do + //not end up getting defined via require.execCb, so we need to catch them + //at the define call. + oldDef = define; + + //This function signature does not have to be exact, just match what we + //are looking for. + define = function (name, obj) { + if (typeof name === "string" && !layer.needsDefine[name]) { + layer.modulesWithNames[name] = true; + } + return oldDef.apply(require, arguments); + }; + + define.amd = oldDef.amd; + + //Add some utilities for plugins + require._readFile = file.readFile; + require._fileExists = function (path) { + return file.exists(path); + }; + + function normalizeUrlWithBase(context, moduleName, url) { + //Adjust the URL if it was not transformed to use baseUrl. + if (require.jsExtRegExp.test(moduleName)) { + url = (context.config.dir || context.config.dirBaseUrl) + url; + } + return url; + } + + //Override load so that the file paths can be collected. + require.load = function (context, moduleName, url) { + /*jslint evil: true */ + var contents, pluginBuilderMatch, builderName; + + context.scriptCount += 1; + + //Only handle urls that can be inlined, so that means avoiding some + //URLs like ones that require network access or may be too dynamic, + //like JSONP + if (require._isSupportedBuildUrl(url)) { + //Adjust the URL if it was not transformed to use baseUrl. + url = normalizeUrlWithBase(context, moduleName, url); + + //Save the module name to path and path to module name mappings. + layer.buildPathMap[moduleName] = url; + layer.buildFileToModule[url] = moduleName; + + if (moduleName in context.plugins) { + //plugins need to have their source evaled as-is. + context.needFullExec[moduleName] = true; + } + + try { + if (url in require._cachedFileContents && + (!context.needFullExec[moduleName] || context.fullExec[moduleName])) { + contents = require._cachedFileContents[url]; + } else { + //Load the file contents, process for conditionals, then + //evaluate it. + contents = file.readFile(url); + + //If there is a read filter, run it now. + if (context.config.onBuildRead) { + contents = context.config.onBuildRead(moduleName, url, contents); + } + + contents = pragma.process(url, contents, context.config, 'OnExecute'); + + //Find out if the file contains a require() definition. Need to know + //this so we can inject plugins right after it, but before they are needed, + //and to make sure this file is first, so that define calls work. + //This situation mainly occurs when the build is done on top of the output + //of another build, where the first build may include require somewhere in it. + try { + if (!layer.existingRequireUrl && parse.definesRequire(url, contents)) { + layer.existingRequireUrl = url; + } + } catch (e1) { + throw new Error('Parse error using UglifyJS ' + + 'for file: ' + url + '\n' + e1); + } + + if (moduleName in context.plugins) { + //This is a loader plugin, check to see if it has a build extension, + //otherwise the plugin will act as the plugin builder too. + pluginBuilderMatch = pluginBuilderRegExp.exec(contents); + if (pluginBuilderMatch) { + //Load the plugin builder for the plugin contents. + builderName = context.normalize(pluginBuilderMatch[3], moduleName); + contents = file.readFile(context.nameToUrl(builderName)); + } + } + + //Parse out the require and define calls. + //Do this even for plugins in case they have their own + //dependencies that may be separate to how the pluginBuilder works. + try { + if (!context.needFullExec[moduleName]) { + contents = parse(moduleName, url, contents, { + insertNeedsDefine: true, + has: context.config.has, + findNestedDependencies: context.config.findNestedDependencies + }); + } + } catch (e2) { + throw new Error('Parse error using UglifyJS ' + + 'for file: ' + url + '\n' + e2); + } + + require._cachedFileContents[url] = contents; + } + + if (contents) { + eval(contents); + } + + //Need to close out completion of this module + //so that listeners will get notified that it is available. + try { + context.completeLoad(moduleName); + } catch (e) { + //Track which module could not complete loading. + (e.moduleTree || (e.moduleTree = [])).push(moduleName); + throw e; + } + + } catch (eOuter) { + if (!eOuter.fileName) { + eOuter.fileName = url; + } + throw eOuter; + } + } else { + //With unsupported URLs still need to call completeLoad to + //finish loading. + context.completeLoad(moduleName); + } + + //Mark the module loaded. + context.loaded[moduleName] = true; + }; + + + //Called when execManager runs for a dependency. Used to figure out + //what order of execution. + require.onResourceLoad = function (context, map) { + var fullName = map.fullName, + url; + + //Ignore "fake" modules, usually generated by plugin code, since + //they do not map back to a real file to include in the optimizer, + //or it will be included, but in a different form. + if (context.fake[fullName]) { + return; + } + + //A plugin. + if (map.prefix) { + if (!layer.pathAdded[fullName]) { + layer.buildFilePaths.push(fullName); + //For plugins the real path is not knowable, use the name + //for both module to file and file to module mappings. + layer.buildPathMap[fullName] = fullName; + layer.buildFileToModule[fullName] = fullName; + layer.modulesWithNames[fullName] = true; + layer.pathAdded[fullName] = true; + } + } else if (map.url && require._isSupportedBuildUrl(map.url)) { + //If the url has not been added to the layer yet, and it + //is from an actual file that was loaded, add it now. + url = normalizeUrlWithBase(context, map.fullName, map.url); + if (!layer.pathAdded[url] && layer.buildPathMap[fullName]) { + //Remember the list of dependencies for this layer. + layer.buildFilePaths.push(url); + layer.pathAdded[url] = true; + } + } + }; + + //Called by output of the parse() function, when a file does not + //explicitly call define, probably just require, but the parse() + //function normalizes on define() for dependency mapping and file + //ordering works correctly. + require.needsDefine = function (moduleName) { + layer.needsDefine[moduleName] = true; + }; + + //Marks module has having a name, and optionally executes the + //callback, but only if it meets certain criteria. + require.execCb = function (name, cb, args, exports) { + if (!layer.needsDefine[name]) { + layer.modulesWithNames[name] = true; + } + if (cb.__requireJsBuild || layer.context.needFullExec[name]) { + return cb.apply(exports, args); + } + return undefined; + }; + }; +}); +/** + * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: false, regexp: false, strict: false */ +/*global define: false, console: false */ + +define('commonJs', ['env!env/file', 'uglifyjs/index'], function (file, uglify) { + var commonJs = { + depRegExp: /require\s*\(\s*["']([\w-_\.\/]+)["']\s*\)/g, + + //Set this to false in non-rhino environments. If rhino, then it uses + //rhino's decompiler to remove comments before looking for require() calls, + //otherwise, it will use a crude regexp approach to remove comments. The + //rhino way is more robust, but he regexp is more portable across environments. + useRhino: true, + + //Set to false if you do not want this file to log. Useful in environments + //like node where you want the work to happen without noise. + useLog: true, + + convertDir: function (commonJsPath, savePath) { + var fileList, i, + jsFileRegExp = /\.js$/, + fileName, convertedFileName, fileContents; + + //Get list of files to convert. + fileList = file.getFilteredFileList(commonJsPath, /\w/, true); + + //Normalize on front slashes and make sure the paths do not end in a slash. + commonJsPath = commonJsPath.replace(/\\/g, "/"); + savePath = savePath.replace(/\\/g, "/"); + if (commonJsPath.charAt(commonJsPath.length - 1) === "/") { + commonJsPath = commonJsPath.substring(0, commonJsPath.length - 1); + } + if (savePath.charAt(savePath.length - 1) === "/") { + savePath = savePath.substring(0, savePath.length - 1); + } + + //Cycle through all the JS files and convert them. + if (!fileList || !fileList.length) { + if (commonJs.useLog) { + if (commonJsPath === "convert") { + //A request just to convert one file. + console.log('\n\n' + commonJs.convert(savePath, file.readFile(savePath))); + } else { + console.log("No files to convert in directory: " + commonJsPath); + } + } + } else { + for (i = 0; (fileName = fileList[i]); i++) { + convertedFileName = fileName.replace(commonJsPath, savePath); + + //Handle JS files. + if (jsFileRegExp.test(fileName)) { + fileContents = file.readFile(fileName); + fileContents = commonJs.convert(fileName, fileContents); + file.saveUtf8File(convertedFileName, fileContents); + } else { + //Just copy the file over. + file.copyFile(fileName, convertedFileName, true); + } + } + } + }, + + /** + * Removes the comments from a string. + * + * @param {String} fileContents + * @param {String} fileName mostly used for informative reasons if an error. + * + * @returns {String} a string of JS with comments removed. + */ + removeComments: function (fileContents, fileName) { + //Uglify's ast generation removes comments, so just convert to ast, + //then back to source code to get rid of comments. + return uglify.uglify.gen_code(uglify.parser.parse(fileContents), true); + }, + + /** + * Regexp for testing if there is already a require.def call in the file, + * in which case do not try to convert it. + */ + defRegExp: /define\s*\(\s*("|'|\[|function)/, + + /** + * Regexp for testing if there is a require([]) or require(function(){}) + * call, indicating the file is already in requirejs syntax. + */ + rjsRegExp: /require\s*\(\s*(\[|function)/, + + /** + * Does the actual file conversion. + * + * @param {String} fileName the name of the file. + * + * @param {String} fileContents the contents of a file :) + * + * @param {Boolean} skipDeps if true, require("") dependencies + * will not be searched, but the contents will just be wrapped in the + * standard require, exports, module dependencies. Only usable in sync + * environments like Node where the require("") calls can be resolved on + * the fly. + * + * @returns {String} the converted contents + */ + convert: function (fileName, fileContents, skipDeps) { + //Strip out comments. + try { + var deps = [], depName, match, + //Remove comments + tempContents = commonJs.removeComments(fileContents, fileName); + + //First see if the module is not already RequireJS-formatted. + if (commonJs.defRegExp.test(tempContents) || commonJs.rjsRegExp.test(tempContents)) { + return fileContents; + } + + //Reset the regexp to start at beginning of file. Do this + //since the regexp is reused across files. + commonJs.depRegExp.lastIndex = 0; + + if (!skipDeps) { + //Find dependencies in the code that was not in comments. + while ((match = commonJs.depRegExp.exec(tempContents))) { + depName = match[1]; + if (depName) { + deps.push('"' + depName + '"'); + } + } + } + + //Construct the wrapper boilerplate. + fileContents = 'define(["require", "exports", "module"' + + (deps.length ? ', ' + deps.join(",") : '') + '], ' + + 'function(require, exports, module) {\n' + + fileContents + + '\n});\n'; + } catch (e) { + console.log("COULD NOT CONVERT: " + fileName + ", so skipping it. Error was: " + e); + return fileContents; + } + + return fileContents; + } + }; + + return commonJs; +}); +/** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: true, nomen: true */ +/*global define, require */ + + +define('build', [ 'lang', 'logger', 'env!env/file', 'parse', 'optimize', 'pragma', + 'env!env/load', 'requirePatch'], +function (lang, logger, file, parse, optimize, pragma, + load, requirePatch) { + 'use strict'; + + var build, buildBaseConfig, + endsWithSemiColonRegExp = /;\s*$/; + + buildBaseConfig = { + appDir: "", + pragmas: {}, + paths: {}, + optimize: "uglify", + optimizeCss: "standard.keepLines", + inlineText: true, + isBuild: true, + optimizeAllPluginResources: false, + findNestedDependencies: false, + preserveLicenseComments: true, + //By default, all files/directories are copied, unless + //they match this regexp, by default just excludes .folders + dirExclusionRegExp: file.dirExclusionRegExp + }; + + /** + * Some JS may not be valid if concatenated with other JS, in particular + * the style of omitting semicolons and rely on ASI. Add a semicolon in + * those cases. + */ + function addSemiColon(text) { + if (endsWithSemiColonRegExp.test(text)) { + return text; + } else { + return text + ";"; + } + } + + /** + * If the path looks like an URL, throw an error. This is to prevent + * people from using URLs with protocols in the build config, since + * the optimizer is not set up to do network access. However, be + * sure to allow absolute paths on Windows, like C:\directory. + */ + function disallowUrls(path) { + if ((path.indexOf('://') !== -1 || path.indexOf('//') === 0) && path !== 'empty:') { + throw new Error('Path is not supported: ' + path + + '\nOptimizer can only handle' + + ' local paths. Download the locally if necessary' + + ' and update the config to use a local path.\n' + + 'http://requirejs.org/docs/errors.html#pathnotsupported'); + } + } + + function endsWithSlash(dirName) { + if (dirName.charAt(dirName.length - 1) !== "/") { + dirName += "/"; + } + disallowUrls(dirName); + return dirName; + } + + //Method used by plugin writeFile calls, defined up here to avoid + //jslint warning about "making a function in a loop". + function makeWriteFile(anonDefRegExp, namespaceWithDot, layer) { + function writeFile(name, contents) { + logger.trace('Saving plugin-optimized file: ' + name); + file.saveUtf8File(name, contents); + } + + writeFile.asModule = function (moduleName, fileName, contents) { + writeFile(fileName, + build.toTransport(anonDefRegExp, namespaceWithDot, moduleName, fileName, contents, layer)); + }; + + return writeFile; + } + + /** + * Main API entry point into the build. The args argument can either be + * an array of arguments (like the onese passed on a command-line), + * or it can be a JavaScript object that has the format of a build profile + * file. + * + * If it is an object, then in addition to the normal properties allowed in + * a build profile file, the object should contain one other property: + * + * The object could also contain a "buildFile" property, which is a string + * that is the file path to a build profile that contains the rest + * of the build profile directives. + * + * This function does not return a status, it should throw an error if + * there is a problem completing the build. + */ + build = function (args) { + var buildFile, cmdConfig; + + if (!args || lang.isArray(args)) { + if (!args || args.length < 1) { + logger.error("build.js buildProfile.js\n" + + "where buildProfile.js is the name of the build file (see example.build.js for hints on how to make a build file)."); + return undefined; + } + + //Next args can include a build file path as well as other build args. + //build file path comes first. If it does not contain an = then it is + //a build file path. Otherwise, just all build args. + if (args[0].indexOf("=") === -1) { + buildFile = args[0]; + args.splice(0, 1); + } + + //Remaining args are options to the build + cmdConfig = build.convertArrayToObject(args); + cmdConfig.buildFile = buildFile; + } else { + cmdConfig = args; + } + + return build._run(cmdConfig); + }; + + build._run = function (cmdConfig) { + var buildFileContents = "", + pluginCollector = {}, + buildPaths, fileName, fileNames, + prop, paths, i, + baseConfig, config, + modules, builtModule, srcPath, buildContext, + destPath, moduleName, moduleMap, parentModuleMap, context, + resources, resource, pluginProcessed = {}, plugin; + + //Can now run the patches to require.js to allow it to be used for + //build generation. Do it here instead of at the top of the module + //because we want normal require behavior to load the build tool + //then want to switch to build mode. + requirePatch(); + + config = build.createConfig(cmdConfig); + paths = config.paths; + + if (config.logLevel) { + logger.logLevel(config.logLevel); + } + + if (!config.out && !config.cssIn) { + //This is not just a one-off file build but a full build profile, with + //lots of files to process. + + //First copy all the baseUrl content + file.copyDir((config.appDir || config.baseUrl), config.dir, /\w/, true); + + //Adjust baseUrl if config.appDir is in play, and set up build output paths. + buildPaths = {}; + if (config.appDir) { + //All the paths should be inside the appDir, so just adjust + //the paths to use the dirBaseUrl + for (prop in paths) { + if (paths.hasOwnProperty(prop)) { + buildPaths[prop] = paths[prop].replace(config.baseUrl, config.dirBaseUrl); + } + } + } else { + //If no appDir, then make sure to copy the other paths to this directory. + for (prop in paths) { + if (paths.hasOwnProperty(prop)) { + //Set up build path for each path prefix. + buildPaths[prop] = paths[prop] === 'empty:' ? 'empty:' : prop.replace(/\./g, "/"); + + //Make sure source path is fully formed with baseUrl, + //if it is a relative URL. + srcPath = paths[prop]; + if (srcPath.indexOf('/') !== 0 && srcPath.indexOf(':') === -1) { + srcPath = config.baseUrl + srcPath; + } + + destPath = config.dirBaseUrl + buildPaths[prop]; + + //Skip empty: paths + if (srcPath !== 'empty:') { + //If the srcPath is a directory, copy the whole directory. + if (file.exists(srcPath) && file.isDirectory(srcPath)) { + //Copy files to build area. Copy all files (the /\w/ regexp) + file.copyDir(srcPath, destPath, /\w/, true); + } else { + //Try a .js extension + srcPath += '.js'; + destPath += '.js'; + file.copyFile(srcPath, destPath); + } + } + } + } + } + } + + //Figure out source file location for each module layer. Do this by seeding require + //with source area configuration. This is needed so that later the module layers + //can be manually copied over to the source area, since the build may be + //require multiple times and the above copyDir call only copies newer files. + require({ + baseUrl: config.baseUrl, + paths: paths, + packagePaths: config.packagePaths, + packages: config.packages + }); + buildContext = require.s.contexts._; + modules = config.modules; + + if (modules) { + modules.forEach(function (module) { + if (module.name) { + module._sourcePath = buildContext.nameToUrl(module.name); + //If the module does not exist, and this is not a "new" module layer, + //as indicated by a true "create" property on the module, and + //it is not a plugin-loaded resource, then throw an error. + if (!file.exists(module._sourcePath) && !module.create && + module.name.indexOf('!') === -1) { + throw new Error("ERROR: module path does not exist: " + + module._sourcePath + " for module named: " + module.name + + ". Path is relative to: " + file.absPath('.')); + } + } + }); + } + + if (config.out) { + //Just set up the _buildPath for the module layer. + require(config); + if (!config.cssIn) { + config.modules[0]._buildPath = config.out; + } + } else if (!config.cssIn) { + //Now set up the config for require to use the build area, and calculate the + //build file locations. Pass along any config info too. + baseConfig = { + baseUrl: config.dirBaseUrl, + paths: buildPaths + }; + + lang.mixin(baseConfig, config); + require(baseConfig); + + if (modules) { + modules.forEach(function (module) { + if (module.name) { + module._buildPath = buildContext.nameToUrl(module.name, null); + if (!module.create) { + file.copyFile(module._sourcePath, module._buildPath); + } + } + }); + } + } + + //Run CSS optimizations before doing JS module tracing, to allow + //things like text loader plugins loading CSS to get the optimized + //CSS. + if (config.optimizeCss && config.optimizeCss !== "none" && config.dir) { + buildFileContents += optimize.css(config.dir, config); + } + + if (modules) { + //For each module layer, call require to calculate dependencies. + modules.forEach(function (module) { + module.layer = build.traceDependencies(module, config); + }); + + //Now build up shadow layers for anything that should be excluded. + //Do this after tracing dependencies for each module, in case one + //of those modules end up being one of the excluded values. + modules.forEach(function (module) { + if (module.exclude) { + module.excludeLayers = []; + module.exclude.forEach(function (exclude, i) { + //See if it is already in the list of modules. + //If not trace dependencies for it. + module.excludeLayers[i] = build.findBuildModule(exclude, modules) || + {layer: build.traceDependencies({name: exclude}, config)}; + }); + } + }); + + modules.forEach(function (module) { + if (module.exclude) { + //module.exclude is an array of module names. For each one, + //get the nested dependencies for it via a matching entry + //in the module.excludeLayers array. + module.exclude.forEach(function (excludeModule, i) { + var excludeLayer = module.excludeLayers[i].layer, map = excludeLayer.buildPathMap, prop; + for (prop in map) { + if (map.hasOwnProperty(prop)) { + build.removeModulePath(prop, map[prop], module.layer); + } + } + }); + } + if (module.excludeShallow) { + //module.excludeShallow is an array of module names. + //shallow exclusions are just that module itself, and not + //its nested dependencies. + module.excludeShallow.forEach(function (excludeShallowModule) { + var path = module.layer.buildPathMap[excludeShallowModule]; + if (path) { + build.removeModulePath(excludeShallowModule, path, module.layer); + } + }); + } + + //Flatten them and collect the build output for each module. + builtModule = build.flattenModule(module, module.layer, config); + + //Save it to a temp file for now, in case there are other layers that + //contain optimized content that should not be included in later + //layer optimizations. See issue #56. + file.saveUtf8File(module._buildPath + '-temp', builtModule.text); + buildFileContents += builtModule.buildText; + }); + + //Now move the build layers to their final position. + modules.forEach(function (module) { + var finalPath = module._buildPath; + if (file.exists(finalPath)) { + file.deleteFile(finalPath); + } + file.renameFile(finalPath + '-temp', finalPath); + }); + } + + //Do other optimizations. + if (config.out && !config.cssIn) { + //Just need to worry about one JS file. + fileName = config.modules[0]._buildPath; + optimize.jsFile(fileName, fileName, config); + } else if (!config.cssIn) { + //Normal optimizations across modules. + + //JS optimizations. + fileNames = file.getFilteredFileList(config.dir, /\.js$/, true); + for (i = 0; (fileName = fileNames[i]); i++) { + //Generate the module name from the config.dir root. + moduleName = fileName.replace(config.dir, ''); + //Get rid of the extension + moduleName = moduleName.substring(0, moduleName.length - 3); + optimize.jsFile(fileName, fileName, config, moduleName, pluginCollector); + } + + //Normalize all the plugin resources. + context = require.s.contexts._; + + for (moduleName in pluginCollector) { + if (pluginCollector.hasOwnProperty(moduleName)) { + parentModuleMap = context.makeModuleMap(moduleName); + resources = pluginCollector[moduleName]; + for (i = 0; (resource = resources[i]); i++) { + moduleMap = context.makeModuleMap(resource, parentModuleMap); + if (!context.plugins[moduleMap.prefix]) { + //Set the value in context.plugins so it + //will be evaluated as a full plugin. + context.plugins[moduleMap.prefix] = true; + + //Do not bother if the plugin is not available. + if (!file.exists(require.toUrl(moduleMap.prefix + '.js'))) { + continue; + } + + //Rely on the require in the build environment + //to be synchronous + context.require([moduleMap.prefix]); + + //Now that the plugin is loaded, redo the moduleMap + //since the plugin will need to normalize part of the path. + moduleMap = context.makeModuleMap(resource, parentModuleMap); + } + + //Only bother with plugin resources that can be handled + //processed by the plugin, via support of the writeFile + //method. + if (!pluginProcessed[moduleMap.fullName]) { + //Only do the work if the plugin was really loaded. + //Using an internal access because the file may + //not really be loaded. + plugin = context.defined[moduleMap.prefix]; + if (plugin && plugin.writeFile) { + plugin.writeFile( + moduleMap.prefix, + moduleMap.name, + require, + makeWriteFile( + config.anonDefRegExp, + config.namespaceWithDot + ), + context.config + ); + } + + pluginProcessed[moduleMap.fullName] = true; + } + } + + } + } + + //console.log('PLUGIN COLLECTOR: ' + JSON.stringify(pluginCollector, null, " ")); + + + //All module layers are done, write out the build.txt file. + file.saveUtf8File(config.dir + "build.txt", buildFileContents); + } + + //If just have one CSS file to optimize, do that here. + if (config.cssIn) { + buildFileContents += optimize.cssFile(config.cssIn, config.out, config); + } + + //Print out what was built into which layers. + if (buildFileContents) { + logger.info(buildFileContents); + return buildFileContents; + } + + return ''; + }; + + /** + * Converts command line args like "paths.foo=../some/path" + * result.paths = { foo: '../some/path' } where prop = paths, + * name = paths.foo and value = ../some/path, so it assumes the + * name=value splitting has already happened. + */ + function stringDotToObj(result, prop, name, value) { + if (!result[prop]) { + result[prop] = {}; + } + name = name.substring((prop + '.').length, name.length); + result[prop][name] = value; + } + + //Used by convertArrayToObject to convert some things from prop.name=value + //to a prop: { name: value} + build.dotProps = [ + 'paths.', + 'wrap.', + 'pragmas.', + 'pragmasOnSave.', + 'has.', + 'hasOnSave.', + 'wrap.', + 'uglify.', + 'closure.' + ]; + + build.hasDotPropMatch = function (prop) { + return build.dotProps.some(function (dotProp) { + return prop.indexOf(dotProp) === 0; + }); + }; + + /** + * Converts an array that has String members of "name=value" + * into an object, where the properties on the object are the names in the array. + * Also converts the strings "true" and "false" to booleans for the values. + * member name/value pairs, and converts some comma-separated lists into + * arrays. + * @param {Array} ary + */ + build.convertArrayToObject = function (ary) { + var result = {}, i, separatorIndex, prop, value, + needArray = { + "include": true, + "exclude": true, + "excludeShallow": true + }; + + for (i = 0; i < ary.length; i++) { + separatorIndex = ary[i].indexOf("="); + if (separatorIndex === -1) { + throw "Malformed name/value pair: [" + ary[i] + "]. Format should be name=value"; + } + + value = ary[i].substring(separatorIndex + 1, ary[i].length); + if (value === "true") { + value = true; + } else if (value === "false") { + value = false; + } + + prop = ary[i].substring(0, separatorIndex); + + //Convert to array if necessary + if (needArray[prop]) { + value = value.split(","); + } + + if (build.hasDotPropMatch(prop)) { + stringDotToObj(result, prop.split('.')[0], prop, value); + } else { + result[prop] = value; + } + } + return result; //Object + }; + + build.makeAbsPath = function (path, absFilePath) { + //Add abspath if necessary. If path starts with a slash or has a colon, + //then already is an abolute path. + if (path.indexOf('/') !== 0 && path.indexOf(':') === -1) { + path = absFilePath + + (absFilePath.charAt(absFilePath.length - 1) === '/' ? '' : '/') + + path; + path = file.normalize(path); + } + return path.replace(lang.backSlashRegExp, '/'); + }; + + build.makeAbsObject = function (props, obj, absFilePath) { + var i, prop; + if (obj) { + for (i = 0; (prop = props[i]); i++) { + if (obj.hasOwnProperty(prop)) { + obj[prop] = build.makeAbsPath(obj[prop], absFilePath); + } + } + } + }; + + /** + * For any path in a possible config, make it absolute relative + * to the absFilePath passed in. + */ + build.makeAbsConfig = function (config, absFilePath) { + var props, prop, i; + + props = ["appDir", "dir", "baseUrl"]; + for (i = 0; (prop = props[i]); i++) { + if (config[prop]) { + //Add abspath if necessary, make sure these paths end in + //slashes + if (prop === "baseUrl") { + config.originalBaseUrl = config.baseUrl; + if (config.appDir) { + //If baseUrl with an appDir, the baseUrl is relative to + //the appDir, *not* the absFilePath. appDir and dir are + //made absolute before baseUrl, so this will work. + config.baseUrl = build.makeAbsPath(config.originalBaseUrl, config.appDir); + } else { + //The dir output baseUrl is same as regular baseUrl, both + //relative to the absFilePath. + config.baseUrl = build.makeAbsPath(config[prop], absFilePath); + } + } else { + config[prop] = build.makeAbsPath(config[prop], absFilePath); + } + + config[prop] = endsWithSlash(config[prop]); + } + } + + //Do not allow URLs for paths resources. + if (config.paths) { + for (prop in config.paths) { + if (config.paths.hasOwnProperty(prop)) { + config.paths[prop] = build.makeAbsPath(config.paths[prop], + (config.baseUrl || absFilePath)); + } + } + } + + build.makeAbsObject(["out", "cssIn"], config, absFilePath); + build.makeAbsObject(["startFile", "endFile"], config.wrap, absFilePath); + }; + + build.nestedMix = { + paths: true, + has: true, + hasOnSave: true, + pragmas: true, + pragmasOnSave: true + }; + + /** + * Mixes additional source config into target config, and merges some + * nested config, like paths, correctly. + */ + function mixConfig(target, source) { + var prop, value; + + for (prop in source) { + if (source.hasOwnProperty(prop)) { + //If the value of the property is a plain object, then + //allow a one-level-deep mixing of it. + value = source[prop]; + if (typeof value === 'object' && value && + !lang.isArray(value) && !lang.isFunction(value) && + !lang.isRegExp(value)) { + target[prop] = lang.mixin({}, target[prop], value, true); + } else { + target[prop] = value; + } + } + } + } + + /** + * Creates a config object for an optimization build. + * It will also read the build profile if it is available, to create + * the configuration. + * + * @param {Object} cfg config options that take priority + * over defaults and ones in the build file. These options could + * be from a command line, for instance. + * + * @param {Object} the created config object. + */ + build.createConfig = function (cfg) { + /*jslint evil: true */ + var config = {}, buildFileContents, buildFileConfig, mainConfig, + mainConfigFile, prop, buildFile, absFilePath; + + //Make sure all paths are relative to current directory. + absFilePath = file.absPath('.'); + build.makeAbsConfig(cfg, absFilePath); + build.makeAbsConfig(buildBaseConfig, absFilePath); + + lang.mixin(config, buildBaseConfig); + lang.mixin(config, cfg, true); + + if (config.buildFile) { + //A build file exists, load it to get more config. + buildFile = file.absPath(config.buildFile); + + //Find the build file, and make sure it exists, if this is a build + //that has a build profile, and not just command line args with an in=path + if (!file.exists(buildFile)) { + throw new Error("ERROR: build file does not exist: " + buildFile); + } + + absFilePath = config.baseUrl = file.absPath(file.parent(buildFile)); + + //Load build file options. + buildFileContents = file.readFile(buildFile); + try { + buildFileConfig = eval("(" + buildFileContents + ")"); + build.makeAbsConfig(buildFileConfig, absFilePath); + + if (!buildFileConfig.out && !buildFileConfig.dir) { + buildFileConfig.dir = (buildFileConfig.baseUrl || config.baseUrl) + "/build/"; + } + + } catch (e) { + throw new Error("Build file " + buildFile + " is malformed: " + e); + } + } + + mainConfigFile = config.mainConfigFile || (buildFileConfig && buildFileConfig.mainConfigFile); + if (mainConfigFile) { + mainConfigFile = build.makeAbsPath(mainConfigFile, absFilePath); + try { + mainConfig = parse.findConfig(mainConfigFile, file.readFile(mainConfigFile)); + } catch (configError) { + throw new Error('The config in mainConfigFile ' + + mainConfigFile + + ' cannot be used because it cannot be evaluated' + + ' correctly while running in the optimizer. Try only' + + ' using a config that is also valid JSON, or do not use' + + ' mainConfigFile and instead copy the config values needed' + + ' into a build file or command line arguments given to the optimizer.'); + } + if (mainConfig) { + //If no baseUrl, then use the directory holding the main config. + if (!mainConfig.baseUrl) { + mainConfig.baseUrl = mainConfigFile.substring(0, mainConfigFile.lastIndexOf('/')); + } + build.makeAbsConfig(mainConfig, mainConfigFile); + mixConfig(config, mainConfig); + } + } + + //Mix in build file config, but only after mainConfig has been mixed in. + if (buildFileConfig) { + mixConfig(config, buildFileConfig); + } + + //Re-apply the override config values. Command line + //args should take precedence over build file values. + mixConfig(config, cfg); + + + //Set final output dir + if (config.hasOwnProperty("baseUrl")) { + if (config.appDir) { + config.dirBaseUrl = build.makeAbsPath(config.originalBaseUrl, config.dir); + } else { + config.dirBaseUrl = config.dir || config.baseUrl; + } + //Make sure dirBaseUrl ends in a slash, since it is + //concatenated with other strings. + config.dirBaseUrl = endsWithSlash(config.dirBaseUrl); + } + + //Check for errors in config + if (config.cssIn && !config.out) { + throw new Error("ERROR: 'out' option missing."); + } + if (!config.cssIn && !config.baseUrl) { + throw new Error("ERROR: 'baseUrl' option missing."); + } + if (!config.out && !config.dir) { + throw new Error('Missing either an "out" or "dir" config value. ' + + 'If using "appDir" for a full project optimization, ' + + 'use "dir". If you want to optimize to one file, ' + + 'use "out".'); + } + if (config.appDir && config.out) { + throw new Error('"appDir" is not compatible with "out". Use "dir" ' + + 'instead. appDir is used to copy whole projects, ' + + 'where "out" is used to just optimize to one file.'); + } + if (config.out && config.dir) { + throw new Error('The "out" and "dir" options are incompatible.' + + ' Use "out" if you are targeting a single file for' + + ' for optimization, and "dir" if you want the appDir' + + ' or baseUrl directories optimized.'); + } + + if ((config.name || config.include) && !config.modules) { + //Just need to build one file, but may be part of a whole appDir/ + //baseUrl copy, but specified on the command line, so cannot do + //the modules array setup. So create a modules section in that + //case. + config.modules = [ + { + name: config.name, + out: config.out, + include: config.include, + exclude: config.exclude, + excludeShallow: config.excludeShallow + } + ]; + } + + if (config.out && !config.cssIn) { + //Just one file to optimize. + + //Does not have a build file, so set up some defaults. + //Optimizing CSS should not be allowed, unless explicitly + //asked for on command line. In that case the only task is + //to optimize a CSS file. + if (!cfg.optimizeCss) { + config.optimizeCss = "none"; + } + } + + //Do not allow URLs for paths resources. + if (config.paths) { + for (prop in config.paths) { + if (config.paths.hasOwnProperty(prop)) { + disallowUrls(config.paths[prop]); + } + } + } + + //Get any wrap text. + try { + if (config.wrap) { + if (config.wrap === true) { + //Use default values. + config.wrap = { + start: '(function () {', + end: '}());' + }; + } else { + config.wrap.start = config.wrap.start || + file.readFile(build.makeAbsPath(config.wrap.startFile, absFilePath)); + config.wrap.end = config.wrap.end || + file.readFile(build.makeAbsPath(config.wrap.endFile, absFilePath)); + } + } + } catch (wrapError) { + throw new Error('Malformed wrap config: need both start/end or ' + + 'startFile/endFile: ' + wrapError.toString()); + } + + + //Set up proper info for namespaces and using namespaces in transport + //wrappings. + config.namespaceWithDot = config.namespace ? config.namespace + '.' : ''; + config.anonDefRegExp = build.makeAnonDefRegExp(config.namespaceWithDot); + + //Do final input verification + if (config.context) { + throw new Error('The build argument "context" is not supported' + + ' in a build. It should only be used in web' + + ' pages.'); + } + + //Set file.fileExclusionRegExp if desired + if ('fileExclusionRegExp' in config) { + if (typeof config.fileExclusionRegExp === "string") { + file.exclusionRegExp = new RegExp(config.fileExclusionRegExp); + } else { + file.exclusionRegExp = config.fileExclusionRegExp; + } + } else if ('dirExclusionRegExp' in config) { + //Set file.dirExclusionRegExp if desired, this is the old + //name for fileExclusionRegExp before 1.0.2. Support for backwards + //compatibility + file.exclusionRegExp = config.dirExclusionRegExp; + } + + return config; + }; + + /** + * finds the module being built/optimized with the given moduleName, + * or returns null. + * @param {String} moduleName + * @param {Array} modules + * @returns {Object} the module object from the build profile, or null. + */ + build.findBuildModule = function (moduleName, modules) { + var i, module; + for (i = 0; (module = modules[i]); i++) { + if (module.name === moduleName) { + return module; + } + } + return null; + }; + + /** + * Removes a module name and path from a layer, if it is supposed to be + * excluded from the layer. + * @param {String} moduleName the name of the module + * @param {String} path the file path for the module + * @param {Object} layer the layer to remove the module/path from + */ + build.removeModulePath = function (module, path, layer) { + var index = layer.buildFilePaths.indexOf(path); + if (index !== -1) { + layer.buildFilePaths.splice(index, 1); + } + + //Take it out of the specified modules. Specified modules are mostly + //used to find require modifiers. + delete layer.specified[module]; + }; + + /** + * Uses the module build config object to trace the dependencies for the + * given module. + * + * @param {Object} module the module object from the build config info. + * @param {Object} the build config object. + * + * @returns {Object} layer information about what paths and modules should + * be in the flattened module. + */ + build.traceDependencies = function (module, config) { + var include, override, layer, context, baseConfig, oldContext; + + //Reset some state set up in requirePatch.js, and clean up require's + //current context. + oldContext = require._buildReset(); + + //Grab the reset layer and context after the reset, but keep the + //old config to reuse in the new context. + baseConfig = oldContext.config; + layer = require._layer; + context = layer.context; + + //Put back basic config, use a fresh object for it. + //WARNING: probably not robust for paths and packages/packagePaths, + //since those property's objects can be modified. But for basic + //config clone it works out. + require(lang.delegate(baseConfig)); + + logger.trace("\nTracing dependencies for: " + (module.name || module.out)); + include = module.name && !module.create ? [module.name] : []; + if (module.include) { + include = include.concat(module.include); + } + + //If there are overrides to basic config, set that up now.; + if (module.override) { + override = lang.delegate(baseConfig); + lang.mixin(override, module.override, true); + require(override); + } + + //Figure out module layer dependencies by calling require to do the work. + require(include); + + //Pull out the layer dependencies. + layer.specified = context.specified; + + //Reset config + if (module.override) { + require(baseConfig); + } + + return layer; + }; + + /** + * Uses the module build config object to create an flattened version + * of the module, with deep dependencies included. + * + * @param {Object} module the module object from the build config info. + * + * @param {Object} layer the layer object returned from build.traceDependencies. + * + * @param {Object} the build config object. + * + * @returns {Object} with two properties: "text", the text of the flattened + * module, and "buildText", a string of text representing which files were + * included in the flattened module text. + */ + build.flattenModule = function (module, layer, config) { + var buildFileContents = "", + namespace = config.namespace ? config.namespace + '.' : '', + context = layer.context, + anonDefRegExp = config.anonDefRegExp, + path, reqIndex, fileContents, currContents, + i, moduleName, + parts, builder, writeApi; + + //Use override settings, particularly for pragmas + if (module.override) { + config = lang.delegate(config); + lang.mixin(config, module.override, true); + } + + //Start build output for the module. + buildFileContents += "\n" + + (config.dir ? module._buildPath.replace(config.dir, "") : module._buildPath) + + "\n----------------\n"; + + //If there was an existing file with require in it, hoist to the top. + if (layer.existingRequireUrl) { + reqIndex = layer.buildFilePaths.indexOf(layer.existingRequireUrl); + if (reqIndex !== -1) { + layer.buildFilePaths.splice(reqIndex, 1); + layer.buildFilePaths.unshift(layer.existingRequireUrl); + } + } + + //Write the built module to disk, and build up the build output. + fileContents = ""; + for (i = 0; (path = layer.buildFilePaths[i]); i++) { + moduleName = layer.buildFileToModule[path]; + + //Figure out if the module is a result of a build plugin, and if so, + //then delegate to that plugin. + parts = context.makeModuleMap(moduleName); + builder = parts.prefix && context.defined[parts.prefix]; + if (builder) { + if (builder.write) { + writeApi = function (input) { + fileContents += "\n" + addSemiColon(input); + if (config.onBuildWrite) { + fileContents = config.onBuildWrite(moduleName, path, fileContents); + } + }; + writeApi.asModule = function (moduleName, input) { + fileContents += "\n" + + addSemiColon( + build.toTransport(anonDefRegExp, namespace, moduleName, path, input, layer)); + if (config.onBuildWrite) { + fileContents = config.onBuildWrite(moduleName, path, fileContents); + } + }; + builder.write(parts.prefix, parts.name, writeApi); + } + } else { + currContents = file.readFile(path); + + if (config.onBuildRead) { + currContents = config.onBuildRead(moduleName, path, currContents); + } + + if (config.namespace) { + currContents = pragma.namespace(currContents, config.namespace); + } + + currContents = build.toTransport(anonDefRegExp, namespace, moduleName, path, currContents, layer); + + if (config.onBuildWrite) { + currContents = config.onBuildWrite(moduleName, path, currContents); + } + + //Semicolon is for files that are not well formed when + //concatenated with other content. + fileContents += "\n" + addSemiColon(currContents); + } + + buildFileContents += path.replace(config.dir, "") + "\n"; + //Some files may not have declared a require module, and if so, + //put in a placeholder call so the require does not try to load them + //after the module is processed. + //If we have a name, but no defined module, then add in the placeholder. + if (moduleName && !layer.modulesWithNames[moduleName] && !config.skipModuleInsertion) { + //If including jquery, register the module correctly, otherwise + //register an empty function. For jquery, make sure jQuery is + //a real object, and perhaps not some other file mapping, like + //to zepto. + if (moduleName === 'jquery') { + fileContents += '\n(function () {\n' + + 'var jq = typeof jQuery !== "undefined" && jQuery;\n' + + namespace + + 'define("jquery", [], function () { return jq; });\n' + + '}());\n'; + } else { + fileContents += '\n' + namespace + 'define("' + moduleName + '", function(){});\n'; + } + } + } + + return { + text: config.wrap ? + config.wrap.start + fileContents + config.wrap.end : + fileContents, + buildText: buildFileContents + }; + }; + + /** + * Creates the regexp to find anonymous defines. + * @param {String} namespace an optional namespace to use. The namespace + * should *include* a trailing dot. So a valid value would be 'foo.' + * @returns {RegExp} + */ + build.makeAnonDefRegExp = function (namespace) { + //This regexp is not bullet-proof, and it has one optional part to + //avoid issues with some Dojo transition modules that use a + //define(\n//begin v1.x content + //for a comment. + return new RegExp('(^|[^\\.])(' + (namespace || '').replace(/\./g, '\\.') + + 'define|define)\\s*\\(\\s*(\\/\\/[^\\n\\r]*[\\r\\n])?(\\[|function|[\\w\\d_\\-\\$]+\\s*\\)|\\{|["\']([^"\']+)["\'])(\\s*,\\s*f)?'); + }; + + build.leadingCommaRegExp = /^\s*,/; + + build.toTransport = function (anonDefRegExp, namespace, moduleName, path, contents, layer) { + + //If anonymous module, insert the module name. + return contents.replace(anonDefRegExp, function (match, start, callName, possibleComment, suffix, namedModule, namedFuncStart) { + //A named module with either listed dependencies or an object + //literal for a value. Skip it. If named module, only want ones + //whose next argument is a function literal to scan for + //require('') dependecies. + if (namedModule && !namedFuncStart) { + return match; + } + + //Only mark this module as having a name if not a named module, + //or if a named module and the name matches expectations. + if (layer && (!namedModule || namedModule === moduleName)) { + layer.modulesWithNames[moduleName] = true; + } + + var deps = null; + + //Look for CommonJS require calls inside the function if this is + //an anonymous define call that just has a function registered. + //Also look if a named define function but has a factory function + //as the second arg that should be scanned for dependencies. + if (suffix.indexOf('f') !== -1 || (namedModule)) { + deps = parse.getAnonDeps(path, contents); + + if (deps.length) { + deps = deps.map(function (dep) { + return "'" + dep + "'"; + }); + } else { + deps = []; + } + } + + return start + namespace + "define('" + (namedModule || moduleName) + "'," + + (deps ? ('[' + deps.toString() + '],') : '') + + (namedModule ? namedFuncStart.replace(build.leadingCommaRegExp, '') : suffix); + }); + + }; + + return build; +}); + + } + + + /** + * Sets the default baseUrl for requirejs to be directory of top level + * script. + */ + function setBaseUrl(fileName) { + //Use the file name's directory as the baseUrl if available. + dir = fileName.replace(/\\/g, '/'); + if (dir.indexOf('/') !== -1) { + dir = dir.split('/'); + dir.pop(); + dir = dir.join('/'); + exec("require({baseUrl: '" + dir + "'});"); + } + } + + //If in Node, and included via a require('requirejs'), just export and + //THROW IT ON THE GROUND! + if (env === 'node' && reqMain !== module) { + setBaseUrl(path.resolve(reqMain ? reqMain.filename : '.')); + + //Create a method that will run the optimzer given an object + //config. + requirejs.optimize = function (config, callback) { + if (!loadedOptimizedLib) { + loadLib(); + loadedOptimizedLib = true; + } + + //Create the function that will be called once build modules + //have been loaded. + var runBuild = function (build, logger) { + //Make sure config has a log level, and if not, + //make it "silent" by default. + config.logLevel = config.hasOwnProperty('logLevel') ? + config.logLevel : logger.SILENT; + + var result = build(config); + + //Reset build internals on each run. + requirejs._buildReset(); + + if (callback) { + callback(result); + } + }; + + //Enable execution of this callback in a build setting. + //Normally, once requirePatch is run, by default it will + //not execute callbacks, unless this property is set on + //the callback. + runBuild.__requireJsBuild = true; + + requirejs({ + context: 'build' + }, ['build', 'logger'], runBuild); + }; + + requirejs.tools = { + useLib: function (contextName, callback) { + if (!callback) { + callback = contextName; + contextName = 'uselib'; + } + + if (!useLibLoaded[contextName]) { + loadLib(); + useLibLoaded[contextName] = true; + } + + var req = requirejs({ + context: contextName, + requireLoad: requirejsVars.nodeLoad, + requireExecCb: requirejsVars.nodeRequireExecCb + }); + + req(['build'], function () { + callback(req); + }); + } + }; + + requirejs.define = define; + + module.exports = requirejs; + return; + } + + if (commandOption === 'o') { + //Do the optimizer work. + loadLib(); + + /** + * @license Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/* + * Create a build.js file that has the build options you want and pass that + * build file to this file to do the build. See example.build.js for more information. + */ + +/*jslint strict: false, nomen: false */ +/*global require: false */ + +require({ + baseUrl: require.s.contexts._.config.baseUrl, + //Use a separate context than the default context so that the + //build can use the default context. + context: 'build', + catchError: { + define: true + } +}, ['env!env/args', 'build'], +function (args, build) { + build(args); +}); + + + } else if (commandOption === 'v') { + console.log('r.js: ' + version + ', RequireJS: ' + this.requirejsVars.require.version); + } else if (commandOption === 'convert') { + loadLib(); + + this.requirejsVars.require(['env!env/args', 'commonJs', 'env!env/print'], + function (args, commonJs, print) { + + var srcDir, outDir; + srcDir = args[0]; + outDir = args[1]; + + if (!srcDir || !outDir) { + print('Usage: path/to/commonjs/modules output/dir'); + return; + } + + commonJs.convertDir(args[0], args[1]); + }); + } else { + //Just run an app + + //Load the bundled libraries for use in the app. + if (commandOption === 'lib') { + loadLib(); + } + + setBaseUrl(fileName); + + if (exists(fileName)) { + exec(readFile(fileName), fileName); + } else { + showHelp(); + } + } + +}((typeof console !== 'undefined' ? console : undefined), + (typeof Packages !== 'undefined' ? Array.prototype.slice.call(arguments, 0) : []), + (typeof readFile !== 'undefined' ? readFile : undefined))); diff --git a/libs/js/jquery-mobile-1.1.0/external/requirejs/depend.js b/libs/js/jquery-mobile-1.1.0/external/requirejs/depend.js new file mode 100644 index 0000000..8de7760 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/external/requirejs/depend.js @@ -0,0 +1,27 @@ +/** @license + * Plugin to load JS files that have dependencies but aren't wrapped into + * `define` calls. + * Author: Miller Medeiros + * Version: 0.1.0 (2011/12/13) + * Released under the MIT license + */ +define(function () { + + var rParts = /^(.*)\[([^\]]*)\]$/; + + return { + + //example: depend!bar[jquery,lib/foo] + load : function(name, req, onLoad, config){ + var parts = rParts.exec(name); + + req(parts[2].split(','), function(){ + req([parts[1]], function(mod){ + onLoad(mod); + }); + }); + } + + }; + +}); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/external/requirejs/order.js b/libs/js/jquery-mobile-1.1.0/external/requirejs/order.js new file mode 100644 index 0000000..574286c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/external/requirejs/order.js @@ -0,0 +1,180 @@ +/** + * @license RequireJS order 1.0.0 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +/*jslint nomen: false, plusplus: false, strict: false */ +/*global require: false, define: false, window: false, document: false, + setTimeout: false */ + +//Specify that requirejs optimizer should wrap this code in a closure that +//maps the namespaced requirejs API to non-namespaced local variables. +/*requirejs namespace: true */ + +(function () { + + //Sadly necessary browser inference due to differences in the way + //that browsers load and execute dynamically inserted javascript + //and whether the script/cache method works when ordered execution is + //desired. Currently, Gecko and Opera do not load/fire onload for scripts with + //type="script/cache" but they execute injected scripts in order + //unless the 'async' flag is present. + //However, this is all changing in latest browsers implementing HTML5 + //spec. With compliant browsers .async true by default, and + //if false, then it will execute in order. Favor that test first for forward + //compatibility. + var testScript = typeof document !== "undefined" && + typeof window !== "undefined" && + document.createElement("script"), + + supportsInOrderExecution = testScript && (testScript.async || + ((window.opera && + Object.prototype.toString.call(window.opera) === "[object Opera]") || + //If Firefox 2 does not have to be supported, then + //a better check may be: + //('mozIsLocallyAvailable' in window.navigator) + ("MozAppearance" in document.documentElement.style))), + + //This test is true for IE browsers, which will load scripts but only + //execute them once the script is added to the DOM. + supportsLoadSeparateFromExecute = testScript && + testScript.readyState === 'uninitialized', + + readyRegExp = /^(complete|loaded)$/, + cacheWaiting = [], + cached = {}, + scriptNodes = {}, + scriptWaiting = []; + + //Done with the test script. + testScript = null; + + //Callback used by the type="script/cache" callback that indicates a script + //has finished downloading. + function scriptCacheCallback(evt) { + var node = evt.currentTarget || evt.srcElement, i, + moduleName, resource; + + if (evt.type === "load" || readyRegExp.test(node.readyState)) { + //Pull out the name of the module and the context. + moduleName = node.getAttribute("data-requiremodule"); + + //Mark this cache request as loaded + cached[moduleName] = true; + + //Find out how many ordered modules have loaded + for (i = 0; (resource = cacheWaiting[i]); i++) { + if (cached[resource.name]) { + resource.req([resource.name], resource.onLoad); + } else { + //Something in the ordered list is not loaded, + //so wait. + break; + } + } + + //If just loaded some items, remove them from cacheWaiting. + if (i > 0) { + cacheWaiting.splice(0, i); + } + + //Remove this script tag from the DOM + //Use a setTimeout for cleanup because some older IE versions vomit + //if removing a script node while it is being evaluated. + setTimeout(function () { + node.parentNode.removeChild(node); + }, 15); + } + } + + /** + * Used for the IE case, where fetching is done by creating script element + * but not attaching it to the DOM. This function will be called when that + * happens so it can be determined when the node can be attached to the + * DOM to trigger its execution. + */ + function onFetchOnly(node) { + var i, loadedNode, resourceName; + + //Mark this script as loaded. + node.setAttribute('data-orderloaded', 'loaded'); + + //Cycle through waiting scripts. If the matching node for them + //is loaded, and is in the right order, add it to the DOM + //to execute the script. + for (i = 0; (resourceName = scriptWaiting[i]); i++) { + loadedNode = scriptNodes[resourceName]; + if (loadedNode && + loadedNode.getAttribute('data-orderloaded') === 'loaded') { + delete scriptNodes[resourceName]; + require.addScriptToDom(loadedNode); + } else { + break; + } + } + + //If just loaded some items, remove them from waiting. + if (i > 0) { + scriptWaiting.splice(0, i); + } + } + + define({ + version: '1.0.0', + + load: function (name, req, onLoad, config) { + var url = req.nameToUrl(name, null), + node, context; + + //Make sure the async attribute is not set for any pathway involving + //this script. + require.s.skipAsync[url] = true; + if (supportsInOrderExecution || config.isBuild) { + //Just a normal script tag append, but without async attribute + //on the script. + req([name], onLoad); + } else if (supportsLoadSeparateFromExecute) { + //Just fetch the URL, but do not execute it yet. The + //non-standards IE case. Really not so nice because it is + //assuming and touching requrejs internals. OK though since + //ordered execution should go away after a long while. + context = require.s.contexts._; + + if (!context.urlFetched[url] && !context.loaded[name]) { + //Indicate the script is being fetched. + context.urlFetched[url] = true; + + //Stuff from require.load + require.resourcesReady(false); + context.scriptCount += 1; + + //Fetch the script now, remember it. + node = require.attach(url, context, name, null, null, onFetchOnly); + scriptNodes[name] = node; + scriptWaiting.push(name); + } + + //Do a normal require for it, once it loads, use it as return + //value. + req([name], onLoad); + } else { + //Credit to LABjs author Kyle Simpson for finding that scripts + //with type="script/cache" allow scripts to be downloaded into + //browser cache but not executed. Use that + //so that subsequent addition of a real type="text/javascript" + //tag will cause the scripts to be executed immediately in the + //correct order. + if (req.specified(name)) { + req([name], onLoad); + } else { + cacheWaiting.push({ + name: name, + req: req, + onLoad: onLoad + }); + require.attach(url, null, name, scriptCacheCallback, "script/cache"); + } + } + } + }); +}()); diff --git a/libs/js/jquery-mobile-1.1.0/external/requirejs/require.js b/libs/js/jquery-mobile-1.1.0/external/requirejs/require.js new file mode 100644 index 0000000..4d0d055 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/external/requirejs/require.js @@ -0,0 +1,2053 @@ +/** vim: et:ts=4:sw=4:sts=4 + * @license RequireJS 1.0.6 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +/*jslint strict: false, plusplus: false, sub: true */ +/*global window, navigator, document, importScripts, jQuery, setTimeout, opera */ + +var requirejs, require, define; +(function () { + //Change this version number for each release. + var version = "1.0.6", + commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, + cjsRequireRegExp = /require\(\s*["']([^'"\s]+)["']\s*\)/g, + currDirRegExp = /^\.\//, + jsSuffixRegExp = /\.js$/, + ostring = Object.prototype.toString, + ap = Array.prototype, + aps = ap.slice, + apsp = ap.splice, + isBrowser = !!(typeof window !== "undefined" && navigator && document), + isWebWorker = !isBrowser && typeof importScripts !== "undefined", + //PS3 indicates loaded and complete, but need to wait for complete + //specifically. Sequence is "loading", "loaded", execution, + // then "complete". The UA check is unfortunate, but not sure how + //to feature test w/o causing perf issues. + readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ? + /^complete$/ : /^(complete|loaded)$/, + defContextName = "_", + //Oh the tragedy, detecting opera. See the usage of isOpera for reason. + isOpera = typeof opera !== "undefined" && opera.toString() === "[object Opera]", + empty = {}, + contexts = {}, + globalDefQueue = [], + interactiveScript = null, + checkLoadedDepth = 0, + useInteractive = false, + reservedDependencies = { + require: true, + module: true, + exports: true + }, + req, cfg = {}, currentlyAddingScript, s, head, baseElement, scripts, script, + src, subPath, mainScript, dataMain, globalI, ctx, jQueryCheck, checkLoadedTimeoutId; + + function isFunction(it) { + return ostring.call(it) === "[object Function]"; + } + + function isArray(it) { + return ostring.call(it) === "[object Array]"; + } + + /** + * Simple function to mix in properties from source into target, + * but only if target does not already have a property of the same name. + * This is not robust in IE for transferring methods that match + * Object.prototype names, but the uses of mixin here seem unlikely to + * trigger a problem related to that. + */ + function mixin(target, source, force) { + for (var prop in source) { + if (!(prop in empty) && (!(prop in target) || force)) { + target[prop] = source[prop]; + } + } + return req; + } + + /** + * Constructs an error with a pointer to an URL with more information. + * @param {String} id the error ID that maps to an ID on a web page. + * @param {String} message human readable error. + * @param {Error} [err] the original error, if there is one. + * + * @returns {Error} + */ + function makeError(id, msg, err) { + var e = new Error(msg + '\nhttp://requirejs.org/docs/errors.html#' + id); + if (err) { + e.originalError = err; + } + return e; + } + + /** + * Used to set up package paths from a packagePaths or packages config object. + * @param {Object} pkgs the object to store the new package config + * @param {Array} currentPackages an array of packages to configure + * @param {String} [dir] a prefix dir to use. + */ + function configurePackageDir(pkgs, currentPackages, dir) { + var i, location, pkgObj; + + for (i = 0; (pkgObj = currentPackages[i]); i++) { + pkgObj = typeof pkgObj === "string" ? { name: pkgObj } : pkgObj; + location = pkgObj.location; + + //Add dir to the path, but avoid paths that start with a slash + //or have a colon (indicates a protocol) + if (dir && (!location || (location.indexOf("/") !== 0 && location.indexOf(":") === -1))) { + location = dir + "/" + (location || pkgObj.name); + } + + //Create a brand new object on pkgs, since currentPackages can + //be passed in again, and config.pkgs is the internal transformed + //state for all package configs. + pkgs[pkgObj.name] = { + name: pkgObj.name, + location: location || pkgObj.name, + //Remove leading dot in main, so main paths are normalized, + //and remove any trailing .js, since different package + //envs have different conventions: some use a module name, + //some use a file name. + main: (pkgObj.main || "main") + .replace(currDirRegExp, '') + .replace(jsSuffixRegExp, '') + }; + } + } + + /** + * jQuery 1.4.3-1.5.x use a readyWait/ready() pairing to hold DOM + * ready callbacks, but jQuery 1.6 supports a holdReady() API instead. + * At some point remove the readyWait/ready() support and just stick + * with using holdReady. + */ + function jQueryHoldReady($, shouldHold) { + if ($.holdReady) { + $.holdReady(shouldHold); + } else if (shouldHold) { + $.readyWait += 1; + } else { + $.ready(true); + } + } + + if (typeof define !== "undefined") { + //If a define is already in play via another AMD loader, + //do not overwrite. + return; + } + + if (typeof requirejs !== "undefined") { + if (isFunction(requirejs)) { + //Do not overwrite and existing requirejs instance. + return; + } else { + cfg = requirejs; + requirejs = undefined; + } + } + + //Allow for a require config object + if (typeof require !== "undefined" && !isFunction(require)) { + //assume it is a config object. + cfg = require; + require = undefined; + } + + /** + * Creates a new context for use in require and define calls. + * Handle most of the heavy lifting. Do not want to use an object + * with prototype here to avoid using "this" in require, in case it + * needs to be used in more super secure envs that do not want this. + * Also there should not be that many contexts in the page. Usually just + * one for the default context, but could be extra for multiversion cases + * or if a package needs a special context for a dependency that conflicts + * with the standard context. + */ + function newContext(contextName) { + var context, resume, + config = { + waitSeconds: 7, + baseUrl: "./", + paths: {}, + pkgs: {}, + catchError: {} + }, + defQueue = [], + specified = { + "require": true, + "exports": true, + "module": true + }, + urlMap = {}, + defined = {}, + loaded = {}, + waiting = {}, + waitAry = [], + urlFetched = {}, + managerCounter = 0, + managerCallbacks = {}, + plugins = {}, + //Used to indicate which modules in a build scenario + //need to be full executed. + needFullExec = {}, + fullExec = {}, + resumeDepth = 0; + + /** + * Trims the . and .. from an array of path segments. + * It will keep a leading path segment if a .. will become + * the first path segment, to help with module name lookups, + * which act like paths, but can be remapped. But the end result, + * all paths that use this function should look normalized. + * NOTE: this method MODIFIES the input array. + * @param {Array} ary the array of path segments. + */ + function trimDots(ary) { + var i, part; + for (i = 0; (part = ary[i]); i++) { + if (part === ".") { + ary.splice(i, 1); + i -= 1; + } else if (part === "..") { + if (i === 1 && (ary[2] === '..' || ary[0] === '..')) { + //End of the line. Keep at least one non-dot + //path segment at the front so it can be mapped + //correctly to disk. Otherwise, there is likely + //no path mapping for a path starting with '..'. + //This can still fail, but catches the most reasonable + //uses of .. + break; + } else if (i > 0) { + ary.splice(i - 1, 2); + i -= 2; + } + } + } + } + + /** + * Given a relative module name, like ./something, normalize it to + * a real name that can be mapped to a path. + * @param {String} name the relative name + * @param {String} baseName a real name that the name arg is relative + * to. + * @returns {String} normalized name + */ + function normalize(name, baseName) { + var pkgName, pkgConfig; + + //Adjust any relative paths. + if (name && name.charAt(0) === ".") { + //If have a base name, try to normalize against it, + //otherwise, assume it is a top-level require that will + //be relative to baseUrl in the end. + if (baseName) { + if (config.pkgs[baseName]) { + //If the baseName is a package name, then just treat it as one + //name to concat the name with. + baseName = [baseName]; + } else { + //Convert baseName to array, and lop off the last part, + //so that . matches that "directory" and not name of the baseName's + //module. For instance, baseName of "one/two/three", maps to + //"one/two/three.js", but we want the directory, "one/two" for + //this normalization. + baseName = baseName.split("/"); + baseName = baseName.slice(0, baseName.length - 1); + } + + name = baseName.concat(name.split("/")); + trimDots(name); + + //Some use of packages may use a . path to reference the + //"main" module name, so normalize for that. + pkgConfig = config.pkgs[(pkgName = name[0])]; + name = name.join("/"); + if (pkgConfig && name === pkgName + '/' + pkgConfig.main) { + name = pkgName; + } + } else if (name.indexOf("./") === 0) { + // No baseName, so this is ID is resolved relative + // to baseUrl, pull off the leading dot. + name = name.substring(2); + } + } + return name; + } + + /** + * Creates a module mapping that includes plugin prefix, module + * name, and path. If parentModuleMap is provided it will + * also normalize the name via require.normalize() + * + * @param {String} name the module name + * @param {String} [parentModuleMap] parent module map + * for the module name, used to resolve relative names. + * + * @returns {Object} + */ + function makeModuleMap(name, parentModuleMap) { + var index = name ? name.indexOf("!") : -1, + prefix = null, + parentName = parentModuleMap ? parentModuleMap.name : null, + originalName = name, + normalizedName, url, pluginModule; + + if (index !== -1) { + prefix = name.substring(0, index); + name = name.substring(index + 1, name.length); + } + + if (prefix) { + prefix = normalize(prefix, parentName); + } + + //Account for relative paths if there is a base name. + if (name) { + if (prefix) { + pluginModule = defined[prefix]; + if (pluginModule && pluginModule.normalize) { + //Plugin is loaded, use its normalize method. + normalizedName = pluginModule.normalize(name, function (name) { + return normalize(name, parentName); + }); + } else { + normalizedName = normalize(name, parentName); + } + } else { + //A regular module. + normalizedName = normalize(name, parentName); + + url = urlMap[normalizedName]; + if (!url) { + //Calculate url for the module, if it has a name. + //Use name here since nameToUrl also calls normalize, + //and for relative names that are outside the baseUrl + //this causes havoc. Was thinking of just removing + //parentModuleMap to avoid extra normalization, but + //normalize() still does a dot removal because of + //issue #142, so just pass in name here and redo + //the normalization. Paths outside baseUrl are just + //messy to support. + url = context.nameToUrl(name, null, parentModuleMap); + + //Store the URL mapping for later. + urlMap[normalizedName] = url; + } + } + } + + return { + prefix: prefix, + name: normalizedName, + parentMap: parentModuleMap, + url: url, + originalName: originalName, + fullName: prefix ? prefix + "!" + (normalizedName || '') : normalizedName + }; + } + + /** + * Determine if priority loading is done. If so clear the priorityWait + */ + function isPriorityDone() { + var priorityDone = true, + priorityWait = config.priorityWait, + priorityName, i; + if (priorityWait) { + for (i = 0; (priorityName = priorityWait[i]); i++) { + if (!loaded[priorityName]) { + priorityDone = false; + break; + } + } + if (priorityDone) { + delete config.priorityWait; + } + } + return priorityDone; + } + + function makeContextModuleFunc(func, relModuleMap, enableBuildCallback) { + return function () { + //A version of a require function that passes a moduleName + //value for items that may need to + //look up paths relative to the moduleName + var args = aps.call(arguments, 0), lastArg; + if (enableBuildCallback && + isFunction((lastArg = args[args.length - 1]))) { + lastArg.__requireJsBuild = true; + } + args.push(relModuleMap); + return func.apply(null, args); + }; + } + + /** + * Helper function that creates a require function object to give to + * modules that ask for it as a dependency. It needs to be specific + * per module because of the implication of path mappings that may + * need to be relative to the module name. + */ + function makeRequire(relModuleMap, enableBuildCallback, altRequire) { + var modRequire = makeContextModuleFunc(altRequire || context.require, relModuleMap, enableBuildCallback); + + mixin(modRequire, { + nameToUrl: makeContextModuleFunc(context.nameToUrl, relModuleMap), + toUrl: makeContextModuleFunc(context.toUrl, relModuleMap), + defined: makeContextModuleFunc(context.requireDefined, relModuleMap), + specified: makeContextModuleFunc(context.requireSpecified, relModuleMap), + isBrowser: req.isBrowser + }); + return modRequire; + } + + /* + * Queues a dependency for checking after the loader is out of a + * "paused" state, for example while a script file is being loaded + * in the browser, where it may have many modules defined in it. + */ + function queueDependency(manager) { + context.paused.push(manager); + } + + function execManager(manager) { + var i, ret, err, errFile, errModuleTree, + cb = manager.callback, + map = manager.map, + fullName = map.fullName, + args = manager.deps, + listeners = manager.listeners, + cjsModule; + + //Call the callback to define the module, if necessary. + if (cb && isFunction(cb)) { + if (config.catchError.define) { + try { + ret = req.execCb(fullName, manager.callback, args, defined[fullName]); + } catch (e) { + err = e; + } + } else { + ret = req.execCb(fullName, manager.callback, args, defined[fullName]); + } + + if (fullName) { + //If setting exports via "module" is in play, + //favor that over return value and exports. After that, + //favor a non-undefined return value over exports use. + cjsModule = manager.cjsModule; + if (cjsModule && + cjsModule.exports !== undefined && + //Make sure it is not already the exports value + cjsModule.exports !== defined[fullName]) { + ret = defined[fullName] = manager.cjsModule.exports; + } else if (ret === undefined && manager.usingExports) { + //exports already set the defined value. + ret = defined[fullName]; + } else { + //Use the return value from the function. + defined[fullName] = ret; + //If this module needed full execution in a build + //environment, mark that now. + if (needFullExec[fullName]) { + fullExec[fullName] = true; + } + } + } + } else if (fullName) { + //May just be an object definition for the module. Only + //worry about defining if have a module name. + ret = defined[fullName] = cb; + + //If this module needed full execution in a build + //environment, mark that now. + if (needFullExec[fullName]) { + fullExec[fullName] = true; + } + } + + //Clean up waiting. Do this before error calls, and before + //calling back listeners, so that bookkeeping is correct + //in the event of an error and error is reported in correct order, + //since the listeners will likely have errors if the + //onError function does not throw. + if (waiting[manager.id]) { + delete waiting[manager.id]; + manager.isDone = true; + context.waitCount -= 1; + if (context.waitCount === 0) { + //Clear the wait array used for cycles. + waitAry = []; + } + } + + //Do not need to track manager callback now that it is defined. + delete managerCallbacks[fullName]; + + //Allow instrumentation like the optimizer to know the order + //of modules executed and their dependencies. + if (req.onResourceLoad && !manager.placeholder) { + req.onResourceLoad(context, map, manager.depArray); + } + + if (err) { + errFile = (fullName ? makeModuleMap(fullName).url : '') || + err.fileName || err.sourceURL; + errModuleTree = err.moduleTree; + err = makeError('defineerror', 'Error evaluating ' + + 'module "' + fullName + '" at location "' + + errFile + '":\n' + + err + '\nfileName:' + errFile + + '\nlineNumber: ' + (err.lineNumber || err.line), err); + err.moduleName = fullName; + err.moduleTree = errModuleTree; + return req.onError(err); + } + + //Let listeners know of this manager's value. + for (i = 0; (cb = listeners[i]); i++) { + cb(ret); + } + + return undefined; + } + + /** + * Helper that creates a callack function that is called when a dependency + * is ready, and sets the i-th dependency for the manager as the + * value passed to the callback generated by this function. + */ + function makeArgCallback(manager, i) { + return function (value) { + //Only do the work if it has not been done + //already for a dependency. Cycle breaking + //logic in forceExec could mean this function + //is called more than once for a given dependency. + if (!manager.depDone[i]) { + manager.depDone[i] = true; + manager.deps[i] = value; + manager.depCount -= 1; + if (!manager.depCount) { + //All done, execute! + execManager(manager); + } + } + }; + } + + function callPlugin(pluginName, depManager) { + var map = depManager.map, + fullName = map.fullName, + name = map.name, + plugin = plugins[pluginName] || + (plugins[pluginName] = defined[pluginName]), + load; + + //No need to continue if the manager is already + //in the process of loading. + if (depManager.loading) { + return; + } + depManager.loading = true; + + load = function (ret) { + depManager.callback = function () { + return ret; + }; + execManager(depManager); + + loaded[depManager.id] = true; + + //The loading of this plugin + //might have placed other things + //in the paused queue. In particular, + //a loader plugin that depends on + //a different plugin loaded resource. + resume(); + }; + + //Allow plugins to load other code without having to know the + //context or how to "complete" the load. + load.fromText = function (moduleName, text) { + /*jslint evil: true */ + var hasInteractive = useInteractive; + + //Indicate a the module is in process of loading. + loaded[moduleName] = false; + context.scriptCount += 1; + + //Indicate this is not a "real" module, so do not track it + //for builds, it does not map to a real file. + context.fake[moduleName] = true; + + //Turn off interactive script matching for IE for any define + //calls in the text, then turn it back on at the end. + if (hasInteractive) { + useInteractive = false; + } + + req.exec(text); + + if (hasInteractive) { + useInteractive = true; + } + + //Support anonymous modules. + context.completeLoad(moduleName); + }; + + //No need to continue if the plugin value has already been + //defined by a build. + if (fullName in defined) { + load(defined[fullName]); + } else { + //Use parentName here since the plugin's name is not reliable, + //could be some weird string with no path that actually wants to + //reference the parentName's path. + plugin.load(name, makeRequire(map.parentMap, true, function (deps, cb) { + var moduleDeps = [], + i, dep, depMap; + //Convert deps to full names and hold on to them + //for reference later, when figuring out if they + //are blocked by a circular dependency. + for (i = 0; (dep = deps[i]); i++) { + depMap = makeModuleMap(dep, map.parentMap); + deps[i] = depMap.fullName; + if (!depMap.prefix) { + moduleDeps.push(deps[i]); + } + } + depManager.moduleDeps = (depManager.moduleDeps || []).concat(moduleDeps); + return context.require(deps, cb); + }), load, config); + } + } + + /** + * Adds the manager to the waiting queue. Only fully + * resolved items should be in the waiting queue. + */ + function addWait(manager) { + if (!waiting[manager.id]) { + waiting[manager.id] = manager; + waitAry.push(manager); + context.waitCount += 1; + } + } + + /** + * Function added to every manager object. Created out here + * to avoid new function creation for each manager instance. + */ + function managerAdd(cb) { + this.listeners.push(cb); + } + + function getManager(map, shouldQueue) { + var fullName = map.fullName, + prefix = map.prefix, + plugin = prefix ? plugins[prefix] || + (plugins[prefix] = defined[prefix]) : null, + manager, created, pluginManager, prefixMap; + + if (fullName) { + manager = managerCallbacks[fullName]; + } + + if (!manager) { + created = true; + manager = { + //ID is just the full name, but if it is a plugin resource + //for a plugin that has not been loaded, + //then add an ID counter to it. + id: (prefix && !plugin ? + (managerCounter++) + '__p@:' : '') + + (fullName || '__r@' + (managerCounter++)), + map: map, + depCount: 0, + depDone: [], + depCallbacks: [], + deps: [], + listeners: [], + add: managerAdd + }; + + specified[manager.id] = true; + + //Only track the manager/reuse it if this is a non-plugin + //resource. Also only track plugin resources once + //the plugin has been loaded, and so the fullName is the + //true normalized value. + if (fullName && (!prefix || plugins[prefix])) { + managerCallbacks[fullName] = manager; + } + } + + //If there is a plugin needed, but it is not loaded, + //first load the plugin, then continue on. + if (prefix && !plugin) { + prefixMap = makeModuleMap(prefix); + + //Clear out defined and urlFetched if the plugin was previously + //loaded/defined, but not as full module (as in a build + //situation). However, only do this work if the plugin is in + //defined but does not have a module export value. + if (prefix in defined && !defined[prefix]) { + delete defined[prefix]; + delete urlFetched[prefixMap.url]; + } + + pluginManager = getManager(prefixMap, true); + pluginManager.add(function (plugin) { + //Create a new manager for the normalized + //resource ID and have it call this manager when + //done. + var newMap = makeModuleMap(map.originalName, map.parentMap), + normalizedManager = getManager(newMap, true); + + //Indicate this manager is a placeholder for the real, + //normalized thing. Important for when trying to map + //modules and dependencies, for instance, in a build. + manager.placeholder = true; + + normalizedManager.add(function (resource) { + manager.callback = function () { + return resource; + }; + execManager(manager); + }); + }); + } else if (created && shouldQueue) { + //Indicate the resource is not loaded yet if it is to be + //queued. + loaded[manager.id] = false; + queueDependency(manager); + addWait(manager); + } + + return manager; + } + + function main(inName, depArray, callback, relModuleMap) { + var moduleMap = makeModuleMap(inName, relModuleMap), + name = moduleMap.name, + fullName = moduleMap.fullName, + manager = getManager(moduleMap), + id = manager.id, + deps = manager.deps, + i, depArg, depName, depPrefix, cjsMod; + + if (fullName) { + //If module already defined for context, or already loaded, + //then leave. Also leave if jQuery is registering but it does + //not match the desired version number in the config. + if (fullName in defined || loaded[id] === true || + (fullName === "jquery" && config.jQuery && + config.jQuery !== callback().fn.jquery)) { + return; + } + + //Set specified/loaded here for modules that are also loaded + //as part of a layer, where onScriptLoad is not fired + //for those cases. Do this after the inline define and + //dependency tracing is done. + specified[id] = true; + loaded[id] = true; + + //If module is jQuery set up delaying its dom ready listeners. + if (fullName === "jquery" && callback) { + jQueryCheck(callback()); + } + } + + //Attach real depArray and callback to the manager. Do this + //only if the module has not been defined already, so do this after + //the fullName checks above. IE can call main() more than once + //for a module. + manager.depArray = depArray; + manager.callback = callback; + + //Add the dependencies to the deps field, and register for callbacks + //on the dependencies. + for (i = 0; i < depArray.length; i++) { + depArg = depArray[i]; + //There could be cases like in IE, where a trailing comma will + //introduce a null dependency, so only treat a real dependency + //value as a dependency. + if (depArg) { + //Split the dependency name into plugin and name parts + depArg = makeModuleMap(depArg, (name ? moduleMap : relModuleMap)); + depName = depArg.fullName; + depPrefix = depArg.prefix; + + //Fix the name in depArray to be just the name, since + //that is how it will be called back later. + depArray[i] = depName; + + //Fast path CommonJS standard dependencies. + if (depName === "require") { + deps[i] = makeRequire(moduleMap); + } else if (depName === "exports") { + //CommonJS module spec 1.1 + deps[i] = defined[fullName] = {}; + manager.usingExports = true; + } else if (depName === "module") { + //CommonJS module spec 1.1 + manager.cjsModule = cjsMod = deps[i] = { + id: name, + uri: name ? context.nameToUrl(name, null, relModuleMap) : undefined, + exports: defined[fullName] + }; + } else if (depName in defined && !(depName in waiting) && + (!(fullName in needFullExec) || + (fullName in needFullExec && fullExec[depName]))) { + //Module already defined, and not in a build situation + //where the module is a something that needs full + //execution and this dependency has not been fully + //executed. See r.js's requirePatch.js for more info + //on fullExec. + deps[i] = defined[depName]; + } else { + //Mark this dependency as needing full exec if + //the current module needs full exec. + if (fullName in needFullExec) { + needFullExec[depName] = true; + //Reset state so fully executed code will get + //picked up correctly. + delete defined[depName]; + urlFetched[depArg.url] = false; + } + + //Either a resource that is not loaded yet, or a plugin + //resource for either a plugin that has not + //loaded yet. + manager.depCount += 1; + manager.depCallbacks[i] = makeArgCallback(manager, i); + getManager(depArg, true).add(manager.depCallbacks[i]); + } + } + } + + //Do not bother tracking the manager if it is all done. + if (!manager.depCount) { + //All done, execute! + execManager(manager); + } else { + addWait(manager); + } + } + + /** + * Convenience method to call main for a define call that was put on + * hold in the defQueue. + */ + function callDefMain(args) { + main.apply(null, args); + } + + /** + * jQuery 1.4.3+ supports ways to hold off calling + * calling jQuery ready callbacks until all scripts are loaded. Be sure + * to track it if the capability exists.. Also, since jQuery 1.4.3 does + * not register as a module, need to do some global inference checking. + * Even if it does register as a module, not guaranteed to be the precise + * name of the global. If a jQuery is tracked for this context, then go + * ahead and register it as a module too, if not already in process. + */ + jQueryCheck = function (jqCandidate) { + if (!context.jQuery) { + var $ = jqCandidate || (typeof jQuery !== "undefined" ? jQuery : null); + + if ($) { + //If a specific version of jQuery is wanted, make sure to only + //use this jQuery if it matches. + if (config.jQuery && $.fn.jquery !== config.jQuery) { + return; + } + + if ("holdReady" in $ || "readyWait" in $) { + context.jQuery = $; + + //Manually create a "jquery" module entry if not one already + //or in process. Note this could trigger an attempt at + //a second jQuery registration, but does no harm since + //the first one wins, and it is the same value anyway. + callDefMain(["jquery", [], function () { + return jQuery; + }]); + + //Ask jQuery to hold DOM ready callbacks. + if (context.scriptCount) { + jQueryHoldReady($, true); + context.jQueryIncremented = true; + } + } + } + } + }; + + function findCycle(manager, traced) { + var fullName = manager.map.fullName, + depArray = manager.depArray, + fullyLoaded = true, + i, depName, depManager, result; + + if (manager.isDone || !fullName || !loaded[fullName]) { + return result; + } + + //Found the cycle. + if (traced[fullName]) { + return manager; + } + + traced[fullName] = true; + + //Trace through the dependencies. + if (depArray) { + for (i = 0; i < depArray.length; i++) { + //Some array members may be null, like if a trailing comma + //IE, so do the explicit [i] access and check if it has a value. + depName = depArray[i]; + if (!loaded[depName] && !reservedDependencies[depName]) { + fullyLoaded = false; + break; + } + depManager = waiting[depName]; + if (depManager && !depManager.isDone && loaded[depName]) { + result = findCycle(depManager, traced); + if (result) { + break; + } + } + } + if (!fullyLoaded) { + //Discard the cycle that was found, since it cannot + //be forced yet. Also clear this module from traced. + result = undefined; + delete traced[fullName]; + } + } + + return result; + } + + function forceExec(manager, traced) { + var fullName = manager.map.fullName, + depArray = manager.depArray, + i, depName, depManager, prefix, prefixManager, value; + + + if (manager.isDone || !fullName || !loaded[fullName]) { + return undefined; + } + + if (fullName) { + if (traced[fullName]) { + return defined[fullName]; + } + + traced[fullName] = true; + } + + //Trace through the dependencies. + if (depArray) { + for (i = 0; i < depArray.length; i++) { + //Some array members may be null, like if a trailing comma + //IE, so do the explicit [i] access and check if it has a value. + depName = depArray[i]; + if (depName) { + //First, make sure if it is a plugin resource that the + //plugin is not blocked. + prefix = makeModuleMap(depName).prefix; + if (prefix && (prefixManager = waiting[prefix])) { + forceExec(prefixManager, traced); + } + depManager = waiting[depName]; + if (depManager && !depManager.isDone && loaded[depName]) { + value = forceExec(depManager, traced); + manager.depCallbacks[i](value); + } + } + } + } + + return defined[fullName]; + } + + /** + * Checks if all modules for a context are loaded, and if so, evaluates the + * new ones in right dependency order. + * + * @private + */ + function checkLoaded() { + var waitInterval = config.waitSeconds * 1000, + //It is possible to disable the wait interval by using waitSeconds of 0. + expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(), + noLoads = "", hasLoadedProp = false, stillLoading = false, + cycleDeps = [], + i, prop, err, manager, cycleManager, moduleDeps; + + //If there are items still in the paused queue processing wait. + //This is particularly important in the sync case where each paused + //item is processed right away but there may be more waiting. + if (context.pausedCount > 0) { + return undefined; + } + + //Determine if priority loading is done. If so clear the priority. If + //not, then do not check + if (config.priorityWait) { + if (isPriorityDone()) { + //Call resume, since it could have + //some waiting dependencies to trace. + resume(); + } else { + return undefined; + } + } + + //See if anything is still in flight. + for (prop in loaded) { + if (!(prop in empty)) { + hasLoadedProp = true; + if (!loaded[prop]) { + if (expired) { + noLoads += prop + " "; + } else { + stillLoading = true; + if (prop.indexOf('!') === -1) { + //No reason to keep looking for unfinished + //loading. If the only stillLoading is a + //plugin resource though, keep going, + //because it may be that a plugin resource + //is waiting on a non-plugin cycle. + cycleDeps = []; + break; + } else { + moduleDeps = managerCallbacks[prop] && managerCallbacks[prop].moduleDeps; + if (moduleDeps) { + cycleDeps.push.apply(cycleDeps, moduleDeps); + } + } + } + } + } + } + + //Check for exit conditions. + if (!hasLoadedProp && !context.waitCount) { + //If the loaded object had no items, then the rest of + //the work below does not need to be done. + return undefined; + } + if (expired && noLoads) { + //If wait time expired, throw error of unloaded modules. + err = makeError("timeout", "Load timeout for modules: " + noLoads); + err.requireType = "timeout"; + err.requireModules = noLoads; + err.contextName = context.contextName; + return req.onError(err); + } + + //If still loading but a plugin is waiting on a regular module cycle + //break the cycle. + if (stillLoading && cycleDeps.length) { + for (i = 0; (manager = waiting[cycleDeps[i]]); i++) { + if ((cycleManager = findCycle(manager, {}))) { + forceExec(cycleManager, {}); + break; + } + } + + } + + //If still waiting on loads, and the waiting load is something + //other than a plugin resource, or there are still outstanding + //scripts, then just try back later. + if (!expired && (stillLoading || context.scriptCount)) { + //Something is still waiting to load. Wait for it, but only + //if a timeout is not already in effect. + if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { + checkLoadedTimeoutId = setTimeout(function () { + checkLoadedTimeoutId = 0; + checkLoaded(); + }, 50); + } + return undefined; + } + + //If still have items in the waiting cue, but all modules have + //been loaded, then it means there are some circular dependencies + //that need to be broken. + //However, as a waiting thing is fired, then it can add items to + //the waiting cue, and those items should not be fired yet, so + //make sure to redo the checkLoaded call after breaking a single + //cycle, if nothing else loaded then this logic will pick it up + //again. + if (context.waitCount) { + //Cycle through the waitAry, and call items in sequence. + for (i = 0; (manager = waitAry[i]); i++) { + forceExec(manager, {}); + } + + //If anything got placed in the paused queue, run it down. + if (context.paused.length) { + resume(); + } + + //Only allow this recursion to a certain depth. Only + //triggered by errors in calling a module in which its + //modules waiting on it cannot finish loading, or some circular + //dependencies that then may add more dependencies. + //The value of 5 is a bit arbitrary. Hopefully just one extra + //pass, or two for the case of circular dependencies generating + //more work that gets resolved in the sync node case. + if (checkLoadedDepth < 5) { + checkLoadedDepth += 1; + checkLoaded(); + } + } + + checkLoadedDepth = 0; + + //Check for DOM ready, and nothing is waiting across contexts. + req.checkReadyState(); + + return undefined; + } + + /** + * Resumes tracing of dependencies and then checks if everything is loaded. + */ + resume = function () { + var manager, map, url, i, p, args, fullName; + + //Any defined modules in the global queue, intake them now. + context.takeGlobalQueue(); + + resumeDepth += 1; + + if (context.scriptCount <= 0) { + //Synchronous envs will push the number below zero with the + //decrement above, be sure to set it back to zero for good measure. + //require() calls that also do not end up loading scripts could + //push the number negative too. + context.scriptCount = 0; + } + + //Make sure any remaining defQueue items get properly processed. + while (defQueue.length) { + args = defQueue.shift(); + if (args[0] === null) { + return req.onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); + } else { + callDefMain(args); + } + } + + //Skip the resume of paused dependencies + //if current context is in priority wait. + if (!config.priorityWait || isPriorityDone()) { + while (context.paused.length) { + p = context.paused; + context.pausedCount += p.length; + //Reset paused list + context.paused = []; + + for (i = 0; (manager = p[i]); i++) { + map = manager.map; + url = map.url; + fullName = map.fullName; + + //If the manager is for a plugin managed resource, + //ask the plugin to load it now. + if (map.prefix) { + callPlugin(map.prefix, manager); + } else { + //Regular dependency. + if (!urlFetched[url] && !loaded[fullName]) { + req.load(context, fullName, url); + + //Mark the URL as fetched, but only if it is + //not an empty: URL, used by the optimizer. + //In that case we need to be sure to call + //load() for each module that is mapped to + //empty: so that dependencies are satisfied + //correctly. + if (url.indexOf('empty:') !== 0) { + urlFetched[url] = true; + } + } + } + } + + //Move the start time for timeout forward. + context.startTime = (new Date()).getTime(); + context.pausedCount -= p.length; + } + } + + //Only check if loaded when resume depth is 1. It is likely that + //it is only greater than 1 in sync environments where a factory + //function also then calls the callback-style require. In those + //cases, the checkLoaded should not occur until the resume + //depth is back at the top level. + if (resumeDepth === 1) { + checkLoaded(); + } + + resumeDepth -= 1; + + return undefined; + }; + + //Define the context object. Many of these fields are on here + //just to make debugging easier. + context = { + contextName: contextName, + config: config, + defQueue: defQueue, + waiting: waiting, + waitCount: 0, + specified: specified, + loaded: loaded, + urlMap: urlMap, + urlFetched: urlFetched, + scriptCount: 0, + defined: defined, + paused: [], + pausedCount: 0, + plugins: plugins, + needFullExec: needFullExec, + fake: {}, + fullExec: fullExec, + managerCallbacks: managerCallbacks, + makeModuleMap: makeModuleMap, + normalize: normalize, + /** + * Set a configuration for the context. + * @param {Object} cfg config object to integrate. + */ + configure: function (cfg) { + var paths, prop, packages, pkgs, packagePaths, requireWait; + + //Make sure the baseUrl ends in a slash. + if (cfg.baseUrl) { + if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== "/") { + cfg.baseUrl += "/"; + } + } + + //Save off the paths and packages since they require special processing, + //they are additive. + paths = config.paths; + packages = config.packages; + pkgs = config.pkgs; + + //Mix in the config values, favoring the new values over + //existing ones in context.config. + mixin(config, cfg, true); + + //Adjust paths if necessary. + if (cfg.paths) { + for (prop in cfg.paths) { + if (!(prop in empty)) { + paths[prop] = cfg.paths[prop]; + } + } + config.paths = paths; + } + + packagePaths = cfg.packagePaths; + if (packagePaths || cfg.packages) { + //Convert packagePaths into a packages config. + if (packagePaths) { + for (prop in packagePaths) { + if (!(prop in empty)) { + configurePackageDir(pkgs, packagePaths[prop], prop); + } + } + } + + //Adjust packages if necessary. + if (cfg.packages) { + configurePackageDir(pkgs, cfg.packages); + } + + //Done with modifications, assing packages back to context config + config.pkgs = pkgs; + } + + //If priority loading is in effect, trigger the loads now + if (cfg.priority) { + //Hold on to requireWait value, and reset it after done + requireWait = context.requireWait; + + //Allow tracing some require calls to allow the fetching + //of the priority config. + context.requireWait = false; + //But first, call resume to register any defined modules that may + //be in a data-main built file before the priority config + //call. + resume(); + + context.require(cfg.priority); + + //Trigger a resume right away, for the case when + //the script with the priority load is done as part + //of a data-main call. In that case the normal resume + //call will not happen because the scriptCount will be + //at 1, since the script for data-main is being processed. + resume(); + + //Restore previous state. + context.requireWait = requireWait; + config.priorityWait = cfg.priority; + } + + //If a deps array or a config callback is specified, then call + //require with those args. This is useful when require is defined as a + //config object before require.js is loaded. + if (cfg.deps || cfg.callback) { + context.require(cfg.deps || [], cfg.callback); + } + }, + + requireDefined: function (moduleName, relModuleMap) { + return makeModuleMap(moduleName, relModuleMap).fullName in defined; + }, + + requireSpecified: function (moduleName, relModuleMap) { + return makeModuleMap(moduleName, relModuleMap).fullName in specified; + }, + + require: function (deps, callback, relModuleMap) { + var moduleName, fullName, moduleMap; + if (typeof deps === "string") { + if (isFunction(callback)) { + //Invalid call + return req.onError(makeError("requireargs", "Invalid require call")); + } + + //Synchronous access to one module. If require.get is + //available (as in the Node adapter), prefer that. + //In this case deps is the moduleName and callback is + //the relModuleMap + if (req.get) { + return req.get(context, deps, callback); + } + + //Just return the module wanted. In this scenario, the + //second arg (if passed) is just the relModuleMap. + moduleName = deps; + relModuleMap = callback; + + //Normalize module name, if it contains . or .. + moduleMap = makeModuleMap(moduleName, relModuleMap); + fullName = moduleMap.fullName; + + if (!(fullName in defined)) { + return req.onError(makeError("notloaded", "Module name '" + + moduleMap.fullName + + "' has not been loaded yet for context: " + + contextName)); + } + return defined[fullName]; + } + + //Call main but only if there are dependencies or + //a callback to call. + if (deps && deps.length || callback) { + main(null, deps, callback, relModuleMap); + } + + //If the require call does not trigger anything new to load, + //then resume the dependency processing. + if (!context.requireWait) { + while (!context.scriptCount && context.paused.length) { + resume(); + } + } + return context.require; + }, + + /** + * Internal method to transfer globalQueue items to this context's + * defQueue. + */ + takeGlobalQueue: function () { + //Push all the globalDefQueue items into the context's defQueue + if (globalDefQueue.length) { + //Array splice in the values since the context code has a + //local var ref to defQueue, so cannot just reassign the one + //on context. + apsp.apply(context.defQueue, + [context.defQueue.length - 1, 0].concat(globalDefQueue)); + globalDefQueue = []; + } + }, + + /** + * Internal method used by environment adapters to complete a load event. + * A load event could be a script load or just a load pass from a synchronous + * load call. + * @param {String} moduleName the name of the module to potentially complete. + */ + completeLoad: function (moduleName) { + var args; + + context.takeGlobalQueue(); + + while (defQueue.length) { + args = defQueue.shift(); + + if (args[0] === null) { + args[0] = moduleName; + break; + } else if (args[0] === moduleName) { + //Found matching define call for this script! + break; + } else { + //Some other named define call, most likely the result + //of a build layer that included many define calls. + callDefMain(args); + args = null; + } + } + if (args) { + callDefMain(args); + } else { + //A script that does not call define(), so just simulate + //the call for it. Special exception for jQuery dynamic load. + callDefMain([moduleName, [], + moduleName === "jquery" && typeof jQuery !== "undefined" ? + function () { + return jQuery; + } : null]); + } + + //Doing this scriptCount decrement branching because sync envs + //need to decrement after resume, otherwise it looks like + //loading is complete after the first dependency is fetched. + //For browsers, it works fine to decrement after, but it means + //the checkLoaded setTimeout 50 ms cost is taken. To avoid + //that cost, decrement beforehand. + if (req.isAsync) { + context.scriptCount -= 1; + } + resume(); + if (!req.isAsync) { + context.scriptCount -= 1; + } + }, + + /** + * Converts a module name + .extension into an URL path. + * *Requires* the use of a module name. It does not support using + * plain URLs like nameToUrl. + */ + toUrl: function (moduleNamePlusExt, relModuleMap) { + var index = moduleNamePlusExt.lastIndexOf("."), + ext = null; + + if (index !== -1) { + ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length); + moduleNamePlusExt = moduleNamePlusExt.substring(0, index); + } + + return context.nameToUrl(moduleNamePlusExt, ext, relModuleMap); + }, + + /** + * Converts a module name to a file path. Supports cases where + * moduleName may actually be just an URL. + */ + nameToUrl: function (moduleName, ext, relModuleMap) { + var paths, pkgs, pkg, pkgPath, syms, i, parentModule, url, + config = context.config; + + //Normalize module name if have a base relative module name to work from. + moduleName = normalize(moduleName, relModuleMap && relModuleMap.fullName); + + //If a colon is in the URL, it indicates a protocol is used and it is just + //an URL to a file, or if it starts with a slash or ends with .js, it is just a plain file. + //The slash is important for protocol-less URLs as well as full paths. + if (req.jsExtRegExp.test(moduleName)) { + //Just a plain path, not module name lookup, so just return it. + //Add extension if it is included. This is a bit wonky, only non-.js things pass + //an extension, this method probably needs to be reworked. + url = moduleName + (ext ? ext : ""); + } else { + //A module that needs to be converted to a path. + paths = config.paths; + pkgs = config.pkgs; + + syms = moduleName.split("/"); + //For each module name segment, see if there is a path + //registered for it. Start with most specific name + //and work up from it. + for (i = syms.length; i > 0; i--) { + parentModule = syms.slice(0, i).join("/"); + if (paths[parentModule]) { + syms.splice(0, i, paths[parentModule]); + break; + } else if ((pkg = pkgs[parentModule])) { + //If module name is just the package name, then looking + //for the main module. + if (moduleName === pkg.name) { + pkgPath = pkg.location + '/' + pkg.main; + } else { + pkgPath = pkg.location; + } + syms.splice(0, i, pkgPath); + break; + } + } + + //Join the path parts together, then figure out if baseUrl is needed. + url = syms.join("/") + (ext || ".js"); + url = (url.charAt(0) === '/' || url.match(/^\w+:/) ? "" : config.baseUrl) + url; + } + + return config.urlArgs ? url + + ((url.indexOf('?') === -1 ? '?' : '&') + + config.urlArgs) : url; + } + }; + + //Make these visible on the context so can be called at the very + //end of the file to bootstrap + context.jQueryCheck = jQueryCheck; + context.resume = resume; + + return context; + } + + /** + * Main entry point. + * + * If the only argument to require is a string, then the module that + * is represented by that string is fetched for the appropriate context. + * + * If the first argument is an array, then it will be treated as an array + * of dependency string names to fetch. An optional function callback can + * be specified to execute when all of those dependencies are available. + * + * Make a local req variable to help Caja compliance (it assumes things + * on a require that are not standardized), and to give a short + * name for minification/local scope use. + */ + req = requirejs = function (deps, callback) { + + //Find the right context, use default + var contextName = defContextName, + context, config; + + // Determine if have config object in the call. + if (!isArray(deps) && typeof deps !== "string") { + // deps is a config object + config = deps; + if (isArray(callback)) { + // Adjust args if there are dependencies + deps = callback; + callback = arguments[2]; + } else { + deps = []; + } + } + + if (config && config.context) { + contextName = config.context; + } + + context = contexts[contextName] || + (contexts[contextName] = newContext(contextName)); + + if (config) { + context.configure(config); + } + + return context.require(deps, callback); + }; + + /** + * Support require.config() to make it easier to cooperate with other + * AMD loaders on globally agreed names. + */ + req.config = function (config) { + return req(config); + }; + + /** + * Export require as a global, but only if it does not already exist. + */ + if (!require) { + require = req; + } + + /** + * Global require.toUrl(), to match global require, mostly useful + * for debugging/work in the global space. + */ + req.toUrl = function (moduleNamePlusExt) { + return contexts[defContextName].toUrl(moduleNamePlusExt); + }; + + req.version = version; + + //Used to filter out dependencies that are already paths. + req.jsExtRegExp = /^\/|:|\?|\.js$/; + s = req.s = { + contexts: contexts, + //Stores a list of URLs that should not get async script tag treatment. + skipAsync: {} + }; + + req.isAsync = req.isBrowser = isBrowser; + if (isBrowser) { + head = s.head = document.getElementsByTagName("head")[0]; + //If BASE tag is in play, using appendChild is a problem for IE6. + //When that browser dies, this can be removed. Details in this jQuery bug: + //http://dev.jquery.com/ticket/2709 + baseElement = document.getElementsByTagName("base")[0]; + if (baseElement) { + head = s.head = baseElement.parentNode; + } + } + + /** + * Any errors that require explicitly generates will be passed to this + * function. Intercept/override it if you want custom error handling. + * @param {Error} err the error object. + */ + req.onError = function (err) { + throw err; + }; + + /** + * Does the request to load a module for the browser case. + * Make this a separate function to allow other environments + * to override it. + * + * @param {Object} context the require context to find state. + * @param {String} moduleName the name of the module. + * @param {Object} url the URL to the module. + */ + req.load = function (context, moduleName, url) { + req.resourcesReady(false); + + context.scriptCount += 1; + req.attach(url, context, moduleName); + + //If tracking a jQuery, then make sure its ready callbacks + //are put on hold to prevent its ready callbacks from + //triggering too soon. + if (context.jQuery && !context.jQueryIncremented) { + jQueryHoldReady(context.jQuery, true); + context.jQueryIncremented = true; + } + }; + + function getInteractiveScript() { + var scripts, i, script; + if (interactiveScript && interactiveScript.readyState === 'interactive') { + return interactiveScript; + } + + scripts = document.getElementsByTagName('script'); + for (i = scripts.length - 1; i > -1 && (script = scripts[i]); i--) { + if (script.readyState === 'interactive') { + return (interactiveScript = script); + } + } + + return null; + } + + /** + * The function that handles definitions of modules. Differs from + * require() in that a string for the module should be the first argument, + * and the function to execute after dependencies are loaded should + * return a value to define the module corresponding to the first argument's + * name. + */ + define = function (name, deps, callback) { + var node, context; + + //Allow for anonymous functions + if (typeof name !== 'string') { + //Adjust args appropriately + callback = deps; + deps = name; + name = null; + } + + //This module may not have dependencies + if (!isArray(deps)) { + callback = deps; + deps = []; + } + + //If no name, and callback is a function, then figure out if it a + //CommonJS thing with dependencies. + if (!deps.length && isFunction(callback)) { + //Remove comments from the callback string, + //look for require calls, and pull them into the dependencies, + //but only if there are function args. + if (callback.length) { + callback + .toString() + .replace(commentRegExp, "") + .replace(cjsRequireRegExp, function (match, dep) { + deps.push(dep); + }); + + //May be a CommonJS thing even without require calls, but still + //could use exports, and module. Avoid doing exports and module + //work though if it just needs require. + //REQUIRES the function to expect the CommonJS variables in the + //order listed below. + deps = (callback.length === 1 ? ["require"] : ["require", "exports", "module"]).concat(deps); + } + } + + //If in IE 6-8 and hit an anonymous define() call, do the interactive + //work. + if (useInteractive) { + node = currentlyAddingScript || getInteractiveScript(); + if (node) { + if (!name) { + name = node.getAttribute("data-requiremodule"); + } + context = contexts[node.getAttribute("data-requirecontext")]; + } + } + + //Always save off evaluating the def call until the script onload handler. + //This allows multiple modules to be in a file without prematurely + //tracing dependencies, and allows for anonymous module support, + //where the module name is not known until the script onload event + //occurs. If no context, use the global queue, and get it processed + //in the onscript load callback. + (context ? context.defQueue : globalDefQueue).push([name, deps, callback]); + + return undefined; + }; + + define.amd = { + multiversion: true, + plugins: true, + jQuery: true + }; + + /** + * Executes the text. Normally just uses eval, but can be modified + * to use a more environment specific call. + * @param {String} text the text to execute/evaluate. + */ + req.exec = function (text) { + return eval(text); + }; + + /** + * Executes a module callack function. Broken out as a separate function + * solely to allow the build system to sequence the files in the built + * layer in the right sequence. + * + * @private + */ + req.execCb = function (name, callback, args, exports) { + return callback.apply(exports, args); + }; + + + /** + * Adds a node to the DOM. Public function since used by the order plugin. + * This method should not normally be called by outside code. + */ + req.addScriptToDom = function (node) { + //For some cache cases in IE 6-8, the script executes before the end + //of the appendChild execution, so to tie an anonymous define + //call to the module name (which is stored on the node), hold on + //to a reference to this node, but clear after the DOM insertion. + currentlyAddingScript = node; + if (baseElement) { + head.insertBefore(node, baseElement); + } else { + head.appendChild(node); + } + currentlyAddingScript = null; + }; + + /** + * callback for script loads, used to check status of loading. + * + * @param {Event} evt the event from the browser for the script + * that was loaded. + * + * @private + */ + req.onScriptLoad = function (evt) { + //Using currentTarget instead of target for Firefox 2.0's sake. Not + //all old browsers will be supported, but this one was easy enough + //to support and still makes sense. + var node = evt.currentTarget || evt.srcElement, contextName, moduleName, + context; + + if (evt.type === "load" || (node && readyRegExp.test(node.readyState))) { + //Reset interactive script so a script node is not held onto for + //to long. + interactiveScript = null; + + //Pull out the name of the module and the context. + contextName = node.getAttribute("data-requirecontext"); + moduleName = node.getAttribute("data-requiremodule"); + context = contexts[contextName]; + + contexts[contextName].completeLoad(moduleName); + + //Clean up script binding. Favor detachEvent because of IE9 + //issue, see attachEvent/addEventListener comment elsewhere + //in this file. + if (node.detachEvent && !isOpera) { + //Probably IE. If not it will throw an error, which will be + //useful to know. + node.detachEvent("onreadystatechange", req.onScriptLoad); + } else { + node.removeEventListener("load", req.onScriptLoad, false); + } + } + }; + + /** + * Attaches the script represented by the URL to the current + * environment. Right now only supports browser loading, + * but can be redefined in other environments to do the right thing. + * @param {String} url the url of the script to attach. + * @param {Object} context the context that wants the script. + * @param {moduleName} the name of the module that is associated with the script. + * @param {Function} [callback] optional callback, defaults to require.onScriptLoad + * @param {String} [type] optional type, defaults to text/javascript + * @param {Function} [fetchOnlyFunction] optional function to indicate the script node + * should be set up to fetch the script but do not attach it to the DOM + * so that it can later be attached to execute it. This is a way for the + * order plugin to support ordered loading in IE. Once the script is fetched, + * but not executed, the fetchOnlyFunction will be called. + */ + req.attach = function (url, context, moduleName, callback, type, fetchOnlyFunction) { + var node; + if (isBrowser) { + //In the browser so use a script tag + callback = callback || req.onScriptLoad; + node = context && context.config && context.config.xhtml ? + document.createElementNS("http://www.w3.org/1999/xhtml", "html:script") : + document.createElement("script"); + node.type = type || (context && context.config.scriptType) || + "text/javascript"; + node.charset = "utf-8"; + //Use async so Gecko does not block on executing the script if something + //like a long-polling comet tag is being run first. Gecko likes + //to evaluate scripts in DOM order, even for dynamic scripts. + //It will fetch them async, but only evaluate the contents in DOM + //order, so a long-polling script tag can delay execution of scripts + //after it. But telling Gecko we expect async gets us the behavior + //we want -- execute it whenever it is finished downloading. Only + //Helps Firefox 3.6+ + //Allow some URLs to not be fetched async. Mostly helps the order! + //plugin + node.async = !s.skipAsync[url]; + + if (context) { + node.setAttribute("data-requirecontext", context.contextName); + } + node.setAttribute("data-requiremodule", moduleName); + + //Set up load listener. Test attachEvent first because IE9 has + //a subtle issue in its addEventListener and script onload firings + //that do not match the behavior of all other browsers with + //addEventListener support, which fire the onload event for a + //script right after the script execution. See: + //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution + //UNFORTUNATELY Opera implements attachEvent but does not follow the script + //script execution mode. + if (node.attachEvent && !isOpera) { + //Probably IE. IE (at least 6-8) do not fire + //script onload right after executing the script, so + //we cannot tie the anonymous define call to a name. + //However, IE reports the script as being in "interactive" + //readyState at the time of the define call. + useInteractive = true; + + + if (fetchOnlyFunction) { + //Need to use old school onreadystate here since + //when the event fires and the node is not attached + //to the DOM, the evt.srcElement is null, so use + //a closure to remember the node. + node.onreadystatechange = function (evt) { + //Script loaded but not executed. + //Clear loaded handler, set the real one that + //waits for script execution. + if (node.readyState === 'loaded') { + node.onreadystatechange = null; + node.attachEvent("onreadystatechange", callback); + fetchOnlyFunction(node); + } + }; + } else { + node.attachEvent("onreadystatechange", callback); + } + } else { + node.addEventListener("load", callback, false); + } + node.src = url; + + //Fetch only means waiting to attach to DOM after loaded. + if (!fetchOnlyFunction) { + req.addScriptToDom(node); + } + + return node; + } else if (isWebWorker) { + //In a web worker, use importScripts. This is not a very + //efficient use of importScripts, importScripts will block until + //its script is downloaded and evaluated. However, if web workers + //are in play, the expectation that a build has been done so that + //only one script needs to be loaded anyway. This may need to be + //reevaluated if other use cases become common. + importScripts(url); + + //Account for anonymous modules + context.completeLoad(moduleName); + } + return null; + }; + + //Look for a data-main script attribute, which could also adjust the baseUrl. + if (isBrowser) { + //Figure out baseUrl. Get it from the script tag with require.js in it. + scripts = document.getElementsByTagName("script"); + + for (globalI = scripts.length - 1; globalI > -1 && (script = scripts[globalI]); globalI--) { + //Set the "head" where we can append children by + //using the script's parent. + if (!head) { + head = script.parentNode; + } + + //Look for a data-main attribute to set main script for the page + //to load. If it is there, the path to data main becomes the + //baseUrl, if it is not already set. + if ((dataMain = script.getAttribute('data-main'))) { + if (!cfg.baseUrl) { + //Pull off the directory of data-main for use as the + //baseUrl. + src = dataMain.split('/'); + mainScript = src.pop(); + subPath = src.length ? src.join('/') + '/' : './'; + + //Set final config. + cfg.baseUrl = subPath; + //Strip off any trailing .js since dataMain is now + //like a module name. + dataMain = mainScript.replace(jsSuffixRegExp, ''); + } + + //Put the data-main script in the files to load. + cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain]; + + break; + } + } + } + + //See if there is nothing waiting across contexts, and if not, trigger + //resourcesReady. + req.checkReadyState = function () { + var contexts = s.contexts, prop; + for (prop in contexts) { + if (!(prop in empty)) { + if (contexts[prop].waitCount) { + return; + } + } + } + req.resourcesReady(true); + }; + + /** + * Internal function that is triggered whenever all scripts/resources + * have been loaded by the loader. Can be overridden by other, for + * instance the domReady plugin, which wants to know when all resources + * are loaded. + */ + req.resourcesReady = function (isReady) { + var contexts, context, prop; + + //First, set the public variable indicating that resources are loading. + req.resourcesDone = isReady; + + if (req.resourcesDone) { + //If jQuery with DOM ready delayed, release it now. + contexts = s.contexts; + for (prop in contexts) { + if (!(prop in empty)) { + context = contexts[prop]; + if (context.jQueryIncremented) { + jQueryHoldReady(context.jQuery, false); + context.jQueryIncremented = false; + } + } + } + } + }; + + //FF < 3.6 readyState fix. Needed so that domReady plugin + //works well in that environment, since require.js is normally + //loaded via an HTML script tag so it will be there before window load, + //where the domReady plugin is more likely to be loaded after window load. + req.pageLoaded = function () { + if (document.readyState !== "complete") { + document.readyState = "complete"; + } + }; + if (isBrowser) { + if (document.addEventListener) { + if (!document.readyState) { + document.readyState = "loading"; + window.addEventListener("load", req.pageLoaded, false); + } + } + } + + //Set up default context. If require was a configuration object, use that as base config. + req(cfg); + + //If modules are built into require.js, then need to make sure dependencies are + //traced. Use a setTimeout in the browser world, to allow all the modules to register + //themselves. In a non-browser env, assume that modules are not built into require.js, + //which seems odd to do on the server. + if (req.isAsync && typeof setTimeout !== "undefined") { + ctx = s.contexts[(cfg.context || defContextName)]; + //Indicate that the script that includes require() is still loading, + //so that require()'d dependencies are not traced until the end of the + //file is parsed (approximated via the setTimeout call). + ctx.requireWait = true; + setTimeout(function () { + ctx.requireWait = false; + + if (!ctx.scriptCount) { + ctx.resume(); + } + req.checkReadyState(); + }, 0); + } +}()); diff --git a/libs/js/jquery-mobile-1.1.0/external/requirejs/text.js b/libs/js/jquery-mobile-1.1.0/external/requirejs/text.js new file mode 100644 index 0000000..6ef7422 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/external/requirejs/text.js @@ -0,0 +1,283 @@ +/** + * @license RequireJS text 1.0.2 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +/*jslint regexp: false, nomen: false, plusplus: false, strict: false */ +/*global require: false, XMLHttpRequest: false, ActiveXObject: false, + define: false, window: false, process: false, Packages: false, + java: false, location: false */ + +(function () { + var progIds = ['Msxml2.XMLHTTP', 'Microsoft.XMLHTTP', 'Msxml2.XMLHTTP.4.0'], + xmlRegExp = /^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im, + bodyRegExp = /]*>\s*([\s\S]+)\s*<\/body>/im, + hasLocation = typeof location !== 'undefined' && location.href, + defaultProtocol = hasLocation && location.protocol && location.protocol.replace(/\:/, ''), + defaultHostName = hasLocation && location.hostname, + defaultPort = hasLocation && (location.port || undefined), + buildMap = []; + + define(function () { + var text, get, fs; + + if (typeof window !== "undefined" && window.navigator && window.document) { + get = function (url, callback) { + var xhr = text.createXhr(); + xhr.open('GET', url, true); + xhr.onreadystatechange = function (evt) { + //Do not explicitly handle errors, those should be + //visible via console output in the browser. + if (xhr.readyState === 4) { + callback(xhr.responseText); + } + }; + xhr.send(null); + }; + } else if (typeof process !== "undefined" && + process.versions && + !!process.versions.node) { + //Using special require.nodeRequire, something added by r.js. + fs = require.nodeRequire('fs'); + + get = function (url, callback) { + callback(fs.readFileSync(url, 'utf8')); + }; + } else if (typeof Packages !== 'undefined') { + //Why Java, why is this so awkward? + get = function (url, callback) { + var encoding = "utf-8", + file = new java.io.File(url), + lineSeparator = java.lang.System.getProperty("line.separator"), + input = new java.io.BufferedReader(new java.io.InputStreamReader(new java.io.FileInputStream(file), encoding)), + stringBuffer, line, + content = ''; + try { + stringBuffer = new java.lang.StringBuffer(); + line = input.readLine(); + + // Byte Order Mark (BOM) - The Unicode Standard, version 3.0, page 324 + // http://www.unicode.org/faq/utf_bom.html + + // Note that when we use utf-8, the BOM should appear as "EF BB BF", but it doesn't due to this bug in the JDK: + // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058 + if (line && line.length() && line.charAt(0) === 0xfeff) { + // Eat the BOM, since we've already found the encoding on this file, + // and we plan to concatenating this buffer with others; the BOM should + // only appear at the top of a file. + line = line.substring(1); + } + + stringBuffer.append(line); + + while ((line = input.readLine()) !== null) { + stringBuffer.append(lineSeparator); + stringBuffer.append(line); + } + //Make sure we return a JavaScript string and not a Java string. + content = String(stringBuffer.toString()); //String + } finally { + input.close(); + } + callback(content); + }; + } + + text = { + version: '1.0.2', + + strip: function (content) { + //Strips declarations so that external SVG and XML + //documents can be added to a document without worry. Also, if the string + //is an HTML document, only the part inside the body tag is returned. + if (content) { + content = content.replace(xmlRegExp, ""); + var matches = content.match(bodyRegExp); + if (matches) { + content = matches[1]; + } + } else { + content = ""; + } + return content; + }, + + jsEscape: function (content) { + return content.replace(/(['\\])/g, '\\$1') + .replace(/[\f]/g, "\\f") + .replace(/[\b]/g, "\\b") + .replace(/[\n]/g, "\\n") + .replace(/[\t]/g, "\\t") + .replace(/[\r]/g, "\\r"); + }, + + createXhr: function () { + //Would love to dump the ActiveX crap in here. Need IE 6 to die first. + var xhr, i, progId; + if (typeof XMLHttpRequest !== "undefined") { + return new XMLHttpRequest(); + } else { + for (i = 0; i < 3; i++) { + progId = progIds[i]; + try { + xhr = new ActiveXObject(progId); + } catch (e) {} + + if (xhr) { + progIds = [progId]; // so faster next time + break; + } + } + } + + if (!xhr) { + throw new Error("createXhr(): XMLHttpRequest not available"); + } + + return xhr; + }, + + get: get, + + /** + * Parses a resource name into its component parts. Resource names + * look like: module/name.ext!strip, where the !strip part is + * optional. + * @param {String} name the resource name + * @returns {Object} with properties "moduleName", "ext" and "strip" + * where strip is a boolean. + */ + parseName: function (name) { + var strip = false, index = name.indexOf("."), + modName = name.substring(0, index), + ext = name.substring(index + 1, name.length); + + index = ext.indexOf("!"); + if (index !== -1) { + //Pull off the strip arg. + strip = ext.substring(index + 1, ext.length); + strip = strip === "strip"; + ext = ext.substring(0, index); + } + + return { + moduleName: modName, + ext: ext, + strip: strip + }; + }, + + xdRegExp: /^((\w+)\:)?\/\/([^\/\\]+)/, + + /** + * Is an URL on another domain. Only works for browser use, returns + * false in non-browser environments. Only used to know if an + * optimized .js version of a text resource should be loaded + * instead. + * @param {String} url + * @returns Boolean + */ + useXhr: function (url, protocol, hostname, port) { + var match = text.xdRegExp.exec(url), + uProtocol, uHostName, uPort; + if (!match) { + return true; + } + uProtocol = match[2]; + uHostName = match[3]; + + uHostName = uHostName.split(':'); + uPort = uHostName[1]; + uHostName = uHostName[0]; + + return (!uProtocol || uProtocol === protocol) && + (!uHostName || uHostName === hostname) && + ((!uPort && !uHostName) || uPort === port); + }, + + finishLoad: function (name, strip, content, onLoad, config) { + content = strip ? text.strip(content) : content; + if (config.isBuild) { + buildMap[name] = content; + } + onLoad(content); + }, + + load: function (name, req, onLoad, config) { + //Name has format: some.module.filext!strip + //The strip part is optional. + //if strip is present, then that means only get the string contents + //inside a body tag in an HTML string. For XML/SVG content it means + //removing the declarations so the content can be inserted + //into the current doc without problems. + + // Do not bother with the work if a build and text will + // not be inlined. + if (config.isBuild && !config.inlineText) { + onLoad(); + return; + } + + var parsed = text.parseName(name), + nonStripName = parsed.moduleName + '.' + parsed.ext, + url = req.toUrl(nonStripName), + useXhr = (config && config.text && config.text.useXhr) || + text.useXhr; + + //Load the text. Use XHR if possible and in a browser. + if (!hasLocation || useXhr(url, defaultProtocol, defaultHostName, defaultPort)) { + text.get(url, function (content) { + text.finishLoad(name, parsed.strip, content, onLoad, config); + }); + } else { + //Need to fetch the resource across domains. Assume + //the resource has been optimized into a JS module. Fetch + //by the module name + extension, but do not include the + //!strip part to avoid file system issues. + req([nonStripName], function (content) { + text.finishLoad(parsed.moduleName + '.' + parsed.ext, + parsed.strip, content, onLoad, config); + }); + } + }, + + write: function (pluginName, moduleName, write, config) { + if (moduleName in buildMap) { + var content = text.jsEscape(buildMap[moduleName]); + write.asModule(pluginName + "!" + moduleName, + "define(function () { return '" + + content + + "';});\n"); + } + }, + + writeFile: function (pluginName, moduleName, req, write, config) { + var parsed = text.parseName(moduleName), + nonStripName = parsed.moduleName + '.' + parsed.ext, + //Use a '.js' file name so that it indicates it is a + //script that can be loaded across domains. + fileName = req.toUrl(parsed.moduleName + '.' + + parsed.ext) + '.js'; + + //Leverage own load() method to load plugin value, but only + //write out values that do not have the strip argument, + //to avoid any potential issues with ! in file names. + text.load(nonStripName, req, function (value) { + //Use own write() method to construct full module value. + //But need to create shell that translates writeFile's + //write() to the right interface. + var textWrite = function (contents) { + return write(fileName, contents); + }; + textWrite.asModule = function (moduleName, contents) { + return write.asModule(moduleName, fileName, contents); + }; + + text.write(pluginName, nonStripName, textWrite, config); + }, config); + } + }; + + return text; + }); +}()); diff --git a/libs/js/jquery-mobile-1.1.0/index.html b/libs/js/jquery-mobile-1.1.0/index.html new file mode 100644 index 0000000..8eb9690 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/index.html @@ -0,0 +1,76 @@ + + + + + + jQuery Mobile: Demos and Documentation + + + + + + + + +
                    +
                    +

                    1.1.0 Final Release

                    + + +
                    + +
                    +

                    jQuery Mobile Framework

                    +

                    A Touch-Optimized UI Framework built with jQuery and HTML5.

                    +
                    + + +

                    Welcome. jQuery Mobile is the easiest way to build sites and apps that are accessible on all popular smartphone, tablet and desktop devices. For jQuery 1.6.4 and 1.7.1.

                    + + + +
                    + + + + + +
                    + + + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/js/index.php b/libs/js/jquery-mobile-1.1.0/js/index.php new file mode 100644 index 0000000..5cb07fc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/index.php @@ -0,0 +1,54 @@ + to avoid XSS via location.hash (#9521) + quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, + + // Check if a string has a non-whitespace character in it + rnotwhite = /\S/, + + // Used for trimming whitespace + trimLeft = /^\s+/, + trimRight = /\s+$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, + rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + + // Useragent RegExp + rwebkit = /(webkit)[ \/]([\w.]+)/, + ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, + rmsie = /(msie) ([\w.]+)/, + rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, + + // Matches dashed string for camelizing + rdashAlpha = /-([a-z]|[0-9])/ig, + rmsPrefix = /^-ms-/, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return ( letter + "" ).toUpperCase(); + }, + + // Keep a UserAgent string for use with jQuery.browser + userAgent = navigator.userAgent, + + // For matching the engine and version of the browser + browserMatch, + + // The deferred used on DOM ready + readyList, + + // The ready event handler + DOMContentLoaded, + + // Save a reference to some core methods + toString = Object.prototype.toString, + hasOwn = Object.prototype.hasOwnProperty, + push = Array.prototype.push, + slice = Array.prototype.slice, + trim = String.prototype.trim, + indexOf = Array.prototype.indexOf, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), or $(undefined) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // The body element only exists once, optimize finding it + if ( selector === "body" && !context && document.body ) { + this.context = document; + this[0] = document.body; + this.selector = selector; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + // Are we dealing with HTML string or an ID? + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = quickExpr.exec( selector ); + } + + // Verify a match, and that no context was specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + doc = ( context ? context.ownerDocument || context : document ); + + // If a single string is passed in and it's a single tag + // just do a createElement and skip the rest + ret = rsingleTag.exec( selector ); + + if ( ret ) { + if ( jQuery.isPlainObject( context ) ) { + selector = [ document.createElement( ret[1] ) ]; + jQuery.fn.attr.call( selector, context, true ); + + } else { + selector = [ doc.createElement( ret[1] ) ]; + } + + } else { + ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); + selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes; + } + + return jQuery.merge( this, selector ); + + // HANDLE: $("#id") + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.7.1", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return slice.call( this, 0 ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + // Build a new jQuery matched element set + var ret = this.constructor(); + + if ( jQuery.isArray( elems ) ) { + push.apply( ret, elems ); + + } else { + jQuery.merge( ret, elems ); + } + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Attach the listeners + jQuery.bindReady(); + + // Add the callback + readyList.add( fn ); + + return this; + }, + + eq: function( i ) { + i = +i; + return i === -1 ? + this.slice( i ) : + this.slice( i, i + 1 ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ), + "slice", slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + // Either a released hold or an DOMready/load event and not yet ready + if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.fireWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger( "ready" ).off( "ready" ); + } + } + }, + + bindReady: function() { + if ( readyList ) { + return; + } + + readyList = jQuery.Callbacks( "once memory" ); + + // Catch cases where $(document).ready() is called after the + // browser event has already occurred. + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + return setTimeout( jQuery.ready, 1 ); + } + + // Mozilla, Opera and webkit nightlies currently support this event + if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else if ( document.attachEvent ) { + // ensure firing before onload, + // maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", DOMContentLoaded ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var toplevel = false; + + try { + toplevel = window.frameElement == null; + } catch(e) {} + + if ( document.documentElement.doScroll && toplevel ) { + doScrollCheck(); + } + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + // A crude way of determining if an object is a window + isWindow: function( obj ) { + return obj && typeof obj === "object" && "setInterval" in obj; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call(obj, "constructor") && + !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + for ( var name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + parseJSON: function( data ) { + if ( typeof data !== "string" || !data ) { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + + } + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && rnotwhite.test( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); + }, + + // args is for internal usage only + each: function( object, callback, args ) { + var name, i = 0, + length = object.length, + isObj = length === undefined || jQuery.isFunction( object ); + + if ( args ) { + if ( isObj ) { + for ( name in object ) { + if ( callback.apply( object[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( object[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in object ) { + if ( callback.call( object[ name ], name, object[ name ] ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.call( object[ i ], i, object[ i++ ] ) === false ) { + break; + } + } + } + } + + return object; + }, + + // Use native String.trim function wherever possible + trim: trim ? + function( text ) { + return text == null ? + "" : + trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); + }, + + // results is for internal usage only + makeArray: function( array, results ) { + var ret = results || []; + + if ( array != null ) { + // The window, strings (and functions) also have 'length' + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + var type = jQuery.type( array ); + + if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { + push.call( ret, array ); + } else { + jQuery.merge( ret, array ); + } + } + + return ret; + }, + + inArray: function( elem, array, i ) { + var len; + + if ( array ) { + if ( indexOf ) { + return indexOf.call( array, elem, i ); + } + + len = array.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in array && array[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var i = first.length, + j = 0; + + if ( typeof second.length === "number" ) { + for ( var l = second.length; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var ret = [], retVal; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( var i = 0, length = elems.length; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, key, ret = [], + i = 0, + length = elems.length, + // jquery objects are treated as arrays + isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( key in elems ) { + value = callback( elems[ key ], key, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + if ( typeof context === "string" ) { + var tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + var args = slice.call( arguments, 2 ), + proxy = function() { + return fn.apply( context, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; + + return proxy; + }, + + // Mutifunctional method to get and set values to a collection + // The value/s can optionally be executed if it's a function + access: function( elems, key, value, exec, fn, pass ) { + var length = elems.length; + + // Setting many attributes + if ( typeof key === "object" ) { + for ( var k in key ) { + jQuery.access( elems, k, key[k], exec, fn, value ); + } + return elems; + } + + // Setting one attribute + if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = !pass && exec && jQuery.isFunction(value); + + for ( var i = 0; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + + return elems; + } + + // Getting an attribute + return length ? fn( elems[0], key ) : undefined; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // Use of jQuery.browser is frowned upon. + // More details: http://docs.jquery.com/Utilities/jQuery.browser + uaMatch: function( ua ) { + ua = ua.toLowerCase(); + + var match = rwebkit.exec( ua ) || + ropera.exec( ua ) || + rmsie.exec( ua ) || + ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || + []; + + return { browser: match[1] || "", version: match[2] || "0" }; + }, + + sub: function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + return jQuerySub; + }, + + browser: {} +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +browserMatch = jQuery.uaMatch( userAgent ); +if ( browserMatch.browser ) { + jQuery.browser[ browserMatch.browser ] = true; + jQuery.browser.version = browserMatch.version; +} + +// Deprecated, use jQuery.browser.webkit instead +if ( jQuery.browser.webkit ) { + jQuery.browser.safari = true; +} + +// IE doesn't match non-breaking spaces with \s +if ( rnotwhite.test( "\xA0" ) ) { + trimLeft = /^[\s\xA0]+/; + trimRight = /[\s\xA0]+$/; +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); + +// Cleanup functions for the document ready method +if ( document.addEventListener ) { + DOMContentLoaded = function() { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + }; + +} else if ( document.attachEvent ) { + DOMContentLoaded = function() { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( document.readyState === "complete" ) { + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }; +} + +// The DOM ready check for Internet Explorer +function doScrollCheck() { + if ( jQuery.isReady ) { + return; + } + + try { + // If IE is used, use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + document.documentElement.doScroll("left"); + } catch(e) { + setTimeout( doScrollCheck, 1 ); + return; + } + + // and execute any waiting functions + jQuery.ready(); +} + +return jQuery; + +})(); + + +// String to Object flags format cache +var flagsCache = {}; + +// Convert String-formatted flags into Object-formatted ones and store in cache +function createFlags( flags ) { + var object = flagsCache[ flags ] = {}, + i, length; + flags = flags.split( /\s+/ ); + for ( i = 0, length = flags.length; i < length; i++ ) { + object[ flags[i] ] = true; + } + return object; +} + +/* + * Create a callback list using the following parameters: + * + * flags: an optional list of space-separated flags that will change how + * the callback list behaves + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible flags: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( flags ) { + + // Convert flags from String-formatted to Object-formatted + // (we check in cache first) + flags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {}; + + var // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = [], + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Add one or several callbacks to the list + add = function( args ) { + var i, + length, + elem, + type, + actual; + for ( i = 0, length = args.length; i < length; i++ ) { + elem = args[ i ]; + type = jQuery.type( elem ); + if ( type === "array" ) { + // Inspect recursively + add( elem ); + } else if ( type === "function" ) { + // Add if not in unique mode and callback is not in + if ( !flags.unique || !self.has( elem ) ) { + list.push( elem ); + } + } + } + }, + // Fire callbacks + fire = function( context, args ) { + args = args || []; + memory = !flags.memory || [ context, args ]; + firing = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) { + memory = true; // Mark as halted + break; + } + } + firing = false; + if ( list ) { + if ( !flags.once ) { + if ( stack && stack.length ) { + memory = stack.shift(); + self.fireWith( memory[ 0 ], memory[ 1 ] ); + } + } else if ( memory === true ) { + self.disable(); + } else { + list = []; + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + var length = list.length; + add( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away, unless previous + // firing was halted (stopOnFalse) + } else if ( memory && memory !== true ) { + firingStart = length; + fire( memory[ 0 ], memory[ 1 ] ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + var args = arguments, + argIndex = 0, + argLength = args.length; + for ( ; argIndex < argLength ; argIndex++ ) { + for ( var i = 0; i < list.length; i++ ) { + if ( args[ argIndex ] === list[ i ] ) { + // Handle firingIndex and firingLength + if ( firing ) { + if ( i <= firingLength ) { + firingLength--; + if ( i <= firingIndex ) { + firingIndex--; + } + } + } + // Remove the element + list.splice( i--, 1 ); + // If we have some unicity property then + // we only need to do this once + if ( flags.unique ) { + break; + } + } + } + } + } + return this; + }, + // Control if a given callback is in the list + has: function( fn ) { + if ( list ) { + var i = 0, + length = list.length; + for ( ; i < length; i++ ) { + if ( fn === list[ i ] ) { + return true; + } + } + } + return false; + }, + // Remove all callbacks from the list + empty: function() { + list = []; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory || memory === true ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( stack ) { + if ( firing ) { + if ( !flags.once ) { + stack.push( [ context, args ] ); + } + } else if ( !( flags.once && memory ) ) { + fire( context, args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!memory; + } + }; + + return self; +}; + + + + +var // Static reference to slice + sliceDeferred = [].slice; + +jQuery.extend({ + + Deferred: function( func ) { + var doneList = jQuery.Callbacks( "once memory" ), + failList = jQuery.Callbacks( "once memory" ), + progressList = jQuery.Callbacks( "memory" ), + state = "pending", + lists = { + resolve: doneList, + reject: failList, + notify: progressList + }, + promise = { + done: doneList.add, + fail: failList.add, + progress: progressList.add, + + state: function() { + return state; + }, + + // Deprecated + isResolved: doneList.fired, + isRejected: failList.fired, + + then: function( doneCallbacks, failCallbacks, progressCallbacks ) { + deferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks ); + return this; + }, + always: function() { + deferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments ); + return this; + }, + pipe: function( fnDone, fnFail, fnProgress ) { + return jQuery.Deferred(function( newDefer ) { + jQuery.each( { + done: [ fnDone, "resolve" ], + fail: [ fnFail, "reject" ], + progress: [ fnProgress, "notify" ] + }, function( handler, data ) { + var fn = data[ 0 ], + action = data[ 1 ], + returned; + if ( jQuery.isFunction( fn ) ) { + deferred[ handler ](function() { + returned = fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); + } + }); + } else { + deferred[ handler ]( newDefer[ action ] ); + } + }); + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + if ( obj == null ) { + obj = promise; + } else { + for ( var key in promise ) { + obj[ key ] = promise[ key ]; + } + } + return obj; + } + }, + deferred = promise.promise({}), + key; + + for ( key in lists ) { + deferred[ key ] = lists[ key ].fire; + deferred[ key + "With" ] = lists[ key ].fireWith; + } + + // Handle state + deferred.done( function() { + state = "resolved"; + }, failList.disable, progressList.lock ).fail( function() { + state = "rejected"; + }, doneList.disable, progressList.lock ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( firstParam ) { + var args = sliceDeferred.call( arguments, 0 ), + i = 0, + length = args.length, + pValues = new Array( length ), + count = length, + pCount = length, + deferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ? + firstParam : + jQuery.Deferred(), + promise = deferred.promise(); + function resolveFunc( i ) { + return function( value ) { + args[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; + if ( !( --count ) ) { + deferred.resolveWith( deferred, args ); + } + }; + } + function progressFunc( i ) { + return function( value ) { + pValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; + deferred.notifyWith( promise, pValues ); + }; + } + if ( length > 1 ) { + for ( ; i < length; i++ ) { + if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) { + args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) ); + } else { + --count; + } + } + if ( !count ) { + deferred.resolveWith( deferred, args ); + } + } else if ( deferred !== firstParam ) { + deferred.resolveWith( deferred, length ? [ firstParam ] : [] ); + } + return promise; + } +}); + + + + +jQuery.support = (function() { + + var support, + all, + a, + select, + opt, + input, + marginDiv, + fragment, + tds, + events, + eventName, + i, + isSupported, + div = document.createElement( "div" ), + documentElement = document.documentElement; + + // Preliminary tests + div.setAttribute("className", "t"); + div.innerHTML = "
                    a"; + + all = div.getElementsByTagName( "*" ); + a = div.getElementsByTagName( "a" )[ 0 ]; + + // Can't get basic test support + if ( !all || !all.length || !a ) { + return {}; + } + + // First batch of supports tests + select = document.createElement( "select" ); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName( "input" )[ 0 ]; + + support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: ( div.firstChild.nodeType === 3 ), + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText instead) + style: /top/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: ( a.getAttribute("href") === "/a" ), + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.55/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: ( input.value === "on" ), + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", + + // Tests for enctype support on a form(#6743) + enctype: !!document.createElement("form").enctype, + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", + + // Will be defined later + submitBubbles: true, + changeBubbles: true, + focusinBubbles: false, + deleteExpando: true, + noCloneEvent: true, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableMarginRight: true + }; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { + div.attachEvent( "onclick", function() { + // Cloning a node shouldn't copy over any + // bound event handlers (IE does this) + support.noCloneEvent = false; + }); + div.cloneNode( true ).fireEvent( "onclick" ); + } + + // Check if a radio maintains its value + // after being appended to the DOM + input = document.createElement("input"); + input.value = "t"; + input.setAttribute("type", "radio"); + support.radioValue = input.value === "t"; + + input.setAttribute("checked", "checked"); + div.appendChild( input ); + fragment = document.createDocumentFragment(); + fragment.appendChild( div.lastChild ); + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + fragment.removeChild( input ); + fragment.appendChild( div ); + + div.innerHTML = ""; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. For more + // info see bug #3333 + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + if ( window.getComputedStyle ) { + marginDiv = document.createElement( "div" ); + marginDiv.style.width = "0"; + marginDiv.style.marginRight = "0"; + div.style.width = "2px"; + div.appendChild( marginDiv ); + support.reliableMarginRight = + ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; + } + + // Technique from Juriy Zaytsev + // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ + // We only care about the case where non-standard event systems + // are used, namely in IE. Short-circuiting here helps us to + // avoid an eval call (in setAttribute) which can cause CSP + // to go haywire. See: https://developer.mozilla.org/en/Security/CSP + if ( div.attachEvent ) { + for( i in { + submit: 1, + change: 1, + focusin: 1 + }) { + eventName = "on" + i; + isSupported = ( eventName in div ); + if ( !isSupported ) { + div.setAttribute( eventName, "return;" ); + isSupported = ( typeof div[ eventName ] === "function" ); + } + support[ i + "Bubbles" ] = isSupported; + } + } + + fragment.removeChild( div ); + + // Null elements to avoid leaks in IE + fragment = select = opt = marginDiv = div = input = null; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, outer, inner, table, td, offsetSupport, + conMarginTop, ptlm, vb, style, html, + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + conMarginTop = 1; + ptlm = "position:absolute;top:0;left:0;width:1px;height:1px;margin:0;"; + vb = "visibility:hidden;border:0;"; + style = "style='" + ptlm + "border:5px solid #000;padding:0;'"; + html = "
                    " + + "" + + "
                    "; + + container = document.createElement("div"); + container.style.cssText = vb + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; + body.insertBefore( container, body.firstChild ); + + // Construct the test element + div = document.createElement("div"); + container.appendChild( div ); + + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + // (only IE 8 fails this test) + div.innerHTML = "
                    t
                    "; + tds = div.getElementsByTagName( "td" ); + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Check if empty table cells still have offsetWidth/Height + // (IE <= 8 fail this test) + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Figure out if the W3C box model works as expected + div.innerHTML = ""; + div.style.width = div.style.paddingLeft = "1px"; + jQuery.boxModel = support.boxModel = div.offsetWidth === 2; + + if ( typeof div.style.zoom !== "undefined" ) { + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + // (IE < 8 does this) + div.style.display = "inline"; + div.style.zoom = 1; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 2 ); + + // Check if elements with layout shrink-wrap their children + // (IE 6 does this) + div.style.display = ""; + div.innerHTML = "
                    "; + support.shrinkWrapBlocks = ( div.offsetWidth !== 2 ); + } + + div.style.cssText = ptlm + vb; + div.innerHTML = html; + + outer = div.firstChild; + inner = outer.firstChild; + td = outer.nextSibling.firstChild.firstChild; + + offsetSupport = { + doesNotAddBorder: ( inner.offsetTop !== 5 ), + doesAddBorderForTableAndCells: ( td.offsetTop === 5 ) + }; + + inner.style.position = "fixed"; + inner.style.top = "20px"; + + // safari subtracts parent border width here which is 5px + offsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 ); + inner.style.position = inner.style.top = ""; + + outer.style.overflow = "hidden"; + outer.style.position = "relative"; + + offsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 ); + offsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop ); + + body.removeChild( container ); + div = container = null; + + jQuery.extend( support, offsetSupport ); + }); + + return support; +})(); + + + + +var rbrace = /^(?:\{.*\}|\[.*\])$/, + rmultiDash = /([A-Z])/g; + +jQuery.extend({ + cache: {}, + + // Please use with caution + uuid: 0, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var privateCache, thisCache, ret, + internalKey = jQuery.expando, + getByName = typeof name === "string", + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey, + isEvents = name === "events"; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ internalKey ] = id = ++jQuery.uuid; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + + // Avoids exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + if ( !isNode ) { + cache[ id ].toJSON = jQuery.noop; + } + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + privateCache = thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Users should not attempt to inspect the internal events object using jQuery.data, + // it is undocumented and subject to change. But does anyone listen? No. + if ( isEvents && !thisCache[ name ] ) { + return privateCache.events; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( getByName ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; + }, + + removeData: function( elem, name, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, l, + + // Reference to internal data cache key + internalKey = jQuery.expando, + + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + + // See jQuery.data for more information + id = isNode ? elem[ internalKey ] : internalKey; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split( " " ); + } + } + } + + for ( i = 0, l = name.length; i < l; i++ ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject(cache[ id ]) ) { + return; + } + } + + // Browsers that fail expando deletion also refuse to delete expandos on + // the window, but it will allow it on all other JS objects; other browsers + // don't care + // Ensure that `cache` is not a window object #10080 + if ( jQuery.support.deleteExpando || !cache.setInterval ) { + delete cache[ id ]; + } else { + cache[ id ] = null; + } + + // We destroyed the cache and need to eliminate the expando on the node to avoid + // false lookups in the cache for entries that no longer exist + if ( isNode ) { + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( jQuery.support.deleteExpando ) { + delete elem[ internalKey ]; + } else if ( elem.removeAttribute ) { + elem.removeAttribute( internalKey ); + } else { + elem[ internalKey ] = null; + } + } + }, + + // For internal use only. + _data: function( elem, name, data ) { + return jQuery.data( elem, name, data, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + if ( elem.nodeName ) { + var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; + + if ( match ) { + return !(match === true || elem.getAttribute("classid") !== match); + } + } + + return true; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var parts, attr, name, + data = null; + + if ( typeof key === "undefined" ) { + if ( this.length ) { + data = jQuery.data( this[0] ); + + if ( this[0].nodeType === 1 && !jQuery._data( this[0], "parsedAttrs" ) ) { + attr = this[0].attributes; + for ( var i = 0, l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.substring(5) ); + + dataAttr( this[0], name, data[ name ] ); + } + } + jQuery._data( this[0], "parsedAttrs", true ); + } + } + + return data; + + } else if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + parts = key.split("."); + parts[1] = parts[1] ? "." + parts[1] : ""; + + if ( value === undefined ) { + data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); + + // Try to fetch any internally stored data first + if ( data === undefined && this.length ) { + data = jQuery.data( this[0], key ); + data = dataAttr( this[0], key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + + } else { + return this.each(function() { + var self = jQuery( this ), + args = [ parts[0], value ]; + + self.triggerHandler( "setData" + parts[1] + "!", args ); + jQuery.data( this, key, value ); + self.triggerHandler( "changeData" + parts[1] + "!", args ); + }); + } + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + jQuery.isNumeric( data ) ? parseFloat( data ) : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + for ( var name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} + + + + +function handleQueueMarkDefer( elem, type, src ) { + var deferDataKey = type + "defer", + queueDataKey = type + "queue", + markDataKey = type + "mark", + defer = jQuery._data( elem, deferDataKey ); + if ( defer && + ( src === "queue" || !jQuery._data(elem, queueDataKey) ) && + ( src === "mark" || !jQuery._data(elem, markDataKey) ) ) { + // Give room for hard-coded callbacks to fire first + // and eventually mark/queue something else on the element + setTimeout( function() { + if ( !jQuery._data( elem, queueDataKey ) && + !jQuery._data( elem, markDataKey ) ) { + jQuery.removeData( elem, deferDataKey, true ); + defer.fire(); + } + }, 0 ); + } +} + +jQuery.extend({ + + _mark: function( elem, type ) { + if ( elem ) { + type = ( type || "fx" ) + "mark"; + jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 ); + } + }, + + _unmark: function( force, elem, type ) { + if ( force !== true ) { + type = elem; + elem = force; + force = false; + } + if ( elem ) { + type = type || "fx"; + var key = type + "mark", + count = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 ); + if ( count ) { + jQuery._data( elem, key, count ); + } else { + jQuery.removeData( elem, key, true ); + handleQueueMarkDefer( elem, type, "mark" ); + } + } + }, + + queue: function( elem, type, data ) { + var q; + if ( elem ) { + type = ( type || "fx" ) + "queue"; + q = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !q || jQuery.isArray(data) ) { + q = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + q.push( data ); + } + } + return q || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + fn = queue.shift(), + hooks = {}; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + } + + if ( fn ) { + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + jQuery._data( elem, type + ".run", hooks ); + fn.call( elem, function() { + jQuery.dequeue( elem, type ); + }, hooks ); + } + + if ( !queue.length ) { + jQuery.removeData( elem, type + "queue " + type + ".run", true ); + handleQueueMarkDefer( elem, type, "queue" ); + } + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + } + + if ( data === undefined ) { + return jQuery.queue( this[0], type ); + } + return this.each(function() { + var queue = jQuery.queue( this, type, data ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, object ) { + if ( typeof type !== "string" ) { + object = type; + type = undefined; + } + type = type || "fx"; + var defer = jQuery.Deferred(), + elements = this, + i = elements.length, + count = 1, + deferDataKey = type + "defer", + queueDataKey = type + "queue", + markDataKey = type + "mark", + tmp; + function resolve() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + } + while( i-- ) { + if (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) || + ( jQuery.data( elements[ i ], queueDataKey, undefined, true ) || + jQuery.data( elements[ i ], markDataKey, undefined, true ) ) && + jQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( "once memory" ), true ) )) { + count++; + tmp.add( resolve ); + } + } + resolve(); + return defer.promise(); + } +}); + + + + +var rclass = /[\n\t\r]/g, + rspace = /\s+/, + rreturn = /\r/g, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea)?$/i, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + nodeHook, boolHook, fixSpecified; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.attr ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.prop ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classNames, i, l, elem, + setClass, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call(this, j, this.className) ); + }); + } + + if ( value && typeof value === "string" ) { + classNames = value.split( rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className && classNames.length === 1 ) { + elem.className = value; + + } else { + setClass = " " + elem.className + " "; + + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { + setClass += classNames[ c ] + " "; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classNames, i, l, elem, className, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call(this, j, this.className) ); + }); + } + + if ( (value && typeof value === "string") || value === undefined ) { + classNames = ( value || "" ).split( rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 && elem.className ) { + if ( value ) { + className = (" " + elem.className + " ").replace( rclass, " " ); + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + className = className.replace(" " + classNames[ c ] + " ", " "); + } + elem.className = jQuery.trim( className ); + + } else { + elem.className = ""; + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( rspace ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space seperated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var hooks, ret, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var self = jQuery(this), val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, self.val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + }, + select: { + get: function( elem ) { + var value, i, max, option, + index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type === "select-one"; + + // Nothing was selected + if ( index < 0 ) { + return null; + } + + // Loop through all the selected options + i = one ? index : 0; + max = one ? index + 1 : options.length; + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Don't return options that are disabled or in a disabled optgroup + if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && + (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + // Fixes Bug #2551 -- select.val() broken in IE after form.reset() + if ( one && !values.length && options.length ) { + return jQuery( options[ index ] ).val(); + } + + return values; + }, + + set: function( elem, value ) { + var values = jQuery.makeArray( value ); + + jQuery(elem).find("option").each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attrFn: { + val: true, + css: true, + html: true, + text: true, + data: true, + width: true, + height: true, + offset: true + }, + + attr: function( elem, name, value, pass ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( pass && name in jQuery.attrFn ) { + return jQuery( elem )[ name ]( value ); + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( notxml ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + + } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, "" + value ); + return value; + } + + } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + + ret = elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return ret === null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var propName, attrNames, name, l, + i = 0; + + if ( value && elem.nodeType === 1 ) { + attrNames = value.toLowerCase().split( rspace ); + l = attrNames.length; + + for ( ; i < l; i++ ) { + name = attrNames[ i ]; + + if ( name ) { + propName = jQuery.propFix[ name ] || name; + + // See #9699 for explanation of this approach (setting first, then removal) + jQuery.attr( elem, name, "" ); + elem.removeAttribute( getSetAttribute ? name : propName ); + + // Set corresponding property to false for boolean attributes + if ( rboolean.test( name ) && propName in elem ) { + elem[ propName ] = false; + } + } + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to it's default in case type is set after value + // This is for element creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + }, + // Use the value property for back compat + // Use the nodeHook for button elements in IE6/7 (#1954) + value: { + get: function( elem, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.get( elem, name ); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.set( elem, value, name ); + } + // Does not return so that setAttribute is also used + elem.value = value; + } + } + }, + + propFix: { + tabindex: "tabIndex", + readonly: "readOnly", + "for": "htmlFor", + "class": "className", + maxlength: "maxLength", + cellspacing: "cellSpacing", + cellpadding: "cellPadding", + rowspan: "rowSpan", + colspan: "colSpan", + usemap: "useMap", + frameborder: "frameBorder", + contenteditable: "contentEditable" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + return ( elem[ name ] = value ); + } + + } else { + if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + return elem[ name ]; + } + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + var attributeNode = elem.getAttributeNode("tabindex"); + + return attributeNode && attributeNode.specified ? + parseInt( attributeNode.value, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + } + } +}); + +// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) +jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; + +// Hook for boolean attributes +boolHook = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } +}; + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + fixSpecified = { + name: true, + id: true + }; + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = jQuery.valHooks.button = { + get: function( elem, name ) { + var ret; + ret = elem.getAttributeNode( name ); + return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ? + ret.nodeValue : + undefined; + }, + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + ret = document.createAttribute( name ); + elem.setAttributeNode( ret ); + } + return ( ret.nodeValue = value + "" ); + } + }; + + // Apply the nodeHook to tabindex + jQuery.attrHooks.tabindex.set = nodeHook.set; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }); + }); + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + if ( value === "" ) { + value = "false"; + } + nodeHook.set( elem, value, name ); + } + }; +} + + +// Some attributes require a special call on IE +if ( !jQuery.support.hrefNormalized ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + get: function( elem ) { + var ret = elem.getAttribute( name, 2 ); + return ret === null ? undefined : ret; + } + }); + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Normalize to lowercase since IE uppercases css property names + return elem.style.cssText.toLowerCase() || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = "" + value ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }); +} + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +if ( !jQuery.support.checkOn ) { + jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + get: function( elem ) { + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + } + }; + }); +} +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }); +}); + + + + +var rformElems = /^(?:textarea|input|select)$/i, + rtypenamespace = /^([^\.]*)?(?:\.(.+))?$/, + rhoverHack = /\bhover(\.\S+)?\b/, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rquickIs = /^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/, + quickParse = function( selector ) { + var quick = rquickIs.exec( selector ); + if ( quick ) { + // 0 1 2 3 + // [ _, tag, id, class ] + quick[1] = ( quick[1] || "" ).toLowerCase(); + quick[3] = quick[3] && new RegExp( "(?:^|\\s)" + quick[3] + "(?:\\s|$)" ); + } + return quick; + }, + quickIs = function( elem, m ) { + var attrs = elem.attributes || {}; + return ( + (!m[1] || elem.nodeName.toLowerCase() === m[1]) && + (!m[2] || (attrs.id || {}).value === m[2]) && + (!m[3] || m[3].test( (attrs[ "class" ] || {}).value )) + ); + }, + hoverHack = function( events ) { + return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + add: function( elem, types, handler, data, selector ) { + + var elemData, eventHandle, events, + t, tns, type, namespaces, handleObj, + handleObjIn, quick, handlers, special; + + // Don't attach events to noData or text/comment nodes (allow plain objects tho) + if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + events = elemData.events; + if ( !events ) { + elemData.events = events = {}; + } + eventHandle = elemData.handle; + if ( !eventHandle ) { + elemData.handle = eventHandle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = jQuery.trim( hoverHack(types) ).split( " " ); + for ( t = 0; t < types.length; t++ ) { + + tns = rtypenamespace.exec( types[t] ) || []; + type = tns[1]; + namespaces = ( tns[2] || "" ).split( "." ).sort(); + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: tns[1], + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + quick: quickParse( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + handlers = events[ type ]; + if ( !handlers ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var elemData = jQuery.hasData( elem ) && jQuery._data( elem ), + t, tns, type, origType, namespaces, origCount, + j, events, special, handle, eventType, handleObj; + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = jQuery.trim( hoverHack( types || "" ) ).split(" "); + for ( t = 0; t < types.length; t++ ) { + tns = rtypenamespace.exec( types[t] ) || []; + type = origType = tns[1]; + namespaces = tns[2]; + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector? special.delegateType : special.bindType ) || type; + eventType = events[ type ] || []; + origCount = eventType.length; + namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null; + + // Remove matching events + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !namespaces || namespaces.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + eventType.splice( j--, 1 ); + + if ( handleObj.selector ) { + eventType.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( eventType.length === 0 && origCount !== eventType.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + handle = elemData.handle; + if ( handle ) { + handle.elem = null; + } + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery.removeData( elem, [ "events", "handle" ], true ); + } + }, + + // Events that are safe to short-circuit if no handlers are attached. + // Native DOM events should not be added, they may have inline handlers. + customEvent: { + "getData": true, + "setData": true, + "changeData": true + }, + + trigger: function( event, data, elem, onlyHandlers ) { + // Don't do events on text and comment nodes + if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { + return; + } + + // Event object or event type + var type = event.type || event, + namespaces = [], + cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType; + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "!" ) >= 0 ) { + // Exclusive events trigger only for the exact event (no namespaces) + type = type.slice(0, -1); + exclusive = true; + } + + if ( type.indexOf( "." ) >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + + if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { + // No jQuery handlers for this event type, and it can't have inline handlers + return; + } + + // Caller can pass in an Event, Object, or just an event type string + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + new jQuery.Event( type, event ) : + // Just the event type (string) + new jQuery.Event( type ); + + event.type = type; + event.isTrigger = true; + event.exclusive = exclusive; + event.namespace = namespaces.join( "." ); + event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.)?") + "(\\.|$)") : null; + ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; + + // Handle a global trigger + if ( !elem ) { + + // TODO: Stop taunting the data cache; remove global events and always attach to document + cache = jQuery.cache; + for ( i in cache ) { + if ( cache[ i ].events && cache[ i ].events[ type ] ) { + jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); + } + } + return; + } + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data != null ? jQuery.makeArray( data ) : []; + data.unshift( event ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + eventPath = [[ elem, special.bindType || type ]]; + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; + old = null; + for ( ; cur; cur = cur.parentNode ) { + eventPath.push([ cur, bubbleType ]); + old = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( old && old === elem.ownerDocument ) { + eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); + } + } + + // Fire handlers on the event path + for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { + + cur = eventPath[i][0]; + event.type = eventPath[i][1]; + + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + // Note that this is a bare JS function and not a jQuery handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && + !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + // IE<9 dies on focus/blur to hidden element (#1486) + if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + old = elem[ ontype ]; + + if ( old ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( old ) { + elem[ ontype ] = old; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event || window.event ); + + var handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), + delegateCount = handlers.delegateCount, + args = [].slice.call( arguments, 0 ), + run_all = !event.exclusive && !event.namespace, + handlerQueue = [], + i, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Determine handlers that should run if there are delegated events + // Avoid disabled elements in IE (#6911) and non-left-click bubbling in Firefox (#3861) + if ( delegateCount && !event.target.disabled && !(event.button && event.type === "click") ) { + + // Pregenerate a single jQuery object for reuse with .is() + jqcur = jQuery(this); + jqcur.context = this.ownerDocument || this; + + for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { + selMatch = {}; + matches = []; + jqcur[0] = cur; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + sel = handleObj.selector; + + if ( selMatch[ sel ] === undefined ) { + selMatch[ sel ] = ( + handleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel ) + ); + } + if ( selMatch[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, matches: matches }); + } + } + } + + // Add the remaining (directly-bound) handlers + if ( handlers.length > delegateCount ) { + handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); + } + + // Run delegates first; they may want to stop propagation beneath us + for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { + matched = handlerQueue[ i ]; + event.currentTarget = matched.elem; + + for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { + handleObj = matched.matches[ j ]; + + // Triggered event must either 1) be non-exclusive and have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { + + event.data = handleObj.data; + event.handleObj = handleObj; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + return event.result; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** + props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, + originalEvent = event, + fixHook = jQuery.event.fixHooks[ event.type ] || {}, + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = jQuery.Event( originalEvent ); + + for ( i = copy.length; i; ) { + prop = copy[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Target should not be a text node (#504, Safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8) + if ( event.metaKey === undefined ) { + event.metaKey = event.ctrlKey; + } + + return fixHook.filter? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + ready: { + // Make sure the ready event is setup + setup: jQuery.bindReady + }, + + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + + focus: { + delegateType: "focusin" + }, + blur: { + delegateType: "focusout" + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +// Some plugins are using, but it's undocumented/deprecated and will be removed. +// The 1.7 special event interface should provide all the hooks needed now. +jQuery.event.handle = jQuery.event.dispatch; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + if ( elem.detachEvent ) { + elem.detachEvent( "on" + type, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var target = this, + related = event.relatedTarget, + handleObj = event.handleObj, + selector = handleObj.selector, + ret; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !form._submit_attached ) { + jQuery.event.add( form, "submit._submit", function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + }); + form._submit_attached = true; + } + }); + // return undefined since we don't need an event listener + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + jQuery.event.simulate( "change", this, event, true ); + } + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !elem._change_attached ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + elem._change_attached = true; + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on.call( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + var handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace? handleObj.type + "." + handleObj.namespace : handleObj.type, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( var type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + live: function( types, data, fn ) { + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; + }, + die: function( types, fn ) { + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length == 1? this.off( selector, "**" ) : this.off( types, selector, fn ); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + if ( this[0] ) { + return jQuery.event.trigger( type, data, this[0], true ); + } + }, + + toggle: function( fn ) { + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + if ( fn == null ) { + fn = data; + data = null; + } + + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; + + if ( jQuery.attrFn ) { + jQuery.attrFn[ name ] = true; + } + + if ( rkeyEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; + } + + if ( rmouseEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; + } +}); + + + +/*! + * Sizzle CSS Selector Engine + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){ + +var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, + expando = "sizcache" + (Math.random() + '').replace('.', ''), + done = 0, + toString = Object.prototype.toString, + hasDuplicate = false, + baseHasDuplicate = true, + rBackslash = /\\/g, + rReturn = /\r\n/g, + rNonWord = /\W/; + +// Here we check if the JavaScript engine is using some sort of +// optimization where it does not always call our comparision +// function. If that is the case, discard the hasDuplicate value. +// Thus far that includes Google Chrome. +[0, 0].sort(function() { + baseHasDuplicate = false; + return 0; +}); + +var Sizzle = function( selector, context, results, seed ) { + results = results || []; + context = context || document; + + var origContext = context; + + if ( context.nodeType !== 1 && context.nodeType !== 9 ) { + return []; + } + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + var m, set, checkSet, extra, ret, cur, pop, i, + prune = true, + contextXML = Sizzle.isXML( context ), + parts = [], + soFar = selector; + + // Reset the position of the chunker regexp (start from head) + do { + chunker.exec( "" ); + m = chunker.exec( soFar ); + + if ( m ) { + soFar = m[3]; + + parts.push( m[1] ); + + if ( m[2] ) { + extra = m[3]; + break; + } + } + } while ( m ); + + if ( parts.length > 1 && origPOS.exec( selector ) ) { + + if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { + set = posProcess( parts[0] + parts[1], context, seed ); + + } else { + set = Expr.relative[ parts[0] ] ? + [ context ] : + Sizzle( parts.shift(), context ); + + while ( parts.length ) { + selector = parts.shift(); + + if ( Expr.relative[ selector ] ) { + selector += parts.shift(); + } + + set = posProcess( selector, set, seed ); + } + } + + } else { + // Take a shortcut and set the context if the root selector is an ID + // (but not if it'll be faster if the inner selector is an ID) + if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && + Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { + + ret = Sizzle.find( parts.shift(), context, contextXML ); + context = ret.expr ? + Sizzle.filter( ret.expr, ret.set )[0] : + ret.set[0]; + } + + if ( context ) { + ret = seed ? + { expr: parts.pop(), set: makeArray(seed) } : + Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); + + set = ret.expr ? + Sizzle.filter( ret.expr, ret.set ) : + ret.set; + + if ( parts.length > 0 ) { + checkSet = makeArray( set ); + + } else { + prune = false; + } + + while ( parts.length ) { + cur = parts.pop(); + pop = cur; + + if ( !Expr.relative[ cur ] ) { + cur = ""; + } else { + pop = parts.pop(); + } + + if ( pop == null ) { + pop = context; + } + + Expr.relative[ cur ]( checkSet, pop, contextXML ); + } + + } else { + checkSet = parts = []; + } + } + + if ( !checkSet ) { + checkSet = set; + } + + if ( !checkSet ) { + Sizzle.error( cur || selector ); + } + + if ( toString.call(checkSet) === "[object Array]" ) { + if ( !prune ) { + results.push.apply( results, checkSet ); + + } else if ( context && context.nodeType === 1 ) { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { + results.push( set[i] ); + } + } + + } else { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && checkSet[i].nodeType === 1 ) { + results.push( set[i] ); + } + } + } + + } else { + makeArray( checkSet, results ); + } + + if ( extra ) { + Sizzle( extra, origContext, results, seed ); + Sizzle.uniqueSort( results ); + } + + return results; +}; + +Sizzle.uniqueSort = function( results ) { + if ( sortOrder ) { + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( var i = 1; i < results.length; i++ ) { + if ( results[i] === results[ i - 1 ] ) { + results.splice( i--, 1 ); + } + } + } + } + + return results; +}; + +Sizzle.matches = function( expr, set ) { + return Sizzle( expr, null, null, set ); +}; + +Sizzle.matchesSelector = function( node, expr ) { + return Sizzle( expr, null, null, [node] ).length > 0; +}; + +Sizzle.find = function( expr, context, isXML ) { + var set, i, len, match, type, left; + + if ( !expr ) { + return []; + } + + for ( i = 0, len = Expr.order.length; i < len; i++ ) { + type = Expr.order[i]; + + if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { + left = match[1]; + match.splice( 1, 1 ); + + if ( left.substr( left.length - 1 ) !== "\\" ) { + match[1] = (match[1] || "").replace( rBackslash, "" ); + set = Expr.find[ type ]( match, context, isXML ); + + if ( set != null ) { + expr = expr.replace( Expr.match[ type ], "" ); + break; + } + } + } + } + + if ( !set ) { + set = typeof context.getElementsByTagName !== "undefined" ? + context.getElementsByTagName( "*" ) : + []; + } + + return { set: set, expr: expr }; +}; + +Sizzle.filter = function( expr, set, inplace, not ) { + var match, anyFound, + type, found, item, filter, left, + i, pass, + old = expr, + result = [], + curLoop = set, + isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); + + while ( expr && set.length ) { + for ( type in Expr.filter ) { + if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { + filter = Expr.filter[ type ]; + left = match[1]; + + anyFound = false; + + match.splice(1,1); + + if ( left.substr( left.length - 1 ) === "\\" ) { + continue; + } + + if ( curLoop === result ) { + result = []; + } + + if ( Expr.preFilter[ type ] ) { + match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); + + if ( !match ) { + anyFound = found = true; + + } else if ( match === true ) { + continue; + } + } + + if ( match ) { + for ( i = 0; (item = curLoop[i]) != null; i++ ) { + if ( item ) { + found = filter( item, match, i, curLoop ); + pass = not ^ found; + + if ( inplace && found != null ) { + if ( pass ) { + anyFound = true; + + } else { + curLoop[i] = false; + } + + } else if ( pass ) { + result.push( item ); + anyFound = true; + } + } + } + } + + if ( found !== undefined ) { + if ( !inplace ) { + curLoop = result; + } + + expr = expr.replace( Expr.match[ type ], "" ); + + if ( !anyFound ) { + return []; + } + + break; + } + } + } + + // Improper expression + if ( expr === old ) { + if ( anyFound == null ) { + Sizzle.error( expr ); + + } else { + break; + } + } + + old = expr; + } + + return curLoop; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Utility function for retreiving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +var getText = Sizzle.getText = function( elem ) { + var i, node, + nodeType = elem.nodeType, + ret = ""; + + if ( nodeType ) { + if ( nodeType === 1 || nodeType === 9 ) { + // Use textContent || innerText for elements + if ( typeof elem.textContent === 'string' ) { + return elem.textContent; + } else if ( typeof elem.innerText === 'string' ) { + // Replace IE's carriage returns + return elem.innerText.replace( rReturn, '' ); + } else { + // Traverse it's children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + } else { + + // If no nodeType, this is expected to be an array + for ( i = 0; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + if ( node.nodeType !== 8 ) { + ret += getText( node ); + } + } + } + return ret; +}; + +var Expr = Sizzle.selectors = { + order: [ "ID", "NAME", "TAG" ], + + match: { + ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, + ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, + TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, + CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, + POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, + PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ + }, + + leftMatch: {}, + + attrMap: { + "class": "className", + "for": "htmlFor" + }, + + attrHandle: { + href: function( elem ) { + return elem.getAttribute( "href" ); + }, + type: function( elem ) { + return elem.getAttribute( "type" ); + } + }, + + relative: { + "+": function(checkSet, part){ + var isPartStr = typeof part === "string", + isTag = isPartStr && !rNonWord.test( part ), + isPartStrNotTag = isPartStr && !isTag; + + if ( isTag ) { + part = part.toLowerCase(); + } + + for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { + if ( (elem = checkSet[i]) ) { + while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} + + checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? + elem || false : + elem === part; + } + } + + if ( isPartStrNotTag ) { + Sizzle.filter( part, checkSet, true ); + } + }, + + ">": function( checkSet, part ) { + var elem, + isPartStr = typeof part === "string", + i = 0, + l = checkSet.length; + + if ( isPartStr && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + var parent = elem.parentNode; + checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; + } + } + + } else { + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + checkSet[i] = isPartStr ? + elem.parentNode : + elem.parentNode === part; + } + } + + if ( isPartStr ) { + Sizzle.filter( part, checkSet, true ); + } + } + }, + + "": function(checkSet, part, isXML){ + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); + }, + + "~": function( checkSet, part, isXML ) { + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); + } + }, + + find: { + ID: function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }, + + NAME: function( match, context ) { + if ( typeof context.getElementsByName !== "undefined" ) { + var ret = [], + results = context.getElementsByName( match[1] ); + + for ( var i = 0, l = results.length; i < l; i++ ) { + if ( results[i].getAttribute("name") === match[1] ) { + ret.push( results[i] ); + } + } + + return ret.length === 0 ? null : ret; + } + }, + + TAG: function( match, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( match[1] ); + } + } + }, + preFilter: { + CLASS: function( match, curLoop, inplace, result, not, isXML ) { + match = " " + match[1].replace( rBackslash, "" ) + " "; + + if ( isXML ) { + return match; + } + + for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { + if ( elem ) { + if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { + if ( !inplace ) { + result.push( elem ); + } + + } else if ( inplace ) { + curLoop[i] = false; + } + } + } + + return false; + }, + + ID: function( match ) { + return match[1].replace( rBackslash, "" ); + }, + + TAG: function( match, curLoop ) { + return match[1].replace( rBackslash, "" ).toLowerCase(); + }, + + CHILD: function( match ) { + if ( match[1] === "nth" ) { + if ( !match[2] ) { + Sizzle.error( match[0] ); + } + + match[2] = match[2].replace(/^\+|\s*/g, ''); + + // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' + var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( + match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || + !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); + + // calculate the numbers (first)n+(last) including if they are negative + match[2] = (test[1] + (test[2] || 1)) - 0; + match[3] = test[3] - 0; + } + else if ( match[2] ) { + Sizzle.error( match[0] ); + } + + // TODO: Move to normal caching system + match[0] = done++; + + return match; + }, + + ATTR: function( match, curLoop, inplace, result, not, isXML ) { + var name = match[1] = match[1].replace( rBackslash, "" ); + + if ( !isXML && Expr.attrMap[name] ) { + match[1] = Expr.attrMap[name]; + } + + // Handle if an un-quoted value was used + match[4] = ( match[4] || match[5] || "" ).replace( rBackslash, "" ); + + if ( match[2] === "~=" ) { + match[4] = " " + match[4] + " "; + } + + return match; + }, + + PSEUDO: function( match, curLoop, inplace, result, not ) { + if ( match[1] === "not" ) { + // If we're dealing with a complex expression, or a simple one + if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { + match[3] = Sizzle(match[3], null, null, curLoop); + + } else { + var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); + + if ( !inplace ) { + result.push.apply( result, ret ); + } + + return false; + } + + } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { + return true; + } + + return match; + }, + + POS: function( match ) { + match.unshift( true ); + + return match; + } + }, + + filters: { + enabled: function( elem ) { + return elem.disabled === false && elem.type !== "hidden"; + }, + + disabled: function( elem ) { + return elem.disabled === true; + }, + + checked: function( elem ) { + return elem.checked === true; + }, + + selected: function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + parent: function( elem ) { + return !!elem.firstChild; + }, + + empty: function( elem ) { + return !elem.firstChild; + }, + + has: function( elem, i, match ) { + return !!Sizzle( match[3], elem ).length; + }, + + header: function( elem ) { + return (/h\d/i).test( elem.nodeName ); + }, + + text: function( elem ) { + var attr = elem.getAttribute( "type" ), type = elem.type; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && "text" === type && ( attr === type || attr === null ); + }, + + radio: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "radio" === elem.type; + }, + + checkbox: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "checkbox" === elem.type; + }, + + file: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "file" === elem.type; + }, + + password: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "password" === elem.type; + }, + + submit: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && "submit" === elem.type; + }, + + image: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "image" === elem.type; + }, + + reset: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && "reset" === elem.type; + }, + + button: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && "button" === elem.type || name === "button"; + }, + + input: function( elem ) { + return (/input|select|textarea|button/i).test( elem.nodeName ); + }, + + focus: function( elem ) { + return elem === elem.ownerDocument.activeElement; + } + }, + setFilters: { + first: function( elem, i ) { + return i === 0; + }, + + last: function( elem, i, match, array ) { + return i === array.length - 1; + }, + + even: function( elem, i ) { + return i % 2 === 0; + }, + + odd: function( elem, i ) { + return i % 2 === 1; + }, + + lt: function( elem, i, match ) { + return i < match[3] - 0; + }, + + gt: function( elem, i, match ) { + return i > match[3] - 0; + }, + + nth: function( elem, i, match ) { + return match[3] - 0 === i; + }, + + eq: function( elem, i, match ) { + return match[3] - 0 === i; + } + }, + filter: { + PSEUDO: function( elem, match, i, array ) { + var name = match[1], + filter = Expr.filters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + + } else if ( name === "contains" ) { + return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; + + } else if ( name === "not" ) { + var not = match[3]; + + for ( var j = 0, l = not.length; j < l; j++ ) { + if ( not[j] === elem ) { + return false; + } + } + + return true; + + } else { + Sizzle.error( name ); + } + }, + + CHILD: function( elem, match ) { + var first, last, + doneName, parent, cache, + count, diff, + type = match[1], + node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + + case "nth": + first = match[2]; + last = match[3]; + + if ( first === 1 && last === 0 ) { + return true; + } + + doneName = match[0]; + parent = elem.parentNode; + + if ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) { + count = 0; + + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + node.nodeIndex = ++count; + } + } + + parent[ expando ] = doneName; + } + + diff = elem.nodeIndex - last; + + if ( first === 0 ) { + return diff === 0; + + } else { + return ( diff % first === 0 && diff / first >= 0 ); + } + } + }, + + ID: function( elem, match ) { + return elem.nodeType === 1 && elem.getAttribute("id") === match; + }, + + TAG: function( elem, match ) { + return (match === "*" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match; + }, + + CLASS: function( elem, match ) { + return (" " + (elem.className || elem.getAttribute("class")) + " ") + .indexOf( match ) > -1; + }, + + ATTR: function( elem, match ) { + var name = match[1], + result = Sizzle.attr ? + Sizzle.attr( elem, name ) : + Expr.attrHandle[ name ] ? + Expr.attrHandle[ name ]( elem ) : + elem[ name ] != null ? + elem[ name ] : + elem.getAttribute( name ), + value = result + "", + type = match[2], + check = match[4]; + + return result == null ? + type === "!=" : + !type && Sizzle.attr ? + result != null : + type === "=" ? + value === check : + type === "*=" ? + value.indexOf(check) >= 0 : + type === "~=" ? + (" " + value + " ").indexOf(check) >= 0 : + !check ? + value && result !== false : + type === "!=" ? + value !== check : + type === "^=" ? + value.indexOf(check) === 0 : + type === "$=" ? + value.substr(value.length - check.length) === check : + type === "|=" ? + value === check || value.substr(0, check.length + 1) === check + "-" : + false; + }, + + POS: function( elem, match, i, array ) { + var name = match[2], + filter = Expr.setFilters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + } + } + } +}; + +var origPOS = Expr.match.POS, + fescape = function(all, num){ + return "\\" + (num - 0 + 1); + }; + +for ( var type in Expr.match ) { + Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); + Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); +} + +var makeArray = function( array, results ) { + array = Array.prototype.slice.call( array, 0 ); + + if ( results ) { + results.push.apply( results, array ); + return results; + } + + return array; +}; + +// Perform a simple check to determine if the browser is capable of +// converting a NodeList to an array using builtin methods. +// Also verifies that the returned array holds DOM nodes +// (which is not the case in the Blackberry browser) +try { + Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; + +// Provide a fallback method if it does not work +} catch( e ) { + makeArray = function( array, results ) { + var i = 0, + ret = results || []; + + if ( toString.call(array) === "[object Array]" ) { + Array.prototype.push.apply( ret, array ); + + } else { + if ( typeof array.length === "number" ) { + for ( var l = array.length; i < l; i++ ) { + ret.push( array[i] ); + } + + } else { + for ( ; array[i]; i++ ) { + ret.push( array[i] ); + } + } + } + + return ret; + }; +} + +var sortOrder, siblingCheck; + +if ( document.documentElement.compareDocumentPosition ) { + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { + return a.compareDocumentPosition ? -1 : 1; + } + + return a.compareDocumentPosition(b) & 4 ? -1 : 1; + }; + +} else { + sortOrder = function( a, b ) { + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Fallback to using sourceIndex (in IE) if it's available on both nodes + } else if ( a.sourceIndex && b.sourceIndex ) { + return a.sourceIndex - b.sourceIndex; + } + + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // If the nodes are siblings (or identical) we can do a quick check + if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + + siblingCheck = function( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; + }; +} + +// Check to see if the browser returns elements by name when +// querying by getElementById (and provide a workaround) +(function(){ + // We're going to inject a fake input element with a specified name + var form = document.createElement("div"), + id = "script" + (new Date()).getTime(), + root = document.documentElement; + + form.innerHTML = ""; + + // Inject it into the root element, check its status, and remove it quickly + root.insertBefore( form, root.firstChild ); + + // The workaround has to do additional checks after a getElementById + // Which slows things down for other browsers (hence the branching) + if ( document.getElementById( id ) ) { + Expr.find.ID = function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + + return m ? + m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? + [m] : + undefined : + []; + } + }; + + Expr.filter.ID = function( elem, match ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + + return elem.nodeType === 1 && node && node.nodeValue === match; + }; + } + + root.removeChild( form ); + + // release memory in IE + root = form = null; +})(); + +(function(){ + // Check to see if the browser returns only elements + // when doing getElementsByTagName("*") + + // Create a fake element + var div = document.createElement("div"); + div.appendChild( document.createComment("") ); + + // Make sure no comments are found + if ( div.getElementsByTagName("*").length > 0 ) { + Expr.find.TAG = function( match, context ) { + var results = context.getElementsByTagName( match[1] ); + + // Filter out possible comments + if ( match[1] === "*" ) { + var tmp = []; + + for ( var i = 0; results[i]; i++ ) { + if ( results[i].nodeType === 1 ) { + tmp.push( results[i] ); + } + } + + results = tmp; + } + + return results; + }; + } + + // Check to see if an attribute returns normalized href attributes + div.innerHTML = ""; + + if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && + div.firstChild.getAttribute("href") !== "#" ) { + + Expr.attrHandle.href = function( elem ) { + return elem.getAttribute( "href", 2 ); + }; + } + + // release memory in IE + div = null; +})(); + +if ( document.querySelectorAll ) { + (function(){ + var oldSizzle = Sizzle, + div = document.createElement("div"), + id = "__sizzle__"; + + div.innerHTML = "

                    "; + + // Safari can't handle uppercase or unicode characters when + // in quirks mode. + if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { + return; + } + + Sizzle = function( query, context, extra, seed ) { + context = context || document; + + // Only use querySelectorAll on non-XML documents + // (ID selectors don't work in non-HTML documents) + if ( !seed && !Sizzle.isXML(context) ) { + // See if we find a selector to speed up + var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); + + if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { + // Speed-up: Sizzle("TAG") + if ( match[1] ) { + return makeArray( context.getElementsByTagName( query ), extra ); + + // Speed-up: Sizzle(".CLASS") + } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { + return makeArray( context.getElementsByClassName( match[2] ), extra ); + } + } + + if ( context.nodeType === 9 ) { + // Speed-up: Sizzle("body") + // The body element only exists once, optimize finding it + if ( query === "body" && context.body ) { + return makeArray( [ context.body ], extra ); + + // Speed-up: Sizzle("#ID") + } else if ( match && match[3] ) { + var elem = context.getElementById( match[3] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id === match[3] ) { + return makeArray( [ elem ], extra ); + } + + } else { + return makeArray( [], extra ); + } + } + + try { + return makeArray( context.querySelectorAll(query), extra ); + } catch(qsaError) {} + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + var oldContext = context, + old = context.getAttribute( "id" ), + nid = old || id, + hasParent = context.parentNode, + relativeHierarchySelector = /^\s*[+~]/.test( query ); + + if ( !old ) { + context.setAttribute( "id", nid ); + } else { + nid = nid.replace( /'/g, "\\$&" ); + } + if ( relativeHierarchySelector && hasParent ) { + context = context.parentNode; + } + + try { + if ( !relativeHierarchySelector || hasParent ) { + return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); + } + + } catch(pseudoError) { + } finally { + if ( !old ) { + oldContext.removeAttribute( "id" ); + } + } + } + } + + return oldSizzle(query, context, extra, seed); + }; + + for ( var prop in oldSizzle ) { + Sizzle[ prop ] = oldSizzle[ prop ]; + } + + // release memory in IE + div = null; + })(); +} + +(function(){ + var html = document.documentElement, + matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector; + + if ( matches ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9 fails this) + var disconnectedMatch = !matches.call( document.createElement( "div" ), "div" ), + pseudoWorks = false; + + try { + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( document.documentElement, "[test!='']:sizzle" ); + + } catch( pseudoError ) { + pseudoWorks = true; + } + + Sizzle.matchesSelector = function( node, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); + + if ( !Sizzle.isXML( node ) ) { + try { + if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { + var ret = matches.call( node, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || !disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9, so check for that + node.document && node.document.nodeType !== 11 ) { + return ret; + } + } + } catch(e) {} + } + + return Sizzle(expr, null, null, [node]).length > 0; + }; + } +})(); + +(function(){ + var div = document.createElement("div"); + + div.innerHTML = "
                    "; + + // Opera can't find a second classname (in 9.6) + // Also, make sure that getElementsByClassName actually exists + if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { + return; + } + + // Safari caches class attributes, doesn't catch changes (in 3.2) + div.lastChild.className = "e"; + + if ( div.getElementsByClassName("e").length === 1 ) { + return; + } + + Expr.order.splice(1, 0, "CLASS"); + Expr.find.CLASS = function( match, context, isXML ) { + if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { + return context.getElementsByClassName(match[1]); + } + }; + + // release memory in IE + div = null; +})(); + +function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem[ expando ] === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 && !isXML ){ + elem[ expando ] = doneName; + elem.sizset = i; + } + + if ( elem.nodeName.toLowerCase() === cur ) { + match = elem; + break; + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem[ expando ] === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 ) { + if ( !isXML ) { + elem[ expando ] = doneName; + elem.sizset = i; + } + + if ( typeof cur !== "string" ) { + if ( elem === cur ) { + match = true; + break; + } + + } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { + match = elem; + break; + } + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +if ( document.documentElement.contains ) { + Sizzle.contains = function( a, b ) { + return a !== b && (a.contains ? a.contains(b) : true); + }; + +} else if ( document.documentElement.compareDocumentPosition ) { + Sizzle.contains = function( a, b ) { + return !!(a.compareDocumentPosition(b) & 16); + }; + +} else { + Sizzle.contains = function() { + return false; + }; +} + +Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; + + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +var posProcess = function( selector, context, seed ) { + var match, + tmpSet = [], + later = "", + root = context.nodeType ? [context] : context; + + // Position selectors must be done after the filter + // And so must :not(positional) so we move all PSEUDOs to the end + while ( (match = Expr.match.PSEUDO.exec( selector )) ) { + later += match[0]; + selector = selector.replace( Expr.match.PSEUDO, "" ); + } + + selector = Expr.relative[selector] ? selector + "*" : selector; + + for ( var i = 0, l = root.length; i < l; i++ ) { + Sizzle( selector, root[i], tmpSet, seed ); + } + + return Sizzle.filter( later, tmpSet ); +}; + +// EXPOSE +// Override sizzle attribute retrieval +Sizzle.attr = jQuery.attr; +Sizzle.selectors.attrMap = {}; +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.filters; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})(); + + +var runtil = /Until$/, + rparentsprev = /^(?:parents|prevUntil|prevAll)/, + // Note: This RegExp should be improved, or likely pulled from Sizzle + rmultiselector = /,/, + isSimple = /^.[^:#\[\.,]*$/, + slice = Array.prototype.slice, + POS = jQuery.expr.match.POS, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var self = this, + i, l; + + if ( typeof selector !== "string" ) { + return jQuery( selector ).filter(function() { + for ( i = 0, l = self.length; i < l; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }); + } + + var ret = this.pushStack( "", "find", selector ), + length, n, r; + + for ( i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( n = length; n < ret.length; n++ ) { + for ( r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + var targets = jQuery( target ); + return this.filter(function() { + for ( var i = 0, l = targets.length; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + return !!selector && ( + typeof selector === "string" ? + // If this is a positional selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + POS.test( selector ) ? + jQuery( selector, this.context ).index( this[0] ) >= 0 : + jQuery.filter( selector, this ).length > 0 : + this.filter( selector ).length > 0 ); + }, + + closest: function( selectors, context ) { + var ret = [], i, l, cur = this[0]; + + // Array (deprecated as of jQuery 1.7) + if ( jQuery.isArray( selectors ) ) { + var level = 1; + + while ( cur && cur.ownerDocument && cur !== context ) { + for ( i = 0; i < selectors.length; i++ ) { + + if ( jQuery( cur ).is( selectors[ i ] ) ) { + ret.push({ selector: selectors[ i ], elem: cur, level: level }); + } + } + + cur = cur.parentNode; + level++; + } + + return ret; + } + + // String + var pos = POS.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( i = 0, l = this.length; i < l; i++ ) { + cur = this[i]; + + while ( cur ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + + } else { + cur = cur.parentNode; + if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) { + break; + } + } + } + } + + ret = ret.length > 1 ? jQuery.unique( ret ) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + andSelf: function() { + return this.add( this.prevObject ); + } +}); + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return jQuery.nth( elem, 2, "nextSibling" ); + }, + prev: function( elem ) { + return jQuery.nth( elem, 2, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( elem.parentNode.firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.makeArray( elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, slice.call( arguments ).join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + nth: function( cur, result, dir, elem ) { + result = result || 1; + var num = 0; + + for ( ; cur; cur = cur[dir] ) { + if ( cur.nodeType === 1 && ++num === result ) { + break; + } + } + + return cur; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + + // Can't pass null or undefined to indexOf in Firefox 4 + // Set to 0 to skip string check + qualifier = qualifier || 0; + + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return ( elem === qualifier ) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; + }); +} + + + + +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, + rtagName = /<([\w:]+)/, + rtbody = /", "" ], + legend: [ 1, "
                    ", "
                    " ], + thead: [ 1, "", "
                    " ], + tr: [ 2, "", "
                    " ], + td: [ 3, "", "
                    " ], + col: [ 2, "", "
                    " ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }, + safeFragment = createSafeFragment( document ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE can't serialize and ' ); + + iframe_doc.close(); + + // Update the Iframe's hash, for great justice. + iframe.location.hash = hash; + } + }; + + })(); + // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + // ^^^^^^^^^^^^^^^^^^^ REMOVE IF NOT SUPPORTING IE6/7/8 ^^^^^^^^^^^^^^^^^^^ + // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + return self; + })(); + +})(jQuery,this); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.init.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.init.js new file mode 100644 index 0000000..93c03e8 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.init.js @@ -0,0 +1,193 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Global initialization of the library. +//>>label: Init +//>>group: Core + + +define( [ "jquery", "./jquery.mobile.core", "./jquery.mobile.support", "./jquery.mobile.navigation", + "./jquery.mobile.navigation.pushstate", "../external/requirejs/depend!./jquery.mobile.hashchange[jquery]" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +( function( $, window, undefined ) { + var $html = $( "html" ), + $head = $( "head" ), + $window = $( window ); + + // trigger mobileinit event - useful hook for configuring $.mobile settings before they're used + $( window.document ).trigger( "mobileinit" ); + + // support conditions + // if device support condition(s) aren't met, leave things as they are -> a basic, usable experience, + // otherwise, proceed with the enhancements + if ( !$.mobile.gradeA() ) { + return; + } + + // override ajaxEnabled on platforms that have known conflicts with hash history updates + // or generally work better browsing in regular http for full page refreshes (BB5, Opera Mini) + if ( $.mobile.ajaxBlacklist ) { + $.mobile.ajaxEnabled = false; + } + + // Add mobile, initial load "rendering" classes to docEl + $html.addClass( "ui-mobile ui-mobile-rendering" ); + + // This is a fallback. If anything goes wrong (JS errors, etc), or events don't fire, + // this ensures the rendering class is removed after 5 seconds, so content is visible and accessible + setTimeout( hideRenderingClass, 5000 ); + + // loading div which appears during Ajax requests + // will not appear if $.mobile.loadingMessage is false + var loaderClass = "ui-loader", + $loader = $( "

                    " ); + + // For non-fixed supportin browsers. Position at y center (if scrollTop supported), above the activeBtn (if defined), or just 100px from top + function fakeFixLoader(){ + var activeBtn = $( "." + $.mobile.activeBtnClass ).first(); + + $loader + .css({ + top: $.support.scrollTop && $window.scrollTop() + $window.height() / 2 || + activeBtn.length && activeBtn.offset().top || 100 + }); + } + + // check position of loader to see if it appears to be "fixed" to center + // if not, use abs positioning + function checkLoaderPosition(){ + var offset = $loader.offset(), + scrollTop = $window.scrollTop(), + screenHeight = $.mobile.getScreenHeight(); + + if( offset.top < scrollTop || (offset.top - scrollTop) > screenHeight ) { + $loader.addClass( "ui-loader-fakefix" ); + fakeFixLoader(); + $window + .unbind( "scroll", checkLoaderPosition ) + .bind( "scroll", fakeFixLoader ); + } + } + + //remove initial build class (only present on first pageshow) + function hideRenderingClass(){ + $html.removeClass( "ui-mobile-rendering" ); + } + + $.extend($.mobile, { + // turn on/off page loading message. + showPageLoadingMsg: function( theme, msgText, textonly ) { + $html.addClass( "ui-loading" ); + + if ( $.mobile.loadingMessage ) { + // text visibility from argument takes priority + var textVisible = textonly || $.mobile.loadingMessageTextVisible; + + theme = theme || $.mobile.loadingMessageTheme, + + $loader + .attr( "class", loaderClass + " ui-corner-all ui-body-" + ( theme || "a" ) + " ui-loader-" + ( textVisible ? "verbose" : "default" ) + ( textonly ? " ui-loader-textonly" : "" ) ) + .find( "h1" ) + .text( msgText || $.mobile.loadingMessage ) + .end() + .appendTo( $.mobile.pageContainer ); + + checkLoaderPosition(); + $window.bind( "scroll", checkLoaderPosition ); + } + }, + + hidePageLoadingMsg: function() { + $html.removeClass( "ui-loading" ); + + if( $.mobile.loadingMessage ){ + $loader.removeClass( "ui-loader-fakefix" ); + } + + $( window ).unbind( "scroll", fakeFixLoader ); + $( window ).unbind( "scroll", checkLoaderPosition ); + }, + + // find and enhance the pages in the dom and transition to the first page. + initializePage: function() { + // find present pages + var $pages = $( ":jqmData(role='page'), :jqmData(role='dialog')" ); + + // if no pages are found, create one with body's inner html + if ( !$pages.length ) { + $pages = $( "body" ).wrapInner( "
                    " ).children( 0 ); + } + + // add dialogs, set data-url attrs + $pages.each(function() { + var $this = $(this); + + // unless the data url is already set set it to the pathname + if ( !$this.jqmData("url") ) { + $this.attr( "data-" + $.mobile.ns + "url", $this.attr( "id" ) || location.pathname + location.search ); + } + }); + + // define first page in dom case one backs out to the directory root (not always the first page visited, but defined as fallback) + $.mobile.firstPage = $pages.first(); + + // define page container + $.mobile.pageContainer = $pages.first().parent().addClass( "ui-mobile-viewport" ); + + // alert listeners that the pagecontainer has been determined for binding + // to events triggered on it + $window.trigger( "pagecontainercreate" ); + + // cue page loading message + $.mobile.showPageLoadingMsg(); + + //remove initial build class (only present on first pageshow) + hideRenderingClass(); + + // if hashchange listening is disabled or there's no hash deeplink, change to the first page in the DOM + if ( !$.mobile.hashListeningEnabled || !$.mobile.path.stripHash( location.hash ) ) { + $.mobile.changePage( $.mobile.firstPage, { transition: "none", reverse: true, changeHash: false, fromHashChange: true } ); + } + // otherwise, trigger a hashchange to load a deeplink + else { + $window.trigger( "hashchange", [ true ] ); + } + } + }); + + // initialize events now, after mobileinit has occurred + $.mobile._registerInternalEvents(); + + // check which scrollTop value should be used by scrolling to 1 immediately at domready + // then check what the scroll top is. Android will report 0... others 1 + // note that this initial scroll won't hide the address bar. It's just for the check. + $(function() { + window.scrollTo( 0, 1 ); + + // if defaultHomeScroll hasn't been set yet, see if scrollTop is 1 + // it should be 1 in most browsers, but android treats 1 as 0 (for hiding addr bar) + // so if it's 1, use 0 from now on + $.mobile.defaultHomeScroll = ( !$.support.scrollTop || $(window).scrollTop() === 1 ) ? 0 : 1; + + + // TODO: Implement a proper registration mechanism with dependency handling in order to not have exceptions like the one below + //auto self-init widgets for those widgets that have a soft dependency on others + if ( $.fn.controlgroup ) { + $( document ).bind( "pagecreate create", function( e ){ + $( ":jqmData(role='controlgroup')", e.target ) + .jqmEnhanceable() + .controlgroup({ excludeInvisible: false }); + }); + } + + //dom-ready inits + if( $.mobile.autoInitializePage ){ + $.mobile.initializePage(); + } + + // window load event + // hide iOS browser chrome on load + $window.load( $.mobile.silentScroll ); + }); +}( jQuery, this )); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.js new file mode 100644 index 0000000..dd73b6a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.js @@ -0,0 +1,41 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>group: exclude + +define([ + 'require', + './jquery.mobile.navigation', + './jquery.mobile.navigation.pushstate', + './jquery.mobile.transition.pop', + './jquery.mobile.transition.slide', + './jquery.mobile.transition.slidedown', + './jquery.mobile.transition.slideup', + './jquery.mobile.transition.flip', + './jquery.mobile.transition.flow', + './jquery.mobile.transition.turn', + './jquery.mobile.degradeInputs', + './jquery.mobile.dialog', + './jquery.mobile.page.sections', + './jquery.mobile.collapsible', + './jquery.mobile.collapsibleSet', + './jquery.mobile.fieldContain', + './jquery.mobile.grid', + './jquery.mobile.navbar', + './jquery.mobile.listview', + './jquery.mobile.listview.filter', + './jquery.mobile.nojs', + './jquery.mobile.forms.checkboxradio', + './jquery.mobile.forms.button', + './jquery.mobile.forms.slider', + './jquery.mobile.forms.textinput', + './jquery.mobile.forms.select.custom', + './jquery.mobile.forms.select', + './jquery.mobile.buttonMarkup', + './jquery.mobile.controlGroup', + './jquery.mobile.links', + './jquery.mobile.fixedToolbar', + './jquery.mobile.zoom', + './jquery.mobile.zoom.iosorientationfix' +], function( require ) { + require( [ './jquery.mobile.init' ], function() {} ); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.links.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.links.js new file mode 100644 index 0000000..ff9aa62 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.links.js @@ -0,0 +1,26 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Adds classes to links. +//>>label: Link Classes +//>>group: Utilities + + +define( [ "jquery" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$( document ).bind( "pagecreate create", function( e ){ + + //links within content areas, tests included with page + $( e.target ) + .find( "a" ) + .jqmEnhanceable() + .not( ".ui-btn, .ui-link-inherit, :jqmData(role='none'), :jqmData(role='nojs')" ) + .addClass( "ui-link" ); + +}); + +})( jQuery ); + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js new file mode 100644 index 0000000..a2420d8 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js @@ -0,0 +1,119 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Extends the listview to add a search box to filter lists +//>>label: Listview: Filter +//>>group: Widgets + + +define( [ "jquery", "./jquery.mobile.listview", "./jquery.mobile.forms.textinput" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$.mobile.listview.prototype.options.filter = false; +$.mobile.listview.prototype.options.filterPlaceholder = "Filter items..."; +$.mobile.listview.prototype.options.filterTheme = "c"; +$.mobile.listview.prototype.options.filterCallback = function( text, searchValue ){ + return text.toLowerCase().indexOf( searchValue ) === -1; +}; + +$( document ).delegate( ":jqmData(role='listview')", "listviewcreate", function() { + + var list = $( this ), + listview = list.data( "listview" ); + + if ( !listview.options.filter ) { + return; + } + + var wrapper = $( "
                    ", { + "class": "ui-listview-filter ui-bar-" + listview.options.filterTheme, + "role": "search" + }), + search = $( "", { + placeholder: listview.options.filterPlaceholder + }) + .attr( "data-" + $.mobile.ns + "type", "search" ) + .jqmData( "lastval", "" ) + .bind( "keyup change", function() { + + var $this = $(this), + val = this.value.toLowerCase(), + listItems = null, + lastval = $this.jqmData( "lastval" ) + "", + childItems = false, + itemtext = "", + item; + + // Change val as lastval for next execution + $this.jqmData( "lastval" , val ); + if ( val.length < lastval.length || val.indexOf(lastval) !== 0 ) { + + // Removed chars or pasted something totally different, check all items + listItems = list.children(); + } else { + + // Only chars added, not removed, only use visible subset + listItems = list.children( ":not(.ui-screen-hidden)" ); + } + + if ( val ) { + + // This handles hiding regular rows without the text we search for + // and any list dividers without regular rows shown under it + + for ( var i = listItems.length - 1; i >= 0; i-- ) { + item = $( listItems[ i ] ); + itemtext = item.jqmData( "filtertext" ) || item.text(); + + if ( item.is( "li:jqmData(role=list-divider)" ) ) { + + item.toggleClass( "ui-filter-hidequeue" , !childItems ); + + // New bucket! + childItems = false; + + } else if ( listview.options.filterCallback( itemtext, val ) ) { + + //mark to be hidden + item.toggleClass( "ui-filter-hidequeue" , true ); + } else { + + // There's a shown item in the bucket + childItems = true; + } + } + + // Show items, not marked to be hidden + listItems + .filter( ":not(.ui-filter-hidequeue)" ) + .toggleClass( "ui-screen-hidden", false ); + + // Hide items, marked to be hidden + listItems + .filter( ".ui-filter-hidequeue" ) + .toggleClass( "ui-screen-hidden", true ) + .toggleClass( "ui-filter-hidequeue", false ); + + } else { + + //filtervalue is empty => show all + listItems.toggleClass( "ui-screen-hidden", false ); + } + listview._refreshCorners(); + }) + .appendTo( wrapper ) + .textinput(); + + if ( listview.options.inset ) { + wrapper.addClass( "ui-listview-filter-inset" ); + } + + wrapper.bind( "submit", function() { + return false; + }) + .insertBefore( list ); +}); + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js new file mode 100644 index 0000000..f3fabfa --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js @@ -0,0 +1,414 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Applies listview styling of various types (standard, numbered, split button, etc.) +//>>label: Listview +//>>group: Widgets +//>>css: ../css/themes/default/jquery.mobile.theme.css, ../css/structure/jquery.mobile.listview.css + +define( [ "jquery", "./jquery.mobile.widget", "./jquery.mobile.buttonMarkup", "./jquery.mobile.page", "./jquery.mobile.page.sections" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +//Keeps track of the number of lists per page UID +//This allows support for multiple nested list in the same page +//https://github.com/jquery/jquery-mobile/issues/1617 +var listCountPerPage = {}; + +$.widget( "mobile.listview", $.mobile.widget, { + + options: { + theme: null, + countTheme: "c", + headerTheme: "b", + dividerTheme: "b", + splitIcon: "arrow-r", + splitTheme: "b", + mini: false, + inset: false, + initSelector: ":jqmData(role='listview')" + }, + + _create: function() { + var t = this, + listviewClasses = ""; + + listviewClasses += t.options.inset ? " ui-listview-inset ui-corner-all ui-shadow " : ""; + listviewClasses += t.element.jqmData( "mini" ) || t.options.mini === true ? " ui-mini" : ""; + + // create listview markup + t.element.addClass(function( i, orig ) { + return orig + " ui-listview " + listviewClasses; + }); + + t.refresh( true ); + }, + + _removeCorners: function( li, which ) { + var top = "ui-corner-top ui-corner-tr ui-corner-tl", + bot = "ui-corner-bottom ui-corner-br ui-corner-bl"; + + li = li.add( li.find( ".ui-btn-inner, .ui-li-link-alt, .ui-li-thumb" ) ); + + if ( which === "top" ) { + li.removeClass( top ); + } else if ( which === "bottom" ) { + li.removeClass( bot ); + } else { + li.removeClass( top + " " + bot ); + } + }, + + _refreshCorners: function( create ) { + var $li, + $visibleli, + $topli, + $bottomli; + + if ( this.options.inset ) { + $li = this.element.children( "li" ); + // at create time the li are not visible yet so we need to rely on .ui-screen-hidden + $visibleli = create?$li.not( ".ui-screen-hidden" ):$li.filter( ":visible" ); + + this._removeCorners( $li ); + + // Select the first visible li element + $topli = $visibleli.first() + .addClass( "ui-corner-top" ); + + $topli.add( $topli.find( ".ui-btn-inner" ) + .not( ".ui-li-link-alt span:first-child" ) ) + .addClass( "ui-corner-top" ) + .end() + .find( ".ui-li-link-alt, .ui-li-link-alt span:first-child" ) + .addClass( "ui-corner-tr" ) + .end() + .find( ".ui-li-thumb" ) + .not(".ui-li-icon") + .addClass( "ui-corner-tl" ); + + // Select the last visible li element + $bottomli = $visibleli.last() + .addClass( "ui-corner-bottom" ); + + $bottomli.add( $bottomli.find( ".ui-btn-inner" ) ) + .find( ".ui-li-link-alt" ) + .addClass( "ui-corner-br" ) + .end() + .find( ".ui-li-thumb" ) + .not(".ui-li-icon") + .addClass( "ui-corner-bl" ); + } + if ( !create ) { + this.element.trigger( "updatelayout" ); + } + }, + + // This is a generic utility method for finding the first + // node with a given nodeName. It uses basic DOM traversal + // to be fast and is meant to be a substitute for simple + // $.fn.closest() and $.fn.children() calls on a single + // element. Note that callers must pass both the lowerCase + // and upperCase version of the nodeName they are looking for. + // The main reason for this is that this function will be + // called many times and we want to avoid having to lowercase + // the nodeName from the element every time to ensure we have + // a match. Note that this function lives here for now, but may + // be moved into $.mobile if other components need a similar method. + _findFirstElementByTagName: function( ele, nextProp, lcName, ucName ) + { + var dict = {}; + dict[ lcName ] = dict[ ucName ] = true; + while ( ele ) { + if ( dict[ ele.nodeName ] ) { + return ele; + } + ele = ele[ nextProp ]; + } + return null; + }, + _getChildrenByTagName: function( ele, lcName, ucName ) + { + var results = [], + dict = {}; + dict[ lcName ] = dict[ ucName ] = true; + ele = ele.firstChild; + while ( ele ) { + if ( dict[ ele.nodeName ] ) { + results.push( ele ); + } + ele = ele.nextSibling; + } + return $( results ); + }, + + _addThumbClasses: function( containers ) + { + var i, img, len = containers.length; + for ( i = 0; i < len; i++ ) { + img = $( this._findFirstElementByTagName( containers[ i ].firstChild, "nextSibling", "img", "IMG" ) ); + if ( img.length ) { + img.addClass( "ui-li-thumb" ); + $( this._findFirstElementByTagName( img[ 0 ].parentNode, "parentNode", "li", "LI" ) ).addClass( img.is( ".ui-li-icon" ) ? "ui-li-has-icon" : "ui-li-has-thumb" ); + } + } + }, + + refresh: function( create ) { + this.parentPage = this.element.closest( ".ui-page" ); + this._createSubPages(); + + var o = this.options, + $list = this.element, + self = this, + dividertheme = $list.jqmData( "dividertheme" ) || o.dividerTheme, + listsplittheme = $list.jqmData( "splittheme" ), + listspliticon = $list.jqmData( "spliticon" ), + li = this._getChildrenByTagName( $list[ 0 ], "li", "LI" ), + counter = $.support.cssPseudoElement || !$.nodeName( $list[ 0 ], "ol" ) ? 0 : 1, + itemClassDict = {}, + item, itemClass, itemTheme, + a, last, splittheme, countParent, icon, imgParents, img, linkIcon; + + if ( counter ) { + $list.find( ".ui-li-dec" ).remove(); + } + + if ( !o.theme ) { + o.theme = $.mobile.getInheritedTheme( this.element, "c" ); + } + + for ( var pos = 0, numli = li.length; pos < numli; pos++ ) { + item = li.eq( pos ); + itemClass = "ui-li"; + + // If we're creating the element, we update it regardless + if ( create || !item.hasClass( "ui-li" ) ) { + itemTheme = item.jqmData("theme") || o.theme; + a = this._getChildrenByTagName( item[ 0 ], "a", "A" ); + + if ( a.length ) { + icon = item.jqmData("icon"); + + item.buttonMarkup({ + wrapperEls: "div", + shadow: false, + corners: false, + iconpos: "right", + icon: a.length > 1 || icon === false ? false : icon || "arrow-r", + theme: itemTheme + }); + + if ( ( icon != false ) && ( a.length == 1 ) ) { + item.addClass( "ui-li-has-arrow" ); + } + + a.first().removeClass( "ui-link" ).addClass( "ui-link-inherit" ); + + if ( a.length > 1 ) { + itemClass += " ui-li-has-alt"; + + last = a.last(); + splittheme = listsplittheme || last.jqmData( "theme" ) || o.splitTheme; + linkIcon = last.jqmData("icon"); + + last.appendTo(item) + .attr( "title", last.getEncodedText() ) + .addClass( "ui-li-link-alt" ) + .empty() + .buttonMarkup({ + shadow: false, + corners: false, + theme: itemTheme, + icon: false, + iconpos: false + }) + .find( ".ui-btn-inner" ) + .append( + $( document.createElement( "span" ) ).buttonMarkup({ + shadow: true, + corners: true, + theme: splittheme, + iconpos: "notext", + // link icon overrides list item icon overrides ul element overrides options + icon: linkIcon || icon || listspliticon || o.splitIcon + }) + ); + } + } else if ( item.jqmData( "role" ) === "list-divider" ) { + + itemClass += " ui-li-divider ui-bar-" + dividertheme; + item.attr( "role", "heading" ); + + //reset counter when a divider heading is encountered + if ( counter ) { + counter = 1; + } + + } else { + itemClass += " ui-li-static ui-body-" + itemTheme; + } + } + + if ( counter && itemClass.indexOf( "ui-li-divider" ) < 0 ) { + countParent = item.is( ".ui-li-static:first" ) ? item : item.find( ".ui-link-inherit" ); + + countParent.addClass( "ui-li-jsnumbering" ) + .prepend( "" + (counter++) + ". " ); + } + + // Instead of setting item class directly on the list item and its + // btn-inner at this point in time, push the item into a dictionary + // that tells us what class to set on it so we can do this after this + // processing loop is finished. + + if ( !itemClassDict[ itemClass ] ) { + itemClassDict[ itemClass ] = []; + } + + itemClassDict[ itemClass ].push( item[ 0 ] ); + } + + // Set the appropriate listview item classes on each list item + // and their btn-inner elements. The main reason we didn't do this + // in the for-loop above is because we can eliminate per-item function overhead + // by calling addClass() and children() once or twice afterwards. This + // can give us a significant boost on platforms like WP7.5. + + for ( itemClass in itemClassDict ) { + $( itemClassDict[ itemClass ] ).addClass( itemClass ).children( ".ui-btn-inner" ).addClass( itemClass ); + } + + $list.find( "h1, h2, h3, h4, h5, h6" ).addClass( "ui-li-heading" ) + .end() + + .find( "p, dl" ).addClass( "ui-li-desc" ) + .end() + + .find( ".ui-li-aside" ).each(function() { + var $this = $(this); + $this.prependTo( $this.parent() ); //shift aside to front for css float + }) + .end() + + .find( ".ui-li-count" ).each( function() { + $( this ).closest( "li" ).addClass( "ui-li-has-count" ); + }).addClass( "ui-btn-up-" + ( $list.jqmData( "counttheme" ) || this.options.countTheme) + " ui-btn-corner-all" ); + + // The idea here is to look at the first image in the list item + // itself, and any .ui-link-inherit element it may contain, so we + // can place the appropriate classes on the image and list item. + // Note that we used to use something like: + // + // li.find(">img:eq(0), .ui-link-inherit>img:eq(0)").each( ... ); + // + // But executing a find() like that on Windows Phone 7.5 took a + // really long time. Walking things manually with the code below + // allows the 400 listview item page to load in about 3 seconds as + // opposed to 30 seconds. + + this._addThumbClasses( li ); + this._addThumbClasses( $list.find( ".ui-link-inherit" ) ); + + this._refreshCorners( create ); + }, + + //create a string for ID/subpage url creation + _idStringEscape: function( str ) { + return str.replace(/[^a-zA-Z0-9]/g, '-'); + }, + + _createSubPages: function() { + var parentList = this.element, + parentPage = parentList.closest( ".ui-page" ), + parentUrl = parentPage.jqmData( "url" ), + parentId = parentUrl || parentPage[ 0 ][ $.expando ], + parentListId = parentList.attr( "id" ), + o = this.options, + dns = "data-" + $.mobile.ns, + self = this, + persistentFooterID = parentPage.find( ":jqmData(role='footer')" ).jqmData( "id" ), + hasSubPages; + + if ( typeof listCountPerPage[ parentId ] === "undefined" ) { + listCountPerPage[ parentId ] = -1; + } + + parentListId = parentListId || ++listCountPerPage[ parentId ]; + + $( parentList.find( "li>ul, li>ol" ).toArray().reverse() ).each(function( i ) { + var self = this, + list = $( this ), + listId = list.attr( "id" ) || parentListId + "-" + i, + parent = list.parent(), + nodeEls = $( list.prevAll().toArray().reverse() ), + nodeEls = nodeEls.length ? nodeEls : $( "" + $.trim(parent.contents()[ 0 ].nodeValue) + "" ), + title = nodeEls.first().getEncodedText(),//url limits to first 30 chars of text + id = ( parentUrl || "" ) + "&" + $.mobile.subPageUrlKey + "=" + listId, + theme = list.jqmData( "theme" ) || o.theme, + countTheme = list.jqmData( "counttheme" ) || parentList.jqmData( "counttheme" ) || o.countTheme, + newPage, anchor; + + //define hasSubPages for use in later removal + hasSubPages = true; + + newPage = list.detach() + .wrap( "
                    " ) + .parent() + .before( "
                    " + title + "
                    " ) + .after( persistentFooterID ? $( "
                    ") : "" ) + .parent() + .appendTo( $.mobile.pageContainer ); + + newPage.page(); + + anchor = parent.find('a:first'); + + if ( !anchor.length ) { + anchor = $( "" ).html( nodeEls || title ).prependTo( parent.empty() ); + } + + anchor.attr( "href", "#" + id ); + + }).listview(); + + // on pagehide, remove any nested pages along with the parent page, as long as they aren't active + // and aren't embedded + if( hasSubPages && + parentPage.is( ":jqmData(external-page='true')" ) && + parentPage.data("page").options.domCache === false ) { + + var newRemove = function( e, ui ){ + var nextPage = ui.nextPage, npURL; + + if( ui.nextPage ){ + npURL = nextPage.jqmData( "url" ); + if( npURL.indexOf( parentUrl + "&" + $.mobile.subPageUrlKey ) !== 0 ){ + self.childPages().remove(); + parentPage.remove(); + } + } + }; + + // unbind the original page remove and replace with our specialized version + parentPage + .unbind( "pagehide.remove" ) + .bind( "pagehide.remove", newRemove); + } + }, + + // TODO sort out a better way to track sub pages of the listview this is brittle + childPages: function(){ + var parentUrl = this.parentPage.jqmData( "url" ); + + return $( ":jqmData(url^='"+ parentUrl + "&" + $.mobile.subPageUrlKey +"')"); + } +}); + +//auto self-init widgets +$( document ).bind( "pagecreate create", function( e ){ + $.mobile.listview.prototype.enhanceWithin( e.target ); +}); + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.media.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.media.js new file mode 100644 index 0000000..f2302e5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.media.js @@ -0,0 +1,52 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: A workaround for browsers without window.matchMedia +//>>label: matchMedia Polyfill +//>>group: Utilities + + +define( [ "jquery", "./jquery.mobile.core" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +var $window = $( window ), + $html = $( "html" ); + +/* $.mobile.media method: pass a CSS media type or query and get a bool return + note: this feature relies on actual media query support for media queries, though types will work most anywhere + examples: + $.mobile.media('screen') // tests for screen media type + $.mobile.media('screen and (min-width: 480px)') // tests for screen media type with window width > 480px + $.mobile.media('@media screen and (-webkit-min-device-pixel-ratio: 2)') // tests for webkit 2x pixel ratio (iPhone 4) +*/ +$.mobile.media = (function() { + // TODO: use window.matchMedia once at least one UA implements it + var cache = {}, + testDiv = $( "
                    " ), + fakeBody = $( "" ).append( testDiv ); + + return function( query ) { + if ( !( query in cache ) ) { + var styleBlock = document.createElement( "style" ), + cssrule = "@media " + query + " { #jquery-mediatest { position:absolute; } }"; + + //must set type for IE! + styleBlock.type = "text/css"; + + if ( styleBlock.styleSheet ){ + styleBlock.styleSheet.cssText = cssrule; + } else { + styleBlock.appendChild( document.createTextNode(cssrule) ); + } + + $html.prepend( fakeBody ).prepend( styleBlock ); + cache[ query ] = testDiv.css( "position" ) === "absolute"; + fakeBody.add( styleBlock ).remove(); + } + return cache[ query ]; + }; +})(); + +})(jQuery); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navbar.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navbar.js new file mode 100644 index 0000000..42c2f12 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navbar.js @@ -0,0 +1,65 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Formats groups of links as horizontal navigation bars. +//>>label: Navbars +//>>group: Widgets +//>>css: ../css/themes/default/jquery.mobile.theme.css, ../css/structure/jquery.mobile.navbar.css + + +define( [ "jquery", "./jquery.mobile.widget", "./jquery.mobile.buttonMarkup", "./jquery.mobile.grid" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$.widget( "mobile.navbar", $.mobile.widget, { + options: { + iconpos: "top", + grid: null, + initSelector: ":jqmData(role='navbar')" + }, + + _create: function(){ + + var $navbar = this.element, + $navbtns = $navbar.find( "a" ), + iconpos = $navbtns.filter( ":jqmData(icon)" ).length ? + this.options.iconpos : undefined; + + $navbar.addClass( "ui-navbar" ) + .attr( "role","navigation" ) + .find( "ul" ) + .jqmEnhanceable() + .grid({ grid: this.options.grid }); + + if ( !iconpos ) { + $navbar.addClass( "ui-navbar-noicons" ); + } + + $navbtns.buttonMarkup({ + corners: false, + shadow: false, + inline: true, + iconpos: iconpos + }); + + $navbar.delegate( "a", "vclick", function( event ) { + if( !$(event.target).hasClass("ui-disabled") ) { + $navbtns.removeClass( $.mobile.activeBtnClass ); + $( this ).addClass( $.mobile.activeBtnClass ); + } + }); + + // Buttons in the navbar with ui-state-persist class should regain their active state before page show + $navbar.closest( ".ui-page" ).bind( "pagebeforeshow", function() { + $navbtns.filter( ".ui-state-persist" ).addClass( $.mobile.activeBtnClass ); + }); + } +}); + +//auto self-init widgets +$( document ).bind( "pagecreate create", function( e ){ + $.mobile.navbar.prototype.enhanceWithin( e.target ); +}); + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navigation.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navigation.js new file mode 100644 index 0000000..ad2f67c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navigation.js @@ -0,0 +1,1456 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Applies the AJAX navigation system to links and forms to enable page transitions +//>>label: AJAX Navigation System +//>>group: Navigation + +define( [ + "jquery", + "./jquery.mobile.core", + "./jquery.mobile.event", + "../external/requirejs/depend!./jquery.mobile.hashchange[jquery]", + "./jquery.mobile.page", + "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +( function( $, undefined ) { + + //define vars for interal use + var $window = $( window ), + $html = $( 'html' ), + $head = $( 'head' ), + + //url path helpers for use in relative url management + path = { + + // This scary looking regular expression parses an absolute URL or its relative + // variants (protocol, site, document, query, and hash), into the various + // components (protocol, host, path, query, fragment, etc that make up the + // URL as well as some other commonly used sub-parts. When used with RegExp.exec() + // or String.match, it parses the URL into a results array that looks like this: + // + // [0]: http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread#msg-content + // [1]: http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread + // [2]: http://jblas:password@mycompany.com:8080/mail/inbox + // [3]: http://jblas:password@mycompany.com:8080 + // [4]: http: + // [5]: // + // [6]: jblas:password@mycompany.com:8080 + // [7]: jblas:password + // [8]: jblas + // [9]: password + // [10]: mycompany.com:8080 + // [11]: mycompany.com + // [12]: 8080 + // [13]: /mail/inbox + // [14]: /mail/ + // [15]: inbox + // [16]: ?msg=1234&type=unread + // [17]: #msg-content + // + urlParseRE: /^(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/, + + //Parse a URL into a structure that allows easy access to + //all of the URL components by name. + parseUrl: function( url ) { + // If we're passed an object, we'll assume that it is + // a parsed url object and just return it back to the caller. + if ( $.type( url ) === "object" ) { + return url; + } + + var matches = path.urlParseRE.exec( url || "" ) || []; + + // Create an object that allows the caller to access the sub-matches + // by name. Note that IE returns an empty string instead of undefined, + // like all other browsers do, so we normalize everything so its consistent + // no matter what browser we're running on. + return { + href: matches[ 0 ] || "", + hrefNoHash: matches[ 1 ] || "", + hrefNoSearch: matches[ 2 ] || "", + domain: matches[ 3 ] || "", + protocol: matches[ 4 ] || "", + doubleSlash: matches[ 5 ] || "", + authority: matches[ 6 ] || "", + username: matches[ 8 ] || "", + password: matches[ 9 ] || "", + host: matches[ 10 ] || "", + hostname: matches[ 11 ] || "", + port: matches[ 12 ] || "", + pathname: matches[ 13 ] || "", + directory: matches[ 14 ] || "", + filename: matches[ 15 ] || "", + search: matches[ 16 ] || "", + hash: matches[ 17 ] || "" + }; + }, + + //Turn relPath into an asbolute path. absPath is + //an optional absolute path which describes what + //relPath is relative to. + makePathAbsolute: function( relPath, absPath ) { + if ( relPath && relPath.charAt( 0 ) === "/" ) { + return relPath; + } + + relPath = relPath || ""; + absPath = absPath ? absPath.replace( /^\/|(\/[^\/]*|[^\/]+)$/g, "" ) : ""; + + var absStack = absPath ? absPath.split( "/" ) : [], + relStack = relPath.split( "/" ); + for ( var i = 0; i < relStack.length; i++ ) { + var d = relStack[ i ]; + switch ( d ) { + case ".": + break; + case "..": + if ( absStack.length ) { + absStack.pop(); + } + break; + default: + absStack.push( d ); + break; + } + } + return "/" + absStack.join( "/" ); + }, + + //Returns true if both urls have the same domain. + isSameDomain: function( absUrl1, absUrl2 ) { + return path.parseUrl( absUrl1 ).domain === path.parseUrl( absUrl2 ).domain; + }, + + //Returns true for any relative variant. + isRelativeUrl: function( url ) { + // All relative Url variants have one thing in common, no protocol. + return path.parseUrl( url ).protocol === ""; + }, + + //Returns true for an absolute url. + isAbsoluteUrl: function( url ) { + return path.parseUrl( url ).protocol !== ""; + }, + + //Turn the specified realtive URL into an absolute one. This function + //can handle all relative variants (protocol, site, document, query, fragment). + makeUrlAbsolute: function( relUrl, absUrl ) { + if ( !path.isRelativeUrl( relUrl ) ) { + return relUrl; + } + + var relObj = path.parseUrl( relUrl ), + absObj = path.parseUrl( absUrl ), + protocol = relObj.protocol || absObj.protocol, + doubleSlash = relObj.protocol ? relObj.doubleSlash : ( relObj.doubleSlash || absObj.doubleSlash ), + authority = relObj.authority || absObj.authority, + hasPath = relObj.pathname !== "", + pathname = path.makePathAbsolute( relObj.pathname || absObj.filename, absObj.pathname ), + search = relObj.search || ( !hasPath && absObj.search ) || "", + hash = relObj.hash; + + return protocol + doubleSlash + authority + pathname + search + hash; + }, + + //Add search (aka query) params to the specified url. + addSearchParams: function( url, params ) { + var u = path.parseUrl( url ), + p = ( typeof params === "object" ) ? $.param( params ) : params, + s = u.search || "?"; + return u.hrefNoSearch + s + ( s.charAt( s.length - 1 ) !== "?" ? "&" : "" ) + p + ( u.hash || "" ); + }, + + convertUrlToDataUrl: function( absUrl ) { + var u = path.parseUrl( absUrl ); + if ( path.isEmbeddedPage( u ) ) { + // For embedded pages, remove the dialog hash key as in getFilePath(), + // otherwise the Data Url won't match the id of the embedded Page. + return u.hash.split( dialogHashKey )[0].replace( /^#/, "" ); + } else if ( path.isSameDomain( u, documentBase ) ) { + return u.hrefNoHash.replace( documentBase.domain, "" ); + } + return absUrl; + }, + + //get path from current hash, or from a file path + get: function( newPath ) { + if( newPath === undefined ) { + newPath = location.hash; + } + return path.stripHash( newPath ).replace( /[^\/]*\.[^\/*]+$/, '' ); + }, + + //return the substring of a filepath before the sub-page key, for making a server request + getFilePath: function( path ) { + var splitkey = '&' + $.mobile.subPageUrlKey; + return path && path.split( splitkey )[0].split( dialogHashKey )[0]; + }, + + //set location hash to path + set: function( path ) { + location.hash = path; + }, + + //test if a given url (string) is a path + //NOTE might be exceptionally naive + isPath: function( url ) { + return ( /\// ).test( url ); + }, + + //return a url path with the window's location protocol/hostname/pathname removed + clean: function( url ) { + return url.replace( documentBase.domain, "" ); + }, + + //just return the url without an initial # + stripHash: function( url ) { + return url.replace( /^#/, "" ); + }, + + //remove the preceding hash, any query params, and dialog notations + cleanHash: function( hash ) { + return path.stripHash( hash.replace( /\?.*$/, "" ).replace( dialogHashKey, "" ) ); + }, + + //check whether a url is referencing the same domain, or an external domain or different protocol + //could be mailto, etc + isExternal: function( url ) { + var u = path.parseUrl( url ); + return u.protocol && u.domain !== documentUrl.domain ? true : false; + }, + + hasProtocol: function( url ) { + return ( /^(:?\w+:)/ ).test( url ); + }, + + //check if the specified url refers to the first page in the main application document. + isFirstPageUrl: function( url ) { + // We only deal with absolute paths. + var u = path.parseUrl( path.makeUrlAbsolute( url, documentBase ) ), + + // Does the url have the same path as the document? + samePath = u.hrefNoHash === documentUrl.hrefNoHash || ( documentBaseDiffers && u.hrefNoHash === documentBase.hrefNoHash ), + + // Get the first page element. + fp = $.mobile.firstPage, + + // Get the id of the first page element if it has one. + fpId = fp && fp[0] ? fp[0].id : undefined; + + // The url refers to the first page if the path matches the document and + // it either has no hash value, or the hash is exactly equal to the id of the + // first page element. + return samePath && ( !u.hash || u.hash === "#" || ( fpId && u.hash.replace( /^#/, "" ) === fpId ) ); + }, + + isEmbeddedPage: function( url ) { + var u = path.parseUrl( url ); + + //if the path is absolute, then we need to compare the url against + //both the documentUrl and the documentBase. The main reason for this + //is that links embedded within external documents will refer to the + //application document, whereas links embedded within the application + //document will be resolved against the document base. + if ( u.protocol !== "" ) { + return ( u.hash && ( u.hrefNoHash === documentUrl.hrefNoHash || ( documentBaseDiffers && u.hrefNoHash === documentBase.hrefNoHash ) ) ); + } + return (/^#/).test( u.href ); + } + }, + + //will be defined when a link is clicked and given an active class + $activeClickedLink = null, + + //urlHistory is purely here to make guesses at whether the back or forward button was clicked + //and provide an appropriate transition + urlHistory = { + // Array of pages that are visited during a single page load. + // Each has a url and optional transition, title, and pageUrl (which represents the file path, in cases where URL is obscured, such as dialogs) + stack: [], + + //maintain an index number for the active page in the stack + activeIndex: 0, + + //get active + getActive: function() { + return urlHistory.stack[ urlHistory.activeIndex ]; + }, + + getPrev: function() { + return urlHistory.stack[ urlHistory.activeIndex - 1 ]; + }, + + getNext: function() { + return urlHistory.stack[ urlHistory.activeIndex + 1 ]; + }, + + // addNew is used whenever a new page is added + addNew: function( url, transition, title, pageUrl, role ) { + //if there's forward history, wipe it + if( urlHistory.getNext() ) { + urlHistory.clearForward(); + } + + urlHistory.stack.push( {url : url, transition: transition, title: title, pageUrl: pageUrl, role: role } ); + + urlHistory.activeIndex = urlHistory.stack.length - 1; + }, + + //wipe urls ahead of active index + clearForward: function() { + urlHistory.stack = urlHistory.stack.slice( 0, urlHistory.activeIndex + 1 ); + }, + + directHashChange: function( opts ) { + var back , forward, newActiveIndex, prev = this.getActive(); + + // check if url isp in history and if it's ahead or behind current page + $.each( urlHistory.stack, function( i, historyEntry ) { + + //if the url is in the stack, it's a forward or a back + if( opts.currentUrl === historyEntry.url ) { + //define back and forward by whether url is older or newer than current page + back = i < urlHistory.activeIndex; + forward = !back; + newActiveIndex = i; + } + }); + + // save new page index, null check to prevent falsey 0 result + this.activeIndex = newActiveIndex !== undefined ? newActiveIndex : this.activeIndex; + + if( back ) { + ( opts.either || opts.isBack )( true ); + } else if( forward ) { + ( opts.either || opts.isForward )( false ); + } + }, + + //disable hashchange event listener internally to ignore one change + //toggled internally when location.hash is updated to match the url of a successful page load + ignoreNextHashChange: false + }, + + //define first selector to receive focus when a page is shown + focusable = "[tabindex],a,button:visible,select:visible,input", + + //queue to hold simultanious page transitions + pageTransitionQueue = [], + + //indicates whether or not page is in process of transitioning + isPageTransitioning = false, + + //nonsense hash change key for dialogs, so they create a history entry + dialogHashKey = "&ui-state=dialog", + + //existing base tag? + $base = $head.children( "base" ), + + //tuck away the original document URL minus any fragment. + documentUrl = path.parseUrl( location.href ), + + //if the document has an embedded base tag, documentBase is set to its + //initial value. If a base tag does not exist, then we default to the documentUrl. + documentBase = $base.length ? path.parseUrl( path.makeUrlAbsolute( $base.attr( "href" ), documentUrl.href ) ) : documentUrl, + + //cache the comparison once. + documentBaseDiffers = ( documentUrl.hrefNoHash !== documentBase.hrefNoHash ); + + //base element management, defined depending on dynamic base tag support + var base = $.support.dynamicBaseTag ? { + + //define base element, for use in routing asset urls that are referenced in Ajax-requested markup + element: ( $base.length ? $base : $( "", { href: documentBase.hrefNoHash } ).prependTo( $head ) ), + + //set the generated BASE element's href attribute to a new page's base path + set: function( href ) { + base.element.attr( "href", path.makeUrlAbsolute( href, documentBase ) ); + }, + + //set the generated BASE element's href attribute to a new page's base path + reset: function() { + base.element.attr( "href", documentBase.hrefNoHash ); + } + + } : undefined; + +/* + internal utility functions +--------------------------------------*/ + + + //direct focus to the page title, or otherwise first focusable element + $.mobile.focusPage = function ( page ) { + var autofocus = page.find("[autofocus]"), + pageTitle = page.find( ".ui-title:eq(0)" ); + + if( autofocus.length ) { + autofocus.focus(); + return; + } + + if( pageTitle.length ) { + pageTitle.focus(); + } + else{ + page.focus(); + } + } + + //remove active classes after page transition or error + function removeActiveLinkClass( forceRemoval ) { + if( !!$activeClickedLink && ( !$activeClickedLink.closest( '.ui-page-active' ).length || forceRemoval ) ) { + $activeClickedLink.removeClass( $.mobile.activeBtnClass ); + } + $activeClickedLink = null; + } + + function releasePageTransitionLock() { + isPageTransitioning = false; + if( pageTransitionQueue.length > 0 ) { + $.mobile.changePage.apply( null, pageTransitionQueue.pop() ); + } + } + + // Save the last scroll distance per page, before it is hidden + var setLastScrollEnabled = true, + setLastScroll, delayedSetLastScroll; + + setLastScroll = function() { + // this barrier prevents setting the scroll value based on the browser + // scrolling the window based on a hashchange + if( !setLastScrollEnabled ) { + return; + } + + var active = $.mobile.urlHistory.getActive(); + + if( active ) { + var lastScroll = $window.scrollTop(); + + // Set active page's lastScroll prop. + // If the location we're scrolling to is less than minScrollBack, let it go. + active.lastScroll = lastScroll < $.mobile.minScrollBack ? $.mobile.defaultHomeScroll : lastScroll; + } + }; + + // bind to scrollstop to gather scroll position. The delay allows for the hashchange + // event to fire and disable scroll recording in the case where the browser scrolls + // to the hash targets location (sometimes the top of the page). once pagechange fires + // getLastScroll is again permitted to operate + delayedSetLastScroll = function() { + setTimeout( setLastScroll, 100 ); + }; + + // disable an scroll setting when a hashchange has been fired, this only works + // because the recording of the scroll position is delayed for 100ms after + // the browser might have changed the position because of the hashchange + $window.bind( $.support.pushState ? "popstate" : "hashchange", function() { + setLastScrollEnabled = false; + }); + + // handle initial hashchange from chrome :( + $window.one( $.support.pushState ? "popstate" : "hashchange", function() { + setLastScrollEnabled = true; + }); + + // wait until the mobile page container has been determined to bind to pagechange + $window.one( "pagecontainercreate", function(){ + // once the page has changed, re-enable the scroll recording + $.mobile.pageContainer.bind( "pagechange", function() { + + setLastScrollEnabled = true; + + // remove any binding that previously existed on the get scroll + // which may or may not be different than the scroll element determined for + // this page previously + $window.unbind( "scrollstop", delayedSetLastScroll ); + + // determine and bind to the current scoll element which may be the window + // or in the case of touch overflow the element with touch overflow + $window.bind( "scrollstop", delayedSetLastScroll ); + }); + }); + + // bind to scrollstop for the first page as "pagechange" won't be fired in that case + $window.bind( "scrollstop", delayedSetLastScroll ); + + //function for transitioning between two existing pages + function transitionPages( toPage, fromPage, transition, reverse ) { + + if( fromPage ) { + //trigger before show/hide events + fromPage.data( "page" )._trigger( "beforehide", null, { nextPage: toPage } ); + } + + toPage.data( "page" )._trigger( "beforeshow", null, { prevPage: fromPage || $( "" ) } ); + + //clear page loader + $.mobile.hidePageLoadingMsg(); + + // If transition is defined, check if css 3D transforms are supported, and if not, if a fallback is specified + if( transition && !$.support.cssTransform3d && $.mobile.transitionFallbacks[ transition ] ){ + transition = $.mobile.transitionFallbacks[ transition ]; + } + + //find the transition handler for the specified transition. If there + //isn't one in our transitionHandlers dictionary, use the default one. + //call the handler immediately to kick-off the transition. + var th = $.mobile.transitionHandlers[ transition || "default" ] || $.mobile.defaultTransitionHandler, + promise = th( transition, reverse, toPage, fromPage ); + + promise.done(function() { + + //trigger show/hide events + if( fromPage ) { + fromPage.data( "page" )._trigger( "hide", null, { nextPage: toPage } ); + } + + //trigger pageshow, define prevPage as either fromPage or empty jQuery obj + toPage.data( "page" )._trigger( "show", null, { prevPage: fromPage || $( "" ) } ); + }); + + return promise; + } + + //simply set the active page's minimum height to screen height, depending on orientation + function getScreenHeight(){ + // Native innerHeight returns more accurate value for this across platforms, + // jQuery version is here as a normalized fallback for platforms like Symbian + return window.innerHeight || $( window ).height(); + } + + $.mobile.getScreenHeight = getScreenHeight; + + //simply set the active page's minimum height to screen height, depending on orientation + function resetActivePageHeight(){ + var aPage = $( "." + $.mobile.activePageClass ), + aPagePadT = parseFloat( aPage.css( "padding-top" ) ), + aPagePadB = parseFloat( aPage.css( "padding-bottom" ) ); + + aPage.css( "min-height", getScreenHeight() - aPagePadT - aPagePadB ); + } + + //shared page enhancements + function enhancePage( $page, role ) { + // If a role was specified, make sure the data-role attribute + // on the page element is in sync. + if( role ) { + $page.attr( "data-" + $.mobile.ns + "role", role ); + } + + //run page plugin + $page.page(); + } + +/* exposed $.mobile methods */ + + //animation complete callback + $.fn.animationComplete = function( callback ) { + if( $.support.cssTransitions ) { + return $( this ).one( 'webkitAnimationEnd animationend', callback ); + } + else{ + // defer execution for consistency between webkit/non webkit + setTimeout( callback, 0 ); + return $( this ); + } + }; + + //expose path object on $.mobile + $.mobile.path = path; + + //expose base object on $.mobile + $.mobile.base = base; + + //history stack + $.mobile.urlHistory = urlHistory; + + $.mobile.dialogHashKey = dialogHashKey; + + + + //enable cross-domain page support + $.mobile.allowCrossDomainPages = false; + + //return the original document url + $.mobile.getDocumentUrl = function(asParsedObject) { + return asParsedObject ? $.extend( {}, documentUrl ) : documentUrl.href; + }; + + //return the original document base url + $.mobile.getDocumentBase = function(asParsedObject) { + return asParsedObject ? $.extend( {}, documentBase ) : documentBase.href; + }; + + $.mobile._bindPageRemove = function() { + var page = $(this); + + // when dom caching is not enabled or the page is embedded bind to remove the page on hide + if( !page.data("page").options.domCache + && page.is(":jqmData(external-page='true')") ) { + + page.bind( 'pagehide.remove', function() { + var $this = $( this ), + prEvent = new $.Event( "pageremove" ); + + $this.trigger( prEvent ); + + if( !prEvent.isDefaultPrevented() ){ + $this.removeWithDependents(); + } + }); + } + }; + + // Load a page into the DOM. + $.mobile.loadPage = function( url, options ) { + // This function uses deferred notifications to let callers + // know when the page is done loading, or if an error has occurred. + var deferred = $.Deferred(), + + // The default loadPage options with overrides specified by + // the caller. + settings = $.extend( {}, $.mobile.loadPage.defaults, options ), + + // The DOM element for the page after it has been loaded. + page = null, + + // If the reloadPage option is true, and the page is already + // in the DOM, dupCachedPage will be set to the page element + // so that it can be removed after the new version of the + // page is loaded off the network. + dupCachedPage = null, + + // determine the current base url + findBaseWithDefault = function(){ + var closestBase = ( $.mobile.activePage && getClosestBaseUrl( $.mobile.activePage ) ); + return closestBase || documentBase.hrefNoHash; + }, + + // The absolute version of the URL passed into the function. This + // version of the URL may contain dialog/subpage params in it. + absUrl = path.makeUrlAbsolute( url, findBaseWithDefault() ); + + + // If the caller provided data, and we're using "get" request, + // append the data to the URL. + if ( settings.data && settings.type === "get" ) { + absUrl = path.addSearchParams( absUrl, settings.data ); + settings.data = undefined; + } + + // If the caller is using a "post" request, reloadPage must be true + if( settings.data && settings.type === "post" ){ + settings.reloadPage = true; + } + + // The absolute version of the URL minus any dialog/subpage params. + // In otherwords the real URL of the page to be loaded. + var fileUrl = path.getFilePath( absUrl ), + + // The version of the Url actually stored in the data-url attribute of + // the page. For embedded pages, it is just the id of the page. For pages + // within the same domain as the document base, it is the site relative + // path. For cross-domain pages (Phone Gap only) the entire absolute Url + // used to load the page. + dataUrl = path.convertUrlToDataUrl( absUrl ); + + // Make sure we have a pageContainer to work with. + settings.pageContainer = settings.pageContainer || $.mobile.pageContainer; + + // Check to see if the page already exists in the DOM. + page = settings.pageContainer.children( ":jqmData(url='" + dataUrl + "')" ); + + // If we failed to find the page, check to see if the url is a + // reference to an embedded page. If so, it may have been dynamically + // injected by a developer, in which case it would be lacking a data-url + // attribute and in need of enhancement. + if ( page.length === 0 && dataUrl && !path.isPath( dataUrl ) ) { + page = settings.pageContainer.children( "#" + dataUrl ) + .attr( "data-" + $.mobile.ns + "url", dataUrl ); + } + + // If we failed to find a page in the DOM, check the URL to see if it + // refers to the first page in the application. If it isn't a reference + // to the first page and refers to non-existent embedded page, error out. + if ( page.length === 0 ) { + if ( $.mobile.firstPage && path.isFirstPageUrl( fileUrl ) ) { + // Check to make sure our cached-first-page is actually + // in the DOM. Some user deployed apps are pruning the first + // page from the DOM for various reasons, we check for this + // case here because we don't want a first-page with an id + // falling through to the non-existent embedded page error + // case. If the first-page is not in the DOM, then we let + // things fall through to the ajax loading code below so + // that it gets reloaded. + if ( $.mobile.firstPage.parent().length ) { + page = $( $.mobile.firstPage ); + } + } else if ( path.isEmbeddedPage( fileUrl ) ) { + deferred.reject( absUrl, options ); + return deferred.promise(); + } + } + + // Reset base to the default document base. + if ( base ) { + base.reset(); + } + + // If the page we are interested in is already in the DOM, + // and the caller did not indicate that we should force a + // reload of the file, we are done. Otherwise, track the + // existing page as a duplicated. + if ( page.length ) { + if ( !settings.reloadPage ) { + enhancePage( page, settings.role ); + deferred.resolve( absUrl, options, page ); + return deferred.promise(); + } + dupCachedPage = page; + } + + var mpc = settings.pageContainer, + pblEvent = new $.Event( "pagebeforeload" ), + triggerData = { url: url, absUrl: absUrl, dataUrl: dataUrl, deferred: deferred, options: settings }; + + // Let listeners know we're about to load a page. + mpc.trigger( pblEvent, triggerData ); + + // If the default behavior is prevented, stop here! + if( pblEvent.isDefaultPrevented() ){ + return deferred.promise(); + } + + if ( settings.showLoadMsg ) { + + // This configurable timeout allows cached pages a brief delay to load without showing a message + var loadMsgDelay = setTimeout(function(){ + $.mobile.showPageLoadingMsg(); + }, settings.loadMsgDelay ), + + // Shared logic for clearing timeout and removing message. + hideMsg = function(){ + + // Stop message show timer + clearTimeout( loadMsgDelay ); + + // Hide loading message + $.mobile.hidePageLoadingMsg(); + }; + } + + if ( !( $.mobile.allowCrossDomainPages || path.isSameDomain( documentUrl, absUrl ) ) ) { + deferred.reject( absUrl, options ); + } else { + // Load the new page. + $.ajax({ + url: fileUrl, + type: settings.type, + data: settings.data, + dataType: "html", + success: function( html, textStatus, xhr ) { + //pre-parse html to check for a data-url, + //use it as the new fileUrl, base path, etc + var all = $( "
                    " ), + + //page title regexp + newPageTitle = html.match( /]*>([^<]*)/ ) && RegExp.$1, + + // TODO handle dialogs again + pageElemRegex = new RegExp( "(<[^>]+\\bdata-" + $.mobile.ns + "role=[\"']?page[\"']?[^>]*>)" ), + dataUrlRegex = new RegExp( "\\bdata-" + $.mobile.ns + "url=[\"']?([^\"'>]*)[\"']?" ); + + + // data-url must be provided for the base tag so resource requests can be directed to the + // correct url. loading into a temprorary element makes these requests immediately + if( pageElemRegex.test( html ) + && RegExp.$1 + && dataUrlRegex.test( RegExp.$1 ) + && RegExp.$1 ) { + url = fileUrl = path.getFilePath( RegExp.$1 ); + } + + if ( base ) { + base.set( fileUrl ); + } + + //workaround to allow scripts to execute when included in page divs + all.get( 0 ).innerHTML = html; + page = all.find( ":jqmData(role='page'), :jqmData(role='dialog')" ).first(); + + //if page elem couldn't be found, create one and insert the body element's contents + if( !page.length ){ + page = $( "
                    " + html.split( /<\/?body[^>]*>/gmi )[1] + "
                    " ); + } + + if ( newPageTitle && !page.jqmData( "title" ) ) { + if ( ~newPageTitle.indexOf( "&" ) ) { + newPageTitle = $( "
                    " + newPageTitle + "
                    " ).text(); + } + page.jqmData( "title", newPageTitle ); + } + + //rewrite src and href attrs to use a base url + if( !$.support.dynamicBaseTag ) { + var newPath = path.get( fileUrl ); + page.find( "[src], link[href], a[rel='external'], :jqmData(ajax='false'), a[target]" ).each(function() { + var thisAttr = $( this ).is( '[href]' ) ? 'href' : + $(this).is('[src]') ? 'src' : 'action', + thisUrl = $( this ).attr( thisAttr ); + + // XXX_jblas: We need to fix this so that it removes the document + // base URL, and then prepends with the new page URL. + //if full path exists and is same, chop it - helps IE out + thisUrl = thisUrl.replace( location.protocol + '//' + location.host + location.pathname, '' ); + + if( !/^(\w+:|#|\/)/.test( thisUrl ) ) { + $( this ).attr( thisAttr, newPath + thisUrl ); + } + }); + } + + //append to page and enhance + // TODO taging a page with external to make sure that embedded pages aren't removed + // by the various page handling code is bad. Having page handling code in many + // places is bad. Solutions post 1.0 + page + .attr( "data-" + $.mobile.ns + "url", path.convertUrlToDataUrl( fileUrl ) ) + .attr( "data-" + $.mobile.ns + "external-page", true ) + .appendTo( settings.pageContainer ); + + // wait for page creation to leverage options defined on widget + page.one( 'pagecreate', $.mobile._bindPageRemove ); + + enhancePage( page, settings.role ); + + // Enhancing the page may result in new dialogs/sub pages being inserted + // into the DOM. If the original absUrl refers to a sub-page, that is the + // real page we are interested in. + if ( absUrl.indexOf( "&" + $.mobile.subPageUrlKey ) > -1 ) { + page = settings.pageContainer.children( ":jqmData(url='" + dataUrl + "')" ); + } + + //bind pageHide to removePage after it's hidden, if the page options specify to do so + + // Remove loading message. + if ( settings.showLoadMsg ) { + hideMsg(); + } + + // Add the page reference and xhr to our triggerData. + triggerData.xhr = xhr; + triggerData.textStatus = textStatus; + triggerData.page = page; + + // Let listeners know the page loaded successfully. + settings.pageContainer.trigger( "pageload", triggerData ); + + deferred.resolve( absUrl, options, page, dupCachedPage ); + }, + error: function( xhr, textStatus, errorThrown ) { + //set base back to current path + if( base ) { + base.set( path.get() ); + } + + // Add error info to our triggerData. + triggerData.xhr = xhr; + triggerData.textStatus = textStatus; + triggerData.errorThrown = errorThrown; + + var plfEvent = new $.Event( "pageloadfailed" ); + + // Let listeners know the page load failed. + settings.pageContainer.trigger( plfEvent, triggerData ); + + // If the default behavior is prevented, stop here! + // Note that it is the responsibility of the listener/handler + // that called preventDefault(), to resolve/reject the + // deferred object within the triggerData. + if( plfEvent.isDefaultPrevented() ){ + return; + } + + // Remove loading message. + if ( settings.showLoadMsg ) { + + // Remove loading message. + hideMsg(); + + // show error message + $.mobile.showPageLoadingMsg( $.mobile.pageLoadErrorMessageTheme, $.mobile.pageLoadErrorMessage, true ); + + // hide after delay + setTimeout( $.mobile.hidePageLoadingMsg, 1500 ); + } + + deferred.reject( absUrl, options ); + } + }); + } + + return deferred.promise(); + }; + + $.mobile.loadPage.defaults = { + type: "get", + data: undefined, + reloadPage: false, + role: undefined, // By default we rely on the role defined by the @data-role attribute. + showLoadMsg: false, + pageContainer: undefined, + loadMsgDelay: 50 // This delay allows loads that pull from browser cache to occur without showing the loading message. + }; + + // Show a specific page in the page container. + $.mobile.changePage = function( toPage, options ) { + // If we are in the midst of a transition, queue the current request. + // We'll call changePage() once we're done with the current transition to + // service the request. + if( isPageTransitioning ) { + pageTransitionQueue.unshift( arguments ); + return; + } + + var settings = $.extend( {}, $.mobile.changePage.defaults, options ); + + // Make sure we have a pageContainer to work with. + settings.pageContainer = settings.pageContainer || $.mobile.pageContainer; + + // Make sure we have a fromPage. + settings.fromPage = settings.fromPage || $.mobile.activePage; + + var mpc = settings.pageContainer, + pbcEvent = new $.Event( "pagebeforechange" ), + triggerData = { toPage: toPage, options: settings }; + + // Let listeners know we're about to change the current page. + mpc.trigger( pbcEvent, triggerData ); + + // If the default behavior is prevented, stop here! + if( pbcEvent.isDefaultPrevented() ){ + return; + } + + // We allow "pagebeforechange" observers to modify the toPage in the trigger + // data to allow for redirects. Make sure our toPage is updated. + + toPage = triggerData.toPage; + + // Set the isPageTransitioning flag to prevent any requests from + // entering this method while we are in the midst of loading a page + // or transitioning. + + isPageTransitioning = true; + + // If the caller passed us a url, call loadPage() + // to make sure it is loaded into the DOM. We'll listen + // to the promise object it returns so we know when + // it is done loading or if an error ocurred. + if ( typeof toPage == "string" ) { + $.mobile.loadPage( toPage, settings ) + .done(function( url, options, newPage, dupCachedPage ) { + isPageTransitioning = false; + options.duplicateCachedPage = dupCachedPage; + $.mobile.changePage( newPage, options ); + }) + .fail(function( url, options ) { + isPageTransitioning = false; + + //clear out the active button state + removeActiveLinkClass( true ); + + //release transition lock so navigation is free again + releasePageTransitionLock(); + settings.pageContainer.trigger( "pagechangefailed", triggerData ); + }); + return; + } + + // If we are going to the first-page of the application, we need to make + // sure settings.dataUrl is set to the application document url. This allows + // us to avoid generating a document url with an id hash in the case where the + // first-page of the document has an id attribute specified. + if ( toPage[ 0 ] === $.mobile.firstPage[ 0 ] && !settings.dataUrl ) { + settings.dataUrl = documentUrl.hrefNoHash; + } + + // The caller passed us a real page DOM element. Update our + // internal state and then trigger a transition to the page. + var fromPage = settings.fromPage, + url = ( settings.dataUrl && path.convertUrlToDataUrl( settings.dataUrl ) ) || toPage.jqmData( "url" ), + // The pageUrl var is usually the same as url, except when url is obscured as a dialog url. pageUrl always contains the file path + pageUrl = url, + fileUrl = path.getFilePath( url ), + active = urlHistory.getActive(), + activeIsInitialPage = urlHistory.activeIndex === 0, + historyDir = 0, + pageTitle = document.title, + isDialog = settings.role === "dialog" || toPage.jqmData( "role" ) === "dialog"; + + // By default, we prevent changePage requests when the fromPage and toPage + // are the same element, but folks that generate content manually/dynamically + // and reuse pages want to be able to transition to the same page. To allow + // this, they will need to change the default value of allowSamePageTransition + // to true, *OR*, pass it in as an option when they manually call changePage(). + // It should be noted that our default transition animations assume that the + // formPage and toPage are different elements, so they may behave unexpectedly. + // It is up to the developer that turns on the allowSamePageTransitiona option + // to either turn off transition animations, or make sure that an appropriate + // animation transition is used. + if( fromPage && fromPage[0] === toPage[0] && !settings.allowSamePageTransition ) { + isPageTransitioning = false; + mpc.trigger( "pagechange", triggerData ); + return; + } + + // We need to make sure the page we are given has already been enhanced. + enhancePage( toPage, settings.role ); + + // If the changePage request was sent from a hashChange event, check to see if the + // page is already within the urlHistory stack. If so, we'll assume the user hit + // the forward/back button and will try to match the transition accordingly. + if( settings.fromHashChange ) { + urlHistory.directHashChange({ + currentUrl: url, + isBack: function() { historyDir = -1; }, + isForward: function() { historyDir = 1; } + }); + } + + // Kill the keyboard. + // XXX_jblas: We need to stop crawling the entire document to kill focus. Instead, + // we should be tracking focus with a delegate() handler so we already have + // the element in hand at this point. + // Wrap this in a try/catch block since IE9 throw "Unspecified error" if document.activeElement + // is undefined when we are in an IFrame. + try { + if(document.activeElement && document.activeElement.nodeName.toLowerCase() != 'body') { + $(document.activeElement).blur(); + } else { + $( "input:focus, textarea:focus, select:focus" ).blur(); + } + } catch(e) {} + + // If we're displaying the page as a dialog, we don't want the url + // for the dialog content to be used in the hash. Instead, we want + // to append the dialogHashKey to the url of the current page. + if ( isDialog && active ) { + // on the initial page load active.url is undefined and in that case should + // be an empty string. Moving the undefined -> empty string back into + // urlHistory.addNew seemed imprudent given undefined better represents + // the url state + url = ( active.url || "" ) + dialogHashKey; + } + + // Set the location hash. + if( settings.changeHash !== false && url ) { + //disable hash listening temporarily + urlHistory.ignoreNextHashChange = true; + //update hash and history + path.set( url ); + } + + // if title element wasn't found, try the page div data attr too + // If this is a deep-link or a reload ( active === undefined ) then just use pageTitle + var newPageTitle = ( !active )? pageTitle : toPage.jqmData( "title" ) || toPage.children(":jqmData(role='header')").find(".ui-title" ).getEncodedText(); + if( !!newPageTitle && pageTitle == document.title ) { + pageTitle = newPageTitle; + } + if ( !toPage.jqmData( "title" ) ) { + toPage.jqmData( "title", pageTitle ); + } + + // Make sure we have a transition defined. + settings.transition = settings.transition + || ( ( historyDir && !activeIsInitialPage ) ? active.transition : undefined ) + || ( isDialog ? $.mobile.defaultDialogTransition : $.mobile.defaultPageTransition ); + + //add page to history stack if it's not back or forward + if( !historyDir ) { + urlHistory.addNew( url, settings.transition, pageTitle, pageUrl, settings.role ); + } + + //set page title + document.title = urlHistory.getActive().title; + + //set "toPage" as activePage + $.mobile.activePage = toPage; + + // If we're navigating back in the URL history, set reverse accordingly. + settings.reverse = settings.reverse || historyDir < 0; + + transitionPages( toPage, fromPage, settings.transition, settings.reverse ) + .done(function( name, reverse, $to, $from, alreadyFocused ) { + removeActiveLinkClass(); + + //if there's a duplicateCachedPage, remove it from the DOM now that it's hidden + if ( settings.duplicateCachedPage ) { + settings.duplicateCachedPage.remove(); + } + + // Send focus to the newly shown page. Moved from promise .done binding in transitionPages + // itself to avoid ie bug that reports offsetWidth as > 0 (core check for visibility) + // despite visibility: hidden addresses issue #2965 + // https://github.com/jquery/jquery-mobile/issues/2965 + if( !alreadyFocused ){ + $.mobile.focusPage( toPage ); + } + + releasePageTransitionLock(); + + // Let listeners know we're all done changing the current page. + mpc.trigger( "pagechange", triggerData ); + }); + }; + + $.mobile.changePage.defaults = { + transition: undefined, + reverse: false, + changeHash: true, + fromHashChange: false, + role: undefined, // By default we rely on the role defined by the @data-role attribute. + duplicateCachedPage: undefined, + pageContainer: undefined, + showLoadMsg: true, //loading message shows by default when pages are being fetched during changePage + dataUrl: undefined, + fromPage: undefined, + allowSamePageTransition: false + }; + +/* Event Bindings - hashchange, submit, and click */ + function findClosestLink( ele ) + { + while ( ele ) { + // Look for the closest element with a nodeName of "a". + // Note that we are checking if we have a valid nodeName + // before attempting to access it. This is because the + // node we get called with could have originated from within + // an embedded SVG document where some symbol instance elements + // don't have nodeName defined on them, or strings are of type + // SVGAnimatedString. + if ( ( typeof ele.nodeName === "string" ) && ele.nodeName.toLowerCase() == "a" ) { + break; + } + ele = ele.parentNode; + } + return ele; + } + + // The base URL for any given element depends on the page it resides in. + function getClosestBaseUrl( ele ) + { + // Find the closest page and extract out its url. + var url = $( ele ).closest( ".ui-page" ).jqmData( "url" ), + base = documentBase.hrefNoHash; + + if ( !url || !path.isPath( url ) ) { + url = base; + } + + return path.makeUrlAbsolute( url, base); + } + + + //The following event bindings should be bound after mobileinit has been triggered + //the following function is called in the init file + $.mobile._registerInternalEvents = function(){ + + //bind to form submit events, handle with Ajax + $( document ).delegate( "form", "submit", function( event ) { + var $this = $( this ); + + if( !$.mobile.ajaxEnabled || + // test that the form is, itself, ajax false + $this.is(":jqmData(ajax='false')") || + // test that $.mobile.ignoreContentEnabled is set and + // the form or one of it's parents is ajax=false + !$this.jqmHijackable().length ) { + return; + } + + var type = $this.attr( "method" ), + target = $this.attr( "target" ), + url = $this.attr( "action" ); + + // If no action is specified, browsers default to using the + // URL of the document containing the form. Since we dynamically + // pull in pages from external documents, the form should submit + // to the URL for the source document of the page containing + // the form. + if ( !url ) { + // Get the @data-url for the page containing the form. + url = getClosestBaseUrl( $this ); + if ( url === documentBase.hrefNoHash ) { + // The url we got back matches the document base, + // which means the page must be an internal/embedded page, + // so default to using the actual document url as a browser + // would. + url = documentUrl.hrefNoSearch; + } + } + + url = path.makeUrlAbsolute( url, getClosestBaseUrl($this) ); + + //external submits use regular HTTP + if( path.isExternal( url ) || target ) { + return; + } + + $.mobile.changePage( + url, + { + type: type && type.length && type.toLowerCase() || "get", + data: $this.serialize(), + transition: $this.jqmData( "transition" ), + direction: $this.jqmData( "direction" ), + reloadPage: true + } + ); + event.preventDefault(); + }); + + //add active state on vclick + $( document ).bind( "vclick", function( event ) { + // if this isn't a left click we don't care. Its important to note + // that when the virtual event is generated it will create the which attr + if ( event.which > 1 || !$.mobile.linkBindingEnabled ) { + return; + } + + var link = findClosestLink( event.target ); + + // split from the previous return logic to avoid find closest where possible + // TODO teach $.mobile.hijackable to operate on raw dom elements so the link wrapping + // can be avoided + if ( !$(link).jqmHijackable().length ) { + return; + } + + if ( link ) { + if ( path.parseUrl( link.getAttribute( "href" ) || "#" ).hash !== "#" ) { + removeActiveLinkClass( true ); + $activeClickedLink = $( link ).closest( ".ui-btn" ).not( ".ui-disabled" ); + $activeClickedLink.addClass( $.mobile.activeBtnClass ); + $( "." + $.mobile.activePageClass + " .ui-btn" ).not( link ).blur(); + + // By caching the href value to data and switching the href to a #, we can avoid address bar showing in iOS. The click handler resets the href during its initial steps if this data is present + $( link ) + .jqmData( "href", $( link ).attr( "href" ) ) + .attr( "href", "#" ); + } + } + }); + + // click routing - direct to HTTP or Ajax, accordingly + $( document ).bind( "click", function( event ) { + if( !$.mobile.linkBindingEnabled ){ + return; + } + + var link = findClosestLink( event.target ), $link = $( link ), httpCleanup; + + // If there is no link associated with the click or its not a left + // click we want to ignore the click + // TODO teach $.mobile.hijackable to operate on raw dom elements so the link wrapping + // can be avoided + if ( !link || event.which > 1 || !$link.jqmHijackable().length ) { + return; + } + + //remove active link class if external (then it won't be there if you come back) + httpCleanup = function(){ + window.setTimeout( function() { removeActiveLinkClass( true ); }, 200 ); + }; + + // If there's data cached for the real href value, set the link's href back to it again. This pairs with an address bar workaround from the vclick handler + if( $link.jqmData( "href" ) ){ + $link.attr( "href", $link.jqmData( "href" ) ); + } + + //if there's a data-rel=back attr, go back in history + if( $link.is( ":jqmData(rel='back')" ) ) { + window.history.back(); + return false; + } + + var baseUrl = getClosestBaseUrl( $link ), + + //get href, if defined, otherwise default to empty hash + href = path.makeUrlAbsolute( $link.attr( "href" ) || "#", baseUrl ); + + //if ajax is disabled, exit early + if( !$.mobile.ajaxEnabled && !path.isEmbeddedPage( href ) ){ + httpCleanup(); + //use default click handling + return; + } + + // XXX_jblas: Ideally links to application pages should be specified as + // an url to the application document with a hash that is either + // the site relative path or id to the page. But some of the + // internal code that dynamically generates sub-pages for nested + // lists and select dialogs, just write a hash in the link they + // create. This means the actual URL path is based on whatever + // the current value of the base tag is at the time this code + // is called. For now we are just assuming that any url with a + // hash in it is an application page reference. + if ( href.search( "#" ) != -1 ) { + href = href.replace( /[^#]*#/, "" ); + if ( !href ) { + //link was an empty hash meant purely + //for interaction, so we ignore it. + event.preventDefault(); + return; + } else if ( path.isPath( href ) ) { + //we have apath so make it the href we want to load. + href = path.makeUrlAbsolute( href, baseUrl ); + } else { + //we have a simple id so use the documentUrl as its base. + href = path.makeUrlAbsolute( "#" + href, documentUrl.hrefNoHash ); + } + } + + // Should we handle this link, or let the browser deal with it? + var useDefaultUrlHandling = $link.is( "[rel='external']" ) || $link.is( ":jqmData(ajax='false')" ) || $link.is( "[target]" ), + + // Some embedded browsers, like the web view in Phone Gap, allow cross-domain XHR + // requests if the document doing the request was loaded via the file:// protocol. + // This is usually to allow the application to "phone home" and fetch app specific + // data. We normally let the browser handle external/cross-domain urls, but if the + // allowCrossDomainPages option is true, we will allow cross-domain http/https + // requests to go through our page loading logic. + isCrossDomainPageLoad = ( $.mobile.allowCrossDomainPages && documentUrl.protocol === "file:" && href.search( /^https?:/ ) != -1 ), + + //check for protocol or rel and its not an embedded page + //TODO overlap in logic from isExternal, rel=external check should be + // moved into more comprehensive isExternalLink + isExternal = useDefaultUrlHandling || ( path.isExternal( href ) && !isCrossDomainPageLoad ); + + if( isExternal ) { + httpCleanup(); + //use default click handling + return; + } + + //use ajax + var transition = $link.jqmData( "transition" ), + direction = $link.jqmData( "direction" ), + reverse = ( direction && direction === "reverse" ) || + // deprecated - remove by 1.0 + $link.jqmData( "back" ), + + //this may need to be more specific as we use data-rel more + role = $link.attr( "data-" + $.mobile.ns + "rel" ) || undefined; + + $.mobile.changePage( href, { transition: transition, reverse: reverse, role: role } ); + event.preventDefault(); + }); + + //prefetch pages when anchors with data-prefetch are encountered + $( document ).delegate( ".ui-page", "pageshow.prefetch", function() { + var urls = []; + $( this ).find( "a:jqmData(prefetch)" ).each(function(){ + var $link = $(this), + url = $link.attr( "href" ); + + if ( url && $.inArray( url, urls ) === -1 ) { + urls.push( url ); + + $.mobile.loadPage( url, {role: $link.attr("data-" + $.mobile.ns + "rel")} ); + } + }); + }); + + $.mobile._handleHashChange = function( hash ) { + //find first page via hash + var to = path.stripHash( hash ), + //transition is false if it's the first page, undefined otherwise (and may be overridden by default) + transition = $.mobile.urlHistory.stack.length === 0 ? "none" : undefined, + + // default options for the changPage calls made after examining the current state + // of the page and the hash + changePageOptions = { + transition: transition, + changeHash: false, + fromHashChange: true + }; + + //if listening is disabled (either globally or temporarily), or it's a dialog hash + if( !$.mobile.hashListeningEnabled || urlHistory.ignoreNextHashChange ) { + urlHistory.ignoreNextHashChange = false; + return; + } + + // special case for dialogs + if( urlHistory.stack.length > 1 && to.indexOf( dialogHashKey ) > -1 ) { + + // If current active page is not a dialog skip the dialog and continue + // in the same direction + if(!$.mobile.activePage.is( ".ui-dialog" )) { + //determine if we're heading forward or backward and continue accordingly past + //the current dialog + urlHistory.directHashChange({ + currentUrl: to, + isBack: function() { window.history.back(); }, + isForward: function() { window.history.forward(); } + }); + + // prevent changePage() + return; + } else { + // if the current active page is a dialog and we're navigating + // to a dialog use the dialog objected saved in the stack + urlHistory.directHashChange({ + currentUrl: to, + + // regardless of the direction of the history change + // do the following + either: function( isBack ) { + var active = $.mobile.urlHistory.getActive(); + + to = active.pageUrl; + + // make sure to set the role, transition and reversal + // as most of this is lost by the domCache cleaning + $.extend( changePageOptions, { + role: active.role, + transition: active.transition, + reverse: isBack + }); + } + }); + } + } + + //if to is defined, load it + if ( to ) { + // At this point, 'to' can be one of 3 things, a cached page element from + // a history stack entry, an id, or site-relative/absolute URL. If 'to' is + // an id, we need to resolve it against the documentBase, not the location.href, + // since the hashchange could've been the result of a forward/backward navigation + // that crosses from an external page/dialog to an internal page/dialog. + to = ( typeof to === "string" && !path.isPath( to ) ) ? ( path.makeUrlAbsolute( '#' + to, documentBase ) ) : to; + $.mobile.changePage( to, changePageOptions ); + } else { + //there's no hash, go to the first page in the dom + $.mobile.changePage( $.mobile.firstPage, changePageOptions ); + } + }; + + //hashchange event handler + $window.bind( "hashchange", function( e, triggered ) { + $.mobile._handleHashChange( location.hash ); + }); + + //set page min-heights to be device specific + $( document ).bind( "pageshow", resetActivePageHeight ); + $( window ).bind( "throttledresize", resetActivePageHeight ); + + };//_registerInternalEvents callback + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navigation.pushstate.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navigation.pushstate.js new file mode 100644 index 0000000..85a524e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.navigation.pushstate.js @@ -0,0 +1,163 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: history.pushState support, layered on top of hashchange. +//>>label: Pushstate Support +//>>group: Navigation + +define( [ "jquery", "./jquery.mobile.navigation", "../external/requirejs/depend!./jquery.mobile.hashchange[jquery]" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +( function( $, window ) { + // For now, let's Monkeypatch this onto the end of $.mobile._registerInternalEvents + // Scope self to pushStateHandler so we can reference it sanely within the + // methods handed off as event handlers + var pushStateHandler = {}, + self = pushStateHandler, + $win = $( window ), + url = $.mobile.path.parseUrl( location.href ); + + $.extend( pushStateHandler, { + // TODO move to a path helper, this is rather common functionality + initialFilePath: (function() { + return url.pathname + url.search; + })(), + + initialHref: url.hrefNoHash, + + state: function() { + return { + hash: location.hash || "#" + self.initialFilePath, + title: document.title, + + // persist across refresh + initialHref: self.initialHref + }; + }, + + resetUIKeys: function( url ) { + var dialog = $.mobile.dialogHashKey, + subkey = "&" + $.mobile.subPageUrlKey, + dialogIndex = url.indexOf( dialog ); + + if( dialogIndex > -1 ) { + url = url.slice( 0, dialogIndex ) + "#" + url.slice( dialogIndex ); + } else if( url.indexOf( subkey ) > -1 ) { + url = url.split( subkey ).join( "#" + subkey ); + } + + return url; + }, + + hashValueAfterReset: function( url ) { + var resetUrl = self.resetUIKeys( url ); + return $.mobile.path.parseUrl( resetUrl ).hash; + }, + + // TODO sort out a single barrier to hashchange functionality + nextHashChangePrevented: function( value ) { + $.mobile.urlHistory.ignoreNextHashChange = value; + self.onHashChangeDisabled = value; + }, + + // on hash change we want to clean up the url + // NOTE this takes place *after* the vanilla navigation hash change + // handling has taken place and set the state of the DOM + onHashChange: function( e ) { + // disable this hash change + if( self.onHashChangeDisabled ){ + return; + } + + var href, state, + hash = location.hash, + isPath = $.mobile.path.isPath( hash ), + resolutionUrl = isPath ? location.href : $.mobile.getDocumentUrl(); + + hash = isPath ? hash.replace( "#", "" ) : hash; + + + // propulate the hash when its not available + state = self.state(); + + // make the hash abolute with the current href + href = $.mobile.path.makeUrlAbsolute( hash, resolutionUrl ); + + if ( isPath ) { + href = self.resetUIKeys( href ); + } + + // replace the current url with the new href and store the state + // Note that in some cases we might be replacing an url with the + // same url. We do this anyways because we need to make sure that + // all of our history entries have a state object associated with + // them. This allows us to work around the case where window.history.back() + // is called to transition from an external page to an embedded page. + // In that particular case, a hashchange event is *NOT* generated by the browser. + // Ensuring each history entry has a state object means that onPopState() + // will always trigger our hashchange callback even when a hashchange event + // is not fired. + history.replaceState( state, document.title, href ); + }, + + // on popstate (ie back or forward) we need to replace the hash that was there previously + // cleaned up by the additional hash handling + onPopState: function( e ) { + var poppedState = e.originalEvent.state, + timeout, fromHash, toHash, hashChanged; + + // if there's no state its not a popstate we care about, eg chrome's initial popstate + if( poppedState ) { + // the active url in the history stack will still be from the previous state + // so we can use it to verify if a hashchange will be fired from the popstate + fromHash = self.hashValueAfterReset( $.mobile.urlHistory.getActive().url ); + + // the hash stored in the state popped off the stack will be our currenturl or + // the url to which we wish to navigate + toHash = self.hashValueAfterReset( poppedState.hash.replace("#", "") ); + + // if the hashes of the urls are different we must assume that the browser + // will fire a hashchange + hashChanged = fromHash !== toHash; + + // unlock hash handling once the hashchange caused be the popstate has fired + if( hashChanged ) { + $win.one( "hashchange.pushstate", function() { + self.nextHashChangePrevented( false ); + }); + } + + // enable hash handling for the the _handleHashChange call + self.nextHashChangePrevented( false ); + + // change the page based on the hash + $.mobile._handleHashChange( poppedState.hash ); + + // only prevent another hash change handling if a hash change will be fired + // by the browser + if( hashChanged ) { + // disable hash handling until one of the above timers fires + self.nextHashChangePrevented( true ); + } + } + }, + + init: function() { + $win.bind( "hashchange", self.onHashChange ); + + // Handle popstate events the occur through history changes + $win.bind( "popstate", self.onPopState ); + + // if there's no hash, we need to replacestate for returning to home + if ( location.hash === "" ) { + history.replaceState( self.state(), document.title, location.href ); + } + } + }); + + $( function() { + if( $.mobile.pushStateEnabled && $.support.pushState ){ + pushStateHandler.init(); + } + }); +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.nojs.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.nojs.js new file mode 100644 index 0000000..7137ebd --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.nojs.js @@ -0,0 +1,18 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Adds class to make elements hidden to A grade browsers +//>>label: “nojs” Classes +//>>group: Utilities + +define( [ "jquery" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$( document ).bind( "pagecreate create", function( e ){ + $( ":jqmData(role='nojs')", e.target ).addClass( "ui-nojs" ); + +}); + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js new file mode 100644 index 0000000..d2bd195 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js @@ -0,0 +1,63 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Basic page definition and formatting. +//>>label: Page Creation +//>>group: Core + +define( [ "jquery", "./jquery.mobile.widget" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$.widget( "mobile.page", $.mobile.widget, { + options: { + theme: "c", + domCache: false, + keepNativeDefault: ":jqmData(role='none'), :jqmData(role='nojs')" + }, + + _create: function() { + + var self = this; + + // if false is returned by the callbacks do not create the page + if( self._trigger( "beforecreate" ) === false ){ + return false; + } + + self.element + .attr( "tabindex", "0" ) + .addClass( "ui-page ui-body-" + self.options.theme ) + .bind( "pagebeforehide", function(){ + self.removeContainerBackground(); + } ) + .bind( "pagebeforeshow", function(){ + self.setContainerBackground(); + } ); + + }, + + removeContainerBackground: function(){ + $.mobile.pageContainer.removeClass( "ui-overlay-" + $.mobile.getInheritedTheme( this.element.parent() ) ); + }, + + // set the page container background to the page theme + setContainerBackground: function( theme ){ + if( this.options.theme ){ + $.mobile.pageContainer.addClass( "ui-overlay-" + ( theme || this.options.theme ) ); + } + }, + + keepNativeSelector: function() { + var options = this.options, + keepNativeDefined = options.keepNative && $.trim(options.keepNative); + + if( keepNativeDefined && options.keepNative !== options.keepNativeDefault ){ + return [options.keepNative, options.keepNativeDefault].join(", "); + } + + return options.keepNativeDefault; + } +}); +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js new file mode 100644 index 0000000..e0a718d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js @@ -0,0 +1,97 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Theming and layout of headers, footers, and content areas +//>>label: Page Sections +//>>group: Core + +define( [ "jquery", "./jquery.mobile.page", "./jquery.mobile.core", "./jquery.mobile.buttonMarkup" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$.mobile.page.prototype.options.backBtnText = "Back"; +$.mobile.page.prototype.options.addBackBtn = false; +$.mobile.page.prototype.options.backBtnTheme = null; +$.mobile.page.prototype.options.headerTheme = "a"; +$.mobile.page.prototype.options.footerTheme = "a"; +$.mobile.page.prototype.options.contentTheme = null; + +$( document ).delegate( ":jqmData(role='page'), :jqmData(role='dialog')", "pagecreate", function( e ) { + + var $page = $( this ), + o = $page.data( "page" ).options, + pageRole = $page.jqmData( "role" ), + pageTheme = o.theme; + + $( ":jqmData(role='header'), :jqmData(role='footer'), :jqmData(role='content')", this ) + .jqmEnhanceable() + .each(function() { + + var $this = $( this ), + role = $this.jqmData( "role" ), + theme = $this.jqmData( "theme" ), + contentTheme = theme || o.contentTheme || ( pageRole === "dialog" && pageTheme ), + $headeranchors, + leftbtn, + rightbtn, + backBtn; + + $this.addClass( "ui-" + role ); + + //apply theming and markup modifications to page,header,content,footer + if ( role === "header" || role === "footer" ) { + + var thisTheme = theme || ( role === "header" ? o.headerTheme : o.footerTheme ) || pageTheme; + + $this + //add theme class + .addClass( "ui-bar-" + thisTheme ) + // Add ARIA role + .attr( "role", role === "header" ? "banner" : "contentinfo" ); + + if( role === "header") { + // Right,left buttons + $headeranchors = $this.children( "a" ); + leftbtn = $headeranchors.hasClass( "ui-btn-left" ); + rightbtn = $headeranchors.hasClass( "ui-btn-right" ); + + leftbtn = leftbtn || $headeranchors.eq( 0 ).not( ".ui-btn-right" ).addClass( "ui-btn-left" ).length; + + rightbtn = rightbtn || $headeranchors.eq( 1 ).addClass( "ui-btn-right" ).length; + } + + // Auto-add back btn on pages beyond first view + if ( o.addBackBtn && + role === "header" && + $( ".ui-page" ).length > 1 && + $page.jqmData( "url" ) !== $.mobile.path.stripHash( location.hash ) && + !leftbtn ) { + + backBtn = $( "
                    "+ o.backBtnText +"" ) + // If theme is provided, override default inheritance + .attr( "data-"+ $.mobile.ns +"theme", o.backBtnTheme || thisTheme ) + .prependTo( $this ); + } + + // Page title + $this.children( "h1, h2, h3, h4, h5, h6" ) + .addClass( "ui-title" ) + // Regardless of h element number in src, it becomes h1 for the enhanced page + .attr({ + "role": "heading", + "aria-level": "1" + }); + + } else if ( role === "content" ) { + if ( contentTheme ) { + $this.addClass( "ui-body-" + ( contentTheme ) ); + } + + // Add ARIA role + $this.attr( "role", "main" ); + } + }); +}); + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.support.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.support.js new file mode 100644 index 0000000..58483b4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.support.js @@ -0,0 +1,168 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Assorted tests to qualify browsers by detecting features +//>>label: Support Tests +//>>group: Core +//>>required: true + +define( [ "jquery", "./jquery.mobile.media", "./jquery.mobile.core" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +var fakeBody = $( "" ).prependTo( "html" ), + fbCSS = fakeBody[ 0 ].style, + vendors = [ "Webkit", "Moz", "O" ], + webos = "palmGetResource" in window, //only used to rule out scrollTop + operamini = window.operamini && ({}).toString.call( window.operamini ) === "[object OperaMini]", + bb = window.blackberry; //only used to rule out box shadow, as it's filled opaque on BB + +// thx Modernizr +function propExists( prop ) { + var uc_prop = prop.charAt( 0 ).toUpperCase() + prop.substr( 1 ), + props = ( prop + " " + vendors.join( uc_prop + " " ) + uc_prop ).split( " " ); + + for ( var v in props ){ + if ( fbCSS[ props[ v ] ] !== undefined ) { + return true; + } + } +} + +function validStyle( prop, value, check_vend ) { + var div = document.createElement('div'), + uc = function( txt ) { + return txt.charAt( 0 ).toUpperCase() + txt.substr( 1 ) + }, + vend_pref = function( vend ) { + return "-" + vend.charAt( 0 ).toLowerCase() + vend.substr( 1 ) + "-"; + }, + check_style = function( vend ) { + var vend_prop = vend_pref( vend ) + prop + ": " + value + ";", + uc_vend = uc( vend ), + propStyle = uc_vend + uc( prop ); + + div.setAttribute( "style", vend_prop ); + + if( !!div.style[ propStyle ] ) { + ret = true; + } + }, + check_vends = check_vend ? [ check_vend ] : vendors, + ret; + + for( i = 0; i < check_vends.length; i++ ) { + check_style( check_vends[i] ); + } + return !!ret; +} + +// Thanks to Modernizr src for this test idea. `perspective` check is limited to Moz to prevent a false positive for 3D transforms on Android. +function transform3dTest() { + var prop = "transform-3d"; + return validStyle( 'perspective', '10px', 'moz' ) || $.mobile.media( "(-" + vendors.join( "-" + prop + "),(-" ) + "-" + prop + "),(" + prop + ")" ); +} + +// Test for dynamic-updating base tag support ( allows us to avoid href,src attr rewriting ) +function baseTagTest() { + var fauxBase = location.protocol + "//" + location.host + location.pathname + "ui-dir/", + base = $( "head base" ), + fauxEle = null, + href = "", + link, rebase; + + if ( !base.length ) { + base = fauxEle = $( "", { "href": fauxBase }).appendTo( "head" ); + } else { + href = base.attr( "href" ); + } + + link = $( "" ).prependTo( fakeBody ); + rebase = link[ 0 ].href; + base[ 0 ].href = href || location.pathname; + + if ( fauxEle ) { + fauxEle.remove(); + } + return rebase.indexOf( fauxBase ) === 0; +} + + +// non-UA-based IE version check by James Padolsey, modified by jdalton - from http://gist.github.com/527683 +// allows for inclusion of IE 6+, including Windows Mobile 7 +$.extend( $.mobile, { browser: {} } ); +$.mobile.browser.ie = (function() { + var v = 3, + div = document.createElement( "div" ), + a = div.all || []; + + // added {} to silence closure compiler warnings. registering my dislike of all things + // overly clever here for future reference + while ( div.innerHTML = "", a[ 0 ] ){}; + + return v > 4 ? v : !v; +})(); + + +$.extend( $.support, { + orientation: "orientation" in window && "onorientationchange" in window, + touch: "ontouchend" in document, + cssTransitions: "WebKitTransitionEvent" in window || validStyle( 'transition', 'height 100ms linear' ), + pushState: "pushState" in history && "replaceState" in history, + mediaquery: $.mobile.media( "only all" ), + cssPseudoElement: !!propExists( "content" ), + touchOverflow: !!propExists( "overflowScrolling" ), + cssTransform3d: transform3dTest(), + boxShadow: !!propExists( "boxShadow" ) && !bb, + scrollTop: ( "pageXOffset" in window || "scrollTop" in document.documentElement || "scrollTop" in fakeBody[ 0 ] ) && !webos && !operamini, + dynamicBaseTag: baseTagTest() +}); + +fakeBody.remove(); + + +// $.mobile.ajaxBlacklist is used to override ajaxEnabled on platforms that have known conflicts with hash history updates (BB5, Symbian) +// or that generally work better browsing in regular http for full page refreshes (Opera Mini) +// Note: This detection below is used as a last resort. +// We recommend only using these detection methods when all other more reliable/forward-looking approaches are not possible +var nokiaLTE7_3 = (function(){ + + var ua = window.navigator.userAgent; + + //The following is an attempt to match Nokia browsers that are running Symbian/s60, with webkit, version 7.3 or older + return ua.indexOf( "Nokia" ) > -1 && + ( ua.indexOf( "Symbian/3" ) > -1 || ua.indexOf( "Series60/5" ) > -1 ) && + ua.indexOf( "AppleWebKit" ) > -1 && + ua.match( /(BrowserNG|NokiaBrowser)\/7\.[0-3]/ ); +})(); + +// Support conditions that must be met in order to proceed +// default enhanced qualifications are media query support OR IE 7+ +$.mobile.gradeA = function(){ + return $.support.mediaquery || $.mobile.browser.ie && $.mobile.browser.ie >= 7; +}; + +$.mobile.ajaxBlacklist = + // BlackBerry browsers, pre-webkit + window.blackberry && !window.WebKitPoint || + // Opera Mini + operamini || + // Symbian webkits pre 7.3 + nokiaLTE7_3; + +// Lastly, this workaround is the only way we've found so far to get pre 7.3 Symbian webkit devices +// to render the stylesheets when they're referenced before this script, as we'd recommend doing. +// This simply reappends the CSS in place, which for some reason makes it apply +if ( nokiaLTE7_3 ) { + $(function() { + $( "head link[rel='stylesheet']" ).attr( "rel", "alternate stylesheet" ).attr( "rel", "stylesheet" ); + }); +} + +// For ruling out shadows via css +if ( !$.support.boxShadow ) { + $( "html" ).addClass( "ui-mobile-nosupport-boxshadow" ); +} + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.flip.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.flip.js new file mode 100644 index 0000000..143c6c2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.flip.js @@ -0,0 +1,20 @@ +/* +* fallback transition for flip in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Flip Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.flip.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +$.mobile.transitionFallbacks.flip = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.flow.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.flow.js new file mode 100644 index 0000000..2d1a2d9 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.flow.js @@ -0,0 +1,20 @@ +/* +* fallback transition for flow in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Flow Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.flow.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +$.mobile.transitionFallbacks.flow = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js new file mode 100644 index 0000000..9a099dc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js @@ -0,0 +1,153 @@ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animated page change core logic and sequence handlers +//>>label: Transition Core +//>>group: Transitions +//>>css: ../css/themes/default/jquery.mobile.theme.css, ../css/structure/jquery.mobile.transition.css + +define( [ "jquery", "./jquery.mobile.core" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +var createHandler = function( sequential ){ + + // Default to sequential + if( sequential === undefined ){ + sequential = true; + } + + return function( name, reverse, $to, $from ) { + + var deferred = new $.Deferred(), + reverseClass = reverse ? " reverse" : "", + active = $.mobile.urlHistory.getActive(), + toScroll = active.lastScroll || $.mobile.defaultHomeScroll, + screenHeight = $.mobile.getScreenHeight(), + maxTransitionOverride = $.mobile.maxTransitionWidth !== false && $( window ).width() > $.mobile.maxTransitionWidth, + none = !$.support.cssTransitions || maxTransitionOverride || !name || name === "none", + toggleViewportClass = function(){ + $.mobile.pageContainer.toggleClass( "ui-mobile-viewport-transitioning viewport-" + name ); + }, + scrollPage = function(){ + // By using scrollTo instead of silentScroll, we can keep things better in order + // Just to be precautios, disable scrollstart listening like silentScroll would + $.event.special.scrollstart.enabled = false; + + window.scrollTo( 0, toScroll ); + + // reenable scrollstart listening like silentScroll would + setTimeout(function() { + $.event.special.scrollstart.enabled = true; + }, 150 ); + }, + cleanFrom = function(){ + $from + .removeClass( $.mobile.activePageClass + " out in reverse " + name ) + .height( "" ); + }, + startOut = function(){ + // if it's not sequential, call the doneOut transition to start the TO page animating in simultaneously + if( !sequential ){ + doneOut(); + } + else { + $from.animationComplete( doneOut ); + } + + // Set the from page's height and start it transitioning out + // Note: setting an explicit height helps eliminate tiling in the transitions + $from + .height( screenHeight + $(window ).scrollTop() ) + .addClass( name + " out" + reverseClass ); + }, + + doneOut = function() { + + if ( $from && sequential ) { + cleanFrom(); + } + + startIn(); + }, + + startIn = function(){ + + $to.addClass( $.mobile.activePageClass ); + + // Send focus to page as it is now display: block + $.mobile.focusPage( $to ); + + // Set to page height + $to.height( screenHeight + toScroll ); + + scrollPage(); + + if( !none ){ + $to.animationComplete( doneIn ); + } + + $to.addClass( name + " in" + reverseClass ); + + if( none ){ + doneIn(); + } + + }, + + doneIn = function() { + + if ( !sequential ) { + + if( $from ){ + cleanFrom(); + } + } + + $to + .removeClass( "out in reverse " + name ) + .height( "" ); + + toggleViewportClass(); + + // In some browsers (iOS5), 3D transitions block the ability to scroll to the desired location during transition + // This ensures we jump to that spot after the fact, if we aren't there already. + if( $( window ).scrollTop() !== toScroll ){ + scrollPage(); + } + + deferred.resolve( name, reverse, $to, $from, true ); + }; + + toggleViewportClass(); + + if ( $from && !none ) { + startOut(); + } + else { + doneOut(); + } + + return deferred.promise(); + }; +} + +// generate the handlers from the above +var sequentialHandler = createHandler(), + simultaneousHandler = createHandler( false ); + +// Make our transition handler the public default. +$.mobile.defaultTransitionHandler = sequentialHandler; + +//transition handler dictionary for 3rd party transitions +$.mobile.transitionHandlers = { + "default": $.mobile.defaultTransitionHandler, + "sequential": sequentialHandler, + "simultaneous": simultaneousHandler +}; + +$.mobile.transitionFallbacks = {}; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.pop.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.pop.js new file mode 100644 index 0000000..bbb8f78 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.pop.js @@ -0,0 +1,20 @@ +/* +* fallback transition for pop in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Pop Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.pop.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +$.mobile.transitionFallbacks.pop = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slide.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slide.js new file mode 100644 index 0000000..60fda61 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slide.js @@ -0,0 +1,24 @@ +/* +* fallback transition for slide in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Slide Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.slide.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +// Use the simultaneous transition handler for slide transitions +$.mobile.transitionHandlers.slide = $.mobile.transitionHandlers.simultaneous; + +// Set the slide transition's fallback to "fade" +$.mobile.transitionFallbacks.slide = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slidedown.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slidedown.js new file mode 100644 index 0000000..cfbbac2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slidedown.js @@ -0,0 +1,20 @@ +/* +* fallback transition for slidedown in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Slidedown Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.slidedown.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +$.mobile.transitionFallbacks.slidedown = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slidefade.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slidefade.js new file mode 100644 index 0000000..17c47dc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slidefade.js @@ -0,0 +1,21 @@ +/* +* fallback transition for slidefade in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Slidefade Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.slidefade.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +// Set the slide transition's fallback to "fade" +$.mobile.transitionFallbacks.slidefade = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slideup.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slideup.js new file mode 100644 index 0000000..aac741f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.slideup.js @@ -0,0 +1,20 @@ +/* +* fallback transition for slideup in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Slideup Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.slideup.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +$.mobile.transitionFallbacks.slideup = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.turn.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.turn.js new file mode 100644 index 0000000..5a30b1f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.turn.js @@ -0,0 +1,20 @@ +/* +* fallback transition for turn in non-3D supporting browsers (which tend to handle complex transitions poorly in general +*/ + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Animation styles and fallback transition definition for non-3D supporting browsers +//>>label: Turn Transition +//>>group: Transitions +//>>css: ../css/structure/jquery.mobile.transition.turn.css + +define( [ "jquery", "./jquery.mobile.transition" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, undefined ) { + +$.mobile.transitionFallbacks.turn = "fade"; + +})( jQuery, this ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js new file mode 100644 index 0000000..6e9b504 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js @@ -0,0 +1,510 @@ + +// This plugin is an experiment for abstracting away the touch and mouse +// events so that developers don't have to worry about which method of input +// the device their document is loaded on supports. +// +// The idea here is to allow the developer to register listeners for the +// basic mouse events, such as mousedown, mousemove, mouseup, and click, +// and the plugin will take care of registering the correct listeners +// behind the scenes to invoke the listener at the fastest possible time +// for that device, while still retaining the order of event firing in +// the traditional mouse environment, should multiple handlers be registered +// on the same element for different events. +// +// The current version exposes the following virtual events to jQuery bind methods: +// "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel" + +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Normalizes touch/mouse events. +//>>label: Virtual Mouse (vmouse) Bindings +//>>group: Core + +define( [ "jquery" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, window, document, undefined ) { + +var dataPropertyName = "virtualMouseBindings", + touchTargetPropertyName = "virtualTouchID", + virtualEventNames = "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split( " " ), + touchEventProps = "clientX clientY pageX pageY screenX screenY".split( " " ), + mouseHookProps = $.event.mouseHooks ? $.event.mouseHooks.props : [], + mouseEventProps = $.event.props.concat( mouseHookProps ), + activeDocHandlers = {}, + resetTimerID = 0, + startX = 0, + startY = 0, + didScroll = false, + clickBlockList = [], + blockMouseTriggers = false, + blockTouchTriggers = false, + eventCaptureSupported = "addEventListener" in document, + $document = $( document ), + nextTouchID = 1, + lastTouchID = 0; + +$.vmouse = { + moveDistanceThreshold: 10, + clickDistanceThreshold: 10, + resetTimerDuration: 1500 +}; + +function getNativeEvent( event ) { + + while ( event && typeof event.originalEvent !== "undefined" ) { + event = event.originalEvent; + } + return event; +} + +function createVirtualEvent( event, eventType ) { + + var t = event.type, + oe, props, ne, prop, ct, touch, i, j; + + event = $.Event(event); + event.type = eventType; + + oe = event.originalEvent; + props = $.event.props; + + // addresses separation of $.event.props in to $.event.mouseHook.props and Issue 3280 + // https://github.com/jquery/jquery-mobile/issues/3280 + if ( t.search( /^(mouse|click)/ ) > -1 ) { + props = mouseEventProps; + } + + // copy original event properties over to the new event + // this would happen if we could call $.event.fix instead of $.Event + // but we don't have a way to force an event to be fixed multiple times + if ( oe ) { + for ( i = props.length, prop; i; ) { + prop = props[ --i ]; + event[ prop ] = oe[ prop ]; + } + } + + // make sure that if the mouse and click virtual events are generated + // without a .which one is defined + if ( t.search(/mouse(down|up)|click/) > -1 && !event.which ){ + event.which = 1; + } + + if ( t.search(/^touch/) !== -1 ) { + ne = getNativeEvent( oe ); + t = ne.touches; + ct = ne.changedTouches; + touch = ( t && t.length ) ? t[0] : ( (ct && ct.length) ? ct[ 0 ] : undefined ); + + if ( touch ) { + for ( j = 0, len = touchEventProps.length; j < len; j++){ + prop = touchEventProps[ j ]; + event[ prop ] = touch[ prop ]; + } + } + } + + return event; +} + +function getVirtualBindingFlags( element ) { + + var flags = {}, + b, k; + + while ( element ) { + + b = $.data( element, dataPropertyName ); + + for ( k in b ) { + if ( b[ k ] ) { + flags[ k ] = flags.hasVirtualBinding = true; + } + } + element = element.parentNode; + } + return flags; +} + +function getClosestElementWithVirtualBinding( element, eventType ) { + var b; + while ( element ) { + + b = $.data( element, dataPropertyName ); + + if ( b && ( !eventType || b[ eventType ] ) ) { + return element; + } + element = element.parentNode; + } + return null; +} + +function enableTouchBindings() { + blockTouchTriggers = false; +} + +function disableTouchBindings() { + blockTouchTriggers = true; +} + +function enableMouseBindings() { + lastTouchID = 0; + clickBlockList.length = 0; + blockMouseTriggers = false; + + // When mouse bindings are enabled, our + // touch bindings are disabled. + disableTouchBindings(); +} + +function disableMouseBindings() { + // When mouse bindings are disabled, our + // touch bindings are enabled. + enableTouchBindings(); +} + +function startResetTimer() { + clearResetTimer(); + resetTimerID = setTimeout(function(){ + resetTimerID = 0; + enableMouseBindings(); + }, $.vmouse.resetTimerDuration ); +} + +function clearResetTimer() { + if ( resetTimerID ){ + clearTimeout( resetTimerID ); + resetTimerID = 0; + } +} + +function triggerVirtualEvent( eventType, event, flags ) { + var ve; + + if ( ( flags && flags[ eventType ] ) || + ( !flags && getClosestElementWithVirtualBinding( event.target, eventType ) ) ) { + + ve = createVirtualEvent( event, eventType ); + + $( event.target).trigger( ve ); + } + + return ve; +} + +function mouseEventCallback( event ) { + var touchID = $.data(event.target, touchTargetPropertyName); + + if ( !blockMouseTriggers && ( !lastTouchID || lastTouchID !== touchID ) ){ + var ve = triggerVirtualEvent( "v" + event.type, event ); + if ( ve ) { + if ( ve.isDefaultPrevented() ) { + event.preventDefault(); + } + if ( ve.isPropagationStopped() ) { + event.stopPropagation(); + } + if ( ve.isImmediatePropagationStopped() ) { + event.stopImmediatePropagation(); + } + } + } +} + +function handleTouchStart( event ) { + + var touches = getNativeEvent( event ).touches, + target, flags; + + if ( touches && touches.length === 1 ) { + + target = event.target; + flags = getVirtualBindingFlags( target ); + + if ( flags.hasVirtualBinding ) { + + lastTouchID = nextTouchID++; + $.data( target, touchTargetPropertyName, lastTouchID ); + + clearResetTimer(); + + disableMouseBindings(); + didScroll = false; + + var t = getNativeEvent( event ).touches[ 0 ]; + startX = t.pageX; + startY = t.pageY; + + triggerVirtualEvent( "vmouseover", event, flags ); + triggerVirtualEvent( "vmousedown", event, flags ); + } + } +} + +function handleScroll( event ) { + if ( blockTouchTriggers ) { + return; + } + + if ( !didScroll ) { + triggerVirtualEvent( "vmousecancel", event, getVirtualBindingFlags( event.target ) ); + } + + didScroll = true; + startResetTimer(); +} + +function handleTouchMove( event ) { + if ( blockTouchTriggers ) { + return; + } + + var t = getNativeEvent( event ).touches[ 0 ], + didCancel = didScroll, + moveThreshold = $.vmouse.moveDistanceThreshold; + didScroll = didScroll || + ( Math.abs(t.pageX - startX) > moveThreshold || + Math.abs(t.pageY - startY) > moveThreshold ), + flags = getVirtualBindingFlags( event.target ); + + if ( didScroll && !didCancel ) { + triggerVirtualEvent( "vmousecancel", event, flags ); + } + + triggerVirtualEvent( "vmousemove", event, flags ); + startResetTimer(); +} + +function handleTouchEnd( event ) { + if ( blockTouchTriggers ) { + return; + } + + disableTouchBindings(); + + var flags = getVirtualBindingFlags( event.target ), + t; + triggerVirtualEvent( "vmouseup", event, flags ); + + if ( !didScroll ) { + var ve = triggerVirtualEvent( "vclick", event, flags ); + if ( ve && ve.isDefaultPrevented() ) { + // The target of the mouse events that follow the touchend + // event don't necessarily match the target used during the + // touch. This means we need to rely on coordinates for blocking + // any click that is generated. + t = getNativeEvent( event ).changedTouches[ 0 ]; + clickBlockList.push({ + touchID: lastTouchID, + x: t.clientX, + y: t.clientY + }); + + // Prevent any mouse events that follow from triggering + // virtual event notifications. + blockMouseTriggers = true; + } + } + triggerVirtualEvent( "vmouseout", event, flags); + didScroll = false; + + startResetTimer(); +} + +function hasVirtualBindings( ele ) { + var bindings = $.data( ele, dataPropertyName ), + k; + + if ( bindings ) { + for ( k in bindings ) { + if ( bindings[ k ] ) { + return true; + } + } + } + return false; +} + +function dummyMouseHandler(){} + +function getSpecialEventObject( eventType ) { + var realType = eventType.substr( 1 ); + + return { + setup: function( data, namespace ) { + // If this is the first virtual mouse binding for this element, + // add a bindings object to its data. + + if ( !hasVirtualBindings( this ) ) { + $.data( this, dataPropertyName, {}); + } + + // If setup is called, we know it is the first binding for this + // eventType, so initialize the count for the eventType to zero. + var bindings = $.data( this, dataPropertyName ); + bindings[ eventType ] = true; + + // If this is the first virtual mouse event for this type, + // register a global handler on the document. + + activeDocHandlers[ eventType ] = ( activeDocHandlers[ eventType ] || 0 ) + 1; + + if ( activeDocHandlers[ eventType ] === 1 ) { + $document.bind( realType, mouseEventCallback ); + } + + // Some browsers, like Opera Mini, won't dispatch mouse/click events + // for elements unless they actually have handlers registered on them. + // To get around this, we register dummy handlers on the elements. + + $( this ).bind( realType, dummyMouseHandler ); + + // For now, if event capture is not supported, we rely on mouse handlers. + if ( eventCaptureSupported ) { + // If this is the first virtual mouse binding for the document, + // register our touchstart handler on the document. + + activeDocHandlers[ "touchstart" ] = ( activeDocHandlers[ "touchstart" ] || 0) + 1; + + if (activeDocHandlers[ "touchstart" ] === 1) { + $document.bind( "touchstart", handleTouchStart ) + .bind( "touchend", handleTouchEnd ) + + // On touch platforms, touching the screen and then dragging your finger + // causes the window content to scroll after some distance threshold is + // exceeded. On these platforms, a scroll prevents a click event from being + // dispatched, and on some platforms, even the touchend is suppressed. To + // mimic the suppression of the click event, we need to watch for a scroll + // event. Unfortunately, some platforms like iOS don't dispatch scroll + // events until *AFTER* the user lifts their finger (touchend). This means + // we need to watch both scroll and touchmove events to figure out whether + // or not a scroll happenens before the touchend event is fired. + + .bind( "touchmove", handleTouchMove ) + .bind( "scroll", handleScroll ); + } + } + }, + + teardown: function( data, namespace ) { + // If this is the last virtual binding for this eventType, + // remove its global handler from the document. + + --activeDocHandlers[ eventType ]; + + if ( !activeDocHandlers[ eventType ] ) { + $document.unbind( realType, mouseEventCallback ); + } + + if ( eventCaptureSupported ) { + // If this is the last virtual mouse binding in existence, + // remove our document touchstart listener. + + --activeDocHandlers[ "touchstart" ]; + + if ( !activeDocHandlers[ "touchstart" ] ) { + $document.unbind( "touchstart", handleTouchStart ) + .unbind( "touchmove", handleTouchMove ) + .unbind( "touchend", handleTouchEnd ) + .unbind( "scroll", handleScroll ); + } + } + + var $this = $( this ), + bindings = $.data( this, dataPropertyName ); + + // teardown may be called when an element was + // removed from the DOM. If this is the case, + // jQuery core may have already stripped the element + // of any data bindings so we need to check it before + // using it. + if ( bindings ) { + bindings[ eventType ] = false; + } + + // Unregister the dummy event handler. + + $this.unbind( realType, dummyMouseHandler ); + + // If this is the last virtual mouse binding on the + // element, remove the binding data from the element. + + if ( !hasVirtualBindings( this ) ) { + $this.removeData( dataPropertyName ); + } + } + }; +} + +// Expose our custom events to the jQuery bind/unbind mechanism. + +for ( var i = 0; i < virtualEventNames.length; i++ ){ + $.event.special[ virtualEventNames[ i ] ] = getSpecialEventObject( virtualEventNames[ i ] ); +} + +// Add a capture click handler to block clicks. +// Note that we require event capture support for this so if the device +// doesn't support it, we punt for now and rely solely on mouse events. +if ( eventCaptureSupported ) { + document.addEventListener( "click", function( e ){ + var cnt = clickBlockList.length, + target = e.target, + x, y, ele, i, o, touchID; + + if ( cnt ) { + x = e.clientX; + y = e.clientY; + threshold = $.vmouse.clickDistanceThreshold; + + // The idea here is to run through the clickBlockList to see if + // the current click event is in the proximity of one of our + // vclick events that had preventDefault() called on it. If we find + // one, then we block the click. + // + // Why do we have to rely on proximity? + // + // Because the target of the touch event that triggered the vclick + // can be different from the target of the click event synthesized + // by the browser. The target of a mouse/click event that is syntehsized + // from a touch event seems to be implementation specific. For example, + // some browsers will fire mouse/click events for a link that is near + // a touch event, even though the target of the touchstart/touchend event + // says the user touched outside the link. Also, it seems that with most + // browsers, the target of the mouse/click event is not calculated until the + // time it is dispatched, so if you replace an element that you touched + // with another element, the target of the mouse/click will be the new + // element underneath that point. + // + // Aside from proximity, we also check to see if the target and any + // of its ancestors were the ones that blocked a click. This is necessary + // because of the strange mouse/click target calculation done in the + // Android 2.1 browser, where if you click on an element, and there is a + // mouse/click handler on one of its ancestors, the target will be the + // innermost child of the touched element, even if that child is no where + // near the point of touch. + + ele = target; + + while ( ele ) { + for ( i = 0; i < cnt; i++ ) { + o = clickBlockList[ i ]; + touchID = 0; + + if ( ( ele === target && Math.abs( o.x - x ) < threshold && Math.abs( o.y - y ) < threshold ) || + $.data( ele, touchTargetPropertyName ) === o.touchID ) { + // XXX: We may want to consider removing matches from the block list + // instead of waiting for the reset timer to fire. + e.preventDefault(); + e.stopPropagation(); + return; + } + } + ele = ele.parentNode; + } + } + }, true); +} +})( jQuery, window, document ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.widget.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.widget.js new file mode 100644 index 0000000..37b6fdf --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.widget.js @@ -0,0 +1,75 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Widget factory extentions for mobile. +//>>label: Widget Factory +//>>group: Core +//>>css: ../css/themes/default/jquery.mobile.theme.css + +define( [ "jquery", "../external/requirejs/depend!./jquery.ui.widget[jquery]" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +(function( $, undefined ) { + +$.widget( "mobile.widget", { + // decorate the parent _createWidget to trigger `widgetinit` for users + // who wish to do post post `widgetcreate` alterations/additions + // + // TODO create a pull request for jquery ui to trigger this event + // in the original _createWidget + _createWidget: function() { + $.Widget.prototype._createWidget.apply( this, arguments ); + this._trigger( 'init' ); + }, + + _getCreateOptions: function() { + + var elem = this.element, + options = {}; + + $.each( this.options, function( option ) { + + var value = elem.jqmData( option.replace( /[A-Z]/g, function( c ) { + return "-" + c.toLowerCase(); + }) + ); + + if ( value !== undefined ) { + options[ option ] = value; + } + }); + + return options; + }, + + enhanceWithin: function( target, useKeepNative ) { + this.enhance( $( this.options.initSelector, $( target )), useKeepNative ); + }, + + enhance: function( targets, useKeepNative ) { + var page, keepNative, $widgetElements = $( targets ), self = this; + + // if ignoreContentEnabled is set to true the framework should + // only enhance the selected elements when they do NOT have a + // parent with the data-namespace-ignore attribute + $widgetElements = $.mobile.enhanceable( $widgetElements ); + + if ( useKeepNative && $widgetElements.length ) { + // TODO remove dependency on the page widget for the keepNative. + // Currently the keepNative value is defined on the page prototype so + // the method is as well + page = $.mobile.closestPageData( $widgetElements ); + keepNative = (page && page.keepNativeSelector()) || ""; + + $widgetElements = $widgetElements.not( keepNative ); + } + + $widgetElements[ this.widgetName ](); + }, + + raise: function( msg ) { + throw "Widget [" + this.widgetName + "]: " + msg; + } +}); + +})( jQuery ); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.zoom.iosorientationfix.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.zoom.iosorientationfix.js new file mode 100644 index 0000000..846f546 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.zoom.iosorientationfix.js @@ -0,0 +1,44 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Fixes the orientation change bug in iOS when switching between landspace and portrait +//>>label: iOS Orientation Change Fix +//>>group: Utilities + +define( [ "jquery", "./jquery.mobile.core", "./jquery.mobile.zoom" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +( function( $, window ) { + + // This fix addresses an iOS bug, so return early if the UA claims it's something else. + if( !(/iPhone|iPad|iPod/.test( navigator.platform ) && navigator.userAgent.indexOf( "AppleWebKit" ) > -1 ) ){ + return; + } + + var zoom = $.mobile.zoom, + evt, x, y, z, aig; + + function checkTilt( e ){ + evt = e.originalEvent; + aig = evt.accelerationIncludingGravity; + + x = Math.abs( aig.x ); + y = Math.abs( aig.y ); + z = Math.abs( aig.z ); + + // If portrait orientation and in one of the danger zones + if( !window.orientation && ( x > 7 || ( ( z > 6 && y < 8 || z < 8 && y > 6 ) && x > 5 ) ) ){ + if( zoom.enabled ){ + zoom.disable(); + } + } + else if( !zoom.enabled ){ + zoom.enable(); + } + } + + $( window ) + .bind( "orientationchange.iosorientationfix", zoom.enable ) + .bind( "devicemotion.iosorientationfix", checkTilt ); + +}( jQuery, this )); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.zoom.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.zoom.js new file mode 100644 index 0000000..171c4d5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.zoom.js @@ -0,0 +1,43 @@ +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +//>>description: Utility methods for enabling and disabling user scaling (pinch zoom) +//>>label: Zoom Handling +//>>group: Utilities + +define( [ "jquery", "./jquery.mobile.core" ], function( $ ) { +//>>excludeEnd("jqmBuildExclude"); +( function( $ ) { + var meta = $( "meta[name=viewport]" ), + initialContent = meta.attr( "content" ), + disabledZoom = initialContent + ",maximum-scale=1, user-scalable=no", + enabledZoom = initialContent + ",maximum-scale=10, user-scalable=yes", + disabledInitially = /(user-scalable[\s]*=[\s]*no)|(maximum-scale[\s]*=[\s]*1)[$,\s]/.test( initialContent ); + + $.mobile.zoom = $.extend( {}, { + enabled: !disabledInitially, + locked: false, + disable: function( lock ) { + if( !disabledInitially && !$.mobile.zoom.locked ){ + meta.attr( "content", disabledZoom ); + $.mobile.zoom.enabled = false; + $.mobile.zoom.locked = lock || false; + } + }, + enable: function( unlock ) { + if( !disabledInitially && ( !$.mobile.zoom.locked || unlock === true ) ){ + meta.attr( "content", enabledZoom ); + $.mobile.zoom.enabled = true; + $.mobile.zoom.locked = false; + } + }, + restore: function() { + if( !disabledInitially ){ + meta.attr( "content", initialContent ); + $.mobile.zoom.enabled = true; + } + } + }); + +}( jQuery )); +//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); +}); +//>>excludeEnd("jqmBuildExclude"); diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.tag.inserter.js b/libs/js/jquery-mobile-1.1.0/js/jquery.tag.inserter.js new file mode 100644 index 0000000..fb81544 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/js/jquery.tag.inserter.js @@ -0,0 +1,31 @@ +(function() { + // Insert a script tag pointing at the desired version of jQuery + + // Get the version from the url + var jqueryRE = /[\\?&]jquery=([^&#]*)/, + results = jqueryRE.exec( location.search ), + version = "", + jq, + myScriptTag = document.getElementsByTagName( "script" )[document.getElementsByTagName( "script" ).length - 1], + baseUrl = myScriptTag.src.replace( /(.*)\/.*$/, "$1/" ), + url = baseUrl + "jquery-1.7.1.js"; + + if( results ) { + version = decodeURIComponent(results[results.length - 1].replace(/\+/g, " ")); + } + + switch( version ) { + case "1.6.4": + url = baseUrl + "jquery-1.6.4.js"; + break; + case "git": + url = "http://code.jquery.com/jquery-git.js"; + break; + } + + document.write( "" ); + + if ( parseInt( version.replace( /\./g, "" ), 10 ) < 170 && window.define && window.define.amd ) { + document.write( '' ); + } +}()); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.ui.widget.js b/libs/js/jquery-mobile-1.1.0/js/jquery.ui.widget.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/js/jquery.ui.widget.js rename to libs/js/jquery-mobile-1.1.0/js/jquery.ui.widget.js diff --git a/libs/js/jquery-mobile-1.1.0/tests/functional/addrbar.html b/libs/js/jquery-mobile-1.1.0/tests/functional/addrbar.html new file mode 100644 index 0000000..ebe18df --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/functional/addrbar.html @@ -0,0 +1,50 @@ + + + + + + jQuery Mobile: Event Logger + + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/functional/button-markup.html b/libs/js/jquery-mobile-1.1.0/tests/functional/button-markup.html new file mode 100644 index 0000000..cbcaa35 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/functional/button-markup.html @@ -0,0 +1,131 @@ + + + + + + jQuery Mobile Button Markup Tester + + + + + + + + + +
                    +
                    +

                    jQuery Mobile Widget Option Tester

                    +
                    +
                    + Sample Link + + + + + +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + +
                    +
                    + +
                    + +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/functional/eventlogger.html b/libs/js/jquery-mobile-1.1.0/tests/functional/eventlogger.html new file mode 100644 index 0000000..1486f2e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/functional/eventlogger.html @@ -0,0 +1,40 @@ + + + + + + jQuery Mobile: Event Logger + + + + + + + + + + +
                    +
                    +

                    Event Logger

                    +
                    + +
                    +

                    Touch events on this page will log out below, prepending to the top as they arrive.

                    + +
                      + +
                    + +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/functional/gridlayout.html b/libs/js/jquery-mobile-1.1.0/tests/functional/gridlayout.html new file mode 100644 index 0000000..286386a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/functional/gridlayout.html @@ -0,0 +1,67 @@ + + + + + jQuery Mobile: Grid Layout + + + + + + + + + + +
                    +
                    +

                    Grid Layout

                    +
                    + +
                    +

                    Touch events on this page will log out below, prepending to the top as they arrive.

                    + +
                    +
                    + Button 1 +
                    +
                    + Button 2 +
                    +
                    + Button 3 +
                    +
                    + Button 4 +
                    +
                    + Button 5 +
                    +
                    + + Show all button + +
                      + +
                    + +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/functional/orientation.html b/libs/js/jquery-mobile-1.1.0/tests/functional/orientation.html new file mode 100644 index 0000000..9052490 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/functional/orientation.html @@ -0,0 +1,46 @@ + + + + + + jQuery Mobile: Orientation + + + + + + + + + +
                    +

                    Orientation Test

                    +
                    +

                    The current device orientation is displayed below. It should *ALWAYS* be correct!

                    +
                    Orientation Not Supported!
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/jquery.testHelper.js b/libs/js/jquery-mobile-1.1.0/tests/jquery.testHelper.js new file mode 100644 index 0000000..b010263 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/jquery.testHelper.js @@ -0,0 +1,246 @@ +/* + * mobile support unit tests + */ + +(function( $ ) { + $.testHelper = { + // This function takes sets of files to load asynchronously. Each set will be loaded after + // the previous set has completed loading. That is, each require and it's dependencies in a + // set will be loaded asynchronously, but each set will be run in serial. + asyncLoad: function( seq ) { + require({ + baseUrl: "../../../js" + }); + + function loadSeq( seq, i ){ + if( !seq[i] ){ + $( document ).ready( function() { + var $fixture = $( '#qunit-fixture' ); + if ( $fixture.length ) { + QUnit.config.fixture = $fixture.html(); + } + QUnit.start(); + }); + return; + } + + require( seq[i], function() { + loadSeq(seq, i + 1); + }); + } + + // stop qunit from running the tests until everything is in the page + QUnit.config.autostart = false; + + loadSeq( seq, 0 ); + }, + + excludeFileProtocol: function(callback){ + var message = "Tests require script reload and cannot be run via file: protocol"; + + if (location.protocol == "file:") { + test(message, function(){ + ok(false, message); + }); + } else { + callback(); + } + }, + + // TODO prevent test suite loads when the browser doesn't support push state + // and push-state false is defined. + setPushState: function() { + if( $.support.pushState && location.search.indexOf( "push-state" ) >= 0 ) { + $.support.pushState = false; + } + }, + + reloads: {}, + + reloadModule: function(libName){ + var deferred = $.Deferred(), + context; + + // where a module loader isn't defined use the old way + if( !window.require ) { + this.reloadLib( libName ); + deferred.resolve(); + return deferred; + } + + if(this.reloads[libName] === undefined) { + this.reloads[libName] = { + count: 0 + }; + } + + //Clear internal cache of module inside of require + context = require.s.contexts._; + delete context.defined[libName]; + delete context.specified[libName]; + delete context.loaded[libName]; + delete context.urlFetched[require.toUrl(libName + '.js')]; + + require( + { + baseUrl: "../../../js" + }, [libName], + function() { + deferred.resolve(); + } + ); + + return deferred; + }, + + reloadLib: function(libName){ + if(this.reloads[libName] === undefined) { + this.reloads[libName] = { + lib: $("script[src$='" + libName + "']"), + count: 0 + }; + } + + var lib = this.reloads[libName].lib.clone(), + src = lib.attr('src'); + + //NOTE append "cache breaker" to force reload + lib.attr('src', src + "?" + this.reloads[libName].count++); + $("body").append(lib); + }, + + rerunQunit: function(){ + var self = this; + QUnit.init(); + $("script:not([src*='.\/'])").each(function(i, elem){ + var src = elem.src.split("/"); + self.reloadLib(src[src.length - 1]); + }); + QUnit.start(); + }, + + alterExtend: function(extraExtension){ + var extendFn = $.extend; + + $.extend = function(object, extension){ + // NOTE extend the object as normal + var result = extendFn.apply(this, arguments); + + // NOTE add custom extensions + result = extendFn(result, extraExtension); + return result; + }; + }, + + hideActivePageWhenComplete: function() { + if( $('#qunit-testresult').length > 0 ) { + $('.ui-page-active').css('display', 'none'); + } else { + setTimeout($.testHelper.hideActivePageWhenComplete, 500); + } + }, + + openPage: function(hash){ + location.href = location.href.split('#')[0] + hash; + }, + + sequence: function(fns, interval){ + $.each(fns, function(i, fn){ + setTimeout(fn, i * interval); + }); + }, + + pageSequence: function( fns ){ + this.eventSequence( "pagechange", fns ); + }, + + eventSequence: function( event, fns, timedOut ){ + var seq = []; + $.each(fns, function( i, fn ) { + seq.push( fn ); + if( i !== fns.length - 1) seq.push( event ); + }); + + this.eventCascade( seq ); + }, + + eventCascade: function( sequence, timedOut ) { + var fn = sequence.shift(), + event = sequence.shift(), + self = this; + + if( fn === undefined ) { + return; + } + + if( event ){ + // if a pagechange or defined event is never triggered + // continue in the sequence to alert possible failures + var warnTimer = setTimeout(function() { + self.eventCascade( sequence, true ); + }, 2000); + + // bind the recursive call to the event + $.mobile.pageContainer.one(event, function() { + clearTimeout( warnTimer ); + + // Let the current stack unwind before we fire off the next item in the sequence. + // TODO setTimeout(self.pageSequence, 0, sequence); + setTimeout(function(){ self.eventCascade(sequence); }, 0); + }); + } + + // invoke the function which should, in some fashion, + // trigger the next event + fn( timedOut ); + }, + + deferredSequence: function(fns) { + var fn = fns.shift(), + deferred = $.Deferred(), + self = this, res; + + if (fn) { + res = fn(); + if ( res && $.type( res.done ) === "function" ) { + res.done(function() { + self.deferredSequence( fns ).done(function() { + deferred.resolve(); + }); + }); + } else { + self.deferredSequence( fns ).done(function() { + deferred.resolve(); + }); + } + } else { + deferred.resolve(); + } + return deferred; + }, + + decorate: function(opts){ + var thisVal = opts.self || window; + + return function(){ + var returnVal; + opts.before && opts.before.apply(thisVal, arguments); + returnVal = opts.fn.apply(thisVal, arguments); + opts.after && opts.after.apply(thisVal, arguments); + + return returnVal; + }; + }, + + assertUrlLocation: function( args ) { + var parts = $.mobile.path.parseUrl( location.href ), + pathnameOnward = location.href.replace( parts.domain, "" ); + + if( $.support.pushState ) { + same( pathnameOnward, args.hashOrPush || args.push, args.report ); + } else { + same( parts.hash, "#" + (args.hashOrPush || args.hash), args.report ); + } + } + }; +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/button/button_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/button/button_core.js new file mode 100644 index 0000000..b2fb8d6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/button/button_core.js @@ -0,0 +1,58 @@ +/* + * mobile button unit tests + */ +(function($){ + $.mobile.page.prototype.options.keepNative = "button.should-be-native"; + + test( "button elements in the keepNative set shouldn't be enhanced", function() { + same( $("button.should-be-native").siblings("div.ui-slider").length, 0 ); + }); + + test( "button elements should be enhanced", function() { + ok( $("#enhanced").hasClass( "ui-btn-hidden" ) ); + }); + + test( "button markup text value should be changed on refresh", function() { + var textValueButton = $("#text"), valueButton = $("#value"); + + // the value shouldn't change unless it's been altered + textValueButton.button( 'refresh' ); + same( textValueButton.siblings().text(), "foo" ); + + // use the text where it's provided + same( textValueButton.siblings().text(), "foo" ); + textValueButton.text( "bar" ).button( 'refresh' ); + same( textValueButton.siblings().text(), "bar" ); + + // use the val if it's provided where the text isn't + same( valueButton.siblings().text(), "foo" ); + valueButton.val( "bar" ).button( 'refresh' ); + same( valueButton.siblings().text(), "bar" ); + + // prefer the text to the value + textValueButton.text( "bar" ).val( "baz" ).button( 'refresh' ); + same( textValueButton.siblings().text(), "bar" ); + }); + + // Issue 2877 + test( "verify the button placeholder is added many times", function() { + var $form = $( "#hidden-element-addition-form" ), count = 3; + expect( count * 2 ); + + for( var x = 0; x < count; x++ ) { + $( "#hidden-element-addition" ).trigger( "vclick" ); + same( $form.find( "input[type='hidden']" ).length, 1, "hidden form input should be added" ); + + $form.trigger( "submit" ); + same( $form.find( "[type='hidden']" ).length, 0, "hidden form input is removed" ); + } + }); + + test( "theme should be inherited", function() { + var $inherited = $( "#theme-check" ), + $explicit = $( "#theme-check-explicit" ); + + ok( $inherited.closest("div").hasClass( "ui-btn-up-a" ), "should inherit from page" ); + ok( $explicit.closest("div").hasClass( "ui-btn-up-b" ), "should not inherit" ); + }); +})( jQuery ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/button/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/button/index.html new file mode 100644 index 0000000..ad806f7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/button/index.html @@ -0,0 +1,52 @@ + + + + + + jQuery Mobile Button Test Suite + + + + + + + + + + + + + + + +

                    jQuery Mobile Button Test Suite

                    +

                    +

                    +
                      +
                    + +
                    +
                    + + + + +
                    + foo +
                    + + +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/buttonMarkup/buttonMarkup_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/buttonMarkup/buttonMarkup_core.js new file mode 100644 index 0000000..3cf8980 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/buttonMarkup/buttonMarkup_core.js @@ -0,0 +1,100 @@ +/* + * mobile buttonMarkup tests + */ +(function($){ + module("jquery.mobile.buttonMarkup.js"); + + test( "header buttons should have the header class", function() { + var headerButton1 = $("#header-button-1"), + headerButton2 = $("#header-button-2"); + + ok((headerButton1.hasClass("ui-btn-left") && + headerButton2.hasClass("ui-btn-right")), "first header button should have class 'ui-btn-left' and the second one should have 'ui-btn-right'"); + }); + + test( "control group buttons should be enhanced inside a footer", function(){ + var group, linkCount; + + group = $("#control-group-footer"); + linkCount = group.find( "a" ).length; + + same( group.find("a.ui-btn").length, linkCount, "all 4 links should be buttons"); + same( group.find("a > span.ui-corner-left").length, 1, "only 1 left cornered button"); + same( group.find("a > span.ui-corner-right").length, 1, "only 1 right cornered button"); + same( group.find("a > span:not(.ui-corner-left):not(.ui-corner-right)").length, linkCount - 2, "only 2 buttons are cornered"); + }); + + test( "control group buttons should respect theme-related data attributes", function(){ + var group = $("#control-group-content"); + + ok(!group.find('[data-shadow=false]').hasClass("ui-shadow"), + "buttons with data-shadow=false should not have the ui-shadow class"); + ok(!group.find('[data-corners=false]').hasClass("ui-btn-corner-all"), + "buttons with data-corners=false should not have the ui-btn-corner-all class"); + ok(!group.find('[data-iconshadow=false] .ui-icon').hasClass("ui-icon-shadow"), + "buttons with data-iconshadow=false should not have the ui-icon-shadow class on their icons"); + }); + + // Test for issue #3046 and #3054: + test( "mousedown on SVG elements should not throw an exception", function(){ + var svg = $("#embedded-svg"), + success = true, + rect; + ok(svg.length > 0, "found embedded svg document" ); + if ( svg.length > 0 ) { + rect = $( "rect", svg ); + ok(rect.length > 0, "found rect" ); + try { + rect.trigger("mousedown"); + } catch ( ex ) { + success = false; + } + ok( success, "mousedown executed without exception"); + } + }); + + test( "Elements with “data-mini='true'” should have “ui-mini” class attached to enhanced element.", function(){ + var $mini = $("#mini"), + $full = $("#full"), + $minicontrol = $('#mini-control'); + + ok( $full.not('.ui-mini'), "Original element does not have data attribute, enhanced version does not recieve .ui-mini."); + ok( $mini.is('.ui-mini'), "Original element has data attribute, enhanced version recieves .ui-mini." ); + ok( $minicontrol.is('.ui-mini'), "Controlgroup has data attribute and recieves .ui-mini."); + }); + + test( "Ensure icon positioning defaults to left, and can be overridden with “data-iconpos”", function() { + var posdefault = $("#iconpos1"), + posleft = $("#iconpos2"), + posright = $("#iconpos3"); + + ok( posdefault.hasClass("ui-btn-icon-left"), "Button with unspecified icon position gets .ui-btn-icon-left" ); + ok( posleft.hasClass("ui-btn-icon-left"), "Button with left icon positioning specified .ui-btn-icon-left" ); + ok( posright.hasClass("ui-btn-icon-right"), "Button with right icon positioning specified .ui-btn-icon-right" ); + + }); + + asyncTest( "ui-btn-* should be applied based on a setting", function() { + // force touch support so the timeout is set + $.support.touch = true; + + var $btn = $( "#hover-delay" ); + + $.testHelper.sequence([ + function() { + $btn.trigger( "vmousedown" ); + }, + + function() { + ok( $btn.attr("class").indexOf( "ui-btn-down" ) == -1, "button doesn't have the down class yet" ); + }, + + function() { + ok( $btn.attr("class").indexOf( "ui-btn-down" ) >= 0, "button has the down class yet" ); + start(); + } + // the value is split and some padding is added to make sure that the last check fires + // after the hoverDelay has expired + ], $.mobile.buttonMarkup.hoverDelay / 2 + 50 ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/buttonMarkup/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/buttonMarkup/index.html new file mode 100644 index 0000000..efae48d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/buttonMarkup/index.html @@ -0,0 +1,78 @@ + + + + + jQuery Mobile Button Markup Test Suite + + + + + + + + + + + + + + + +

                    jQuery Mobile Button Markup Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + +
                    + + No shadow + No corners + No shadow or corners + No iconshadow + + + + + + Fullsize + Mini + +
                    + Yes +
                    + + Default iconpos + Left iconpos + Right iconpos + +
                    + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/checkboxradio_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/checkboxradio_core.js new file mode 100644 index 0000000..463107b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/checkboxradio_core.js @@ -0,0 +1,273 @@ +/* + * mobile checkboxradio unit tests + */ +(function($){ + module( 'jquery.mobile.forms.checkboxradio.js' ); + + test( "widget can be disabled and enabled", function(){ + var input = $( "#checkbox-1" ), + button = input.parent().find( ".ui-btn" ); + + input.checkboxradio( "disable" ); + input.checkboxradio( "enable" ); + ok( !input.attr( "disabled" ), "start input as enabled" ); + ok( !input.parent().hasClass( "ui-disabled" ), "no disabled styles" ); + ok( !input.attr( "checked" ), "not checked before click" ); + button.trigger( "click" ); + ok( input.attr( "checked" ), "checked after click" ); + ok( button.hasClass( "ui-checkbox-on" ), "active styles after click" ); + button.trigger( "click" ); + + input.checkboxradio( "disable" ); + ok( input.attr( "disabled" ), "input disabled" ); + ok( input.parent().hasClass( "ui-disabled" ), "disabled styles" ); + ok( !input.attr( "checked" ), "not checked before click" ); + button.trigger( "click" ); + ok( !input.attr( "checked" ), "not checked after click" ); + ok( !button.hasClass( "ui-checkbox-on" ), "no active styles after click" ); + }); + + test( "clicking a checkbox within a controlgroup does not affect checkboxes with the same name in the same controlgroup", function(){ + var input1 = $("#checkbox-31"); + var button1 = input1.parent().find(".ui-btn"); + var input2 = $("#checkbox-32"); + var button2 = input2.parent().find(".ui-btn"); + + ok(!input1.attr("checked"), "input1 not checked before click"); + ok(!input2.attr("checked"), "input2 not checked before click"); + + button1.trigger("click"); + ok(input1.attr("checked"), "input1 checked after click on input1"); + ok(!input2.attr("checked"), "input2 not checked after click on input1"); + + button2.trigger("click"); + ok(input1.attr("checked"), "input1 not changed after click on input2"); + ok(input2.attr("checked"), "input2 checked after click on input2"); + }); + + asyncTest( "change events fired on checkbox for both check and uncheck", function(){ + var $checkbox = $( "#checkbox-2" ), + $checkboxLabel = $checkbox.parent().find( ".ui-btn" ); + + $checkbox.unbind( "change" ); + + expect( 1 ); + + $checkbox.one('change', function(){ + ok( true, "change fired on click to check the box" ); + }); + + $checkboxLabel.trigger( "click" ); + + //test above will be triggered twice, and the start here once + $checkbox.one('change', function(){ + start(); + }); + + $checkboxLabel.trigger( "click" ); + }); + + asyncTest( "radio button labels should update the active button class to last clicked and clear checked", function(){ + var $radioBtns = $( '#radio-active-btn-test input' ), + singleActiveAndChecked = function(){ + same( $( "#radio-active-btn-test .ui-radio-on" ).length, 1, "there should be only one active button" ); + // Use the .checked property, not the checked attribute which is not dynamic + var numChecked = 0; + $( "#radio-active-btn-test input" ).each(function(i, e) { + if( e.checked ) { + numChecked++; + } + }); + same( numChecked, 1, "there should be only one checked" ); + }; + + $.testHelper.sequence([ + function(){ + $radioBtns.last().siblings( 'label' ).click(); + }, + + function(){ + ok( $radioBtns.last().prop( 'checked' ), "last input is checked" ); + ok( $radioBtns.last().siblings( 'label' ).hasClass( 'ui-radio-on' ), + "last input label is an active button" ); + + ok( !$radioBtns.first().prop( 'checked' ), "first input label is not active" ); + ok( !$radioBtns.first().siblings( 'label' ).hasClass( 'ui-radio-on' ), + "first input label is not active" ); + + singleActiveAndChecked(); + + $radioBtns.first().siblings( 'label' ).click(); + }, + + function(){ + ok( $radioBtns.first().prop( 'checked' )); + ok( $radioBtns.first().siblings( 'label' ).hasClass( 'ui-radio-on' ), + "first input label is an active button" ); + + ok( !$radioBtns.last().prop( 'checked' )); + ok( !$radioBtns.last().siblings( 'label' ).hasClass( 'ui-radio-on' ), + "last input label is not active" ); + + singleActiveAndChecked(); + + start(); + } + ], 500); + + }); + + test( "checkboxradio controls will create when inside a container that receives a 'create' event", function(){ + ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-checkbox").length, "did not have enhancements applied" ); + ok( $("#enhancetest").trigger("create").find(".ui-checkbox").length, "enhancements applied" ); + }); + + $.mobile.page.prototype.options.keepNative = "input.should-be-native"; + + // not testing the positive case here since's it's obviously tested elsewhere + test( "checkboxradio elements in the keepNative set shouldn't be enhanced", function() { + ok( !$("input.should-be-native").parent().is("div.ui-checkbox") ); + }); + + test( "Elements with \u201cdata-mini='true'\u201d should have \u201cui-mini\u201d class attached to enhanced element.", function(){ + var full = document.getElementById("radio-full"), + $fulllbl = $('[for="radio-full"]'), + mini = document.getElementById("radio-mini"), + $minilbl = $('[for="radio-mini"]'), + minictrl = $("#mini-control"); + + ok( !full.getAttribute('data-nstest-mini') && !$fulllbl.hasClass('ui-mini'), "Original element does not have data attribute, enhanced version does not recieve .ui-mini."); + ok( mini.getAttribute('data-nstest-mini'), "Original element has data attribute, enhanced version recieves .ui-mini." ); + }); + + asyncTest( "clicking the label triggers a click on the element", function() { + var clicked = false; + + expect( 1 ); + + $( "#checkbox-click-triggered" ).one('click', function() { + clicked = true; + }); + + $.testHelper.sequence([ + function() { + $( "[for='checkbox-click-triggered']" ).click(); + }, + + function() { + ok(clicked, "click was fired on input"); + start(); + } + ], 2000); + }); + + asyncTest( "clicking the label triggers a change on the element", function() { + var changed = false; + + expect( 1 ); + + $( "#checkbox-change-triggered" ).one('change', function() { + changed = true; + }); + + $.testHelper.sequence([ + function() { + $( "[for='checkbox-change-triggered']" ).click(); + }, + + function() { + ok(changed, "change was fired on input"); + start(); + } + ], 2000); + }); + + + test( "theme should be inherited", function() { + var $inherited = $( "#checkbox-inherit-theme" ), + $explicit = $( "#checkbox-explicit-theme" ); + + ok( $inherited.siblings("label").hasClass( "ui-btn-up-a" ), "should inherit from page" ); + ok( $explicit.siblings("label").hasClass( "ui-btn-up-b" ), "should not inherit" ); + }); + + asyncTest( "form submission should include radio button values", function() { + var $form = $( "#radio-form" ), $input = $form.find("input").first(); + + $.testHelper.pageSequence([ + function() { + $input.click(); + $form.submit(); + }, + + function( timeout ){ + ok( location.search.indexOf("radio1=1") >= 0, "the radio was checked" ); + + // if the changepage in the previous function failed don't go back + if( !timeout ){ + window.history.back(); + } + }, + + function(){ + start(); + } + ]); + }); + + asyncTest( "form submission should include checkbox button values", function() { + var $form = $( "#check-form" ), $inputs = $form.find("input"); + + $.testHelper.pageSequence([ + function() { + $inputs.click(); + $form.submit(); + }, + + function( timeout ){ + ok( location.search.indexOf("checkbox-form=on") >= 0, "the first checkbox was checked" ); + ok( location.search.indexOf("checkbox-form-2=on") >= 0, "the second checkbox was checked" ); + // if the changepage in the previous function failed don't go back + if( !timeout ){ + window.history.back(); + } + }, + + function(){ + start(); + } + ]); + }); + + test( "nested label checkbox still renders", function() { + var $checkbox = $( "#checkbox-nested-label" ); + + try { + $checkbox.checkboxradio(); + } catch (e) { + ok( false, "checkboxradio exception raised: " + e.toString()); + } + + ok( $checkbox.parent().hasClass("ui-checkbox"), "enhancement has occured"); + }); + + test( "nested label (no [for]) checkbox still renders", function() { + var $checkbox = $( "#checkbox-nested-label-no-for" ); + + try { + $checkbox.checkboxradio(); + } catch (e) { + ok( false, "checkboxradio exception raised: " + e.toString()); + } + + ok( $checkbox.parent().hasClass("ui-checkbox"), "enhancement has occured"); + }); + + test( "Icon positioning", function() { + var bottomicon = $("[for='bottomicon']") + topicon = $("[for='topicon']"); + + ok( bottomicon.hasClass("ui-btn-icon-bottom"), "Icon position set on label adds the appropriate class." ); + ok( topicon.hasClass("ui-btn-icon-top"), "Icon position set on input adds the appropriate class to the label." ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/form-result.html b/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/form-result.html new file mode 100644 index 0000000..a963e0e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/form-result.html @@ -0,0 +1,2 @@ +
                    +
                    diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/index.html new file mode 100644 index 0000000..a6a09af --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/checkboxradio/index.html @@ -0,0 +1,202 @@ + + + + + jQuery Mobile Checkboxradio Test Suite + + + + + + + + + + + + + + + +

                    jQuery Mobile Checkbockradio Test Suite

                    +

                    +

                    +
                      +
                    + +
                    +
                    + +
                    +
                    + Agree to the terms: + + +
                    +
                    + +
                    +
                    + Agree to the terms: + + +
                    +
                    + +
                    +
                    + Agree to the terms 3.1: + + +
                    +
                    + Agree to the terms 3.2: + + +
                    +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    + + + + + + +
                    + + + + +
                    +
                    + + +
                    +
                    + Agree to the terms: + + +
                    +
                    + +
                    +
                    + Agree to the terms: + + + + + + + + + +
                    +
                    + +
                    +
                    + Agree to the terms: + + +
                    + +
                    + Agree to the terms: + + +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    + +
                    +
                    + Check one: + + +
                    +
                    + + +
                    +
                    +
                    + Font styling: + + + + + +
                    +
                    +
                    + +
                    + +
                    + + +
                    + +
                    +
                    + +
                    +
                    + +
                    +
                    + +
                    +
                    + +
                    +
                    + +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/collapsible/collapsible_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/collapsible/collapsible_core.js new file mode 100644 index 0000000..b8c222f --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/collapsible/collapsible_core.js @@ -0,0 +1,216 @@ +/* + * mobile listview unit tests + */ + +// TODO split out into seperate test files +(function( $ ){ + module( "Collapsible section", {}); + + asyncTest( "The page should enhanced correctly", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#basic-collapsible-test" ); + }, + + function() { + var $page = $( "#basic-collapsible-test" ); + ok($page.find( ".ui-content >:eq(0)" ).hasClass( "ui-collapsible" ), ".ui-collapsible class added to collapsible elements" ); + ok($page.find( ".ui-content >:eq(0) >:header" ).hasClass( "ui-collapsible-heading" ), ".ui-collapsible-heading class added to collapsible heading" ); + ok($page.find( ".ui-content >:eq(0) > div" ).hasClass( "ui-collapsible-content" ), ".ui-collapsible-content class added to collapsible content" ); + ok($page.find( ".ui-content >:eq(0)" ).hasClass( "ui-collapsible-collapsed" ), ".ui-collapsible-collapsed added to collapsed elements" ); + ok(!$page.find( ".ui-content >:eq(1)" ).hasClass( "ui-collapsible-collapsed" ), ".ui-collapsible-collapsed not added to expanded elements" ); + ok($page.find( ".ui-collapsible.ui-collapsible-collapsed" ).find( ".ui-collapsible-heading-toggle > .ui-btn-inner" ).hasClass( "ui-corner-top ui-corner-bottom" ), "Collapsible header button should have class ui-corner-all" ); + start(); + } + ]); + }); + + asyncTest( "Expand/Collapse", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#basic-collapsible-test" ); + }, + + function() { + ok($( "#basic-collapsible-test .ui-collapsible" ).eq(0).hasClass( "ui-collapsible-collapsed" ), "First collapsible should be collapsed"); + $( "#basic-collapsible-test .ui-collapsible-heading-toggle" ).eq(0).click(); + ok(!$( "#basic-collapsible-test .ui-collapsible" ).eq(0).hasClass( "ui-collapsible-collapsed" ), "First collapsible should be expanded after click"); + $( "#basic-collapsible-test .ui-collapsible-heading-toggle" ).eq(0).click(); + ok($( "#basic-collapsible-test .ui-collapsible" ).eq(0).hasClass( "ui-collapsible-collapsed" ), "First collapsible should be collapsed"); + start(); + } + ]); + }); + + module( "Collapsible set", {}); + + asyncTest( "The page should enhanced correctly", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#basic-collapsible-set-test" ); + }, + + function() { + var $page = $( "#basic-collapsible-set-test" ); + + ok($page.find( ".ui-content >:eq(0)" ).hasClass( "ui-collapsible-set" ), ".ui-collapsible-set class added to collapsible set" ); + ok($page.find( ".ui-content >:eq(0) > div" ).hasClass( "ui-collapsible" ), ".ui-collapsible class added to collapsible elements" ); + $page.find( ".ui-collapsible-set" ).each(function() { + var $this = $( this ); + ok($this.find( ".ui-collapsible" ).first().find( ".ui-collapsible-heading-toggle > .ui-btn-inner" ).hasClass( "ui-corner-top" ), "First collapsible header button should have class ui-corner-top" ); + ok($this.find( ".ui-collapsible" ).last().find( ".ui-collapsible-heading-toggle > .ui-btn-inner" ).hasClass( "ui-corner-bottom" ), "Last collapsible header button should have class ui-corner-bottom" ); + }); + + start(); + } + ]); + }); + + asyncTest( "Collapsible set with only one collapsible", function() { + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#collapsible-set-with-lonely-collapsible-test" ); + }, + + function() { + var $page = $( "#collapsible-set-with-lonely-collapsible-test" ); + $page.find( ".ui-collapsible-set" ).each(function() { + var $this = $( this ); + ok($this.find( ".ui-collapsible" ).first().find( ".ui-collapsible-heading-toggle > .ui-btn-inner" ).hasClass( "ui-corner-top" ), "First collapsible header button should have class ui-corner-top" ); + ok($this.find( ".ui-collapsible" ).last().find( ".ui-collapsible-heading-toggle > .ui-btn-inner" ).hasClass( "ui-corner-bottom" ), "Last collapsible header button should have class ui-corner-bottom" ); + }); + + start(); + } + ]); + }); + + asyncTest( "Section expanded by default", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#basic-collapsible-set-test" ); + }, + + function() { + equals($( "#basic-collapsible-set-test .ui-content >:eq(0) .ui-collapsible-collapsed" ).length, 2, "There should be 2 section collapsed" ); + ok(!$( "#basic-collapsible-set-test .ui-content >:eq(0) >:eq(1)" ).hasClass( "ui-collapsible-collapsed" ), "Section B should be expanded" ); + start(); + } + ]); + }); + + asyncTest( "Expand/Collapse", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#basic-collapsible-set-test" ); + }, + + function() { + ok($( "#basic-collapsible-set-test .ui-collapsible" ).eq(0).hasClass( "ui-collapsible-collapsed" ), "First collapsible should be collapsed"); + $( "#basic-collapsible-set-test .ui-collapsible-heading-toggle" ).eq(0).click(); + ok(!$( "#basic-collapsible-set-test .ui-collapsible" ).eq(0).hasClass( "ui-collapsible-collapsed" ), "First collapsible should be expanded after click"); + $( "#basic-collapsible-set-test .ui-collapsible-heading-toggle" ).eq(0).click(); + ok($( "#basic-collapsible-set-test .ui-collapsible" ).hasClass( "ui-collapsible-collapsed" ), "All collapsible should be collapsed"); + start(); + } + ]); + }); + + asyncTest( "Collapsible Set with dynamic content", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#collapsible-set-with-dynamic-content" ); + }, + + function() { + var set = $( ".ui-page-active" ).find( ".ui-collapsible-set" ); + for ( var i = 0; i < 3; i++ ) { + $( '

                    Collapsible Item ' + i + '

                    ' ).appendTo( set ); + } + set.collapsibleset( "refresh" ); + equal( set.find( ".ui-collapsible" ).length, 3, "The 3 collapsibles should be enhanced" ); + ok( set.find( ".ui-collapsible" ).eq( 0 ).find( "a" ).hasClass( "ui-corner-top" ), "The 1st collapsible should have top corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 0 ).find( "a" ).hasClass( "ui-corner-bottom" ), "The 1st collapsible should NOT have bottom corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 1 ).find( "a" ).hasClass( "ui-corner-top" ), "The 2nd collapsible should NOT have top corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 1 ).find( "a" ).hasClass( "ui-corner-bottom" ), "The 2nd collapsible should NOT have bottom corners" ); + ok( set.find( ".ui-collapsible" ).eq( 2 ).find( "a" ).hasClass( "ui-corner-bottom" ), "The 3rd collapsible should have bottom corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 2 ).find( "a" ).hasClass( "ui-corner-top" ), "The 3rd collapsible should NOT have top corners" ); + start(); + } + ]); + }); + + asyncTest( "Collapsible Set with static and dynamic content", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#collapsible-set-with-static-and-dynamic-content" ); + }, + + function() { + var set = $( ".ui-page-active" ).find( ".ui-collapsible-set" ); + for ( var i = 0; i < 2; i++ ) { + $( '

                    Collapsible Item ' + i + '

                    ' ).appendTo( set ); + } + set.collapsibleset( "refresh" ); + equal( set.find( ".ui-collapsible" ).length, 3, "The 3 collapsibles should be enhanced" ); + ok( set.find( ".ui-collapsible" ).eq( 0 ).find( "a" ).hasClass( "ui-corner-top" ), "The 1st collapsible should have top corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 0 ).find( "a" ).hasClass( "ui-corner-bottom" ), "The 1st collapsible should NOT have bottom corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 1 ).find( "a" ).hasClass( "ui-corner-top" ), "The 2nd collapsible should NOT have top corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 1 ).find( "a" ).hasClass( "ui-corner-bottom" ), "The 2nd collapsible should NOT have bottom corners" ); + ok( set.find( ".ui-collapsible" ).eq( 2 ).find( "a" ).hasClass( "ui-corner-bottom" ), "The 3rd collapsible should have bottom corners" ); + ok( !set.find( ".ui-collapsible" ).eq( 2 ).find( "a" ).hasClass( "ui-corner-top" ), "The 3rd collapsible should NOT have top corners" ); + start(); + } + ]); + }); + + module( "Theming", {}); + + asyncTest( "Collapsible", 6, function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#collapsible-with-theming" ); + }, + + function() { + var collapsibles = $.mobile.activePage.find( ".ui-collapsible" ); + ok( collapsibles.eq(0).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-a" ), "Heading of first collapsible should have class ui-btn-up-a"); + ok( !collapsibles.eq(0).find( ".ui-collapsible-content" ).hasClass( "ui-btn-up-a" ), "Content of first collapsible should NOT have class ui-btn-up-a"); + ok( collapsibles.eq(1).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-b" ), "Heading of second collapsible should have class ui-btn-up-b"); + ok( collapsibles.eq(1).find( ".ui-collapsible-content" ).hasClass( "ui-body-b" ), "Content of second collapsible should have class ui-btn-up-b"); + ok( collapsibles.eq(2).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-c" ), "Heading of third collapsible should have class ui-btn-up-c"); + ok( collapsibles.eq(2).find( ".ui-collapsible-content" ).hasClass( "ui-body-c" ), "Content of third collapsible should have class ui-btn-up-c"); + start(); + } + ]); + }); + + + asyncTest( "Collapsible Set", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage( "#collapsible-set-with-theming" ); + }, + + function() { + var collapsibles = $.mobile.activePage.find( ".ui-collapsible" ); + ok( collapsibles.eq(0).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-a" ), "Heading of first collapsible should have class ui-btn-up-a"); + ok( !collapsibles.eq(0).find( ".ui-collapsible-content" ).is( ".ui-body-a,.ui-body-b,.ui-body-c" ), "Content of first collapsible should NOT have class ui-btn-up-[a,b,c]"); + ok( collapsibles.eq(0).find( ".ui-collapsible-content" ).hasClass( "ui-body-d" ), "Content of first collapsible should NOT have class ui-btn-up-d"); + ok( collapsibles.eq(1).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-b" ), "Heading of second collapsible should have class ui-btn-up-b"); + ok( !collapsibles.eq(1).find( ".ui-collapsible-content" ).is( ".ui-body-a,.ui-body-c,.ui-body-d" ), "Content of second collapsible should NOT have class ui-btn-up-[a,c,d]"); + ok( collapsibles.eq(1).find( ".ui-collapsible-content" ).hasClass( "ui-body-b" ), "Content of second collapsible should have class ui-btn-up-b"); + ok( collapsibles.eq(2).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-d" ), "Heading of third collapsible should have class ui-btn-up-d"); + ok( !collapsibles.eq(2).find( ".ui-collapsible-content" ).is( ".ui-body-a,.ui-body-b,.ui-body-c" ), "Content of third collapsible should NOT have class ui-btn-up-[a,b,c]"); + ok( collapsibles.eq(2).find( ".ui-collapsible-content" ).hasClass( "ui-body-d" ), "Content of third collapsible should have class ui-btn-up-d"); + ok( !collapsibles.eq(2).find( ".ui-collapsible-content" ).hasClass( "ui-collapsible-content-collapsed" ), "Content of third collapsible should NOT have class ui-collapsible-content-collapsed"); + ok( collapsibles.eq(3).find( ".ui-collapsible-heading-toggle" ).hasClass( "ui-btn-up-d" ), "Heading of fourth collapsible should have class ui-btn-up-d"); + ok( !collapsibles.eq(3).find( ".ui-collapsible-content" ).is( ".ui-body-a,.ui-body-b,.ui-body-c" ), "Content of fourth collapsible should NOT have class ui-btn-up-[a,b,c]"); + ok( collapsibles.eq(3).find( ".ui-collapsible-content" ).hasClass( "ui-body-d" ), "Content of fourth collapsible should have class ui-btn-up-d"); + start(); + } + ]); + }); + + +})( jQuery ); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/collapsible/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/collapsible/index.html new file mode 100644 index 0000000..cf42f4c --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/collapsible/index.html @@ -0,0 +1,203 @@ + + + + + + jQuery Mobile Collapsible Integration Test + + + + + + + + + + + + + + +

                    jQuery Mobile Collapsible Integration Test

                    +

                    +

                    +
                      +
                    + +
                    +
                    +

                    Basic collapsible

                    +
                    +
                    +
                    +

                    Section A

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section B

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +
                    + +
                    +
                    +

                    Basic collapsible

                    +
                    +
                    +
                    +
                    +

                    Section A

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section B

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +

                    Section C

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    + +
                    +
                    +
                    +
                    + +
                    +
                    +

                    Basic collapsible

                    +
                    +
                    +
                    +
                    +

                    Section D

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    + +
                    +

                    Section E

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +
                    + +
                    +
                    +

                    Themed collapsibles

                    +
                    +
                    +
                    +

                    Section A

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section B

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section B

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    + +
                    +
                    + +
                    +
                    +

                    Themed collapsibles

                    +
                    +
                    +
                    +
                    +

                    Section A

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section B

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section C

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +

                    Section D

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    + +
                    +
                    + +
                    +
                    +

                    Collapsible Set with dynamic content

                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +

                    Collapsible Set with dynamic content

                    +
                    +
                    +
                    +
                    +

                    Section A

                    + +

                    I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I + have the "collapsed" state; you need to expand the header to see me.

                    +
                    +
                    +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/controlgroup/controlgroup_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/controlgroup/controlgroup_core.js new file mode 100644 index 0000000..eaf97fc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/controlgroup/controlgroup_core.js @@ -0,0 +1,147 @@ +/* + * mobile checkboxradio unit tests + */ +(function($){ + module( 'vertical controlgroup, no refresh' , { + setup: function() { + this.vcontrolgroup = $( "#vertical-controlgroup" ); + } + }); + + test( "vertical controlgroup classes", function() { + var buttons = this.vcontrolgroup.find( ".ui-btn" ), + middlebuttons = buttons.filter(function(index) { return index > 0 && index < (length-1)}), + length = buttons.length; + + ok( !buttons.hasClass( "ui-btn-corner-all" ), "no button should have class 'ui-btn-corner-all'"); + ok( buttons.first().hasClass( "ui-corner-top" ), "first button should have class 'ui-corner-top'" ); + ok( !middlebuttons.hasClass( "ui-corner-top" ), "middle buttons should not have class 'ui-corner-top'" ); + ok( !middlebuttons.hasClass( "ui-corner-bottom" ), "middle buttons should not have class 'ui-corner-bottom'" ); + ok( buttons.last().hasClass( "ui-corner-bottom"), "last button should have class 'ui-corner-bottom'" ); + }); + + module( 'vertical controlgroup, refresh', { + setup: function() { + this.vcontrolgroup = $( "#vertical-controlgroup" ); + this.vcontrolgroup.find( ".ui-btn" ).show(); + this.vcontrolgroup.controlgroup(); + } + }); + + test( "vertical controlgroup after first button was hidden", function() { + //https://github.com/jquery/jquery-mobile/issues/1929 + + //We hide the first button and refresh + this.vcontrolgroup.find( ".ui-btn" ).first().hide(); + this.vcontrolgroup.controlgroup(); + + var buttons = this.vcontrolgroup.find( ".ui-btn" ).filter( ":visible" ), + middlebuttons = buttons.filter(function(index) { return index > 0 && index < (length-1)}), + length = buttons.length; + + ok( buttons.first().hasClass( "ui-corner-top" ), "first visible button should have class 'ui-corner-top'" ); + ok( !middlebuttons.hasClass( "ui-corner-top" ), "middle buttons should not have class 'ui-corner-top'" ); + ok( !middlebuttons.hasClass( "ui-corner-bottom" ), "middle buttons should not have class 'ui-corner-bottom'" ); + ok( buttons.last().hasClass( "ui-corner-bottom"), "last visible button should have class 'ui-corner-bottom'" ); + }); + + test( "vertical controlgroup after last button was hidden", function() { + //https://github.com/jquery/jquery-mobile/issues/1929 + + //We hide the last button and refresh + this.vcontrolgroup.find( ".ui-btn" ).last().hide(); + this.vcontrolgroup.controlgroup(); + + var buttons = this.vcontrolgroup.find( ".ui-btn" ).filter( ":visible" ), + middlebuttons = buttons.filter(function(index) { return index > 0 && index < (length-1)}), + length = buttons.length; + + ok( buttons.first().hasClass( "ui-corner-top" ), "first visible button should have class 'ui-corner-top'" ); + ok( !middlebuttons.hasClass( "ui-corner-top" ), "middle buttons should not have class 'ui-corner-top'" ); + ok( !middlebuttons.hasClass( "ui-corner-bottom" ), "middle buttons should not have class 'ui-corner-bottom'" ); + ok( buttons.last().hasClass( "ui-corner-bottom"), "last visible button should have class 'ui-corner-bottom'" ); + }); + + module( 'horizontal controlgroup, no refresh', { + setup: function() { + this.hcontrolgroup = $( "#horizontal-controlgroup" ); + } + }); + + test( "horizontal controlgroup classes", function() { + var buttons = this.hcontrolgroup.find( ".ui-btn" ), + middlebuttons = buttons.filter(function(index) { return index > 0 && index < (length-1)}), + length = buttons.length; + + ok( !buttons.hasClass( "ui-btn-corner-all" ), "no button should have class 'ui-btn-corner-all'"); + ok( buttons.first().hasClass( "ui-corner-left" ), "first button should have class 'ui-corner-left'" ); + ok( !middlebuttons.hasClass( "ui-corner-left" ), "middle buttons should not have class 'ui-corner-left'" ); + ok( !middlebuttons.hasClass( "ui-corner-right" ), "middle buttons should not have class 'ui-corner-right'" ); + ok( buttons.last().hasClass( "ui-corner-right"), "last button should have class 'ui-corner-right'" ); + }); + + module( 'horizontal controlgroup, refresh', { + setup: function() { + this.hcontrolgroup = $( "#horizontal-controlgroup" ); + this.hcontrolgroup.find( ".ui-btn" ).show(); + this.hcontrolgroup.controlgroup(); + } + }); + + test( "horizontal controlgroup after first button was hidden", function() { + //We hide the first button and refresh + this.hcontrolgroup.find( ".ui-btn" ).first().hide(); + this.hcontrolgroup.controlgroup(); + + var buttons = this.hcontrolgroup.find( ".ui-btn" ).filter( ":visible" ), + middlebuttons = buttons.filter(function(index) { return index > 0 && index < (length-1)}), + length = buttons.length; + + ok( buttons.first().hasClass( "ui-corner-left" ), "first visible button should have class 'ui-corner-left'" ); + ok( !middlebuttons.hasClass( "ui-corner-left" ), "middle buttons should not have class 'ui-corner-left'" ); + ok( !middlebuttons.hasClass( "ui-corner-right" ), "middle buttons should not have class 'ui-corner-right'" ); + ok( buttons.last().hasClass( "ui-corner-right"), "last visible button should have class 'ui-corner-right'" ); + }); + + test( "horizontal controlgroup after last button was hidden", function() { + //We hide the last button and refresh + this.hcontrolgroup.find( ".ui-btn" ).last().hide(); + this.hcontrolgroup.controlgroup(); + + var buttons = this.hcontrolgroup.find( ".ui-btn" ).filter( ":visible" ), + middlebuttons = buttons.filter(function(index) { return index > 0 && index < (length-1)}), + length = buttons.length; + + ok( buttons.first().hasClass( "ui-corner-left" ), "first visible button should have class 'ui-corner-left'" ); + ok( !middlebuttons.hasClass( "ui-corner-left" ), "middle buttons should not have class 'ui-corner-left'" ); + ok( !middlebuttons.hasClass( "ui-corner-right" ), "middle buttons should not have class 'ui-corner-right'" ); + ok( buttons.last().hasClass( "ui-corner-right"), "last visible button should have class 'ui-corner-right'" ); + }); + + + test( "controlgroups will create when inside a container that receives a 'create' event", function(){ + ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-controlgroup").length, "did not have enhancements applied" ); + ok( $("#enhancetest").trigger("create").find(".ui-controlgroup").length, "enhancements applied" ); + }); + + test( "controlgroups in ignored containers aren't enhanced", function() { + var $unenhancedFieldSet = $( "#unenhanced-fieldset" ), + $enhancedFieldSet = $( "#enhanced-fieldset" ); + + $.mobile.ignoreContentEnabled = true; + + // attempt to enhance the controlgroup + $unenhancedFieldSet.parent().trigger("create"); + + same( $unenhancedFieldSet.length, 1, "the fieldset test fixtures exist" ); + ok( !$unenhancedFieldSet.is(".ui-controlgroup"), "there is no control group" ); + + // attempt to enhance the controlgroup + $enhancedFieldSet.parent().trigger("create"); + + same( $enhancedFieldSet.length, 1, "the fieldset test fixtures exist" ); + ok( $enhancedFieldSet.is(".ui-controlgroup"), "there is a control group" ); + + $.mobile.ignoreContentEnabled = false; + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/controlgroup/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/controlgroup/index.html new file mode 100644 index 0000000..add115e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/controlgroup/index.html @@ -0,0 +1,104 @@ + + + + + + jQuery Mobile Controlgroup Test Suite + + + + + + + + + + + + + + + +

                    jQuery Mobile Controlgroup Test Suite

                    +

                    +

                    +
                      +
                    + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Font styling: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    + +
                    +
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/core/core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/core/core.js new file mode 100644 index 0000000..1b60562 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/core/core.js @@ -0,0 +1,190 @@ +/* + * mobile core unit tests + */ + +(function($){ + var libName = "jquery.mobile.core", + setGradeA = function(value, version) { + $.support.mediaquery = value; + $.mobile.browser.ie = version; + }, + extendFn = $.extend; + + module(libName, { + setup: function(){ + // NOTE reset for gradeA tests + $('html').removeClass('ui-mobile'); + + // NOTE reset for pageLoading tests + $('.ui-loader').remove(); + }, + teardown: function(){ + $.extend = extendFn; + } + }); + + $.testHelper.excludeFileProtocol(function(){ + asyncTest( "grade A browser either supports media queries or is IE 7+", function(){ + setGradeA(false, 6); + $.testHelper.deferredSequence([ + function() { + return $.testHelper.reloadModule(libName); + }, + + function() { + ok(!$.mobile.gradeA()); + }, + + function() { + setGradeA(true, 8); + return $.testHelper.reloadModule(libName); + }, + + function() { + ok($.mobile.gradeA()); + start(); + } + ]); + }); + }); + + function clearNSNormalizeDictionary() + { + var dict = $.mobile.nsNormalizeDict; + for ( var prop in dict ) { + delete dict[ prop ]; + } + } + + test( "$.mobile.nsNormalize works properly with namespace defined (test default)", function(){ + // Start with a fresh namespace property cache, just in case + // the previous test mucked with namespaces. + clearNSNormalizeDictionary(); + + equal($.mobile.nsNormalize("foo"), "nstestFoo", "appends ns and initcaps"); + equal($.mobile.nsNormalize("fooBar"), "nstestFooBar", "leaves capped strings intact"); + equal($.mobile.nsNormalize("foo-bar"), "nstestFooBar", "changes dashed strings"); + equal($.mobile.nsNormalize("foo-bar-bak"), "nstestFooBarBak", "changes multiple dashed strings"); + + // Reset the namespace property cache for the next test. + clearNSNormalizeDictionary(); + }); + + test( "$.mobile.nsNormalize works properly with an empty namespace", function(){ + var realNs = $.mobile.ns; + + $.mobile.ns = ""; + + // Start with a fresh namespace property cache, just in case + // the previous test mucked with namespaces. + clearNSNormalizeDictionary(); + + equal($.mobile.nsNormalize("foo"), "foo", "leaves uncapped and undashed"); + equal($.mobile.nsNormalize("fooBar"), "fooBar", "leaves capped strings intact"); + equal($.mobile.nsNormalize("foo-bar"), "fooBar", "changes dashed strings"); + equal($.mobile.nsNormalize("foo-bar-bak"), "fooBarBak", "changes multiple dashed strings"); + + $.mobile.ns = realNs; + + // Reset the namespace property cache for the next test. + clearNSNormalizeDictionary(); + }); + + //data tests + test( "$.fn.jqmData and $.fn.jqmRemoveData methods are working properly", function(){ + var data; + + same( $("body").jqmData("foo", true), $("body"), "setting data returns the element" ); + + same( $("body").jqmData("foo"), true, "getting data returns the right value" ); + + same( $("body").data($.mobile.nsNormalize("foo")), true, "data was set using namespace" ); + + same( $("body").jqmData("foo", undefined), true, "getting data still returns the value if there's an undefined second arg" ); + + data = $.extend( {}, $("body").data() ); + delete data[ $.expando ]; //discard the expando for that test + same( data , { "nstestFoo": true }, "passing .data() no arguments returns a hash with all set properties" ); + + same( $("body").jqmData(), undefined, "passing no arguments returns undefined" ); + + same( $("body").jqmData(undefined), undefined, "passing a single undefined argument returns undefined" ); + + same( $("body").jqmData(undefined, undefined), undefined, "passing 2 undefined arguments returns undefined" ); + + same( $("body").jqmRemoveData("foo"), $("body"), "jqmRemoveData returns the element" ); + + same( $("body").jqmData("foo"), undefined, "jqmRemoveData properly removes namespaced data" ); + + }); + + + test( "$.jqmData and $.jqmRemoveData methods are working properly", function(){ + same( $.jqmData(document.body, "foo", true), true, "setting data returns the value" ); + + same( $.jqmData(document.body, "foo"), true, "getting data returns the right value" ); + + same( $.data(document.body, $.mobile.nsNormalize("foo")), true, "data was set using namespace" ); + + same( $.jqmData(document.body, "foo", undefined), true, "getting data still returns the value if there's an undefined second arg" ); + + same( $.jqmData(document.body), undefined, "passing no arguments returns undefined" ); + + same( $.jqmData(document.body, undefined), undefined, "passing a single undefined argument returns undefined" ); + + same( $.jqmData(document.body, undefined, undefined), undefined, "passing 2 undefined arguments returns undefined" ); + + same( $.jqmRemoveData(document.body, "foo"), undefined, "jqmRemoveData returns the undefined value" ); + + same( $("body").jqmData("foo"), undefined, "jqmRemoveData properly removes namespaced data" ); + + }); + + test( "addDependents works properly", function() { + same( $("#parent").jqmData('dependents'), undefined ); + $( "#parent" ).addDependents( $("#dependent") ); + same( $("#parent").jqmData('dependents').length, 1 ); + }); + + test( "removeWithDependents removes the parent element and ", function(){ + $( "#parent" ).addDependents( $("#dependent") ); + same($( "#parent, #dependent" ).length, 2); + $( "#parent" ).removeWithDependents(); + same($( "#parent, #dependent" ).length, 0); + }); + + test( "$.fn.getEncodedText should return the encoded value where $.fn.text doesn't", function() { + same( $("#encoded").text(), "foo>"); + same( $("#encoded").getEncodedText(), "foo>"); + same( $("#unencoded").getEncodedText(), "var foo;"); + }); + + test( "closestPageData returns the parent's page data", function() { + var pageChild = $( "#page-child" ); + + $( "#parent-page" ).data( "page", { foo: "bar" } ); + same( $.mobile.closestPageData( pageChild ).foo, "bar" ); + }); + + test( "closestPageData returns the parent dialog's page data", function() { + var dialogChild = $( "#dialog-child" ); + + $( "#parent-dialog" ).data( "page", { foo: "bar" } ); + same( $.mobile.closestPageData(dialogChild).foo, "bar" ); + }); + + test( "test that $.fn.jqmHijackable works", function() { + $.mobile.ignoreContentEnabled = true; + + same( $( "#hijacked-link" ).jqmHijackable().length, 1, + "a link without any association to data-ajax=false should be included"); + + same( $( "#unhijacked-link-by-parent" ).jqmHijackable().length, 0, + "a link with a data-ajax=false parent should be excluded"); + + same( $( "#unhijacked-link-by-attr" ).jqmHijackable().length, 0, + "a link with data-ajax=false should be excluded"); + + $.mobile.ignoreContentEnabled = false; + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/core/core_scroll.js b/libs/js/jquery-mobile-1.1.0/tests/unit/core/core_scroll.js new file mode 100644 index 0000000..d1b8ef0 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/core/core_scroll.js @@ -0,0 +1,63 @@ +/* + * mobile core unit tests + */ + +(function($){ + var libName = "jquery.mobile.core", + scrollTimeout = 20, // TODO expose timing as an attribute + scrollStartEnabledTimeout = 150; + + module(libName, { + setup: function(){ + $("
                    ").appendTo("body"); + }, + + teardown: function(){ + $("#scroll-testing").remove(); + } + }); + + var scrollUp = function( pos ){ + $(window).scrollTop(1000); + ok($(window).scrollTop() > 0, $(window).scrollTop()); + $.mobile.silentScroll(pos); + }; + + asyncTest( "silent scroll scrolls the page to the top by default", function(){ + scrollUp(); + + setTimeout(function(){ + same($(window).scrollTop(), 0); + start(); + }, scrollTimeout); + }); + + asyncTest( "silent scroll scrolls the page to the passed y position", function(){ + var pos = 10; + scrollUp(pos); + + setTimeout(function(){ + same($(window).scrollTop(), pos); + start(); + }, scrollTimeout); + }); + + test( "silent scroll is async", function(){ + scrollUp(); + ok($(window).scrollTop() != 0, "scrolltop position should not be zero"); + start(); + }); + + asyncTest( "scrolling marks scrollstart as disabled for 150 ms", function(){ + $.event.special.scrollstart.enabled = true; + scrollUp(); + ok(!$.event.special.scrollstart.enabled); + + setTimeout(function(){ + ok($.event.special.scrollstart.enabled); + start(); + }, scrollStartEnabledTimeout); + }); + + //TODO test that silentScroll is called on window load +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/core/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/core/index.html new file mode 100644 index 0000000..4cad369 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/core/index.html @@ -0,0 +1,65 @@ + + + + + + jQuery Mobile Core Test Suite + + + + + + + + + + + + + + +

                    jQuery Mobile Core Test Suite

                    +

                    +

                    +
                      +
                    + +
                    +
                    + +
                    +
                    +
                    +
                    foo>
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    + + +
                    + +
                    + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/degradeInputs/degradeInputs.js b/libs/js/jquery-mobile-1.1.0/tests/unit/degradeInputs/degradeInputs.js new file mode 100644 index 0000000..98659a9 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/degradeInputs/degradeInputs.js @@ -0,0 +1,43 @@ +/* + * degradeInputs unit tests + */ + +(function($){ + module('jquery.mobile.degradeInputs.js'); + + test('keepNative elements should not be degraded', function() { + same($('input#not-to-be-degraded').attr("type"), "range"); + }); + + asyncTest('should degrade input type to a different type, as specified in page options', function(){ + var degradeInputs = $.mobile.page.prototype.options.degradeInputs; + + expect( degradeInputs.length ); + + // NOTE the initial page is already enhanced (or expected to be) so we load the dialog to enhance it + // and _expect_ that the default page will remain "unreaped". This will break if that assumption changes + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( "#dialog" ); + }, + + function() { + $.each(degradeInputs, function( oldType, newType ) { + if (newType === false) { + newType = oldType; + } + + $('#page-test-container').html('').trigger("create"); + + same($('#page-test-container input').attr("type"), newType, "type attr on page is: " + newType); + + $('#dialog-test-container').html('').trigger("create"); + + same($('#dialog-test-container input').attr("type"), newType, "type attr on dialog is: " + newType); + }); + + start(); + } + ]); + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/degradeInputs/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/degradeInputs/index.html new file mode 100644 index 0000000..45a2fb4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/degradeInputs/index.html @@ -0,0 +1,48 @@ + + + + + + jQuery Mobile Degrade Inputs Test Suite + + + + + + + + + + + + + +

                    jQuery Mobile Degrade Inputs Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + + + +
                    +
                    + +
                    + +
                    + +
                    +
                    + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/dialog_count.js b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/dialog_count.js new file mode 100644 index 0000000..53a9316 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/dialog_count.js @@ -0,0 +1,13 @@ +/* + * mobile dialog unit tests + */ +(function($) { + + test( "When the page loads, any dialogs in the page should be initialized", function() { + expect( 1 ); + + ok( $( "#foo-dialog" ).is( ".ui-dialog" ), "When a dialog is the first element in a page, it is created as a dialog widget." ); + }); + + +})( jQuery ); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/dialog_events.js b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/dialog_events.js new file mode 100644 index 0000000..15628ba --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/dialog_events.js @@ -0,0 +1,146 @@ +/* + * mobile dialog unit tests + */ +(function($) { + module( "jquery.mobile.dialog.js", { + setup: function() { + $.mobile.page.prototype.options.contentTheme = "d"; + } + }); + + asyncTest( "dialog hash is added when the dialog is opened and removed when closed", function() { + expect( 2 ); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( $( "#mypage" ) ); + }, + + function() { + //bring up the dialog + $( "#foo-dialog-link" ).click(); + }, + + function() { + var fooDialog = $( "#foo-dialog" ); + + // make sure the dialog came up + ok( /&ui-state=dialog/.test(location.hash), "ui-state=dialog =~ location.hash", "dialog open" ); + + // close the dialog + $( ".ui-dialog" ).dialog( "close" ); + }, + + function() { + ok( !/&ui-state=dialog/.test(location.hash), "ui-state=dialog !~ location.hash" ); + start(); + } + ]); + }); + + asyncTest( "dialog element with no theming", function() { + expect(4); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( $( "#mypage" ) ); + }, + + function() { + //bring up the dialog + $( "#link-a" ).click(); + }, + + function() { + var dialog = $( "#dialog-a" ); + + // Assert dialog theme inheritance (issue 1375): + ok( dialog.hasClass( "ui-body-c" ), "Expected explicit theme ui-body-c" ); + ok( dialog.find( ":jqmData(role=header)" ).hasClass( "ui-bar-" + $.mobile.page.prototype.options.footerTheme ), "Expected header to inherit from $.mobile.page.prototype.options.headerTheme" ); + ok( dialog.find( ":jqmData(role=content)" ).hasClass( "ui-body-" + $.mobile.page.prototype.options.contentTheme ), "Expect content to inherit from $.mobile.page.prototype.options.contentTheme" ); + ok( dialog.find( ":jqmData(role=footer)" ).hasClass( "ui-bar-" + $.mobile.page.prototype.options.footerTheme ), "Expected footer to inherit from $.mobile.page.prototype.options.footerTheme" ); + + start(); + } + ]); + }); + + asyncTest( "dialog element with data-theme", function() { + // Reset fallback theme for content + $.mobile.page.prototype.options.contentTheme = null; + + expect(5); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( $( "#mypage" ) ); + }, + + function() { + //bring up the dialog + $( "#link-b" ).click(); + }, + + function() { + var dialog = $( "#dialog-b" ); + + // Assert dialog theme inheritance (issue 1375): + ok( dialog.hasClass( "ui-body-e" ), "Expected explicit theme ui-body-e" ); + ok( !dialog.hasClass( "ui-overlay-b" ), "Expected no theme ui-overlay-b" ); + ok( dialog.find( ":jqmData(role=header)" ).hasClass( "ui-bar-" + $.mobile.page.prototype.options.footerTheme ), "Expected header to inherit from $.mobile.page.prototype.options.headerTheme" ); + ok( dialog.find( ":jqmData(role=content)" ).hasClass( "ui-body-e" ), "Expect content to inherit from data-theme" ); + ok( dialog.find( ":jqmData(role=footer)" ).hasClass( "ui-bar-" + $.mobile.page.prototype.options.footerTheme ), "Expected footer to inherit from $.mobile.page.prototype.options.footerTheme" ); + + start(); + } + ]); + }); + + asyncTest( "dialog element with data-theme & data-overlay-theme", function() { + expect(5); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( $( "#mypage" ) ); + }, + + function() { + //bring up the dialog + $( "#link-c" ).click(); + }, + + function() { + var dialog = $( "#dialog-c" ); + + // Assert dialog theme inheritance (issue 1375): + ok( dialog.hasClass( "ui-body-e" ), "Expected explicit theme ui-body-e" ); + ok( dialog.hasClass( "ui-overlay-b" ), "Expected explicit theme ui-overlay-b" ); + ok( dialog.find( ":jqmData(role=header)" ).hasClass( "ui-bar-" + $.mobile.page.prototype.options.footerTheme ), "Expected header to inherit from $.mobile.page.prototype.options.headerTheme" ); + ok( dialog.find( ":jqmData(role=content)" ).hasClass( "ui-body-" + $.mobile.page.prototype.options.contentTheme ), "Expect content to inherit from $.mobile.page.prototype.options.contentTheme" ); + ok( dialog.find( ":jqmData(role=footer)" ).hasClass( "ui-bar-" + $.mobile.page.prototype.options.footerTheme ), "Expected footer to inherit from $.mobile.page.prototype.options.footerTheme" ); + + start(); + } + ]); + }); + + + asyncTest( "page container is updated to dialog overlayTheme at pagebeforeshow", function(){ + + expect( 1 ); + + var pageTheme = "ui-overlay-" + $.mobile.activePage.dialog( "option", "overlayTheme" ); + + $.mobile.pageContainer.removeClass( pageTheme ); + + $.mobile.activePage + .bind( "pagebeforeshow", function(){ + ok( $.mobile.pageContainer.hasClass( pageTheme ), "Page container has the same theme as the dialog overlayTheme on pagebeforeshow" ); + start(); + }) + .trigger( "pagebeforeshow" ); + + } ); + + +})( jQuery ); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/index-count.html b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/index-count.html new file mode 100644 index 0000000..88d7e01 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/index-count.html @@ -0,0 +1,63 @@ + + + + + + jQuery Mobile Dialog Test Suite + + + + + + + + + + + + + + + + +

                    jQuery Mobile Dialog Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + +
                    +
                    +

                    Dialog

                    +
                    +
                    + +
                    +
                    + footer +
                    +
                    + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/index.html new file mode 100644 index 0000000..50c8f68 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/dialog/index.html @@ -0,0 +1,102 @@ + + + + + + jQuery Mobile Dialog Test Suite + + + + + + + + + + + + + + + + +

                    jQuery Mobile Dialog Test Suite

                    +

                    +

                    +
                      +
                    + + + +
                    +
                    +

                    Dialog

                    +
                    +
                    + foo +
                    +
                    + footer +
                    +
                    + +
                    +
                    +

                    No theme set

                    +
                    +
                    + Some text here.... +
                    +
                    + footer +
                    +
                    + +
                    +
                    +

                    data-nstest-theme set

                    +
                    +
                    + Some text here.... +
                    +
                    + footer +
                    +
                    + +
                    +
                    +

                    data-nstest-theme & data-nstest-overlay-theme set

                    +
                    +
                    + Some text here.... +
                    +
                    + footer +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/event/event_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/event/event_core.js new file mode 100644 index 0000000..23e6f59 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/event/event_core.js @@ -0,0 +1,551 @@ +/* + * mobile event unit tests + */ + +(function($){ + var libName = "jquery.mobile.event.js", + absFn = Math.abs, + originalEventFn = $.Event.prototype.originalEvent, + preventDefaultFn = $.Event.prototype.preventDefault, + events = ("touchstart touchmove touchend orientationchange tap taphold " + + "swipe swipeleft swiperight scrollstart scrollstop").split( " " ); + + module(libName, { + setup: function(){ + + // ensure bindings are removed + $.each(events + "vmouseup vmousedown".split(" "), function(i, name){ + $("#qunit-fixture").unbind(); + }); + + //NOTE unmock + Math.abs = absFn; + $.Event.prototype.originalEvent = originalEventFn; + $.Event.prototype.preventDefault = preventDefaultFn; + + // make sure the event objects respond to touches to simulate + // the collections existence in non touch enabled test browsers + $.Event.prototype.touches = [{pageX: 1, pageY: 1 }]; + + $($.mobile.pageContainer).unbind( "throttledresize" ); + } + }); + + $.testHelper.excludeFileProtocol(function(){ + test( "new events defined on the jquery object", function(){ + $.each(events, function( i, name ) { + delete $.fn[name]; + same($.fn[name], undefined); + }); + + $.testHelper.reloadLib(libName); + + $.each(events, function( i, name ) { + ok($.fn[name] !== undefined, name + " is not undefined"); + }); + }); + }); + + asyncTest( "defined event functions bind a closure when passed", function(){ + expect( 1 ); + + $('#qunit-fixture').bind(events[0], function(){ + ok(true, "event fired"); + start(); + }); + + $('#qunit-fixture').trigger(events[0]); + }); + + asyncTest( "defined event functions trigger the event with no arguments", function(){ + expect( 1 ); + + $('#qunit-fixture').bind('touchstart', function(){ + ok(true, "event fired"); + start(); + }); + + $('#qunit-fixture').touchstart(); + }); + + test( "defining event functions sets the attrFn to true", function(){ + $.each(events, function(i, name){ + ok($.attrFn[name], "attribute function is true"); + }); + }); + + test( "scrollstart enabled defaults to true", function(){ + $.event.special.scrollstart.enabled = false; + $.testHelper.reloadLib(libName); + ok($.event.special.scrollstart.enabled, "scrollstart enabled"); + }); + + asyncTest( "scrollstart setup binds a function that returns when its disabled", function(){ + expect( 1 ); + $.event.special.scrollstart.enabled = false; + + $( "#qunit-fixture" ).bind("scrollstart", function(){ + ok(false, "scrollstart fired"); + }); + + $( "#qunit-fixture" ).bind("touchmove", function(){ + ok(true, "touchmove fired"); + start(); + }); + + $( "#qunit-fixture" ).trigger("touchmove"); + }); + + asyncTest( "scrollstart setup binds a function that triggers scroll start when enabled", function(){ + $.event.special.scrollstart.enabled = true; + + $( "#qunit-fixture" ).bind("scrollstart", function(){ + ok(true, "scrollstart fired"); + start(); + }); + + $( "#qunit-fixture" ).trigger("touchmove"); + }); + + asyncTest( "scrollstart setup binds a function that triggers scroll stop after 50 ms", function(){ + var triggered = false; + $.event.special.scrollstart.enabled = true; + + $( "#qunit-fixture" ).bind("scrollstop", function(){ + triggered = true; + }); + + ok(!triggered, "not triggered"); + + $( "#qunit-fixture" ).trigger("touchmove"); + + setTimeout(function(){ + ok(triggered, "triggered"); + start(); + }, 50); + }); + + var forceTouchSupport = function(){ + $.support.touch = true; + $.testHelper.reloadLib(libName); + + //mock originalEvent information + $.Event.prototype.originalEvent = { + touches: [{ 'pageX' : 0 }, { 'pageY' : 0 }] + }; + }; + + asyncTest( "long press fires tap hold after 750 ms", function(){ + var taphold = false, + target; + + forceTouchSupport(); + + $( "#qunit-fixture" ).bind("taphold", function( e ){ + taphold = true; + target = e.target; + }); + + $( "#qunit-fixture" ).trigger("vmousedown"); + + setTimeout(function(){ + ok( taphold ); + equal( target, $( "#qunit-fixture" ).get( 0 ), "taphold target should be #qunit-fixture" ); + start(); + }, 751); + }); + + //NOTE used to simulate movement when checked + //TODO find a better way ... + var mockAbs = function(value){ + Math.abs = function(){ + return value; + }; + }; + + asyncTest( "move prevents taphold", function(){ + expect( 1 ); + var taphold = false; + + forceTouchSupport(); + mockAbs(100); + + //NOTE record taphold event + $( "#qunit-fixture" ).bind("taphold", function(){ + ok(false, "taphold fired"); + taphold = true; + }); + + //NOTE start the touch events + $( "#qunit-fixture" ).trigger("vmousedown"); + + //NOTE fire touchmove to push back taphold + setTimeout(function(){ + $( "#qunit-fixture" ).trigger("vmousecancel"); + }, 100); + + //NOTE verify that the taphold hasn't been fired + // with the normal timing + setTimeout(function(){ + ok(!taphold, "taphold not fired"); + start(); + }, 751); + }); + + asyncTest( "tap event fired without movement", function(){ + expect( 1 ); + var tap = false, + checkTap = function(){ + ok(true, "tap fired"); + }; + + forceTouchSupport(); + + //NOTE record the tap event + $( "#qunit-fixture" ).bind("tap", checkTap); + + $( "#qunit-fixture" ).trigger("vmousedown"); + $( "#qunit-fixture" ).trigger("vmouseup"); + $( "#qunit-fixture" ).trigger("vclick"); + + setTimeout(function(){ + start(); + }, 400); + }); + + asyncTest( "tap event not fired when there is movement", function(){ + expect( 1 ); + var tap = false; + forceTouchSupport(); + + //NOTE record tap event + $( "#qunit-fixture" ).bind("tap", function(){ + ok(false, "tap fired"); + tap = true; + }); + + //NOTE make sure movement is recorded + mockAbs(100); + + //NOTE start and move right away + $( "#qunit-fixture" ).trigger("touchstart"); + $( "#qunit-fixture" ).trigger("touchmove"); + + //NOTE end touch sequence after 20 ms + setTimeout(function(){ + $( "#qunit-fixture" ).trigger("touchend"); + }, 20); + + setTimeout(function(){ + ok(!tap, "not tapped"); + start(); + }, 40); + }); + + asyncTest( "tap event propagates up DOM tree", function(){ + var tap = 0, + $qf = $( "#qunit-fixture" ), + $doc = $( document ), + docTapCB = function(){ + same(++tap, 2, "document tap callback called once after #qunit-fixture callback"); + }; + + $qf.bind( "tap", function() { + same(++tap, 1, "#qunit-fixture tap callback called once"); + }); + + $doc.bind( "tap", docTapCB ); + + $qf.trigger( "vmousedown" ) + .trigger( "vmouseup" ) + .trigger( "vclick" ); + + // tap binding should be triggered twice, once for + // #qunit-fixture, and a second time for document. + same( tap, 2, "final tap callback count is 2" ); + + $doc.unbind( "tap", docTapCB ); + + start(); + }); + + asyncTest( "stopPropagation() prevents tap from propagating up DOM tree", function(){ + var tap = 0, + $qf = $( "#qunit-fixture" ), + $doc = $( document ), + docTapCB = function(){ + ok(false, "tap should NOT be triggered on document"); + }; + + $qf.bind( "tap", function(e) { + same(++tap, 1, "tap callback 1 triggered once on #qunit-fixture"); + e.stopPropagation(); + }) + .bind( "tap", function(e) { + same(++tap, 2, "tap callback 2 triggered once on #qunit-fixture"); + }); + + $doc.bind( "tap", docTapCB); + + $qf.trigger( "vmousedown" ) + .trigger( "vmouseup" ) + .trigger( "vclick" ); + + // tap binding should be triggered twice. + same( tap, 2, "final tap count is 2" ); + + $doc.unbind( "tap", docTapCB ); + + start(); + }); + + asyncTest( "stopImmediatePropagation() prevents tap propagation and execution of 2nd handler", function(){ + var tap = 0, + $cf = $( "#qunit-fixture" ); + $doc = $( document ), + docTapCB = function(){ + ok(false, "tap should NOT be triggered on document"); + }; + + // Bind 2 tap callbacks on qunit-fixture. Only the first + // one should ever be called. + $cf.bind( "tap", function(e) { + same(++tap, 1, "tap callback 1 triggered once on #qunit-fixture"); + e.stopImmediatePropagation(); + }) + .bind( "tap", function(e) { + ok(false, "tap callback 2 should NOT be triggered on #qunit-fixture"); + }); + + $doc.bind( "tap", docTapCB); + + $cf.trigger( "vmousedown" ) + .trigger( "vmouseup" ) + .trigger( "vclick" ); + + // tap binding should be triggered once. + same( tap, 1, "final tap count is 1" ); + + $doc.unbind( "tap", docTapCB ); + + start(); + }); + + var swipeTimedTest = function(opts){ + var swipe = false; + + forceTouchSupport(); + + $( "#qunit-fixture" ).bind('swipe', function(){ + swipe = true; + }); + + //NOTE bypass the trigger source check + $.Event.prototype.originalEvent = { + touches: false + }; + + $( "#qunit-fixture" ).trigger("touchstart"); + + //NOTE make sure the coordinates are calculated within range + // to be registered as a swipe + mockAbs(opts.coordChange); + + setTimeout(function(){ + $( "#qunit-fixture" ).trigger("touchmove"); + $( "#qunit-fixture" ).trigger("touchend"); + }, opts.timeout + 100); + + setTimeout(function(){ + same(swipe, opts.expected, "swipe expected"); + start(); + }, opts.timeout + 200); + + stop(); + }; + + test( "swipe fired when coordinate change in less than a second", function(){ + swipeTimedTest({ timeout: 10, coordChange: 35, expected: true }); + }); + + test( "swipe not fired when coordinate change takes more than a second", function(){ + swipeTimedTest({ timeout: 1000, coordChange: 35, expected: false }); + }); + + test( "swipe not fired when coordinate change <= 30", function(){ + swipeTimedTest({ timeout: 1000, coordChange: 30, expected: false }); + }); + + test( "swipe not fired when coordinate change >= 75", function(){ + swipeTimedTest({ timeout: 1000, coordChange: 75, expected: false }); + }); + + asyncTest( "scrolling prevented when coordinate change > 10", function(){ + expect( 1 ); + + forceTouchSupport(); + + // ensure the swipe custome event is setup + $( "#qunit-fixture" ).bind('swipe', function(){}); + + //NOTE bypass the trigger source check + $.Event.prototype.originalEvent = { + touches: false + }; + + $.Event.prototype.preventDefault = function(){ + ok(true, "prevent default called"); + start(); + }; + + mockAbs(11); + + $( "#qunit-fixture" ).trigger("touchstart"); + $( "#qunit-fixture" ).trigger("touchmove"); + }); + + asyncTest( "move handler returns when touchstart has been fired since touchstop", function(){ + expect( 1 ); + + // bypass triggered event check + $.Event.prototype.originalEvent = { + touches: false + }; + + forceTouchSupport(); + + // ensure the swipe custome event is setup + $( "#qunit-fixture" ).bind('swipe', function(){}); + + $( "#qunit-fixture" ).trigger("touchstart"); + $( "#qunit-fixture" ).trigger("touchend"); + + $( "#qunit-fixture" ).bind("touchmove", function(){ + ok(true, "touchmove bound functions are fired"); + start(); + }); + + Math.abs = function(){ + ok(false, "shouldn't compare coordinates"); + }; + + $( "#qunit-fixture" ).trigger("touchmove"); + }); + + var nativeSupportTest = function(opts){ + $.support.orientation = opts.orientationSupport; + same($.event.special.orientationchange[opts.method](), opts.returnValue); + }; + + test( "orientation change setup should do nothing when natively supported", function(){ + nativeSupportTest({ + method: 'setup', + orientationSupport: true, + returnValue: false + }); + }); + + test( "orientation change setup should bind resize when not supported natively", function(){ + nativeSupportTest({ + method: 'setup', + orientationSupport: false, + returnValue: undefined //NOTE result of bind function call + }); + }); + + test( "orientation change teardown should do nothing when natively supported", function(){ + nativeSupportTest({ + method: 'teardown', + orientationSupport: true, + returnValue: false + }); + }); + + test( "orientation change teardown should unbind resize when not supported natively", function(){ + nativeSupportTest({ + method: 'teardown', + orientationSupport: false, + returnValue: undefined //NOTE result of unbind function call + }); + }); + + /* The following 4 tests are async so that the throttled event triggers don't interfere with subsequent tests */ + + asyncTest( "throttledresize event proxies resize events", function(){ + $( window ).one( "throttledresize", function(){ + ok( true, "throttledresize called"); + start(); + }); + + $( window ).trigger( "resize" ); + }); + + asyncTest( "throttledresize event prevents resize events from firing more frequently than 250ms", function(){ + var called = 0; + + $(window).bind( "throttledresize", function(){ + called++; + }); + + // NOTE 250 ms * 3 = 750ms which is plenty of time + // for the events to trigger before the next test, but + // not so much time that the second resize will be triggered + // before the call to same() is made + $.testHelper.sequence([ + function(){ + $(window).trigger( "resize" ).trigger( "resize" ); + }, + + // verify that only one throttled resize was called after 250ms + function(){ same( called, 1 ); }, + + function(){ + start(); + } + ], 250); + }); + + asyncTest( "throttledresize event promises that a held call will execute only once after throttled timeout", function(){ + var called = 0; + + expect( 2 ); + + $.testHelper.eventSequence( "throttledresize", [ + // ignore the first call + $.noop, + + function(){ + ok( true, "second throttled resize should run" ); + }, + + function(timedOut){ + ok( timedOut, "third throttled resize should not run"); + start(); + } + ]); + + $.mobile.pageContainer + .trigger( "resize" ) + .trigger( "resize" ) + .trigger( "resize" ); + }); + + asyncTest( "mousedown mouseup and click events should add a which when its not defined", function() { + var whichDefined = function( event ){ + same(event.which, 1); + }; + + $( document ).bind( "vclick", whichDefined); + $( document ).trigger( "click" ); + + $( document ).bind( "vmousedown", whichDefined); + $( document ).trigger( "mousedown" ); + + $( document ).bind( "vmouseup", function( event ){ + same(event.which, 1); + start(); + }); + + $( document ).trigger( "mouseup" ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/event/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/event/index.html new file mode 100644 index 0000000..b1c46a4 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/event/index.html @@ -0,0 +1,42 @@ + + + + + + jQuery Mobile Event Test Suite + + + + + + + + + + + + + + + + + + + + +

                    jQuery Mobile Event Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + +
                    + +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/fieldContain/fieldContain_events.js b/libs/js/jquery-mobile-1.1.0/tests/unit/fieldContain/fieldContain_events.js new file mode 100644 index 0000000..75066bf --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/fieldContain/fieldContain_events.js @@ -0,0 +1,29 @@ +/* + * mobile dialog unit tests + */ +(function($){ + module('jquery.mobile.fieldContain.js'); + + test( "Field container contains appropriate css styles", function(){ + ok($('#test-fieldcontain').hasClass('ui-field-contain ui-body ui-br'), 'A fieldcontain element must contain styles "ui-field-contain ui-body ui-br"'); + }); + + test( "Field container will create when inside a container that receives a 'create' event", function(){ + ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-field-contain").length, "did not have enhancements applied" ); + ok( $("#enhancetest").trigger("create").find(".ui-field-contain").length, "enhancements applied" ); + }); + + test( "field containers inside ignore container should not be enhanced", function() { + var $ignored = $( "#ignored-fieldcontain" ), $enhanced = $( "#enhanced-fieldcontain" ); + + $.mobile.ignoreContentEnabled = true; + + $( "#ignore-container-tests" ).trigger( "create" ); + + same( $ignored.attr( "class" ), undefined, "ignored div does not have field contain class" ); + ok( $enhanced.hasClass( "ui-field-contain" ), "enhanced div has field contain class" ); + + $.mobile.ignoreContentEnabled = false; + + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/fieldContain/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/fieldContain/index.html new file mode 100644 index 0000000..1be5157 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/fieldContain/index.html @@ -0,0 +1,66 @@ + + + + + jQuery Mobile FieldContain Integration Test + + + + + + + + + + + + + + + + +

                    jQuery Mobile FieldContainer Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + + +
                    + + +
                    + +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/fixedToolbar/fixedToolbar.js b/libs/js/jquery-mobile-1.1.0/tests/unit/fixedToolbar/fixedToolbar.js new file mode 100644 index 0000000..d03ae0a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/fixedToolbar/fixedToolbar.js @@ -0,0 +1,360 @@ +/* + * mobile Fixed Toolbar unit tests + */ +(function($){ + module('jquery.mobile.fixedToolbar.js'); + + $( "html" ).height( screen.height * 3 ); + + function scrollDown(){ + window.scrollTo(0,screen.height ); + } + + function scrollUp(){ + window.scrollTo(0,0); + } + + module("jquery.mobile.fixedToolbar.js", {setup: function() { + var startTimeout; + + // swallow the inital page change + stop(); + $(document).one("pagechange", function() { + clearTimeout(startTimeout); + }); + + startTimeout = setTimeout(start, 1000); + }}); + + + test( "Fixed Header Structural Classes are applied correctly", function(){ + + //footer + ok( !$('#classes-test-a').hasClass('ui-header-fixed'), 'An ordinary header should not have fixed classes'); + ok( $('#classes-test-b').hasClass('ui-header-fixed'), 'An header with data-position=fixed should have ui-header-fixed class'); + ok( $('#classes-test-c').hasClass('ui-header-fullscreen'), 'An header with data-position=fixed and data-fullscreen should have ui-header-fullscreen class'); + + //footer + ok( !$('#classes-test-d').hasClass('ui-footer-fixed'), 'An ordinary footer should not have fixed classes'); + ok( $('#classes-test-e').hasClass('ui-footer-fixed'), 'A footer with data-position=fixed should have ui-footer-fixed class"'); + ok( $('#classes-test-f').hasClass('ui-footer-fullscreen'), 'A footer with data-position=fixed and data-fullscreen should have ui-footer-fullscreen class'); + + //parent + ok( $('#classes-test-b').closest( ".ui-page" ).hasClass( "ui-page-header-fixed" ), "Parent page of a fixed header has class ui-page-header-fixed" ); + ok( $('#classes-test-e').closest( ".ui-page" ).hasClass( "ui-page-footer-fixed" ), "Parent page of a fixed footer has class ui-page-header-fixed" ); + ok( $('#classes-test-c').closest( ".ui-page" ).hasClass( "ui-page-header-fullscreen" ), "Parent page of a fullscreen header has class ui-page-header-fullscreen" ); + ok( $('#classes-test-f').closest( ".ui-page" ).hasClass( "ui-page-footer-fullscreen" ), "Parent page of a fullscreen footer has class ui-page-header-fullscreen" ); + + + }); + + asyncTest( "Fixed header and footer transition classes are applied correctly", function(){ + + expect( 6 ); + + $.testHelper.sequence([ + function(){ + $( '#classes-test-b, #classes-test-g, #classes-test-e,#classes-test-h,#classes-test-i,#classes-test-j, #classes-test-k' ).fixedtoolbar( "hide" ); + scrollDown(); + }, + + function(){ + //show first + $( '#classes-test-b, #classes-test-g, #classes-test-e,#classes-test-h,#classes-test-i,#classes-test-j, #classes-test-k' ).fixedtoolbar( "show" ); + }, + + function() { + + ok( $( '#classes-test-g' ).hasClass('slidedown'), 'The slidedown class should be applied by default'); + ok( $( '#classes-test-k' ).hasClass('in'), 'The "in" class should be applied for fade transitions'); + ok( !$( '#classes-test-h' ).hasClass('slidedown'), 'The slidedown class should not be applied when the header has a data-transition of "none"'); + + ok( !$( '#classes-test-h' ).hasClass('in'), 'The "in" class should not be applied when the header has a data-transition of "none"'); + ok( $( '#classes-test-i' ).hasClass('slidedown'), 'The "slidedown" class should be applied when the header has a data-transition of "slide"'); + ok( $( '#classes-test-j' ).hasClass('slideup'), 'The "slideup" class should be applied when the footer has a data-transition of "slide"'); + + }, + + function(){ + scrollUp(); + start(); + } + ], 1000); + + }); + + test( "User zooming is disabled when the header is visible and disablePageZoom is true", function(){ + $.mobile.zoom.enable(); + var defaultZoom = $.mobile.fixedtoolbar.prototype.options.disablePageZoom; + $( ".ui-page-active .ui-header-fixed" ).fixedtoolbar("option", "disablePageZoom", true ); + + $( ".ui-page-active" ).trigger( "pagebeforeshow" ); + ok( !$.mobile.zoom.enabled, "Viewport scaling is disabled before page show." ); + $( ".ui-page-active .ui-header-fixed" ).fixedtoolbar("option", "disablePageZoom", defaultZoom ); + $.mobile.zoom.enable(); + }); + + test( "Meta viewport content is restored to previous state, and zooming renabled, after pagebeforehide", function(){ + $.mobile.zoom.enable( true ); + var defaultZoom = $.mobile.fixedtoolbar.prototype.options.disablePageZoom; + $( ".ui-page-active .ui-header-fixed" ).fixedtoolbar("option", "disablePageZoom", true ); + + $( ".ui-page-active" ).trigger( "pagebeforeshow" ); + ok( !$.mobile.zoom.enabled, "Viewport scaling is disabled before page show." ); + $( ".ui-page-active" ).trigger( "pagebeforehide" ); + ok( $.mobile.zoom.enabled, "Viewport scaling is enabled." ); + $( ".ui-page-active .ui-header-fixed" ).fixedtoolbar("option", "disablePageZoom", defaultZoom ); + $.mobile.zoom.enable( true ); + }); + + test( "User zooming is not disabled when the header is visible and disablePageZoom is false", function(){ + $.mobile.zoom.enable( true ); + var defaultZoom = $.mobile.fixedtoolbar.prototype.options.disablePageZoom; + $( ".ui-page :jqmData(position='fixed')" ).fixedtoolbar( "option", "disablePageZoom", false ); + + $( ".ui-page-active" ).trigger( "pagebeforeshow" ); + + ok( $.mobile.zoom.enabled, "Viewport scaling is not disabled before page show." ); + + $( ".ui-page :jqmData(position='fixed')" ).fixedtoolbar( "option", "disablePageZoom", defaultZoom ); + + $.mobile.zoom.enable( true ); + }); + + + asyncTest( "The hide method is working properly", function() { + + expect( 2 ); + + $.testHelper.sequence([ + function(){ + $( '#classes-test-g' ).fixedtoolbar( "show" ); + scrollDown(); + }, + + function() { + $( '#classes-test-g' ).fixedtoolbar( "hide" ); + + ok( $( '#classes-test-g' ).hasClass('out'), 'The out class should be applied when hide is called'); + }, + + function() { + ok( $( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar has the ui-fixed-hidden class applied after hide'); + $( '#classes-test-g' ).fixedtoolbar( "show" ); + + }, + + function(){ + scrollUp(); + start(); + } + + ], 500); + }); + + + + asyncTest( "The show method is working properly", function() { + + expect( 2 ); + + $.testHelper.sequence([ + function(){ + scrollDown(); + }, + + function() { + $( '#classes-test-g' ).fixedtoolbar( "hide" ); + }, + + function() { + $( '#classes-test-g' ).fixedtoolbar( "show" ); + + ok( $( '#classes-test-g' ).hasClass('in'), 'The in class should be applied when show is called'); + }, + + function() { + ok( !$( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar does not have the ui-fixed-hidden class applied after show'); + + }, + + function(){ + scrollUp(); + start(); + } + ], 500); + }); + + + asyncTest( "The toggle method is working properly", function() { + + expect( 3 ); + + $.testHelper.sequence([ + function(){ + scrollDown(); + }, + + function(){ + $( '#classes-test-g' ).fixedtoolbar( "show" ); + }, + + function() { + ok( !$( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar does not have the ui-fixed-hidden class'); + $( '#classes-test-g' ).fixedtoolbar( "toggle" ); + }, + + function() { + ok( $( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar does have the ui-fixed-hidden class'); + $( '#classes-test-g' ).fixedtoolbar( "toggle" ); + }, + + function() { + ok( !$( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar does not have the ui-fixed-hidden class'); + + }, + + function(){ + scrollUp(); + start(); + } + + ], 500); + }); + + + asyncTest( "The persistent headers and footers are working properly", function() { + + expect( 3 ); + + $( "#persist-test-b, #persist-test-a" ).page(); + + var nextpageheader = $( "#persist-test-b .ui-header-fixed" ), + nextpagefooter = $( "#persist-test-b .ui-footer-fixed" ); + + + $.testHelper.pageSequence([ + function(){ + ok( nextpageheader.length && nextpagefooter.length, "next page has fixed header and fixed footer" ); + $.mobile.changePage( "#persist-test-a" ); + }, + + function(){ + $( "#persist-test-b" ) + .one( "pagebeforeshow", function(){ + ok( nextpageheader.parent( ".ui-mobile-viewport" ).length, "fixed header and footer are now a child of page container" ); + }); + + $.mobile.changePage( "#persist-test-b" ); + }, + + function() { + ok( nextpageheader.parent( ".ui-page" ).length, "fixed header and footer are now a child of page again" ); + $.mobile.changePage( "#default" ); + }, + + start + ]); + }); + + asyncTest( "The persistent headers should work without a footer", function() { + + expect( 3 ); + + $( "#persist-test-c, #persist-test-d" ).page(); + + var nextpageheader = $( "#persist-test-d .ui-header-fixed" ); + + $.testHelper.pageSequence([ + function(){ + ok( nextpageheader.length, "next page has fixed header and fixed footer" ); + $.mobile.changePage( "#persist-test-c" ); + }, + + function(){ + $( "#persist-test-d" ) + .one( "pagebeforeshow", function(){ + same( nextpageheader.parent()[0], $.mobile.pageContainer[0], "fixed header is now a child of page container" ); + }); + + $.mobile.changePage( "#persist-test-d" ); + }, + + function() { + same( nextpageheader.parent()[0], $.mobile.activePage[0], "fixed header is now a child of page again" ); + $.mobile.changePage( "#default" ); + }, + + start + ]); + }); + + asyncTest( "The persistent footers should work without a header", function() { + + expect( 3 ); + + $( "#persist-test-e, #persist-test-f" ).page(); + + var nextpagefooter = $( "#persist-test-f .ui-footer-fixed" ); + + $.testHelper.pageSequence([ + function(){ + ok( nextpagefooter.length, "next page has fixed footer and fixed footer" ); + $.mobile.changePage( "#persist-test-e" ); + }, + + function(){ + $( "#persist-test-f" ) + .one( "pagebeforeshow", function(){ + same( nextpagefooter.parent()[0], $.mobile.pageContainer[0], "fixed footer is now a child of page container" ); + }); + + $.mobile.changePage( "#persist-test-f" ); + }, + + function() { + same( nextpagefooter.parent()[0], $.mobile.activePage[0], "fixed footer is now a child of page again" ); + $.mobile.changePage( "#default" ); + }, + + start + ]); + }); + + + var asyncTestFooterAndHeader = function( pageSelector, areHidden ) { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( pageSelector ); + }, + + function() { + var $footer = $.mobile.activePage.find( ".ui-footer" ), + $header = $.mobile.activePage.find( ".ui-header" ), + hidden = areHidden ? "hidden" : "visible"; + + equal( $footer.length, 1, "there should be one footer" ); + equal( $header.length, 1, "there should be one header" ); + + equal( $footer.hasClass( "ui-fixed-hidden" ), areHidden, "the footer should be " + hiddenStr ); + equal( $header.hasClass( "ui-fixed-hidden" ), areHidden, "the header should be " + hiddenStr ); + + $.mobile.changePage( "#default" ); + }, + + start + ]); + }; + + asyncTest( "data-visible-on-page-show hides toolbars when false", function() { + asyncTestFooterAndHeader( "#page-show-visible-false", false ); + }); + + asyncTest( "data-visible-on-page-show shows toolbars when explicitly true", function() { + asyncTestFooterAndHeader( "#page-show-visible-true", true ); + }); + + asyncTest( "data-visible-on-page-show shows toolbars when undefined", function() { + asyncTestFooterAndHeader( "#page-show-visible-undefined", true ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/fixedToolbar/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/fixedToolbar/index.html new file mode 100644 index 0000000..d65a471 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/fixedToolbar/index.html @@ -0,0 +1,98 @@ + + + + + jQuery Mobile Fixed Toolbar Integration Test + + + + + + + + + + + + + + + + +

                    jQuery Mobile FieldContainer Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    +
                    +
                    +
                    +
                    +
                    + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +

                    foo

                    +
                    +
                    +

                    foo

                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/index.html new file mode 100644 index 0000000..c53dd96 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/index.html @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/init/dialog-load-test.html b/libs/js/jquery-mobile-1.1.0/tests/unit/init/dialog-load-test.html new file mode 100644 index 0000000..716bdd6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/init/dialog-load-test.html @@ -0,0 +1,45 @@ + + + + + jQuery Mobile Init Test Suite + + + + + + + + + + + + + + + +

                    jQuery Mobile Init Test Suite

                    +

                    +

                    +
                      +
                    + +
                    + + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/init/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/init/index.html new file mode 100644 index 0000000..15854a6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/init/index.html @@ -0,0 +1,36 @@ + + + + + jQuery Mobile Init Test Suite + + + + + + + + + + + + + + + + + +

                    jQuery Mobile Init Test Suite

                    +

                    +

                    +
                      +
                    + +
                    +
                    + +
                    +
                    + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_core.js new file mode 100644 index 0000000..5c452bc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_core.js @@ -0,0 +1,271 @@ +/* + * mobile init tests + */ +(function($){ + var mobilePage = undefined, + libName = 'jquery.mobile.init.js', + coreLib = 'jquery.mobile.core.js', + extendFn = $.extend, + originalLoadingMessage = $.mobile.loadingMessage, + setGradeA = function(value) { $.mobile.gradeA = function(){ return value; }; }, + reloadCoreNSandInit = function(){ + $.testHelper.reloadLib(coreLib); + $.testHelper.reloadLib("jquery.setNamespace.js"); + $.testHelper.reloadLib(libName); + }; + + + module(libName, { + setup: function(){ + // NOTE reset for gradeA tests + $('html').removeClass('ui-mobile'); + + // TODO add post reload callback + $('.ui-loader').remove(); + }, + teardown: function(){ + $.extend = extendFn; + + // NOTE reset for showPageLoadingMsg/hidePageLoadingMsg tests + $('.ui-loader').remove(); + + // clear the classes added by reloading the init + $("html").attr('class', ''); + + $.mobile.loadingMessage = originalLoadingMessage; + } + }); + + // NOTE important to use $.fn.one here to make sure library reloads don't fire + // the event before the test check below + $(document).one("mobileinit", function(){ + mobilePage = $.mobile.page; + }); + + // NOTE for the following two tests see index html for the binding + test( "mobile.page is available when mobile init is fired", function(){ + ok( mobilePage !== undefined, "$.mobile.page is defined" ); + }); + + $.testHelper.excludeFileProtocol(function(){ + asyncTest( "loading the init library triggers mobilinit on the document", function(){ + var initFired = false; + expect( 1 ); + + $(window.document).one('mobileinit', function(event){ + initFired = true; + }); + + $.testHelper.reloadLib(libName); + + setTimeout(function(){ + ok(initFired, "init fired"); + start(); + }, 1000); + }); + + test( "enhancments are skipped when the browser is not grade A", function(){ + setGradeA(false); + $.testHelper.reloadLib(libName); + + //NOTE easiest way to check for enhancements, not the most obvious + ok(!$("html").hasClass("ui-mobile"), "html elem doesn't have class ui-mobile"); + }); + + test( "enhancments are added when the browser is grade A", function(){ + setGradeA(true); + $.testHelper.reloadLib(libName); + + ok($("html").hasClass("ui-mobile"), "html elem has class mobile"); + }); + + asyncTest( "useFastClick is configurable via mobileinit", function(){ + $(document).one( "mobileinit", function(){ + $.mobile.useFastClick = false; + start(); + }); + + $.testHelper.reloadLib(libName); + + same( $.mobile.useFastClick, false , "fast click is set to false after init" ); + $.mobile.useFastClick = true; + }); + + + + var findFirstPage = function() { + return $(":jqmData(role='page')").first(); + }; + + test( "active page and start page should be set to the fist page in the selected set", function(){ + expect( 2 ); + $.testHelper.reloadLib(libName); + var firstPage = findFirstPage(); + + same($.mobile.firstPage[0], firstPage[0]); + same($.mobile.activePage[0], firstPage[0]); + }); + + test( "mobile viewport class is defined on the first page's parent", function(){ + expect( 1 ); + $.testHelper.reloadLib(libName); + var firstPage = findFirstPage(); + + ok(firstPage.parent().hasClass("ui-mobile-viewport"), "first page has viewport"); + }); + + test( "mobile page container is the first page's parent", function(){ + expect( 1 ); + $.testHelper.reloadLib(libName); + var firstPage = findFirstPage(); + + same($.mobile.pageContainer[0], firstPage.parent()[0]); + }); + + asyncTest( "hashchange triggered on document ready with single argument: true", function(){ + $.testHelper.sequence([ + function(){ + location.hash = "#foo"; + }, + + // delay the bind until the first hashchange + function(){ + $(window).one("hashchange", function(ev, arg){ + same(arg, true); + start(); + }); + }, + + function(){ + $.testHelper.reloadLib(libName); + } + ], 1000); + }); + + test( "pages without a data-url attribute have it set to their id", function(){ + same($("#foo").jqmData('url'), "foo"); + }); + + test( "pages with a data-url attribute are left with the original value", function(){ + same($("#bar").jqmData('url'), "bak"); + }); + + asyncTest( "showPageLoadingMsg doesn't add the dialog to the page when loading message is false", function(){ + expect( 1 ); + $.mobile.loadingMessage = false; + $.mobile.showPageLoadingMsg(); + + setTimeout(function(){ + ok(!$(".ui-loader").length, "no ui-loader element"); + start(); + }, 500); + }); + + asyncTest( "hidePageLoadingMsg doesn't add the dialog to the page when loading message is false", function(){ + expect( 1 ); + $.mobile.loadingMessage = true; + $.mobile.hidePageLoadingMsg(); + + setTimeout(function(){ + same($(".ui-loading").length, 0, "page should not be in the loading state"); + start(); + }, 500); + }); + + asyncTest( "showPageLoadingMsg adds the dialog to the page when loadingMessage is true", function(){ + expect( 1 ); + $.mobile.loadingMessage = true; + $.mobile.showPageLoadingMsg(); + + setTimeout(function(){ + same($(".ui-loading").length, 1, "page should be in the loading state"); + start(); + }, 500); + }); + + asyncTest( "page loading should contain default loading message", function(){ + expect( 1 ); + reloadCoreNSandInit(); + $.mobile.showPageLoadingMsg(); + + setTimeout(function(){ + same($(".ui-loader h1").text(), "loading"); + start(); + }, 500); + }); + + asyncTest( "page loading should contain custom loading message", function(){ + $.mobile.loadingMessage = "foo"; + $.testHelper.reloadLib(libName); + $.mobile.showPageLoadingMsg(); + + setTimeout(function(){ + same($(".ui-loader h1").text(), "foo"); + start(); + }, 500); + }); + + asyncTest( "page loading should contain custom loading message when set during runtime", function(){ + $.mobile.loadingMessage = "bar"; + $.mobile.showPageLoadingMsg(); + + setTimeout(function(){ + same($(".ui-loader h1").text(), "bar"); + start(); + }, 500); + }); + + + + // NOTE: the next two tests work on timeouts that assume a page will be created within 2 seconds + // it'd be great to get these using a more reliable callback or event + + asyncTest( "page does auto-initialize at domready when autoinitialize option is true (default) ", function(){ + + $( "
                    ", { "data-nstest-role": "page", "id": "autoinit-on" } ).prependTo( "body" ) + + $(document).one("mobileinit", function(){ + $.mobile.autoInitializePage = true; + }); + + location.hash = ""; + + reloadCoreNSandInit(); + + setTimeout(function(){ + same( $( "#autoinit-on.ui-page" ).length, 1 ); + + start(); + }, 2000); + }); + + + asyncTest( "page does not initialize at domready when autoinitialize option is false ", function(){ + $(document).one("mobileinit", function(){ + $.mobile.autoInitializePage = false; + }); + + $( "
                    ", { "data-nstest-role": "page", "id": "autoinit-off" } ).prependTo( "body" ) + + location.hash = ""; + + + reloadCoreNSandInit(); + + setTimeout(function(){ + same( $( "#autoinit-off.ui-page" ).length, 0 ); + + $(document).bind("mobileinit", function(){ + $.mobile.autoInitializePage = true; + }); + + reloadCoreNSandInit(); + + start(); + }, 2000); + }); + + + + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/init/init_core_nopage.js b/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_core_nopage.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/init/init_core_nopage.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/init/init_core_nopage.js diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_dialog.js b/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_dialog.js new file mode 100644 index 0000000..0479388 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/init/init_dialog.js @@ -0,0 +1,16 @@ +/* + * mobile init dialog tests + */ +(function($){ + module( "jquery.mobile.init dialog load tests" ); + + // issue #3275 + test( "A document containing no pages and a dialog role div will enhance the div as a page", function() { + ok( $("#foo").hasClass( "ui-page" ), "the div has the page class" ); + + // NOTE this will fail when/if we decide to render it as a dialog + ok( !$("#foo").hasClass( "ui-dialog" ), "the div does NOT have the dialog page class" ); + }); + + //NOTE the opposite case is tested everyewhere else in the suite :D +})( jQuery ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/init/nopage.html b/libs/js/jquery-mobile-1.1.0/tests/unit/init/nopage.html new file mode 100644 index 0000000..4decaae --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/init/nopage.html @@ -0,0 +1,31 @@ + + + + + jQuery Mobile Init Test Suite + + + + + + + + + + + + + + +

                    jQuery Mobile Init Test Suite

                    +

                    +

                    +
                      +
                    + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/jquery.setNameSpace.js b/libs/js/jquery-mobile-1.1.0/tests/unit/jquery.setNameSpace.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/jquery.setNameSpace.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/jquery.setNameSpace.js diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/kitchensink/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/kitchensink/index.html new file mode 100644 index 0000000..f390407 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/kitchensink/index.html @@ -0,0 +1,421 @@ + + + + + jQuery Mobile Kitchen Sink Test Suite + + + + + + + + + + + + + + + + + + +

                    jQuery Mobile Kitchen Sink Test Suite

                    +

                    +

                    +
                      +
                    + +
                    +
                    +

                    Fixed toolbars

                    + Home + Search +
                    + +
                    + +

                    Form Elements in Fieldcontains

                    +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    +
                    + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Font styling: + + + + + + + + +
                    +
                    + +
                    +
                    + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Layout view: + + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +

                    Mini Form Elements

                    + + + + + + + + + + + + + +
                    + + +
                    + +
                    +
                    + + + Choose as many snacks as you'd like: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + + Font styling: + + + + + + + + +
                    +
                    + +
                    + + + + + +
                    + +
                    +
                    + + + Choose a pet: + + + + + + + + + + + +
                    +
                    + +
                    +
                    + Layout view: + + + + + + +
                    +
                    + +
                    + + +
                    + +
                    + + +
                    + +
                    + + +
                    + + + + +

                    Simple list

                    + + + +

                    Mini list

                    + + +

                    Individual mini item

                    + + + + + +

                    Count bubbles

                    + + +

                    Numbered list

                    +
                      +
                    1. The Godfather
                    2. +
                    3. Inception
                    4. +
                    5. The Good, the Bad and the Ugly
                    6. +
                    7. Pulp Fiction
                    8. +
                    9. Schindler's List
                    10. +
                    + +

                    Divided, formatted content

                    + + + + +

                    Icon list

                    + + +

                    Thumbnail, split button list

                    + + + +

                    Divided, filterable list

                    + + +
                    + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/kitchensink/kitchensink_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/kitchensink/kitchensink_core.js new file mode 100644 index 0000000..8f31310 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/kitchensink/kitchensink_core.js @@ -0,0 +1,13 @@ +/* + * Kitchen Sink Tests + */ +(function($){ + module("kitchen sink class test"); + + test( "Nothing on the page has a class that contains `undefined`.", function(){ + var undefClass = $(".ui-page").find("[class*='undefined']"); + + ok( undefClass.length == 0 ); + }); + +})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/cache-tests/cached-nested.html b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/cache-tests/cached-nested.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/cache-tests/cached-nested.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/listview/cache-tests/cached-nested.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/cache-tests/clear.html b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/cache-tests/clear.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/cache-tests/clear.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/listview/cache-tests/clear.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/cache-tests/uncached-nested.html b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/cache-tests/uncached-nested.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/cache-tests/uncached-nested.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/listview/cache-tests/uncached-nested.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/listview/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/index.html new file mode 100644 index 0000000..0317c4a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/index.html @@ -0,0 +1,363 @@ + + + + + + jQuery Mobile Listview Integration Test + + + + + + + + + + + + + + + +

                    jQuery Mobile Listview Integration Test

                    +

                    +

                    +
                      +
                    + + +
                    +
                    +

                    Basic List View

                    +
                    + + +
                    + + + + +
                    +
                    +

                    Basic List View

                    +
                    +
                    +
                      +
                    • Groups of animals +
                        +
                      • pod of whales
                      • +
                      • quiver of cobras
                      • +
                      • troop of baboons
                      • +
                      +
                    • +
                    • + + More animals + + +
                        +
                      • Shoal of Bass
                      • +
                      • Rhumba of rattlesnakes
                      • +
                      +
                    • +
                    +
                    +
                    + + +
                    +
                    +

                    Basic multiple lists view

                    +
                    +
                    +
                      +
                    • Item 1
                    • +
                    • Item 2
                    • +
                    • Item 3 +
                        +
                      • Item A-3-0
                      • +
                      • Item A-3-1
                      • +
                      • Item A-3-2
                      • +
                      +
                    • +
                    +
                      +
                    • Item 1
                    • +
                    • Item 2
                    • +
                    • Item 3 +
                        +
                      • Item B-3-0 +
                          +
                        • Item B-3-0-0
                        • +
                        • Item B-3-0-1 +
                            +
                          • Item B-3-0-1-0
                          • +
                          • Item B-3-0-1-1
                          • +
                          • Item B-3-0-1-2
                          • +
                          +
                        • +
                        • Item B-3-0-2
                        • +
                        +
                      • +
                      • Item B-3-1 +
                          +
                        • Item B-3-1-0
                        • +
                        • Item B-3-1-1
                        • +
                        • Item B-3-1-2
                        • +
                        +
                      • +
                      • Item B-3-2
                      • +
                      +
                    • +
                    +
                    +
                    + + +
                    +
                    +

                    Basic List View

                    +
                    +
                    +
                      +
                    1. Number 1
                    2. +
                    3. Number 2
                    4. +
                    5. Number 3
                    6. +
                    +
                    +
                    + +
                    +
                    +

                    Numbered List

                    +
                    +
                    + + +
                    +
                    +

                    Basic List View

                    +
                    +
                    +
                      +
                    • Read
                    • +
                    • Only
                    • +
                    • List
                    • +
                    • View
                    • +
                    +
                    +
                    + + +
                    +
                    +

                    Split List View

                    +
                    + +
                    + +
                    +
                    +

                    Split List view 1

                    +
                    +
                    + +
                    +
                    +

                    Split List view 2

                    +
                    +
                    + + +
                    +
                    +

                    List Divider Test

                    +
                    +
                    +
                      +
                    • a is for aquaman
                    • +
                    • b is for batman
                    • +
                    • This is a list divider
                    • +
                    • c is for catwoman
                    • +
                    • This is another list divider
                    • +
                    • d is for darkwing
                    • +
                    +
                    +
                    + + +
                    +
                    +

                    Split List View

                    +
                    +
                    +
                      +
                    • a is for aquaman
                    • +
                    • b is for batman
                    • +
                    • c is for catwoman
                    • +
                    • d is for darkwing
                    • +
                    +
                    +
                    + + +
                    +
                    +

                    Split List View

                    +
                    +
                    +
                      +
                    • a
                    • +
                    • a is for aquaman
                    • +
                    • b
                    • +
                    • b is for batman
                    • +
                    • c
                    • +
                    • c is for catwoman
                    • +
                    • d
                    • +
                    • d is for darkwing
                    • +
                    +
                    +
                    + + +
                    +
                    +

                    Inset Filter List View

                    +
                    +
                    +
                      +
                    • a is for aquaman
                    • +
                    • b is for batman
                    • +
                    • c is for catwoman
                    • +
                    • d is for darkwing
                    • +
                    +
                    +
                    + + +
                    +
                      +
                      + + +
                      +
                      +

                      Basic List View

                      +
                      +
                      +
                        +
                      • Item 1
                      • +
                      • Item 2
                      • +
                      • Item 3
                      • +
                      • Item 4
                      • +
                      +
                      +
                      + + +
                      +
                      +

                      Basic List View

                      +
                      +
                      +
                        +
                      +
                      +
                      + +
                      + +
                      + +
                      +
                        +
                      • foo
                      • +
                      +
                      + +
                      +
                      +

                      Right padding on item 1 is OK (75px).

                      +

                      Right padding on items 2 & 3 should probably be around 30 or 35 (not 25).

                      +

                      Right padding on item 4 should be 15px to match the left side.

                      +
                        +
                      1. Link LI with counter --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------123
                      2. +
                      3. Link LI without counter -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                      4. +
                      5. Page1 Link LI without counter -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                      6. +
                      7. Static LI with counter ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------123
                      8. +
                      9. Static LI without counter ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                      10. +
                      +
                      +
                      + + +
                      +
                        +
                      • foo
                      • +
                      • bar
                      • +
                      +
                      + +
                      +
                        +
                      • foo
                      • +
                      • bar
                      • +
                      +
                      + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/listview/listview_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/listview_core.js new file mode 100755 index 0000000..7652c8b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/listview_core.js @@ -0,0 +1,857 @@ +/* + * mobile listview unit tests + */ + +// TODO split out into seperate test files +(function($){ + var home = $.mobile.path.parseUrl( location.href ).pathname + location.search, + insetVal = $.mobile.listview.prototype.options.inset; + + $.mobile.defaultTransition = "none"; + + module( "Basic Linked list", { + setup: function(){ + if( location.hash != "#basic-linked-test" ){ + stop(); + + $(document).one("pagechange", function() { + start(); + }); + + $.mobile.changePage( home ); + } + }, + + teardown: function() { + $.mobile.listview.prototype.options.inset = insetVal; + } + }); + + asyncTest( "The page should enhanced correctly", function(){ + setTimeout(function() { + ok($('#basic-linked-test .ui-li').length, ".ui-li classes added to li elements"); + start(); + }, 800); + }); + + asyncTest( "Slides to the listview page when the li a is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#basic-linked-test"); + }, + + function(){ + $('#basic-linked-test li a').first().click(); + }, + + function(){ + ok($('#basic-link-results').hasClass('ui-page-active')); + start(); + } + ]); + }); + + asyncTest( "Slides back to main page when back button is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#basic-link-results"); + }, + + function(){ + window.history.back(); + }, + + function(){ + ok($('#basic-linked-test').hasClass('ui-page-active')); + start(); + } + ]); + }); + + asyncTest( "Presence of ui-li-has- classes", function(){ + $.testHelper.pageSequence( [ + function() { + $.mobile.changePage( "#ui-li-has-test" ); + }, + + function() { + var page = $( ".ui-page-active" ), + items = page.find( "li" ); + + ok( items.eq( 0 ).hasClass( "ui-li-has-count"), "First LI should have ui-li-has-count class" ); + ok( items.eq( 0 ).hasClass( "ui-li-has-arrow"), "First LI should have ui-li-has-arrow class" ); + ok( !items.eq( 1 ).hasClass( "ui-li-has-count"), "Second LI should NOT have ui-li-has-count class" ); + ok( items.eq( 1 ).hasClass( "ui-li-has-arrow"), "Second LI should have ui-li-has-arrow class" ); + ok( !items.eq( 2 ).hasClass( "ui-li-has-count"), "Third LI should NOT have ui-li-has-count class" ); + ok( !items.eq( 2 ).hasClass( "ui-li-has-arrow"), "Third LI should NOT have ui-li-has-arrow class" ); + ok( items.eq( 3 ).hasClass( "ui-li-has-count"), "Fourth LI should have ui-li-has-count class" ); + ok( !items.eq( 3 ).hasClass( "ui-li-has-arrow"), "Fourth LI should NOT have ui-li-has-arrow class" ); + ok( !items.eq( 4 ).hasClass( "ui-li-has-count"), "Fifth LI should NOT have ui-li-has-count class" ); + ok( !items.eq( 4 ).hasClass( "ui-li-has-arrow"), "Fifth LI should NOT have ui-li-has-arrow class" ); + start(); + } + ]); + }); + + module('Nested List Test'); + + asyncTest( "Changes page to nested list test and enhances", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#nested-list-test"); + }, + + function(){ + ok($('#nested-list-test').hasClass('ui-page-active'), "makes nested list test page active"); + ok($(':jqmData(url="nested-list-test&ui-page=0-0")').length == 1, "Adds first UL to the page"); + ok($(':jqmData(url="nested-list-test&ui-page=0-1")').length == 1, "Adds second nested UL to the page"); + start(); + } + ]); + }); + + asyncTest( "change to nested page when the li a is clicked", function() { + + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#nested-list-test"); + }, + + function(){ + $('.ui-page-active li:eq(1) a:eq(0)').click(); + }, + + function(){ + var $new_page = $(':jqmData(url="nested-list-test&ui-page=0-0")'); + + ok($new_page.hasClass('ui-page-active'), 'Makes the nested page the active page.'); + ok($('.ui-listview', $new_page).find(":contains('Rhumba of rattlesnakes')").length == 1, "The current page should have the proper text in the list."); + ok($('.ui-listview', $new_page).find(":contains('Shoal of Bass')").length == 1, "The current page should have the proper text in the list."); + start(); + } + ]); + }); + + asyncTest( "should go back to top level when the back button is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#nested-list-test&ui-page=0-0"); + }, + + function(){ + window.history.back(); + }, + + function(){ + ok($('#nested-list-test').hasClass('ui-page-active'), 'Transitions back to the parent nested page'); + start(); + } + ]); + }); + + test( "nested list title should use first text node, regardless of line breaks", function(){ + // NOTE this is a super fragile reference to the nested page, any change to the list will break it + ok($(":jqmData(url='nested-list-test&ui-page=0-0') .ui-title").text() === "More animals", 'Text should be "More animals"'); + }); + + asyncTest( "Multiple nested lists on a page with same labels", function() { + $.testHelper.pageSequence([ + function(){ + // https://github.com/jquery/jquery-mobile/issues/1617 + $.mobile.changePage("#nested-lists-test"); + }, + + function(){ + // Click on the link of the third li element + $('.ui-page-active li:eq(2) a:eq(0)').click(); + }, + + function(){ + equal($('.ui-page-active .ui-content .ui-listview li').text(), "Item A-3-0Item A-3-1Item A-3-2", 'Text should be "Item A-3-0Item A-3-1Item A-3-2"'); + start(); + } + ]); + }); + + module('Ordered Lists'); + + asyncTest( "changes to the numbered list page and enhances it", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#numbered-list-test"); + }, + + function(){ + var $new_page = $('#numbered-list-test'); + ok($new_page.hasClass('ui-page-active'), "Makes the new page active when the hash is changed."); + ok($('.ui-link-inherit', $new_page).first().text() == "Number 1", "The text of the first LI should be Number 1"); + start(); + } + ]); + }); + + asyncTest( "changes to number 1 page when the li a is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $('#numbered-list-test li a').first().click(); + }, + + function(){ + ok($('#numbered-list-results').hasClass('ui-page-active'), "The new numbered page was transitioned correctly."); + start(); + } + ]); + }); + + asyncTest( "takes us back to the numbered list when the back button is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage('#numbered-list-test'); + }, + + function(){ + $.mobile.changePage('#numbered-list-results'); + }, + + function(){ + window.history.back(); + }, + + function(){ + ok($('#numbered-list-test').hasClass('ui-page-active')); + start(); + } + ]); + }); + + module('Read only list'); + + asyncTest( "changes to the read only page when hash is changed", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#read-only-list-test"); + }, + + function(){ + var $new_page = $('#read-only-list-test'); + ok($new_page.hasClass('ui-page-active'), "makes the read only page the active page"); + ok($('li', $new_page).first().text() === "Read", "The first LI has the proper text."); + start(); + } + ]); + }); + + module('Split view list'); + + asyncTest( "changes the page to the split view list and enhances it correctly.", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#split-list-test"); + }, + + function(){ + var $new_page = $('#split-list-test'); + ok($('.ui-li-link-alt', $new_page).length == 3); + ok($('.ui-link-inherit', $new_page).length == 3); + start(); + } + ]); + }); + + asyncTest( "change the page to the split view page 1 when the first link is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#split-list-test"); + }, + + function(){ + $('.ui-page-active .ui-li a:eq(0)').click(); + }, + + function(){ + ok($('#split-list-link1').hasClass('ui-page-active')); + start(); + } + ]); + }); + + asyncTest( "Slide back to the parent list view when the back button is clicked", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#split-list-test"); + }, + + function(){ + $('.ui-page-active .ui-listview a:eq(0)').click(); + }, + + function(){ + history.back(); + }, + + function(){ + ok($('#split-list-test').hasClass('ui-page-active')); + start(); + } + ]); + }); + + asyncTest( "Clicking on the icon (the second link) should take the user to other a href of this LI", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#split-list-test"); + }, + + function(){ + $('.ui-page-active .ui-li-link-alt:eq(0)').click(); + }, + + function(){ + ok($('#split-list-link2').hasClass('ui-page-active')); + start(); + } + ]); + }); + + module( "List Dividers" ); + + asyncTest( "Makes the list divider page the active page and enhances it correctly.", function() { + $.testHelper.pageSequence([ + function(){ + $.mobile.changePage("#list-divider-test"); + }, + + function(){ + var $new_page = $('#list-divider-test'); + ok($new_page.find('.ui-li-divider').length == 2); + ok($new_page.hasClass('ui-page-active')); + start(); + } + ]); + }); + + module( "Search Filter"); + + var searchFilterId = "#search-filter-test"; + + + asyncTest( "Filter downs results when the user enters information", function() { + var $searchPage = $(searchFilterId); + $.testHelper.pageSequence([ + function() { + $.mobile.changePage(searchFilterId); + }, + + function() { + $searchPage.find('input').val('at'); + $searchPage.find('input').trigger('change'); + + same($searchPage.find('li.ui-screen-hidden').length, 2); + start(); + } + ]); + }); + + asyncTest( "Redisplay results when user removes values", function() { + var $searchPage = $(searchFilterId); + $.testHelper.pageSequence([ + function() { + $.mobile.changePage(searchFilterId); + }, + + function() { + $searchPage.find('input').val('a'); + $searchPage.find('input').trigger('change'); + + same($searchPage.find("li[style^='display: none;']").length, 0); + start(); + } + ]); + }); + + asyncTest( "Filter works fine with \\W- or regexp-special-characters", function() { + var $searchPage = $(searchFilterId); + $.testHelper.pageSequence([ + function() { + $.mobile.changePage(searchFilterId); + }, + + function() { + $searchPage.find('input').val('*'); + $searchPage.find('input').trigger('change'); + + same($searchPage.find('li.ui-screen-hidden').length, 4); + start(); + } + ]); + }); + + test( "Refresh applies thumb styling", function(){ + var ul = $('.ui-page-active ul'); + + ul.append("
                    • "); + ok(!ul.find("#fiz img").hasClass("ui-li-thumb")); + ul.listview('refresh'); + ok(ul.find("#fiz img").hasClass("ui-li-thumb")); + }); + + asyncTest( "Filter downs results and dividers when the user enters information", function() { + var $searchPage = $("#search-filter-with-dividers-test"); + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#search-filter-with-dividers-test"); + }, + + // wait for the page to become active/enhanced + function(){ + $searchPage.find('input').val('at'); + $searchPage.find('input').trigger('change'); + setTimeout(function() { + //there should be four hidden list entries + same($searchPage.find('li.ui-screen-hidden').length, 4); + + //there should be two list entries that are list dividers and hidden + same($searchPage.find('li.ui-screen-hidden:jqmData(role=list-divider)').length, 2); + + //there should be two list entries that are not list dividers and hidden + same($searchPage.find('li.ui-screen-hidden:not(:jqmData(role=list-divider))').length, 2); + start(); + }, 1000); + } + ]); + }); + + asyncTest( "Redisplay results when user removes values", function() { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#search-filter-with-dividers-test"); + }, + + function() { + $('.ui-page-active input').val('a'); + $('.ui-page-active input').trigger('change'); + + setTimeout(function() { + same($('.ui-page-active input').val(), 'a'); + same($('.ui-page-active li[style^="display: none;"]').length, 0); + start(); + }, 1000); + } + ]); + }); + + asyncTest( "Dividers are hidden when preceding hidden rows and shown when preceding shown rows", function () { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#search-filter-with-dividers-test"); + }, + + function() { + var $page = $('.ui-page-active'); + + $page.find('input').val('at'); + $page.find('input').trigger('change'); + + setTimeout(function() { + same($page.find('li:jqmData(role=list-divider):hidden').length, 2); + same($page.find('li:jqmData(role=list-divider):hidden + li:not(:jqmData(role=list-divider)):hidden').length, 2); + same($page.find('li:jqmData(role=list-divider):not(:hidden) + li:not(:jqmData(role=list-divider)):not([:hidden)').length, 2); + start(); + }, 1000); + } + ]); + }); + + asyncTest( "Inset List View should refresh corner classes after filtering", 4 * 2, function () { + var checkClasses = function() { + var $page = $( ".ui-page-active" ), + $li = $page.find( "li:visible" ); + ok($li.first().hasClass( "ui-corner-top" ), $li.length+" li elements: First visible element should have class ui-corner-top"); + ok($li.last().hasClass( "ui-corner-bottom" ), $li.length+" li elements: Last visible element should have class ui-corner-bottom"); + }; + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#search-filter-inset-test"); + }, + + function() { + var $page = $('.ui-page-active'); + $.testHelper.sequence([ + function() { + checkClasses(); + + $page.find('input').val('man'); + $page.find('input').trigger('change'); + }, + + function() { + checkClasses(); + + $page.find('input').val('at'); + $page.find('input').trigger('change'); + }, + + function() { + checkClasses(); + + $page.find('input').val('catwoman'); + $page.find('input').trigger('change'); + }, + + function() { + checkClasses(); + start(); + } + ], 50); + } + ]); + }); + + module( "Programmatically generated list items", { + setup: function(){ + var item, + data = [ + { + id: 1, + label: "Item 1" + }, + { + id: 2, + label: "Item 2" + }, + { + id: 3, + label: "Item 3" + }, + { + id: 4, + label: "Item 4" + } + ]; + + $( "#programmatically-generated-list-items" ).html(""); + + for ( var i = 0, len = data.length; i < len; i++ ) { + item = $( '
                    • ' ); + label = $( "" + data[i].label + "").appendTo( item ); + $( "#programmatically-generated-list-items" ).append( item ); + } + } + }); + + asyncTest( "Corner styling on programmatically created list items", function() { + // https://github.com/jquery/jquery-mobile/issues/1470 + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( "#programmatically-generated-list" ); + }, + function() { + ok(!$( "#programmatically-generated-list-items li:first-child" ).hasClass( "ui-corner-bottom" ), "First list item should not have class ui-corner-bottom" ); + start(); + } + ]); + }); + + module("Programmatic list items manipulation"); + + asyncTest("Removing list items", 4, function() { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#removing-items-from-list-test"); + }, + + function() { + var ul = $('#removing-items-from-list-test ul'); + ul.find("li").first().remove(); + equal(ul.find("li").length, 3, "There should be only 3 list items left"); + + ul.listview('refresh'); + ok(ul.find("li").first().hasClass("ui-corner-top"), "First list item should have class ui-corner-top"); + + ul.find("li").last().remove(); + equal(ul.find("li").length, 2, "There should be only 2 list items left"); + + ul.listview('refresh'); + ok(ul.find("li").last().hasClass("ui-corner-bottom"), "Last list item should have class ui-corner-bottom"); + start(); + } + ]); + }); + + module("Rounded corners"); + + asyncTest("Top and bottom corners rounded in inset list", 14, function() { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#corner-rounded-test"); + }, + + function() { + var ul = $('#corner-rounded-test ul'); + + for( var t = 0; t<3; t++){ + ul.append("
                    • Item " + t + "
                    • "); + ul.listview('refresh'); + equals(ul.find(".ui-corner-top").length, 1, "There should be only one element with class ui-corner-top"); + equals(ul.find("li:visible").first()[0], ul.find(".ui-corner-top")[0], "First list item should have class ui-corner-top in list with " + ul.find("li").length + " item(s)"); + equals(ul.find(".ui-corner-bottom").length, 1, "There should be only one element with class ui-corner-bottom"); + equals(ul.find("li:visible").last()[0], ul.find(".ui-corner-bottom")[0], "Last list item should have class ui-corner-bottom in list with " + ul.find("li").length + " item(s)"); + } + + ul.find( "li" ).first().hide(); + ul.listview( "refresh" ); + equals(ul.find("li:visible").first()[0], ul.find(".ui-corner-top")[0], "First visible list item should have class ui-corner-top"); + + ul.find( "li" ).last().hide(); + ul.listview( "refresh" ); + equals(ul.find("li:visible").last()[0], ul.find(".ui-corner-bottom")[0], "Last visible list item should have class ui-corner-bottom"); + + start(); + } + ]); + }); + + test( "Listview will create when inside a container that receives a 'create' event", function(){ + ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-listview").length, "did not have enhancements applied" ); + ok( $("#enhancetest").trigger("create").find(".ui-listview").length, "enhancements applied" ); + }); + + module( "Cached Linked List" ); + + var findNestedPages = function(selector){ + return $( selector + " #topmost" ).listview( 'childPages' ); + }; + + asyncTest( "nested pages are removed from the dom by default", function(){ + $.testHelper.pageSequence([ + function(){ + //reset for relative url refs + $.mobile.changePage( home ); + }, + + function(){ + $.mobile.changePage( "cache-tests/uncached-nested.html" ); + }, + + function(){ + ok( findNestedPages( "#uncached-nested-list" ).length > 0, "verify that there are nested pages" ); + $.mobile.changePage( home ); + }, + + function() { + $.mobile.changePage( "cache-tests/clear.html" ); + }, + + function(){ + same( findNestedPages( "#uncached-nested-list" ).length, 0 ); + start(); + } + ]); + }); + + asyncTest( "nested pages preserved when parent page is cached", function(){ + + $.testHelper.pageSequence([ + function(){ + //reset for relative url refs + $.mobile.changePage( home ); + }, + + function(){ + $.mobile.changePage( "cache-tests/cached-nested.html" ); + }, + + function(){ + ok( findNestedPages( "#cached-nested-list" ).length > 0, "verify that there are nested pages" ); + $.mobile.changePage( home ); + }, + + function() { + $.mobile.changePage( "cache-tests/clear.html" ); + }, + + function(){ + ok( findNestedPages( "#cached-nested-list" ).length > 0, "nested pages remain" ); + start(); + } + ]); + }); + + asyncTest( "parent page is not removed when visiting a sub page", function(){ + $.testHelper.pageSequence([ + function(){ + //reset for relative url refs + $.mobile.changePage( home ); + }, + + function(){ + $.mobile.changePage( "cache-tests/cached-nested.html" ); + }, + + function(){ + same( $("#cached-nested-list").length, 1 ); + $.mobile.changePage( home ); + }, + + function() { + $.mobile.changePage( "cache-tests/clear.html" ); + }, + + function(){ + same( $("#cached-nested-list").length, 1 ); + start(); + } + ]); + }); + + asyncTest( "filterCallback can be altered after widget creation", function(){ + var listPage = $( "#search-filter-test" ); + expect( listPage.find("li").length ); + + $.testHelper.pageSequence( [ + function(){ + //reset for relative url refs + $.mobile.changePage( home ); + }, + + function() { + $.mobile.changePage( "#search-filter-test" ); + }, + + function() { + // set the listview instance callback + listPage.find( "ul" ).listview( "option", "filterCallback", function() { + ok(true, "custom callback invoked"); + }); + + // trigger a change in the search filter + listPage.find( "input" ).val( "foo" ).trigger( "change" ); + + //NOTE beware a poossible issue with timing here + start(); + } + ]); + }); + + asyncTest( "nested pages hash key is always in the hash (replaceState)", function(){ + $.testHelper.pageSequence([ + function(){ + //reset for relative url refs + $.mobile.changePage( home ); + }, + + function(){ + // https://github.com/jquery/jquery-mobile/issues/1617 + $.mobile.changePage("#nested-lists-test"); + }, + + function(){ + // Click on the link of the third li element + $('.ui-page-active li:eq(2) a:eq(0)').click(); + }, + + function(){ + ok( location.hash.search($.mobile.subPageUrlKey) >= 0 ); + start(); + } + ]); + }); + + asyncTest( "embedded listview page with nested pages is not removed from the dom", function() { + $.testHelper.pageSequence([ + function() { + // open the nested list page + same( $("div#nested-list-test").length, 1 ); + $( "a#nested-list-test-anchor" ).click(); + }, + + function() { + // go back to the origin page + window.history.back(); + }, + + function() { + // make sure the page is still in place + same( $("div#nested-list-test").length, 1 ); + start(); + } + ]); + }); + + + asyncTest( "list inherits theme from parent", function() { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#list-theme-inherit"); + }, + + function() { + var theme = $.mobile.activePage.jqmData('theme'); + ok( $.mobile.activePage.find("ul > li").hasClass("ui-body-b"), "theme matches the parent"); + window.history.back(); + }, + + start + ]); + }); + + asyncTest( "list filter is inset from prototype options value", function() { + $.mobile.listview.prototype.options.inset = true; + $("#list-inset-filter-prototype").page(); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#list-inset-filter-prototype"); + }, + + function( timedOut) { + ok( !timedOut ); + same( $.mobile.activePage.find("form.ui-listview-filter-inset").length, 1, "form is inset"); + window.history.back(); + }, + + start + ]); + }); + + asyncTest( "list filter is inset from data attr value", function() { + $.mobile.listview.prototype.options.inset = false; + $("#list-inset-filter-data-attr").page(); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#list-inset-filter-data-attr"); + }, + + function( timedOut) { + ok( !timedOut ); + same( $.mobile.activePage.find("form.ui-listview-filter-inset").length, 1, "form is inset"); + window.history.back(); + }, + + start + ]); + }); + + asyncTest( "split list items respect the icon", function() { + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#split-list-icon"); + }, + + function() { + $.mobile.activePage.find("li").each(function(i, elem){ + var $elem = $(elem), + order = [ "star", "plug", "delete", "plug" ]; + + same( $elem.find("span.ui-icon-" + order[i]).length, 1, "there should be one " + order[i] + " icon" ); + }); + + window.history.back(); + }, + + start + ]); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/listview_pushstate.js b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/listview_pushstate.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/listview/listview_pushstate.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/listview/listview_pushstate.js diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/listview/pushstate-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/pushstate-tests.html new file mode 100644 index 0000000..acf4234 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/listview/pushstate-tests.html @@ -0,0 +1,87 @@ + + + + + + jQuery Mobile Listview Integration Test + + + + + + + + + + + + + + + +

                      jQuery Mobile Listview Integration Test

                      +

                      +

                      +
                        +
                      + +
                      +
                      +

                      Basic multiple lists view

                      +
                      +
                      +
                        +
                      • Item 1
                      • +
                      • Item 2
                      • +
                      • Item 3 +
                          +
                        • Item A-3-0
                        • +
                        • Item A-3-1
                        • +
                        • Item A-3-2
                        • +
                        +
                      • +
                      +
                        +
                      • Item 1
                      • +
                      • Item 2
                      • +
                      • Item 3 +
                          +
                        • Item B-3-0 +
                            +
                          • Item B-3-0-0
                          • +
                          • Item B-3-0-1 +
                              +
                            • Item B-3-0-1-0
                            • +
                            • Item B-3-0-1-1
                            • +
                            • Item B-3-0-1-2
                            • +
                            +
                          • +
                          • Item B-3-0-2
                          • +
                          +
                        • +
                        • Item B-3-1 +
                            +
                          • Item B-3-1-0
                          • +
                          • Item B-3-1-1
                          • +
                          • Item B-3-1-2
                          • +
                          +
                        • +
                        • Item B-3-2
                        • +
                        +
                      • +
                      +
                      +
                      + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/ls.php b/libs/js/jquery-mobile-1.1.0/tests/unit/ls.php similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/ls.php rename to libs/js/jquery-mobile-1.1.0/tests/unit/ls.php diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/media/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/media/index.html new file mode 100644 index 0000000..52c39a5 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/media/index.html @@ -0,0 +1,40 @@ + + + + + + jQuery Mobile Media Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Media Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/media/media_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/media/media_core.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/media/media_core.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/media/media_core.js diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navbar/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navbar/index.html new file mode 100644 index 0000000..9c83c95 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navbar/index.html @@ -0,0 +1,63 @@ + + + + + + jQuery Mobile Navigation Test Suite + + + + + + + + + + + + +

                      jQuery Mobile Navigation Test Suite

                      +

                      +

                      +
                        +
                      +
                      +
                      + +
                      +
                      + +
                      +
                      +
                      +
                        +
                      • +
                      • +
                      +
                      +
                      + +
                      +
                      +
                        +
                      • +
                      • +
                      +
                      +
                      +
                      + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navbar/navbar_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navbar/navbar_core.js new file mode 100644 index 0000000..f80bb5d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navbar/navbar_core.js @@ -0,0 +1,31 @@ +/* + * mobile navbar unit tests + */ +(function($){ + test( "navbar button gets active button class when clicked", function() { + var link = $("#disabled-btn-click a:not(.ui-disabled)").first(); + + link.click(); + ok( link.hasClass($.mobile.activeBtnClass), "link has active button class" ); + }); + + test( "disabled navbar button doesn't add active button class when clicked", function() { + var link = $("#disabled-btn-click a.ui-disabled").first(); + + link.click(); + ok( !link.hasClass($.mobile.activeBtnClass), "link doesn't have active button class" ); + }); + + test( "grids inside an ignored container do not enhance", function() { + var $ignored = $( "#ignored-grid" ), $enhanced = $( "#enhanced-grid" ); + + $.mobile.ignoreContentEnabled = true; + + $("#foo").trigger( "create" ); + + same( $ignored.attr( "class" ), undefined, "ignored list doesn't have the grid theme" ); + same( $enhanced.attr( "class" ).indexOf("ui-grid"), 0, "enhanced list has the grid theme" ); + + $.mobile.ignoreContentEnabled = false; + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests.html new file mode 100644 index 0000000..7d1649e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests.html @@ -0,0 +1,72 @@ + + + + + + jQuery Mobile Navigation Test Suite + + + + + + + + + + + + + + + + + + +

                      jQuery Mobile Navigation Base Tag Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + + + + + + +
                      + +
                      + + + + + + +
                      + +
                      +
                      +
                      + + +
                      +
                      +
                      + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/app-base/base-page-1.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/app-base/base-page-1.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/app-base/base-page-1.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/app-base/base-page-1.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/app-base/base-page-2.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/app-base/base-page-2.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/app-base/base-page-2.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/app-base/base-page-2.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/content/content-page-1.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/content/content-page-1.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/content/content-page-1.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/content/content-page-1.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/content/content-page-2.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/content/content-page-2.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/base-tests/content/content-page-2.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/base-tests/content/content-page-2.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/cached-external.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/cached-external.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/cached-external.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/cached-external.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/data-url.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/data-url.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/data-url.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/data-url.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/nested.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/nested.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/nested.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/nested.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/non-data-url.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/non-data-url.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/non-data-url.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/non-data-url.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/reverse-attr.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/reverse-attr.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/reverse-attr.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/reverse-attr.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/single-quotes.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/single-quotes.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/data-url-tests/single-quotes.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/data-url-tests/single-quotes.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/dialog-param-test/dialog-param.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/dialog-param-test/dialog-param.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/dialog-param-test/dialog-param.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/dialog-param-test/dialog-param.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/external.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/external.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/external.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/external.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/file.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/file.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/file.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/file.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/form-tests/changepage-data.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/form-tests/changepage-data.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/form-tests/changepage-data.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/form-tests/changepage-data.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/form-tests/form-no-action.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/form-tests/form-no-action.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/form-tests/form-no-action.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/form-tests/form-no-action.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/index.html new file mode 100644 index 0000000..ce2fcbc --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/index.html @@ -0,0 +1,302 @@ + + + + + + jQuery Mobile Navigation Test Suite + + + + + + + + + + + + + + + + + + +

                      jQuery Mobile Navigation Test Suite

                      +

                      +

                      +
                        +
                      + +
                      +
                      + +
                      + + +
                      + + + +
                      +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      +
                      +
                      + +
                      +
                      + +
                      +
                      +
                      + +
                      + +
                      + +
                      +
                      + + + + + +
                      +
                      +

                      Dialog

                      +
                      +
                      + +
                      +
                      + Dialog +
                      +
                      + +
                      +
                      + Page 2 +
                      +
                      + +
                      + Go Back +
                      + + +
                      +
                      + Dialog +
                      +
                      + +
                      +
                      + Dialog 2 +
                      +
                      + +
                      +
                      + +
                      + +
                      + + + +
                      + test + test + test +
                      + +
                      +

                      Title Heading

                      +
                      + +
                      +

                      Title Heading

                      +
                      + + + + + +
                      + + go + go + go + go + go + go + + + + go + go + go + go + go + go + + + + go + go + go + go + go + go + + + + go + go + go + go + go + go + +
                      + +
                      +
                      page didn't change!
                      +
                      + + + +
                      +
                      + page2 +
                      +
                      + + + + + +
                      + foo +
                      + +
                      + + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_base.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_base.js new file mode 100644 index 0000000..544691b --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_base.js @@ -0,0 +1,206 @@ +/* + * mobile navigation base tag unit tests + */ +(function($){ + var baseDir = $.mobile.path.parseUrl($("base").attr("href")).directory, + contentDir = $.mobile.path.makePathAbsolute("../content/", baseDir), + home = location.pathname + location.search; + + module('jquery.mobile.navigation.js - base tag', { + setup: function(){ + if ( location.hash ) { + stop(); + $(document).one("pagechange", function() { + start(); + } ); + location.hash = ""; + } + } + }); + + asyncTest( "can navigate between internal and external pages", function(){ + $.testHelper.pageSequence([ + function(){ + // Navigate from default internal page to another internal page. + $.testHelper.openPage( "#internal-page-2" ); + }, + + function(){ + // Verify that we are on the 2nd internal page. + $.testHelper.assertUrlLocation({ + push: home + "#internal-page-2", + hash: "internal-page-2", + report: "navigate to internal page" + }); + + // Navigate to a page that is in the base directory. Note that the application + // document and this new page are *NOT* in the same directory. + $("#internal-page-2 .bp1").click(); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: baseDir + "base-page-1.html", + report: "navigate from internal page to page in base directory" + }); + + // Navigate to another page in the same directory as the current page. + $("#base-page-1 .bp2").click(); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: baseDir + "base-page-2.html", + report: "navigate from base directory page to another base directory page" + }); + + // Navigate to another page in a directory that is the sibling of the base. + $("#base-page-2 .cp1").click(); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: contentDir + "content-page-1.html", + report: "navigate from base directory page to a page in a different directory hierarchy" + }); + + // Navigate to another page in a directory that is the sibling of the base. + $("#content-page-1 .cp2").click(); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: contentDir + "content-page-2.html", + report: "navigate to another page within the same non-base directory hierarchy" + }); + + // Navigate to an internal page. + $("#content-page-2 .ip1").click(); + }, + + function(){ + // Verify that we are on the expected page. + // the hash based nav result (hash:) is dictate by the fact that #internal-page-1 + // is the original root page element + $.testHelper.assertUrlLocation({ + hashOrPush: home, + report: "navigate from a page in a non-base directory to an internal page" + }); + + // Try calling changePage() directly with a relative path. + $.mobile.changePage("base-page-1.html"); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: baseDir + "base-page-1.html", + report: "call changePage() with a filename (no path)" + }); + + // Try calling changePage() directly with a relative path. + $.mobile.changePage("../content/content-page-1.html"); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: contentDir + "content-page-1.html", + report: "call changePage() with a relative path containing up-level references" + }); + + // Try calling changePage() with an id + $.mobile.changePage("content-page-2.html"); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hashOrPush: contentDir + "content-page-2.html", + report: "call changePage() with a relative path should resolve relative to current page" + }); + + // test that an internal page works + $("a.ip2").click(); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hash: "internal-page-2", + push: home + "#internal-page-2", + report: "call changePage() with a page id" + }); + + // Try calling changePage() with an id + $.mobile.changePage("internal-page-1"); + }, + + function(){ + // Verify that we are on the expected page. + $.testHelper.assertUrlLocation({ + hash: "internal-page-2", + push: home + "#internal-page-2", + report: "calling changePage() with a page id that is not prefixed with '#' should not change page" + }); + + // Previous load should have failed and left us on internal-page-2. + start(); + } + ]); + }); + + asyncTest( "internal form with no action submits to document URL", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage( "#internal-no-action-form-page" ); + }, + + function(){ + $( "#internal-no-action-form-page form" ).eq( 0 ).submit(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: location.pathname + "?foo=1&bar=2", + report: "hash should match document url and not base url" + }); + + start(); + } + ]); + }); + + asyncTest( "external page form with no action submits to external page URL", function(){ + $.testHelper.pageSequence([ + function(){ + // Go to an external page that has a form. + $("#internal-page-1 .cp1").click(); + }, + + function(){ + // Make sure we actually navigated to the external page. + $.testHelper.assertUrlLocation({ + hashOrPush: contentDir + "content-page-1.html", + report: "should be on content-page-1.html" + }); + + // Now submit the form in the external page. + $("#content-page-1 form").eq(0).submit(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: contentDir + "content-page-1.html?foo=1&bar=2", + report: "hash should match page url and not document url" + }); + + start(); + }]); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_core.js new file mode 100644 index 0000000..f62c3d1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_core.js @@ -0,0 +1,1216 @@ +/* + * mobile navigation unit tests + */ +(function($){ + // TODO move siteDirectory over to the nav path helper + var changePageFn = $.mobile.changePage, + originalTitle = document.title, + originalLinkBinding = $.mobile.linkBindingEnabled, + siteDirectory = location.pathname.replace( /[^/]+$/, "" ), + home = $.mobile.path.parseUrl(location.pathname).directory, + homeWithSearch = home + location.search, + navigateTestRoot = function(){ + $.testHelper.openPage( "#" + location.pathname + location.search ); + }; + + module('jquery.mobile.navigation.js', { + setup: function(){ + $.mobile.changePage = changePageFn; + document.title = originalTitle; + + var pageReset = function( hash ) { + hash = hash || ""; + + stop(); + + $(document).one( "pagechange", function() { + start(); + }); + + location.hash = "#" + hash; + }; + + // force the page reset for hash based tests + if ( location.hash && !$.support.pushState ) { + pageReset(); + } + + // force the page reset for all pushstate tests + if ( $.support.pushState ) { + pageReset( homeWithSearch ); + } + + + $.mobile.urlHistory.stack = []; + $.mobile.urlHistory.activeIndex = 0; + $.Event.prototype.which = undefined; + $.mobile.linkBindingEnabled = originalLinkBinding; + } + }); + + asyncTest( "window.history.back() from external to internal page", function(){ + + $.testHelper.pageSequence([ + + // open our test page + function(){ + $.testHelper.openPage("#active-state-page1"); + }, + + function(){ + ok( $.mobile.activePage[0] === $( "#active-state-page1" )[ 0 ], "successful navigation to internal page." ); + + //location.hash = siteDirectory + "external.html"; + $.mobile.changePage("external.html"); + }, + + function(){ + ok( $.mobile.activePage[0] !== $( "#active-state-page1" )[ 0 ], "successful navigation to external page." ); + + window.history.back(); + }, + + function(){ + ok( $.mobile.activePage[0] === $( "#active-state-page1" )[ 0 ], "successful navigation back to internal page." ); + + start(); + } + ]); + }); + + asyncTest( "external page is removed from the DOM after pagehide", function(){ + $.testHelper.pageSequence([ + navigateTestRoot, + + function(){ + $.mobile.changePage( "external.html" ); + }, + + // page is pulled and displayed in the dom + function(){ + same( $( "#external-test" ).length, 1 ); + window.history.back(); + }, + + // external-test is *NOT* cached in the dom after transitioning away + function(){ + same( $( "#external-test" ).length, 0 ); + start(); + } + ]); + }); + + asyncTest( "preventDefault on pageremove event can prevent external page from being removed from the DOM", function(){ + var preventRemoval = true, + removeCallback = function( e ) { + if ( preventRemoval ) { + e.preventDefault(); + } + }; + + $( document ).bind( "pageremove", removeCallback ); + + $.testHelper.pageSequence([ + navigateTestRoot, + + function(){ + $.mobile.changePage( "external.html" ); + }, + + // page is pulled and displayed in the dom + function(){ + same( $( "#external-test" ).length, 1 ); + window.history.back(); + }, + + // external-test *IS* cached in the dom after transitioning away + function(){ + same( $( "#external-test" ).length, 1 ); + + // Switch back to the page again! + $.mobile.changePage( "external.html" ); + }, + + // page is still present and displayed in the dom + function(){ + same( $( "#external-test" ).length, 1 ); + + // Now turn off our removal prevention. + preventRemoval = false; + + window.history.back(); + }, + + // external-test is *NOT* cached in the dom after transitioning away + function(){ + same( $( "#external-test" ).length, 0 ); + $( document ).unbind( "pageremove", removeCallback ); + start(); + } + ]); + }); + + asyncTest( "external page is cached in the DOM after pagehide", function(){ + $.testHelper.pageSequence([ + navigateTestRoot, + + function(){ + $.mobile.changePage( "cached-external.html" ); + }, + + // page is pulled and displayed in the dom + function(){ + same( $( "#external-test-cached" ).length, 1 ); + window.history.back(); + }, + + // external test page is cached in the dom after transitioning away + function(){ + same( $( "#external-test-cached" ).length, 1 ); + start(); + } + ]); + }); + + asyncTest( "external page is cached in the DOM after pagehide when option is set globally", function(){ + $.testHelper.pageSequence([ + navigateTestRoot, + + function(){ + $.mobile.page.prototype.options.domCache = true; + $.mobile.changePage( "external.html" ); + }, + + // page is pulled and displayed in the dom + function(){ + same( $( "#external-test" ).length, 1 ); + window.history.back(); + }, + + // external test page is cached in the dom after transitioning away + function(){ + same( $( "#external-test" ).length, 1 ); + $.mobile.page.prototype.options.domCache = false; + $( "#external-test" ).remove(); + start(); + }]); + }); + + asyncTest( "page last scroll distance is remembered while navigating to and from pages", function(){ + $.testHelper.pageSequence([ + function(){ + $( "body" ).height( $( window ).height() + 500 ); + $.mobile.changePage( "external.html" ); + }, + + function(){ + // wait for the initial scroll to 0 + setTimeout( function() { + window.scrollTo( 0, 300 ); + same( $(window).scrollTop(), 300, "scrollTop is 300 after setting it" ); + }, 300); + + // wait for the scrollstop to fire and for the scroll to be + // recorded 100 ms afterward (see changes made to handle hash + // scrolling in some browsers) + setTimeout( navigateTestRoot, 500 ); + }, + + function(){ + history.back(); + }, + + function(){ + // Give the silentScroll function some time to kick in. + setTimeout(function() { + same( $(window).scrollTop(), 300, "scrollTop is 300 after returning to the page" ); + $( "body" ).height( "" ); + start(); + }, 300 ); + } + ]); + }); + + asyncTest( "forms with data attribute ajax set to false will not call changePage", function(){ + var called = false; + var newChangePage = function(){ + called = true; + }; + + $.testHelper.sequence([ + // avoid initial page load triggering changePage early + function(){ + $.mobile.changePage = newChangePage; + + $('#non-ajax-form').one('submit', function(event){ + ok(true, 'submit callbacks are fired'); + event.preventDefault(); + }).submit(); + }, + + function(){ + ok(!called, "change page should not be called"); + start(); + }], 1000); + }); + + asyncTest( "forms with data attribute ajax not set or set to anything but false will call changePage", function(){ + var called = 0, + newChangePage = function(){ + called++; + }; + + $.testHelper.sequence([ + // avoid initial page load triggering changePage early + function(){ + $.mobile.changePage = newChangePage; + $('#ajax-form, #rand-ajax-form').submit(); + }, + + function(){ + ok(called >= 2, "change page should be called at least twice"); + start(); + }], 300); + }); + + + asyncTest( "anchors with no href attribute will do nothing when clicked", function(){ + var fired = false; + + $(window).bind("hashchange.temp", function(){ + fired = true; + }); + + $( "test" ).appendTo( $.mobile.firstPage ).click(); + + setTimeout(function(){ + same(fired, false, "hash shouldn't change after click"); + $(window).unbind("hashchange.temp"); + start(); + }, 500); + }); + + test( "urlHistory is working properly", function(){ + + //urlHistory + same( $.type( $.mobile.urlHistory.stack ), "array", "urlHistory.stack is an array" ); + + //preload the stack + $.mobile.urlHistory.stack[0] = { url: "foo", transition: "bar" }; + $.mobile.urlHistory.stack[1] = { url: "baz", transition: "shizam" }; + $.mobile.urlHistory.stack[2] = { url: "shizoo", transition: "shizaah" }; + + //active index + same( $.mobile.urlHistory.activeIndex , 0, "urlHistory.activeIndex is 0" ); + + //getActive + same( $.type( $.mobile.urlHistory.getActive() ) , "object", "active item is an object" ); + same( $.mobile.urlHistory.getActive().url , "foo", "active item has url foo" ); + same( $.mobile.urlHistory.getActive().transition , "bar", "active item has transition bar" ); + + //get prev / next + same( $.mobile.urlHistory.getPrev(), undefined, "urlHistory.getPrev() is undefined when active index is 0" ); + $.mobile.urlHistory.activeIndex = 1; + same( $.mobile.urlHistory.getPrev().url, "foo", "urlHistory.getPrev() has url foo when active index is 1" ); + $.mobile.urlHistory.activeIndex = 0; + same( $.mobile.urlHistory.getNext().url, "baz", "urlHistory.getNext() has url baz when active index is 0" ); + + //add new + $.mobile.urlHistory.activeIndex = 2; + $.mobile.urlHistory.addNew("test"); + same( $.mobile.urlHistory.stack.length, 4, "urlHistory.addNew() adds an item after the active index" ); + same( $.mobile.urlHistory.activeIndex, 3, "urlHistory.addNew() moves the activeIndex to the newly added item" ); + + //clearForward + $.mobile.urlHistory.activeIndex = 0; + $.mobile.urlHistory.clearForward(); + same( $.mobile.urlHistory.stack.length, 1, "urlHistory.clearForward() clears the url stack after the active index" ); + }); + + //url listening + function testListening( prop ){ + var stillListening = false; + $(document).bind("pagebeforehide", function(){ + stillListening = true; + }); + location.hash = "foozball"; + setTimeout(function(){ + ok( prop == stillListening, prop + " = false disables default hashchange event handler"); + location.hash = ""; + prop = true; + start(); + }, 1000); + } + + asyncTest( "ability to disable our hash change event listening internally", function(){ + testListening( ! $.mobile.urlHistory.ignoreNextHashChange ); + }); + + asyncTest( "ability to disable our hash change event listening globally", function(){ + testListening( $.mobile.hashListeningEnabled ); + }); + + var testDataUrlHash = function( linkSelector, matches ) { + $.testHelper.pageSequence([ + function(){ window.location.hash = ""; }, + function(){ $(linkSelector).click(); }, + function(){ + $.testHelper.assertUrlLocation( + $.extend(matches, { + report: "url or hash should match" + }) + ); + + start(); + } + ]); + + stop(); + }; + + test( "when loading a page where data-url is not defined on a sub element hash defaults to the url", function(){ + testDataUrlHash( "#non-data-url a", {hashOrPush: siteDirectory + "data-url-tests/non-data-url.html"} ); + }); + + test( "data url works for nested paths", function(){ + var url = "foo/bar.html"; + testDataUrlHash( "#nested-data-url a", {hash: url, push: home + url} ); + }); + + test( "data url works for single quoted paths and roles", function(){ + var url = "foo/bar/single.html"; + testDataUrlHash( "#single-quotes-data-url a", {hash: url, push: home + url} ); + }); + + test( "data url works when role and url are reversed on the page element", function(){ + var url = "foo/bar/reverse.html"; + testDataUrlHash( "#reverse-attr-data-url a", {hash: url, push: home + url} ); + }); + + asyncTest( "last entry choosen amongst multiple identical url history stack entries on hash change", function(){ + // make sure the stack is clear after initial page load an any other delayed page loads + // TODO better browser state management + $.mobile.urlHistory.stack = []; + $.mobile.urlHistory.activeIndex = 0; + + $.testHelper.pageSequence([ + function(){ $.testHelper.openPage("#dup-history-first"); }, + function(){ $("#dup-history-first a").click(); }, + function(){ $("#dup-history-second a:first").click(); }, + function(){ $("#dup-history-first a").click(); }, + function(){ $("#dup-history-second a:last").click(); }, + function(){ $("#dup-history-dialog a:contains('Close')").click(); }, + function(){ + + // fourth page (third index) in the stack to account for first page being hash manipulation, + // the third page is dup-history-second which has two entries in history + // the test is to make sure the index isn't 1 in this case, or the first entry for dup-history-second + same($.mobile.urlHistory.activeIndex, 3, "should be the fourth page in the stack"); + start(); + }]); + }); + + asyncTest( "going back from a page entered from a dialog skips the dialog and goes to the previous page", function(){ + $.testHelper.pageSequence([ + // setup + function(){ $.testHelper.openPage("#skip-dialog-first"); }, + + // transition to the dialog + function(){ $("#skip-dialog-first a").click(); }, + + // transition to the second page + function(){ $("#skip-dialog a").click(); }, + + // transition past the dialog via data-rel=back link on the second page + function(){ $("#skip-dialog-second a").click(); }, + + // make sure we're at the first page and not the dialog + function(){ + $.testHelper.assertUrlLocation({ + hash: "skip-dialog-first", + push: homeWithSearch + "#skip-dialog-first", + report: "should be the first page in the sequence" + }); + + start(); + }]); + }); + + asyncTest( "going forward from a page entered from a dialog skips the dialog and goes to the next page", function(){ + $.testHelper.pageSequence([ + // setup + function(){ $.testHelper.openPage("#skip-dialog-first"); }, + + // transition to the dialog + function(){ $("#skip-dialog-first a").click(); }, + + // transition to the second page + function(){ $("#skip-dialog a").click(); }, + + // transition to back past the dialog + function(){ window.history.back(); }, + + // transition to the second page past the dialog through history + function(){ window.history.forward(); }, + + // make sure we're on the second page and not the dialog + function(){ + $.testHelper.assertUrlLocation({ + hash: "skip-dialog-second", + push: homeWithSearch + "#skip-dialog-second", + report: "should be the second page after the dialog" + }); + + start(); + }]); + }); + + asyncTest( "going back from a dialog triggered from a dialog should result in the first dialog ", function(){ + $.testHelper.pageSequence([ + // setup + function(){ $.testHelper.openPage("#nested-dialog-page"); }, + + // transition to the dialog + function(){ $("#nested-dialog-page a").click(); }, + + // transition to the second dialog + function(){ $("#nested-dialog-first a").click(); }, + + // transition to back to the first dialog + function(){ window.history.back(); }, + + // make sure we're on first dialog + function(){ + same($(".ui-page-active")[0], $("#nested-dialog-first")[0], "should be the first dialog"); + start(); + }]); + }); + + asyncTest( "loading a relative file path after an embeded page works", function(){ + $.testHelper.pageSequence([ + // transition second page + function(){ $.testHelper.openPage("#relative-after-embeded-page-first"); }, + + // transition second page + function(){ $("#relative-after-embeded-page-first a").click(); }, + + // transition to the relative ajax loaded page + function(){ $("#relative-after-embeded-page-second a").click(); }, + + // make sure the page was loaded properly via ajax + function(){ + // data attribute intentionally left without namespace + same($(".ui-page-active").data("other"), "for testing", "should be relative ajax loaded page"); + start(); + }]); + }); + + asyncTest( "Page title updates properly when clicking back to previous page", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#relative-after-embeded-page-first"); + }, + + function(){ + window.history.back(); + }, + + function(){ + same(document.title, "jQuery Mobile Navigation Test Suite"); + start(); + } + ]); + }); + + asyncTest( "Page title updates properly when clicking a link back to first page", function(){ + var title = document.title; + + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#ajax-title-page"); + }, + + function(){ + $("#titletest1").click(); + }, + + function(){ + same(document.title, "Title Tag"); + $.mobile.activePage.find("#title-check-link").click(); + }, + + function(){ + same(document.title, title); + start(); + } + ]); + }); + + asyncTest( "Page title updates properly from title tag when loading an external page", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#ajax-title-page"); + }, + + function(){ + $("#titletest1").click(); + }, + + function(){ + same(document.title, "Title Tag"); + start(); + } + ]); + }); + + asyncTest( "Page title updates properly from data-title attr when loading an external page", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#ajax-title-page"); + }, + + function(){ + $("#titletest2").click(); + }, + + function(){ + same(document.title, "Title Attr"); + start(); + } + ]); + }); + + asyncTest( "Page title updates properly from heading text in header when loading an external page", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#ajax-title-page"); + }, + + function(){ + $("#titletest3").click(); + }, + + function(){ + same(document.title, "Title Heading"); + start(); + } + ]); + }); + + asyncTest( "Page links to the current active page result in the same active page", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#self-link"); + }, + + function(){ + $("a[href='#self-link']").click(); + }, + + function(){ + same($.mobile.activePage[0], $("#self-link")[0], "self-link page is still the active page" ); + start(); + } + ]); + }); + + asyncTest( "links on subdirectory pages with query params append the params and load the page", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#data-url-tests/non-data-url.html"); + }, + + function(){ + $("#query-param-anchor").click(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "data-url-tests/non-data-url.html?foo=bar", + report: "the hash or url has query params" + }); + + ok($(".ui-page-active").jqmData("url").indexOf("?foo=bar") > -1, "the query params are in the data url"); + start(); + } + ]); + }); + + asyncTest( "identical query param link doesn't add additional set of query params", function(){ + $.testHelper.pageSequence([ + function(){ + $.testHelper.openPage("#data-url-tests/non-data-url.html"); + }, + + function(){ + $("#query-param-anchor").click(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "data-url-tests/non-data-url.html?foo=bar", + report: "the hash or url has query params" + }); + + $("#query-param-anchor").click(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "data-url-tests/non-data-url.html?foo=bar", + report: "the hash or url still has query params" + }); + + start(); + } + ]); + }); + + // Special handling inside navigation because query params must be applied to the hash + // or absolute reference and dialogs apply extra information int the hash that must be removed + asyncTest( "query param link from a dialog to itself should be a not add another dialog", function(){ + var firstDialogLoc; + + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#dialog-param-link"); + }, + + // navigate to the subdirectory page with the query link + function(){ + $("#dialog-param-link a").click(); + }, + + // navigate to the query param self reference link + function(){ + $("#dialog-param-link-page a").click(); + }, + + // attempt to navigate to the same link + function(){ + // store the current hash for comparison (with one dialog hash key) + firstDialogLoc = location.hash || location.href; + $("#dialog-param-link-page a").click(); + }, + + function(){ + same(location.hash || location.href, firstDialogLoc, "additional dialog hash key not added"); + start(); + } + ]); + }); + + asyncTest( "query data passed as string to changePage is appended to URL", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.mobile.changePage( "form-tests/changepage-data.html", { + data: "foo=1&bar=2" + } ); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "form-tests/changepage-data.html?foo=1&bar=2", + report: "the hash or url still has query params" + }); + + start(); + } + ]); + }); + + asyncTest( "query data passed as object to changePage is appended to URL", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.mobile.changePage( "form-tests/changepage-data.html", { + data: { + foo: 3, + bar: 4 + } + } ); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "form-tests/changepage-data.html?foo=3&bar=4", + report: "the hash or url still has query params" + }); + + start(); + } + ]); + }); + + asyncTest( "refresh of a dialog url should not duplicate page", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + same($(".foo-class").length, 1, "should only have one instance of foo-class in the document"); + location.hash = "#foo&ui-state=dialog"; + }, + + function(){ + $.testHelper.assertUrlLocation({ + hash: "foo&ui-state=dialog", + push: homeWithSearch + "#foo&ui-state=dialog", + report: "hash should match what was loaded" + }); + + same( $(".foo-class").length, 1, "should only have one instance of foo-class in the document" ); + start(); + } + ]); + }); + + asyncTest( "internal form with no action submits to document URL", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#internal-no-action-form-page"); + }, + + function(){ + $("#internal-no-action-form-page form").eq(0).submit(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "?foo=1&bar=2", + report: "hash should match what was loaded" + }); + + start(); + } + ]); + }); + + asyncTest( "external page containing form with no action submits to page URL", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#internal-no-action-form-page"); + }, + + function(){ + $("#internal-no-action-form-page a").eq(0).click(); + }, + + function(){ + $("#external-form-no-action-page form").eq(0).submit(); + }, + + function(){ + $.testHelper.assertUrlLocation({ + hashOrPush: home + "form-tests/form-no-action.html?foo=1&bar=2", + report: "hash should match page url and not document url" + }); + + start(); + } + ]); + }); + + asyncTest( "handling of active button state when navigating", 1, function(){ + + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#active-state-page1"); + }, + + function(){ + $("#active-state-page1 a").eq(0).click(); + }, + + function(){ + $("#active-state-page2 a").eq(0).click(); + }, + + function(){ + ok(!$("#active-state-page1 a").hasClass( $.mobile.activeBtnClass ), "No button should not have class " + $.mobile.activeBtnClass ); + start(); + } + ]); + }); + + // issue 2444 https://github.com/jquery/jquery-mobile/issues/2444 + // results from preventing spurious hash changes + asyncTest( "dialog should return to its parent page when open and closed multiple times", function() { + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#default-trans-dialog"); + }, + + function(){ + $.mobile.activePage.find( "a" ).click(); + }, + + function(){ + window.history.back(); + }, + + function(){ + same( $.mobile.activePage[0], $( "#default-trans-dialog" )[0] ); + $.mobile.activePage.find( "a" ).click(); + }, + + function(){ + window.history.back(); + }, + + function(){ + same( $.mobile.activePage[0], $( "#default-trans-dialog" )[0] ); + start(); + } + ]); + }); + + asyncTest( "clicks with middle mouse button are ignored", function() { + $.testHelper.pageSequence([ + function() { + $.testHelper.openPage( "#odd-clicks-page" ); + }, + + function() { + $( "#right-or-middle-click" ).click(); + }, + + // make sure the page is opening first without the mocked button click value + // only necessary to prevent issues with test specific fixtures + function() { + same($.mobile.activePage[0], $("#odd-clicks-page-dest")[0]); + $.testHelper.openPage( "#odd-clicks-page" ); + + // mock the which value to simulate a middle click + $.Event.prototype.which = 2; + }, + + function() { + $( "#right-or-middle-click" ).click(); + }, + + function( timeout ) { + ok( timeout, "page event handler timed out due to ignored click" ); + ok($.mobile.activePage[0] !== $("#odd-clicks-page-dest")[0], "pages are not the same"); + start(); + } + ]); + }); + + asyncTest( "disabling link binding disables navigation via links and highlighting", function() { + $.mobile.linkBindingEnabled = false; + + $.testHelper.pageSequence([ + function() { + $.testHelper.openPage("#bar"); + }, + + function() { + $.mobile.activePage.find( "a" ).click(); + }, + + function( timeout ) { + ok( !$.mobile.activePage.find( "a" ).hasClass( $.mobile.activeBtnClass ), "vlick handler doesn't add the activebtn class" ); + ok( timeout, "no page change was fired" ); + start(); + } + ]); + }); + + asyncTest( "handling of button active state when navigating by clicking back button", 1, function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#active-state-page1"); + }, + + function(){ + $("#active-state-page1 a").eq(0).click(); + }, + + function(){ + $("#active-state-page2 a").eq(1).click(); + }, + + function(){ + $("#active-state-page1 a").eq(0).click(); + }, + + function(){ + ok(!$("#active-state-page2 a").hasClass( $.mobile.activeBtnClass ), "No button should not have class " + $.mobile.activeBtnClass ); + start(); + } + ]); + }); + + asyncTest( "can navigate to dynamically injected page with dynamically injected link", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + $.testHelper.openPage("#inject-links-page"); + }, + + function(){ + var $ilpage = $( "#inject-links-page" ), + $link = $( "injected-test-page link" ); + + // Make sure we actually navigated to the expected page. + ok( $.mobile.activePage[ 0 ] == $ilpage[ 0 ], "navigated successfully to #inject-links-page" ); + + // Now dynamically insert a page. + $ilpage.parent().append( "
                      testing...
                      " ); + + // Now inject a link to this page dynamically and attempt to navigate + // to the page we just inserted. + $link.appendTo( $ilpage ).click(); + }, + + function(){ + // Make sure we actually navigated to the expected page. + ok( $.mobile.activePage[ 0 ] == $( "#injected-test-page" )[ 0 ], "navigated successfully to #injected-test-page" ); + + start(); + } + ]); + }); + + asyncTest( "application url with dialogHashKey loads application's first page", function(){ + $.testHelper.pageSequence([ + // open our test page + function(){ + // Navigate to any page except the first page of the application. + $.testHelper.openPage("#foo"); + }, + + function(){ + ok( $.mobile.activePage[ 0 ] === $( "#foo" )[ 0 ], "navigated successfully to #foo" ); + + // Now navigate to an hash that contains just a dialogHashKey. + $.mobile.changePage("#" + $.mobile.dialogHashKey); + }, + + function(){ + // Make sure we actually navigated to the first page. + ok( $.mobile.activePage[ 0 ] === $.mobile.firstPage[ 0 ], "navigated successfully to first-page" ); + + // Now make sure opening the page didn't result in page duplication. + ok( $.mobile.firstPage.hasClass( "first-page" ), "first page has expected class" ); + same( $( ".first-page" ).length, 1, "first page was not duplicated" ); + + start(); + } + ]); + }); + + asyncTest( "navigate to non-existent internal page throws pagechangefailed", function(){ + var pagechangefailed = false, + pageChangeFailedCB = function( e ) { + pagechangefailed = true; + } + + $( document ).bind( "pagechangefailed", pageChangeFailedCB ); + + $.testHelper.pageSequence([ + // open our test page + function(){ + // Make sure there's only one copy of the first-page in the DOM to begin with. + ok( $.mobile.firstPage.hasClass( "first-page" ), "first page has expected class" ); + same( $( ".first-page" ).length, 1, "first page was not duplicated" ); + + // Navigate to any page except the first page of the application. + $.testHelper.openPage("#foo"); + }, + + function(){ + var $foo = $( "#foo" ); + ok( $.mobile.activePage[ 0 ] === $foo[ 0 ], "navigated successfully to #foo" ); + same( pagechangefailed, false, "no page change failures" ); + + // Now navigate to a non-existent page. + $foo.find( "#bad-internal-page-link" ).click(); + }, + + function(){ + // Make sure a pagechangefailed event was triggered. + same( pagechangefailed, true, "pagechangefailed dispatched" ); + + // Make sure we didn't navigate away from #foo. + ok( $.mobile.activePage[ 0 ] === $( "#foo" )[ 0 ], "did not navigate away from #foo" ); + + // Now make sure opening the page didn't result in page duplication. + same( $( ".first-page" ).length, 1, "first page was not duplicated" ); + + $( document ).unbind( "pagechangefailed", pageChangeFailedCB ); + + start(); + } + ]); + }); + + asyncTest( "prefetched links with data rel dialog result in a dialog", function() { + $.testHelper.pageSequence([ + // open our test page + function(){ + // Navigate to any page except the first page of the application. + $.testHelper.openPage("#prefetched-dialog-page"); + }, + + function() { + $("#prefetched-dialog-link").click(); + }, + + function() { + ok( $.mobile.activePage.is(".ui-dialog"), "prefetched page is rendered as a dialog" ); + start(); + } + ]); + }); + + asyncTest( "first page gets reloaded if pruned from the DOM", function(){ + var hideCallbackTriggered = false; + + function hideCallback( e, data ) + { + var page = e.target; + ok( ( page === $.mobile.firstPage[ 0 ] ), "hide called with prevPage set to firstPage"); + if ( page === $.mobile.firstPage[ 0 ] ) { + $( page ).remove(); + } + hideCallbackTriggered = true; + } + + $(document).bind('pagehide', hideCallback); + + $.testHelper.pageSequence([ + function(){ + // Make sure the first page is actually in the DOM. + ok( $.mobile.firstPage.parent().length !== 0, "first page is currently in the DOM" ); + + // Make sure the first page is the active page. + ok( $.mobile.activePage[ 0 ] === $.mobile.firstPage[ 0 ], "first page is the active page" ); + + // Now make sure the first page has an id that we can use to reload it. + ok( $.mobile.firstPage[ 0 ].id, "first page has an id" ); + + // Make sure there is only one first page in the DOM. + same( $( ".first-page" ).length, 1, "only one instance of the first page in the DOM" ); + + // Navigate to any page except the first page of the application. + $.testHelper.openPage("#foo"); + }, + + function(){ + // Make sure the active page is #foo. + ok( $.mobile.activePage[ 0 ] === $( "#foo" )[ 0 ], "navigated successfully to #foo" ); + + // Make sure our hide callback was triggered. + ok( hideCallbackTriggered, "hide callback was triggered" ); + + // Make sure the first page was actually pruned from the document. + ok( $.mobile.firstPage.parent().length === 0, "first page was pruned from the DOM" ); + same( $( ".first-page" ).length, 0, "no instance of the first page in the DOM" ); + + // Remove our hideCallback. + $(document).unbind('pagehide', hideCallback); + + // Navigate back to the first page! + $.testHelper.openPage( "#" + $.mobile.firstPage[0].id ); + }, + + function(){ + var firstPage = $( ".first-page" ); + + // We should only have one first page in the document at any time! + same( firstPage.length, 1, "single instance of first page recreated in the DOM" ); + + // Make sure the first page in the DOM is actually a different DOM element than the original + // one we started with. + ok( $.mobile.firstPage[ 0 ] !== firstPage[ 0 ], "first page is a new DOM element"); + + // Make sure we actually navigated to the new first page. + ok( $.mobile.activePage[ 0 ] === firstPage[ 0 ], "navigated successfully to new first-page"); + + // Reset the $.mobile.firstPage for subsequent tests. + // XXX: Should we just get rid of the new one and restore the old? + $.mobile.firstPage = $.mobile.activePage; + + start(); + } + ]); + }); + + asyncTest( "test that clicks are ignored where data-ajax='false' parents exist", function() { + var $disabledByParent = $( "#unhijacked-link-by-parent" ), + $disabledByAttr = $( "#unhijacked-link-by-attr" ); + + $.mobile.ignoreContentEnabled = true; + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( "#link-hijacking-test" ); + }, + + function() { + $( "#hijacked-link" ).trigger( 'click' ); + }, + + function() { + ok( $.mobile.activePage.is("#link-hijacking-destination"), "nav works for links to hijacking destination" ); + window.history.back(); + }, + + function() { + $disabledByParent.trigger( 'click' ); + }, + + function() { + ok( $.mobile.activePage.is("#link-hijacking-test"), "click should be ignored keeping the active mobile page the same as before" ); + }, + + function() { + $disabledByAttr.trigger( 'click' ); + }, + + function() { + ok( $.mobile.activePage.is("#link-hijacking-test"), "click should be ignored keeping the active mobile page the same as before" ); + + $.mobile.ignoreContentEnabled = false; + start(); + } + ]); + }); + + asyncTest( "test that *vclicks* are ignored where data-ajax='false' parents exist", function() { + var $disabledByParent = $( "#unhijacked-link-by-parent" ), + $disabledByAttr = $( "#unhijacked-link-by-attr" ), + $hijacked = $( "#hijacked-link" ); + + $.mobile.ignoreContentEnabled = true; + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage( "#link-hijacking-test" ); + }, + + function() { + // force the active button class + $hijacked.addClass( $.mobile.activeBtnClass ); + $hijacked.trigger( 'vclick' ); + ok( $hijacked.hasClass( $.mobile.activeBtnClass ), "active btn class is added to the link per normal" ); + + $disabledByParent.trigger( 'vclick' ); + ok( !$disabledByParent.hasClass( $.mobile.activeBtnClass ), "active button class is never added to the link" ); + + $disabledByAttr.trigger( 'vclick' ); + ok( !$disabledByAttr.hasClass( $.mobile.activeBtnClass ), "active button class is never added to the link" ); + + $.mobile.ignoreContentEnabled = false; + start(); + } + ]); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_dialog_pushstate.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_dialog_pushstate.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_dialog_pushstate.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_dialog_pushstate.js diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_helpers.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_helpers.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_helpers.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_helpers.js diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_paths.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_paths.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/navigation_paths.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_paths.js diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_transitions.js b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_transitions.js new file mode 100644 index 0000000..9b16f0a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/navigation_transitions.js @@ -0,0 +1,243 @@ +/* + * mobile navigation unit tests + */ +(function($){ + var perspective, + transitioning = "ui-mobile-viewport-transitioning", + animationCompleteFn = $.fn.animationComplete, + defaultMaxTrans = $.mobile.maxTransitionWidth, + + //TODO centralize class names? + transitionTypes = "in out fade slide flip reverse pop", + + isTransitioning = function(page){ + return $.grep(transitionTypes.split(" "), function(className, i){ + return page.hasClass(className); + }).length > 0; + }, + + isTransitioningIn = function(page){ + return page.hasClass("in") && isTransitioning(page); + }, + + disableMaxTransWidth = function(){ + $.mobile.maxTransitionWidth = false; + }, + + enableMaxTransWidth = function(){ + $.mobile.maxTransitionWidth = defaultMaxTrans; + }, + + //animationComplete callback queue + fromQueue = [], + toQueue = [], + + resetQueues = function(){ + fromQueue = []; + toQueue = []; + }, + + onFromComplete = function( f ){ + fromQueue.push( f ); + }, + + onToComplete = function( f ){ + toQueue.push( f ); + }, + + + //wipe all urls + clearUrlHistory = function(){ + $.mobile.urlHistory.stack = []; + $.mobile.urlHistory.activeIndex = 0; + }; + + + if( !$.support.cssTransform3d ) { + perspective = "viewport-fade"; + } else { + perspective = "viewport-flip"; + } + + module('jquery.mobile.navigation.js', { + setup: function(){ + + + // disable this option so we can test transitions regardless of window width + disableMaxTransWidth(); + + //stub to allow callback before function is returned to transition handler + $.fn.animationComplete = function( callback ){ + animationCompleteFn.call( this, function(){ + var queue = $(this).is(".out") ? fromQueue : toQueue; + for( var i = 0, il = queue.length; i < il; i++ ){ + queue.pop()( this ); + } + callback(); + }); + + return this; + }; + + resetQueues(); + clearUrlHistory(); + + if ( location.hash !== "#harmless-default-page" ) { + stop(); + + $(document).one("pagechange", function() { + start(); + } ); + + location.hash = "#harmless-default-page"; + } + }, + + teardown: function(){ + // unmock animation complete + $.fn.animationComplete = animationCompleteFn; + enableMaxTransWidth(); + } + }); + + /* + NOTES: + Our default transition handler now has either one or two animationComplete calls - two if there are two pages in play (from and to) + To is required, so each async function must call start() onToComplete, not onFromComplete. + */ + asyncTest( "changePage applies perspective class to mobile viewport for flip", function(){ + expect(1); + + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#foo"); + }, + + function() { + onToComplete( function( el ) { + console.log( $("body").attr("class") ); + ok($("body").hasClass(perspective), "has viewport-flip or viewport-fade based on 3d transform"); + start(); + }); + + $("#foo > a").first().click(); + } + ]); + }); + + asyncTest( "changePage applies transition class to mobile viewport for default transition", function(){ + expect(1); + $.testHelper.pageSequence([ + function() { + $.mobile.changePage("#baz"); + }, + + function() { + onToComplete( function( el ){ + ok($("body").hasClass(transitioning), "has transitioning class"); + start(); + }); + + $("#baz > a").click(); + } + ]); + }); + + asyncTest( "explicit transition preferred for page navigation reversal (ie back)", function(){ + expect( 1 ); + + onToComplete(function(){ + $("#flip-trans > a").click(); + onToComplete(function(){ + $("#fade-trans > a").click(); + onToComplete(function(){ + ok($("#flip-trans").hasClass("fade"), "has fade class"); + start(); + }); + }); + }); + + $("#fade-trans > a").click(); + }); + + asyncTest( "default transition is fade", function(){ + onToComplete(function(){ + ok($("#no-trans").hasClass("fade"), "has fade class"); + start(); + }) + + $("#default-trans > a").click(); + }); + + asyncTest( "changePage queues requests", function(){ + expect(4) + var firstPage = $("#foo"), + secondPage = $("#bar"); + + $.mobile.changePage(firstPage); + $.mobile.changePage(secondPage); + + onToComplete(function(){ + ok(isTransitioningIn(firstPage), "first page begins transition"); + ok(!isTransitioningIn(secondPage), "second page doesn't transition yet"); + onToComplete(function(){ + ok(!isTransitioningIn(firstPage), "first page transition should be complete"); + ok(isTransitioningIn(secondPage), "second page should begin transitioning"); + start(); + + }); + }); + }); + + asyncTest( "default transition is pop for a dialog", function(){ + var defaultTransition = "pop"; + + if( !$.support.cssTransform3d ){ + defaultTransition = "fade"; + } + + expect( 1 ); + onToComplete(function(){ + ok( $("#no-trans-dialog").hasClass(defaultTransition), "has pop class" ); + start(); + }); + + $("#default-trans-dialog > a").click(); + }); + + test( "animationComplete return value", function(){ + $.fn.animationComplete = animationCompleteFn; + equals($("#foo").animationComplete(function(){})[0], $("#foo")[0]); + }); + + + // reusable function for a few tests below + function testTransitionMaxWidth( val, expected ){ + expect( 1 ); + + $.mobile.maxTransitionWidth = val; + + var transitionOccurred = false; + + onToComplete(function(){ + transitionOccurred = true; + }); + + + return setTimeout(function(){ + ok( transitionOccurred === expected, (expected ? "" : "no ") + "transition occurred" ); + start(); + }, 5000); + + $.mobile.changePage( $(".ui-page:not(.ui-page-active)").first() ); + + } + + asyncTest( "maxTransitionWidth property disables transitions when value is less than browser width", function(){ + testTransitionMaxWidth( $( window ).width() - 1, false ); + }); + + asyncTest( "maxTransitionWidth property disables transitions when value is false", function(){ + testTransitionMaxWidth( false, false ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/file.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/file.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/file.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/file.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/parent-ref.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/parent-ref.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/parent-ref.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/parent-ref.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/parent/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/parent/index.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/parent/index.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/parent/index.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/sub-dir/file.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/sub-dir/file.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/sub-dir/file.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/sub-dir/file.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/sub-dir/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/sub-dir/index.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/path-tests/sub-dir/index.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/path-tests/sub-dir/index.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/prefetched-dialog.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/prefetched-dialog.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/prefetched-dialog.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/prefetched-dialog.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/prefetched.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/prefetched.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/prefetched.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/prefetched.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-dialog-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-dialog-tests.html new file mode 100644 index 0000000..8fcfabd --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-dialog-tests.html @@ -0,0 +1,40 @@ + + + + + + jQuery Mobile Navigation Test Suite + + + + + + + + + + + + + + + + + +

                      jQuery Mobile Navigation Test Suite

                      +

                      +

                      +
                        +
                      + + + +
                      +
                      +

                      Dialog

                      +
                      +
                      + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-disabled-base-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-disabled-base-tests.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-disabled-base-tests.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-disabled-base-tests.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-disabled-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-disabled-tests.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/push-state-disabled-tests.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/push-state-disabled-tests.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/title1.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/title1.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/title1.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/title1.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/title2.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/title2.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/title2.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/title2.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/title3.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/title3.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/navigation/title3.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/navigation/title3.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/transition-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/transition-tests.html new file mode 100644 index 0000000..8444dad --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/navigation/transition-tests.html @@ -0,0 +1,285 @@ + + + + + + jQuery Mobile Navigation Test Suite + + + + + + + + + + + + + + + + +

                      jQuery Mobile Navigation Test Suite

                      +

                      +

                      +
                        +
                      + +
                      +
                      + +
                      + + +
                      + + + +
                      +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      +
                      +
                      + +
                      +
                      + +
                      +
                      +
                      + +
                      + +
                      + +
                      +
                      + + + + + +
                      +
                      +

                      Dialog

                      +
                      +
                      + +
                      +
                      + Dialog +
                      +
                      + +
                      +
                      + Page 2 +
                      +
                      + +
                      + Go Back +
                      + + +
                      +
                      + Dialog +
                      +
                      + +
                      +
                      + Dialog 2 +
                      +
                      + +
                      +
                      + +
                      + +
                      + + + +
                      + test + test + test +
                      + +
                      +

                      Title Heading

                      +
                      + +
                      +

                      Title Heading

                      +
                      + + + + + +
                      + + go + go + go + go + go + go + + + + go + go + go + go + go + go + + + + go + go + go + go + go + go + + + + go + go + go + go + go + go + +
                      + +
                      +
                      page didn't change!
                      +
                      + + + +
                      +
                      + page2 +
                      +
                      + + + + + +
                      + foo +
                      + +
                      + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/page-sections/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/page-sections/index.html new file mode 100644 index 0000000..c413111 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/page-sections/index.html @@ -0,0 +1,82 @@ + + + + + + jQuery Mobile Page Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Page Test Suite

                      +

                      +

                      +
                        +
                      + +
                      +
                      +
                      +
                      + foo +
                      + foo +
                      + +
                      +
                      + foo +
                      + + foo +
                      + +
                      +
                      + foo +
                      + + foo +
                      +
                      +
                      + +
                      +
                      +
                      + foo +
                      + foo +
                      +
                      + +
                      +
                      +
                      + foo +
                      + foo +
                      +
                      + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/page-sections/page_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/page-sections/page_core.js new file mode 100644 index 0000000..75f0765 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/page-sections/page_core.js @@ -0,0 +1,54 @@ +/* + * mobile page unit tests + */ +(function($){ + var libName = 'jquery.mobile.page.sections'; + + module(libName); + + test( "nested header anchors aren't altered", function(){ + ok(!$('.ui-header > div > a').hasClass('ui-btn')); + }); + + test( "nested footer anchors aren't altered", function(){ + ok(!$('.ui-footer > div > a').hasClass('ui-btn')); + }); + + test( "nested bar anchors aren't styled", function(){ + ok(!$('.ui-bar > div > a').hasClass('ui-btn')); + }); + + test( "unnested footer anchors are styled", function(){ + ok($('.ui-footer > a').hasClass('ui-btn')); + }); + + test( "unnested bar anchors are styled", function(){ + ok($('.ui-bar > a').hasClass('ui-btn')); + }); + + test( "no auto-generated back button exists on first page", function(){ + ok( !$(".ui-header > :jqmData(rel='back')").length ); + }); + + test( "sections inside an ignored container do not enhance", function() { + var $ignored = $( "#ignored-header" ), $enhanced = $( "#enhanced-header" ); + + $.mobile.ignoreContentEnabled = true; + + $ignored + .parent() + .attr( "data-" + $.mobile.ns + "role", "page" ) + .page() + .trigger( "pagecreate" ); + same( $ignored.attr( "class" ), undefined, "ignored header has no class" ); + + $enhanced + .parent() + .attr( "data-" + $.mobile.ns + "role", "page" ) + .page() + .trigger( "pagecreate" ); + same( $enhanced.attr( "class" ).indexOf("ui-header"), 0, "enhanced header has classes" ); + + $.mobile.ignoreContentEnabled = false; + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/page/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/page/index.html new file mode 100644 index 0000000..b6cc81d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/page/index.html @@ -0,0 +1,49 @@ + + + + + + jQuery Mobile Page Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Page Test Suite

                      +

                      +

                      +
                        +
                      + +
                      +
                      +
                      + +
                      + +
                      + +
                      + +
                      + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/page/page_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/page/page_core.js new file mode 100644 index 0000000..234df61 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/page/page_core.js @@ -0,0 +1,157 @@ +/* + * mobile page unit tests + */ +(function($){ + var libName = 'jquery.mobile.page', + themedefault = $.mobile.page.prototype.options.theme, + keepNative = $.mobile.page.prototype.options.keepNative; + + module(libName, { + setup: function() { + $.mobile.page.prototype.options.keepNative = keepNative; + } + }); + + var eventStack = [], + etargets = [], + cEvents=[], + cTargets=[]; + + $( document ).bind( "pagebeforecreate pagecreate", function( e ){ + eventStack.push( e.type ); + etargets.push( e.target ); + }); + + $( "#c" ).live( "pagebeforecreate", function( e ){ + cEvents.push( e.type ); + cTargets.push( e.target ); + return false; + }); + + test( "pagecreate event fires when page is created", function(){ + ok( eventStack[0] === "pagecreate" || eventStack[1] === "pagecreate" ); + }); + + test( "pagebeforecreate event fires when page is created", function(){ + ok( eventStack[0] === "pagebeforecreate" || eventStack[1] === "pagebeforecreate" ); + }); + + test( "pagebeforecreate fires before pagecreate", function(){ + ok( eventStack[0] === "pagebeforecreate" ); + }); + + test( "target of pagebeforecreate event was div #a", function(){ + ok( $( etargets[0] ).is("#a") ); + }); + + test( "target of pagecreate event was div #a" , function(){ + ok( $( etargets[0] ).is("#a") ); + }); + + test( "page element has ui-page class" , function(){ + ok( $( "#a" ).hasClass( "ui-page" ) ); + }); + + test( "page element has default body theme when not overidden" , function(){ + ok( $( "#a" ).hasClass( "ui-body-" + themedefault ) ); + }); + + test( "B page has non-default theme matching its data-theme attr" , function(){ + $( "#b" ).page(); + var btheme = $( "#b" ).jqmData( "theme" ); + ok( $( "#b" ).hasClass( "ui-body-" + btheme ) ); + }); + + test( "Binding to pagebeforecreate and returning false prevents pagecreate event from firing" , function(){ + $( "#c" ).page(); + + ok( cEvents[0] === "pagebeforecreate" ); + ok( !cTargets[1] ); + }); + + test( "Binding to pagebeforecreate and returning false prevents classes from being applied to page" , function(){ + $( "#c" ).page(); + + ok( !$( "#c" ).hasClass( "ui-body-" + themedefault ) ); + ok( !$( "#c" ).hasClass( "ui-page" ) ); + }); + + test( "keepNativeSelector returns the default where keepNative is not different", function() { + var pageProto = $.mobile.page.prototype; + pageProto.options.keepNative = pageProto.options.keepNativeDefault; + + same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); + }); + + test( "keepNativeSelector returns the default where keepNative is empty, undefined, whitespace", function() { + var pageProto = $.mobile.page.prototype; + + pageProto.options.keepNative = ""; + same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); + + pageProto.options.keepNative = undefined; + same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); + + pageProto.options.keepNative = " "; + same(pageProto.keepNativeSelector(), pageProto.options.keepNativeDefault); + }); + + test( "keepNativeSelector returns a selector joined with the default", function() { + var pageProto = $.mobile.page.prototype; + + pageProto.options.keepNative = "foo, bar"; + same(pageProto.keepNativeSelector(), "foo, bar, " + pageProto.options.keepNativeDefault); + }); + + test( "links inside an ignored container do not enhance", function() { + var $ignored = $( "#ignored-link" ), $enhanced = $( "#enhanced-link" ); + + $.mobile.ignoreContentEnabled = true; + + $ignored.parent().trigger( "create" ); + same( $ignored.attr( "class" ), undefined, "ignored link doesn't have link class" ); + + $enhanced.parent().trigger( "create" ); + same( $enhanced.attr( "class" ).indexOf("ui-link"), 0, "enhanced link has link class" ); + + $.mobile.ignoreContentEnabled = false; + }); + + + asyncTest( "page container is updated to page theme at pagebeforeshow", function(){ + + expect( 1 ); + + var pageTheme = "ui-overlay-" + $.mobile.activePage.page( "option", "theme" ); + + $.mobile.pageContainer.removeClass( pageTheme ); + + $.mobile.activePage + .bind( "pagebeforeshow", function(){ + ok( $.mobile.pageContainer.hasClass( pageTheme ), "Page container has the same theme as the page on pagebeforeshow" ); + start(); + }) + .trigger( "pagebeforeshow" ); + + } ); + + asyncTest( "page container is updated to page theme at pagebeforeshow", function(){ + + expect( 1 ); + + var pageTheme = "ui-overlay-" + $.mobile.activePage.page( "option", "theme" ); + + $.mobile.pageContainer.addClass( pageTheme ); + + $.mobile.activePage + .bind( "pagebeforehide", function(){ + ok( !$.mobile.pageContainer.hasClass( pageTheme ), "Page container does not have the same theme as the page on pagebeforeshow" ); + start(); + }) + .trigger( "pagebeforehide" ); + + } ); + + + +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/runner.js b/libs/js/jquery-mobile-1.1.0/tests/unit/runner.js new file mode 100644 index 0000000..4505996 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/runner.js @@ -0,0 +1,89 @@ +$(function() { + var Runner = function( ) { + var self = this; + + $.extend( self, { + frame: window.frames[ "testFrame" ], + + testTimeout: 3 * 60 * 1000, + + $frameElem: $( "#testFrame" ), + + assertionResultPrefix: "assertion result for test:", + + onTimeout: QUnit.start, + + onFrameLoad: function() { + // establish a timeout for a given suite in case of async tests hanging + self.testTimer = setTimeout( self.onTimeout, self.testTimeout ); + + // it might be a redirect with query params for push state + // tests skip this call and expect another + if( !self.frame.QUnit ) { + self.$frameElem.one( "load", self.onFrameLoad ); + return; + } + + // when the QUnit object reports done in the iframe + // run the onFrameDone method + self.frame.QUnit.done = self.onFrameDone; + self.frame.QUnit.testDone = self.onTestDone; + }, + + onTestDone: function( result ) { + QUnit.ok( !(result.failed > 0), result.name ); + self.recordAssertions( result.total - result.failed, result.name ); + }, + + onFrameDone: function( results ) { + // make sure we don't time out the tests + clearTimeout( self.testTimer ); + + // TODO decipher actual cause of multiple test results firing twice + // clear the done call to prevent early completion of other test cases + self.frame.QUnit.done = $.noop; + self.frame.QUnit.testDone = $.noop; + + // hide the extra assertions made to propogate the count + // to the suite level test + self.hideAssertionResults(); + + // continue on to the next suite + QUnit.start(); + }, + + recordAssertions: function( count, parentTest ) { + for( var i = 0; i < count; i++ ) { + ok( true, self.assertionResultPrefix + parentTest ); + } + }, + + hideAssertionResults: function() { + $( "li:not([id]):contains('" + self.assertionResultPrefix + "')" ).hide(); + }, + + exec: function( data ) { + var template = self.$frameElem.attr( "data-src" ); + + $.each( data.testPages, function(i, dir) { + QUnit.asyncTest( dir, function() { + self.dir = dir; + self.$frameElem.one( "load", self.onFrameLoad ); + self.$frameElem.attr( "src", template.replace("{{testdir}}", dir).replace( "{{jquery.version}}", $.fn.jquery ) ); + }); + }); + + // having defined all suite level tests let QUnit run + QUnit.start(); + } + }); + }; + + // prevent qunit from starting the test suite until all tests are defined + QUnit.begin = function( ) { + this.config.autostart = false; + }; + + // get the test directories + $.get( "ls.php", (new Runner()).exec ); +}); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached-dom-cache-true.html b/libs/js/jquery-mobile-1.1.0/tests/unit/select/cached-dom-cache-true.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached-dom-cache-true.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/select/cached-dom-cache-true.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/cached-tests.html b/libs/js/jquery-mobile-1.1.0/tests/unit/select/cached-tests.html new file mode 100644 index 0000000..627bc3d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/cached-tests.html @@ -0,0 +1,38 @@ + + + + + + jQuery Mobile Select Events Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Select Event Test Suite

                      +

                      +

                      +
                        +
                      +
                      + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached.html b/libs/js/jquery-mobile-1.1.0/tests/unit/select/cached.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/select/cached.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/select/cached.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/defineKeepNative.js b/libs/js/jquery-mobile-1.1.0/tests/unit/select/defineKeepNative.js new file mode 100644 index 0000000..ed60f68 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/defineKeepNative.js @@ -0,0 +1,4 @@ +$(document).bind("mobileinit", function() { + $.mobile.page.prototype.options.keepNative = "select.should-be-native"; +}); + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/select/index.html new file mode 100644 index 0000000..f7fb780 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/index.html @@ -0,0 +1,405 @@ + + + + + + jQuery Mobile Select Events Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Select Event Test Suite

                      +

                      +

                      +
                        +
                      + +
                      +
                      + +
                      + +
                      + + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + + +
                      + +
                      + + +
                      + +
                      + + +
                      + +
                      + + +
                      + +
                      + + + +
                      + +
                      + +
                      + + + + + + + + + + + + + + + +
                      + +
                      + + +
                      + + +
                      + +
                      + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_cached.js b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_cached.js new file mode 100644 index 0000000..1493dff --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_cached.js @@ -0,0 +1,137 @@ +/* + * mobile select unit tests + */ + +(function($){ + var resetHash; + + resetHash = function(timeout){ + $.testHelper.openPage( location.hash.indexOf("#default") >= 0 ? "#" : "#default" ); + }; + + // https://github.com/jquery/jquery-mobile/issues/2181 + asyncTest( "dialog sized select should alter the value of its parent select", function(){ + var selectButton, value; + + $.testHelper.pageSequence([ + resetHash, + + function(){ + $.mobile.changePage( "cached.html" ); + }, + + function(){ + ok( $.mobile.activePage.is("#dialog-select-parent-cache-test"), "cached page appears" ); + selectButton = $( "#cached-page-select" ).siblings( 'a' ); + selectButton.click(); + }, + + function(){ + ok( $.mobile.activePage.hasClass('ui-dialog'), "the dialog came up" ); + var option = $.mobile.activePage.find( "li a" ).not(":contains('" + selectButton.text() + "')").last(); + value = $.trim(option.text()); + option.click(); + }, + + function(){ + same( value, $.trim(selectButton.text()), "the selected value is propogated back to the button text" ); + start(); + } + ]); + }); + + // https://github.com/jquery/jquery-mobile/issues/2181 + asyncTest( "dialog sized select should prevent the removal of its parent page from the dom", function(){ + var selectButton, parentPageId; + + expect( 2 ); + + $.testHelper.pageSequence([ + resetHash, + + function(){ + $.mobile.changePage( "cached.html" ); + }, + + function(){ + selectButton = $.mobile.activePage.find( "#cached-page-select" ).siblings( 'a' ); + parentPageId = $.mobile.activePage.attr( 'id' ); + same( $("#" + parentPageId).length, 1, "establish the parent page exists" ); + selectButton.click(); + }, + + function(){ + same( $( "#" + parentPageId).length, 1, "make sure parent page is still there after opening the dialog" ); + $.mobile.activePage.find( "li a" ).last().click(); + }, + + start + ]); + }); + + asyncTest( "dialog sized select shouldn't rebind its parent page remove handler when closing, if the parent page domCache option is true", function(){ + expect( 3 ); + + $.testHelper.pageSequence([ + resetHash, + + function(){ + $.mobile.changePage( "cached-dom-cache-true.html" ); + }, + + function(){ + $.mobile.activePage.find( "#domcache-page-select" ).siblings( 'a' ).click(); + }, + + function(){ + ok( $.mobile.activePage.hasClass('ui-dialog'), "the dialog came up" ); + $.mobile.activePage.find( "li a" ).last().click(); + }, + + function(){ + ok( $.mobile.activePage.is( "#dialog-select-parent-domcache-test" ), "the dialog closed" ); + $.mobile.changePage( $( "#default" ) ); + }, + + function(){ + same( $("#dialog-select-parent-domcache-test").length, 1, "make sure the select parent page is still cached in the dom after changing page" ); + start(); + } + ]); + }); + + asyncTest( "menupage is removed when the parent page is removed", function(){ + var dialogCount = $(":jqmData(role='dialog')").length; + $.testHelper.pageSequence([ + resetHash, + + function(){ + $.mobile.changePage( "uncached-dom-cached-false.html" ); + }, + + function(){ + // for performance reason we don't initially create the menu dialog now + same( $(":jqmData(role='dialog')").length, dialogCount); + + // manually trigger dialog opening + $( "#domcache-uncached-page-select" ).data( 'selectmenu' ).open(); + }, + + function(){ + // check if dialog was successfully created + same( $(":jqmData(role='dialog')").length, dialogCount + 1 ); + $( "#domcache-uncached-page-select" ).data( 'selectmenu' ).close(); + }, + + function(){ + // navigate to parent(initial) page + window.history.back(); + }, + + function() { + same( $(":jqmData(role='dialog')").length, dialogCount ); + start(); + } + ]); + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_core.js new file mode 100644 index 0000000..8f1ed6d --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_core.js @@ -0,0 +1,387 @@ +/* + * mobile select unit tests + */ + +(function($){ + var libName = "jquery.mobile.forms.select", + originalDefaultDialogTrans = $.mobile.defaultDialogTransition, + originalDefTransitionHandler = $.mobile.defaultTransitionHandler, + originalGetEncodedText = $.fn.getEncodedText, + resetHash, closeDialog; + + resetHash = function(timeout){ + $.testHelper.openPage( location.hash.indexOf("#default") >= 0 ? "#" : "#default" ); + }; + + closeDialog = function(timeout){ + $.mobile.activePage.find("li a").first().click(); + }; + + module(libName, { + teardown: function(){ + $.mobile.defaultDialogTransition = originalDefaultDialogTrans; + $.mobile.defaultTransitionHandler = originalDefTransitionHandler; + + $.fn.getEncodedText = originalGetEncodedText; + window.encodedValueIsDefined = undefined; + } + }); + + asyncTest( "placeholder correctly gets ui-selectmenu-placeholder class after rebuilding", function(){ + $.testHelper.sequence([ + function(){ + // bring up the optgroup menu + ok($("#optgroup-and-placeholder-container a").length > 0, "there is in fact a button in the page"); + $("#optgroup-and-placeholder-container a").trigger("click"); + }, + + function(){ + //select the first menu item + $("#optgroup-and-placeholder-menu a:first").click(); + }, + + function(){ + ok($("#optgroup-and-placeholder-menu li:first").hasClass("ui-selectmenu-placeholder"), "the placeholder item has the ui-selectmenu-placeholder class"); + start(); + } + ], 1000); + }); + + asyncTest( "firing a click at least 400 ms later on the select screen overlay does close it", function(){ + $.testHelper.sequence([ + function(){ + // bring up the smaller choice menu + ok($("#select-choice-few-container a").length > 0, "there is in fact a button in the page"); + $("#select-choice-few-container a").trigger("click"); + }, + + function(){ + //select the first menu item + $("#select-choice-few-menu a:first").click(); + }, + + function(){ + same($("#select-choice-few-menu").parent(".ui-selectmenu-hidden").length, 1); + start(); + } + ], 1000); + }); + + asyncTest( "a large select menu should use the default dialog transition", function(){ + var select; + + $.testHelper.pageSequence([ + resetHash, + + function(timeout){ + select = $("#select-choice-many-container-1 a"); + + //set to something else + $.mobile.defaultTransitionHandler = $.testHelper.decorate({ + fn: $.mobile.defaultTransitionHandler, + + before: function(name){ + same(name, $.mobile.defaultDialogTransition); + } + }); + + // bring up the dialog + select.trigger("click"); + }, + + closeDialog, + + start + ]); + }); + + asyncTest( "custom select menu always renders screen from the left", function(){ + var select; + + expect( 1 ); + + $.testHelper.sequence([ + resetHash, + + function(){ + select = $("ul#select-offscreen-menu"); + $("#select-offscreen-container a").trigger("click"); + }, + + function(){ + ok(select.offset().left >= 30, "offset from the left is greater than or equal to 30px" ); + start(); + } + ], 1000); + }); + + asyncTest( "selecting an item from a dialog sized custom select menu leaves no dialog hash key", function(){ + var dialogHashKey = "ui-state=dialog"; + + $.testHelper.pageSequence([ + resetHash, + + function(timeout){ + $("#select-choice-many-container-hash-check a").click(); + }, + + function(){ + ok(location.hash.indexOf(dialogHashKey) > -1); + closeDialog(); + }, + + function(){ + same(location.hash.indexOf(dialogHashKey), -1); + start(); + } + ]); + }); + + asyncTest( "dialog sized select menu opened many times remains a dialog", function(){ + var dialogHashKey = "ui-state=dialog", + + openDialogSequence = [ + resetHash, + + function(){ + $("#select-choice-many-container-many-clicks a").click(); + }, + + function(){ + ok(location.hash.indexOf(dialogHashKey) > -1, "hash should have the dialog hash key"); + closeDialog(); + } + ], + + sequence = openDialogSequence.concat(openDialogSequence).concat([start]); + + $.testHelper.sequence(sequence, 1000); + }); + + test( "make sure the label for the select gets the ui-select class", function(){ + ok( $( "#native-select-choice-few-container label" ).hasClass( "ui-select" ), "created label has ui-select class" ); + }); + + module("Non native menus", { + setup: function() { + $.mobile.selectmenu.prototype.options.nativeMenu = false; + }, + teardown: function() { + $.mobile.selectmenu.prototype.options.nativeMenu = true; + } + }); + + asyncTest( "a large select option should not overflow", function(){ + // https://github.com/jquery/jquery-mobile/issues/1338 + var menu, select; + + $.testHelper.sequence([ + resetHash, + + function(){ + select = $("#select-long-option-label"); + // bring up the dialog + select.trigger("click"); + }, + + function() { + menu = $(".ui-selectmenu-list"); + + equal(menu.width(), menu.find("li:nth-child(2) .ui-btn-text").width(), "ui-btn-text element should not overflow"); + start(); + } + ], 500); + }); + + asyncTest( "using custom refocuses the button after close", function() { + var select, button, triggered = false; + + expect( 1 ); + + $.testHelper.sequence([ + resetHash, + + function() { + select = $("#select-choice-focus-test"); + button = select.find( "a" ); + button.trigger( "click" ); + }, + + function() { + // NOTE this is called twice per triggered click + button.focus(function() { + triggered = true; + }); + + $(".ui-selectmenu-screen:not(.ui-screen-hidden)").trigger("click"); + }, + + function(){ + ok(triggered, "focus is triggered"); + start(); + } + ], 5000); + }); + + asyncTest( "selected items are highlighted", function(){ + $.testHelper.sequence([ + resetHash, + + function(){ + // bring up the smaller choice menu + ok($("#select-choice-few-container a").length > 0, "there is in fact a button in the page"); + $("#select-choice-few-container a").trigger("click"); + }, + + function(){ + var firstMenuChoice = $("#select-choice-few-menu li:first"); + ok( firstMenuChoice.hasClass( $.mobile.activeBtnClass ), + "default menu choice has the active button class" ); + + $("#select-choice-few-menu a:last").click(); + }, + + function(){ + // bring up the menu again + $("#select-choice-few-container a").trigger("click"); + }, + + function(){ + var lastMenuChoice = $("#select-choice-few-menu li:last"); + ok( lastMenuChoice.hasClass( $.mobile.activeBtnClass ), + "previously slected item has the active button class" ); + + // close the dialog + lastMenuChoice.find( "a" ).click(); + }, + + start + ], 1000); + }); + + test( "enabling and disabling", function(){ + var select = $( "select" ).first(), button; + + button = select.siblings( "a" ).first(); + + select.selectmenu( 'disable' ); + same( select.attr('disabled'), "disabled", "select is disabled" ); + ok( button.hasClass("ui-disabled"), "disabled class added" ); + same( button.attr('aria-disabled'), "true", "select is disabled" ); + same( select.selectmenu( 'option', 'disabled' ), true, "disbaled option set" ); + + select.selectmenu( 'enable' ); + same( select.attr('disabled'), undefined, "select is disabled" ); + ok( !button.hasClass("ui-disabled"), "disabled class added" ); + same( button.attr('aria-disabled'), "false", "select is disabled" ); + same( select.selectmenu( 'option', 'disabled' ), false, "disbaled option set" ); + }); + + asyncTest( "adding options and refreshing a custom select changes the options list", function(){ + var select = $( "#custom-refresh-opts-list" ), + button = select.siblings( "a" ).find( ".ui-btn-inner" ), + text = "foo"; + + $.testHelper.sequence([ + // bring up the dialog + function() { + button.click(); + }, + + function() { + same( $( ".ui-selectmenu.in ul" ).text(), "default" ); + $( ".ui-selectmenu-screen" ).click(); + }, + + function() { + select.find( "option" ).remove(); //remove the loading message + select.append(''); + select.selectmenu( 'refresh' ); + }, + + function() { + button.click(); + }, + + function() { + same( $( ".ui-selectmenu.in ul" ).text(), text ); + $( ".ui-selectmenu-screen" ).click(); + }, + + start + ], 500); + }); + + test( "theme defined on select is used", function(){ + var select = $("select#non-parent-themed"); + + ok( select.siblings( "a" ).hasClass("ui-btn-up-" + select.jqmData('theme'))); + }); + + test( "select without theme defined inherits theme from parent", function() { + var select = $("select#parent-themed"); + + ok( select + .siblings( "a" ) + .hasClass("ui-btn-up-" + select.parents(":jqmData(role='page')").jqmData('theme'))); + }); + + // issue #2547 + test( "custom select list item links have encoded option text values", function() { + $( "#encoded-option" ).data( 'selectmenu' )._buildList(); + same(window.encodedValueIsDefined, undefined); + }); + + // not testing the positive case here since's it's obviously tested elsewhere + test( "select elements in the keepNative set shouldn't be enhanced", function() { + ok( !$("#keep-native").parent().is("div.ui-btn") ); + }); + + asyncTest( "dialog size select title should match the label", function() { + var $select = $( "#select-choice-many-1" ), + $label = $select.parent().siblings( "label" ), + $button = $select.siblings( "a" ); + + $.testHelper.pageSequence([ + function() { + $button.click(); + }, + + function() { + same($.mobile.activePage.find( ".ui-title" ).text(), $label.text()); + window.history.back(); + }, + + start + ]); + }); + + asyncTest( "dialog size select title should match the label when changed after the dialog markup is added to the DOM", function() { + var $select = $( "#select-choice-many-1" ), + $label = $select.parent().siblings( "label" ), + $button = $select.siblings( "a" ); + + $label.text( "foo" ); + + $.testHelper.pageSequence([ + function() { + $label.text( "foo" ); + $button.click(); + }, + + function() { + same($.mobile.activePage.find( ".ui-title" ).text(), $label.text()); + window.history.back(); + }, + + start + ]); + }); + + test( "a disabled custom select should still be enhanced as custom", function() { + $("#select-disabled-enhancetest").selectmenu("enable").siblings("a").click(); + + var menu = $(".ui-selectmenu").not( ".ui-selectmenu-hidden" ); + ok( menu.text().indexOf("disabled enhance test") > -1, "the right select is showing" ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_events.js b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_events.js new file mode 100644 index 0000000..355a142 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_events.js @@ -0,0 +1,34 @@ +/* + * mobile select unit tests + */ + +(function($){ + var libName = "jquery.mobile.forms.select"; + + $(document).bind('mobileinit', function(){ + $.mobile.selectmenu.prototype.options.nativeMenu = false; + }); + + module(libName,{ + setup: function(){ + $.testHelper.openPage( location.hash.indexOf("#default") >= 0 ? "#" : "#default" ); + } + }); + + test( "selects marked with data-native-menu=true should use a div as their button", function(){ + same($("#select-choice-native-container div.ui-btn").length, 1); + }); + + test( "selects marked with data-native-menu=true should not have a custom menu", function(){ + same($("#select-choice-native-container ul").length, 0); + }); + + test( "selects marked with data-native-menu=true should sit inside the button", function(){ + same($("#select-choice-native-container div.ui-btn select").length, 1); + }); + + test( "select controls will create when inside a container that receives a 'create' event", function(){ + ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-select").length, "did not have enhancements applied" ); + ok( $("#enhancetest").trigger("create").find(".ui-select").length, "enhancements applied" ); + }); +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_native.js b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_native.js new file mode 100644 index 0000000..fdabe85 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/select/select_native.js @@ -0,0 +1,122 @@ +/* + * mobile select unit tests + */ + +(function($){ + module("jquery.mobile.forms.select native"); + + test( "native menu selections alter the button text", function(){ + var select = $( "#native-select-choice-few" ), setAndCheck; + + setAndCheck = function(key){ + var text; + + select.val( key ).selectmenu( 'refresh' ); + text = select.find( "option[value='" + key + "']" ).text(); + same( select.parent().find(".ui-btn-text").text(), text ); + }; + + setAndCheck( 'rush' ); + setAndCheck( 'standard' ); + }); + + asyncTest( "selecting a value removes the related buttons down state", function(){ + var select = $( "#native-select-choice-few" ); + + $.testHelper.sequence([ + function() { + // click the native menu parent button + select.parent().trigger( 'vmousedown' ); + }, + + function() { + ok( select.parent().hasClass("ui-btn-down-c"), "button down class added" ); + }, + + function() { + // trigger a change on the select + select.trigger( "change" ); + }, + + function() { + ok( !select.parent().hasClass("ui-btn-down-c"), "button down class removed" ); + start(); + } + ], 300); + }); + + // issue https://github.com/jquery/jquery-mobile/issues/2410 + test( "adding options and refreshing a custom select defaults the text", function() { + var select = $( "#custom-refresh" ), + button = select.siblings( "a" ).find( ".ui-btn-inner" ), + text = "foo"; + + same($.trim(button.text()), "default"); + select.find( "option" ).remove(); //remove the loading message + select.append(''); + select.selectmenu( 'refresh' ); + same($.trim(button.text()), text); + }); + + // issue 2424 + test( "native selects should provide open and close as a no-op", function() { + // exception will prevent test success if undef + $( "#native-refresh" ).selectmenu( 'open' ); + $( "#native-refresh" ).selectmenu( 'close' ); + ok( true ); + }); + + asyncTest( "The preventFocusZoom option is working as expected", function() { + + var zoomoptiondefault = $.mobile.selectmenu.prototype.options.preventFocusZoom; + $.mobile.selectmenu.prototype.options.preventFocusZoom = true; + + $(document) + .one("vmousedown.test", function(){ + ok( $.mobile.zoom.enabled === false, "zoom is disabled on vmousedown" ); + }) + .one("mouseup.test", function(){ + ok( $.mobile.zoom.enabled === true, "zoom is enabled on mouseup" ); + $.mobile.selectmenu.prototype.options.preventFocusZoom = zoomoptiondefault; + $(document).unbind(".test"); + $( "#select-choice-native" ).selectmenu( "option", "preventFocusZoom", zoomoptiondefault ) + start(); + }); + + $( "#select-choice-native" ) + .selectmenu( "option", "preventFocusZoom", true ) + .parent() + .trigger( "vmousedown" ) + .trigger( "mouseup" ); + + + + + }); + + asyncTest( "The preventFocusZoom option does not manipulate zoom when it is false", function() { + + var zoomstate = $.mobile.zoom.enabled, + zoomoptiondefault = $.mobile.selectmenu.prototype.options.preventFocusZoom; + + + $(document) + .one("vmousedown.test", function(){ + ok( $.mobile.zoom.enabled === zoomstate, "zoom is unaffected on vmousedown" ); + }) + .one("mouseup.test", function(){ + ok( $.mobile.zoom.enabled === zoomstate, "zoom is unaffected on mouseup" ); + $(document).unbind(".test"); + $( "#select-choice-native" ).selectmenu( "option", "preventFocusZoom", zoomoptiondefault ); + start(); + + }); + + $( "#select-choice-native" ) + .selectmenu( "option", "preventFocusZoom", false ) + .parent() + .trigger( "vmousedown" ) + .trigger( "mouseup" ); + + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/suite.html b/libs/js/jquery-mobile-1.1.0/tests/unit/select/suite.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/select/suite.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/select/suite.html diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/select/uncached-dom-cached-false.html b/libs/js/jquery-mobile-1.1.0/tests/unit/select/uncached-dom-cached-false.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/select/uncached-dom-cached-false.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/select/uncached-dom-cached-false.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/slider/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/slider/index.html new file mode 100644 index 0000000..f251711 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/slider/index.html @@ -0,0 +1,99 @@ + + + + + + jQuery Mobile Slider Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Slider Test Suite

                      +

                      +

                      +
                        +
                      + +
                      +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + +
                      + + +
                      + +
                      + + +
                      + +
                      + + +
                      +
                      + +
                      + +
                      + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/slider/slider_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/slider/slider_core.js new file mode 100644 index 0000000..d19e9a3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/slider/slider_core.js @@ -0,0 +1,47 @@ +/* + * mobile slider unit tests + */ +(function($){ + $.mobile.page.prototype.options.keepNative = "input.should-be-native"; + + // not testing the positive case here since's it's obviously tested elsewhere + test( "slider elements in the keepNative set shouldn't be enhanced", function() { + same( $("input.should-be-native").siblings("div.ui-slider").length, 0 ); + }); + + test( "refresh should force val to nearest step", function() { + var slider = $( "#step-slider" ), + step = parseInt(slider.attr( "step" ), 10); + + slider.val( step + 1 ); + + slider.slider( 'refresh' ); + + ok( step > 1, "the step is greater than one" ); + ok( slider.val() > 0, "the value has been altered" ); + same( slider.val() % step, 0, "value has 'snapped' to a step" ); + }); + + test( "empty string value results defaults to slider min value", function() { + var slider = $( "#empty-string-val-slider" ); + same( slider.attr('min'), "10", "slider min is greater than 0" ); + same( slider.val( '' ).slider( 'refresh' ).val(), slider.attr('min'), "val is equal to min attr"); + }); + + test( "flip toggle switch title should be current selected value attr", function() { + var slider = $( "#slider-switch" ); + + same(slider.siblings(".ui-slider").find("a").attr('title'), + $(slider.find("option")[slider[0].selectedIndex]).text(), + "verify that the link title is set to the selected option text"); + }); + + test( "data-highlight works properly", function() { + var $highlighted = $("#background-slider"), $unhighlighted = $("#no-background-slider"); + + same( $highlighted.siblings( ".ui-slider" ).find( ".ui-slider-bg" ).length, 1, + "highlighted slider should have a div for the track bg" ); + same( $unhighlighted.siblings( ".ui-slider" ).find( ".ui-slider-bg" ).length, 0, + "unhighlighted slider _not_ should have a div for the track bg" ); + }); +})( jQuery ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/slider/slider_events.js b/libs/js/jquery-mobile-1.1.0/tests/unit/slider/slider_events.js new file mode 100644 index 0000000..cc54566 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/slider/slider_events.js @@ -0,0 +1,376 @@ +/* + * mobile slider unit tests + */ + +(function($){ + var onChangeCnt = 0; + window.onChangeCounter = function() { + onChangeCnt++; + }; + + module('jquery.mobile.slider.js', { + setup: function() { + // force the value to be an increment of 10 when we aren't testing the rounding + $("#stepped").val( 20 ); + } + }); + + var keypressTest = function(opts){ + var slider = $(opts.selector), + val = window.parseFloat(slider.val()), + handle = slider.siblings('.ui-slider').find('.ui-slider-handle'); + + expect( opts.keyCodes.length ); + + $.each(opts.keyCodes, function(i, elem){ + + // stub the keycode value and trigger the keypress + $.Event.prototype.keyCode = $.mobile.keyCode[elem]; + handle.trigger('keydown'); + + val += opts.increment; + same(val, window.parseFloat(slider.val(), 10), "new value is " + opts.increment + " different"); + }); + }; + + test( "slider should move right with up, right, and page up keypress", function(){ + keypressTest({ + selector: '#range-slider-up', + keyCodes: ['UP', 'RIGHT', 'PAGE_UP'], + increment: 1 + }); + }); + + test( "slider should move left with down, left, and page down keypress", function(){ + keypressTest({ + selector: '#range-slider-down', + keyCodes: ['DOWN', 'LEFT', 'PAGE_DOWN'], + increment: -1 + }); + }); + + test( "slider should move to range minimum on end keypress", function(){ + var selector = "#range-slider-end", + initialVal = window.parseFloat($(selector).val(), 10), + max = window.parseFloat($(selector).attr('max'), 10); + + keypressTest({ + selector: selector, + keyCodes: ['END'], + increment: max - initialVal + }); + }); + + test( "slider should move to range minimum on end keypress", function(){ + var selector = "#range-slider-home", + initialVal = window.parseFloat($(selector).val(), 10); + + keypressTest({ + selector: selector, + keyCodes: ['HOME'], + increment: 0 - initialVal + }); + }); + + test( "slider should move positive by steps on keypress", function(){ + keypressTest({ + selector: "#stepped", + keyCodes: ['RIGHT'], + increment: 10 + }); + }); + + test( "slider should move negative by steps on keypress", function(){ + keypressTest({ + selector: "#stepped", + keyCodes: ['LEFT'], + increment: -10 + }); + }); + + test( "slider should validate input value on blur", function(){ + var slider = $("#range-slider-up"); + slider.focus(); + slider.val(200); + same(slider.val(), "200"); + slider.blur(); + same(slider.val(), slider.attr('max')); + }); + + test( "slider should not validate input on keyup", function(){ + var slider = $("#range-slider-up"); + slider.focus(); + slider.val(200); + same(slider.val(), "200"); + slider.keyup(); + same(slider.val(), "200"); + }); + + test( "input type should degrade to number when slider is created", function(){ + same($("#range-slider-up").attr( "type" ), "number"); + }); + + // generic switch test function + var sliderSwitchTest = function(opts){ + var slider = $("#slider-switch"), + handle = slider.siblings('.ui-slider').find('a'), + switchValues = { + 'off' : 0, + 'on' : 1 + }; + + // One for the select and one for the aria-valuenow + expect( opts.keyCodes.length * 2 ); + + $.each(opts.keyCodes, function(i, elem){ + // reset the values + slider[0].selectedIndex = switchValues[opts.start]; + handle.attr({'aria-valuenow' : opts.start }); + + // stub the keycode and trigger the event + $.Event.prototype.keyCode = $.mobile.keyCode[elem]; + handle.trigger('keydown'); + + same(handle.attr('aria-valuenow'), opts.finish, "handle value is " + opts.finish); + same(slider[0].selectedIndex, switchValues[opts.finish], "select input has correct index"); + }); + }; + + test( "switch should select on with up, right, page up and end", function(){ + sliderSwitchTest({ + start: 'off', + finish: 'on', + keyCodes: ['UP', 'RIGHT', 'PAGE_UP', 'END'] + }); + }); + + test( "switch should select off with down, left, page down and home", function(){ + sliderSwitchTest({ + start: 'on', + finish: 'off', + keyCodes: ['DOWN', 'LEFT', 'PAGE_DOWN', 'HOME'] + }); + }); + + test( "onchange should not be called on create", function(){ + equals(onChangeCnt, 0, "onChange should not have been called"); + }); + + test( "onchange should be called onchange", function(){ + onChangeCnt = 0; + $( "#onchange" ).slider( "refresh", 50 ); + equals(onChangeCnt, 1, "onChange should have been called once"); + }); + + test( "slider controls will create when inside a container that receives a 'create' event", function(){ + ok( !$("#enhancetest").appendTo(".ui-page-active").find(".ui-slider").length, "did not have enhancements applied" ); + ok( $("#enhancetest").trigger("create").find(".ui-slider").length, "enhancements applied" ); + }); + + var createEvent = function( name, target, x, y ) { + var event = $.Event( name ); + event.target = target; + event.pageX = x; + event.pageY = y; + return event; + }; + + test( "toggle switch should fire one change event when clicked", function(){ + var control = $( "#slider-switch" ), + widget = control.data( "slider" ), + slider = widget.slider, + handle = widget.handle, + changeCount = 0, + changeFunc = function( e ) { + ok( control[0].selectedIndex !== currentValue, "change event should only be triggered if the value changes"); + ++changeCount; + }, + event = null, + offset = handle.offset(), + currentValue = control[0].selectedIndex; + + control.bind( "change", changeFunc ); + + // The toggle switch actually updates on mousedown and mouseup events, so we go through + // the motions of generating all the events that happen during a click to make sure that + // during all of those events, the value only changes once. + + slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); + slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); + slider.trigger( createEvent( "click", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); + + control.unbind( "change", changeFunc ); + + ok( control[0].selectedIndex !== currentValue, "value did change"); + same( changeCount, 1, "change event should be fired once during a click" ); + }); + + var assertLeftCSS = function( obj, opts ) { + var integerLeft, compare, css, threshold; + + css = obj.css('left'); + threshold = opts.pxThreshold || 0; + + if( css.indexOf( "px" ) > -1 ) { + // parse the actual pixel value returned by the left css value + // and the pixels passed in for comparison + integerLeft = Math.round( parseFloat( css.replace("px", "") ) ), + compare = parseInt( opts.pixels.replace( "px", "" ), 10 ); + + // check that the pixel value provided is within a given threshold; default is 0px + ok( compare >= integerLeft - threshold && compare <= integerLeft + threshold, opts.message ); + } else { + equal( css, opts.percent, opts.message ); + } + }; + + asyncTest( "toggle switch handle should snap in the old position if dragged less than half of the slider width, in the new position if dragged more than half of the slider width", function() { + var control = $( "#slider-switch" ), + widget = control.data( "slider" ), + slider = widget.slider, + handle = widget.handle, + width = handle.width(), + offset = null; + + $.testHelper.sequence([ + function() { + // initialize the switch + control.val('on').slider('refresh'); + }, + + function() { + assertLeftCSS(handle, { + percent: '100%', + pixels: handle.parent().css('width'), + message: 'handle starts on the right side' + }); + + // simulate dragging less than a half + offset = handle.offset(); + slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + width - 10, offset.top + 10 ) ); + slider.trigger( createEvent( "mousemove", handle[ 0 ], offset.left + width - 20, offset.top + 10 ) ); + slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left + width - 20, offset.top + 10 ) ); + }, + + function() { + assertLeftCSS(handle, { + percent: '100%', + pixels: handle.parent().css('width'), + message: 'handle ends on the right side' + }); + + // initialize the switch + control.val('on').slider('refresh'); + }, + + function() { + assertLeftCSS(handle, { + percent: '100%', + pixels: handle.parent().css('width'), + message: 'handle starts on the right side' + }); + + // simulate dragging more than a half + offset = handle.offset(); + slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); + slider.trigger( createEvent( "mousemove", handle[ 0 ], offset.left - ( width / 2 + 10 ), offset.top + 10 ) ); + slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left - ( width / 2 + 10 ), offset.top + 10 ) ); + }, + + function() { + assertLeftCSS(handle, { + percent: '0%', + pixels: '0px', + message: 'handle ends on the left side' + }); + + start(); + } + ], 500); + }); + + asyncTest( "toggle switch handle should not move if user is dragging and value is changed", function() { + var control = $( "#slider-switch" ), + widget = control.data( "slider" ), + slider = widget.slider, + handle = widget.handle, + width = handle.width(), + offset = null; + + $.testHelper.sequence([ + function() { + // initialize the switch + control.val('on').slider('refresh'); + }, + + function() { + assertLeftCSS(handle, { + percent: '100%', + pixels: handle.parent().css('width'), + message: 'handle starts on the right side' + }); + + // simulate dragging more than a half + offset = handle.offset(); + slider.trigger( createEvent( "mousedown", handle[ 0 ], offset.left + 10, offset.top + 10 ) ); + slider.trigger( createEvent( "mousemove", handle[ 0 ], offset.left - ( width / 2 ), offset.top + 10 ) ); + }, + + function() { + var min, max; + if( handle.css('left').indexOf("%") > -1 ){ + min = "0%"; + max = "100%"; + } else { + min = "0px"; + max = handle.parent().css( 'width' ); + } + + notEqual(handle.css('left'), min, 'handle is not on the left side'); + notEqual(handle.css('left'), max, 'handle is not on the right side'); + + // reset slider state so it is ready for other tests + slider.trigger( createEvent( "mouseup", handle[ 0 ], offset.left - ( width / 2 ), offset.top + 10 ) ); + + start(); + } + ], 500); + }); + + asyncTest( "toggle switch should refresh when disabled", function() { + var control = $( "#slider-switch" ), + handle = control.data( "slider" ).handle; + + $.testHelper.sequence([ + function() { + // set the initial value + control.val('off').slider('refresh'); + }, + + function() { + assertLeftCSS(handle, { + percent: '0%', + pixels: '0px', + message: 'handle starts on the left side' + }); + + // disable and change value + control.slider('disable'); + control.val('on').slider('refresh'); + }, + + function() { + assertLeftCSS(handle, { + percent: '100%', + pixels: handle.parent().css( 'width' ), + message: 'handle ends on the right side' + }); + + // reset slider state so it is ready for other tests + control.slider('enable'); + + start(); + } + ], 500); + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/support/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/support/index.html new file mode 100644 index 0000000..dac7fb2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/support/index.html @@ -0,0 +1,41 @@ + + + + + + jQuery Mobile Support Test Suite + + + + + + + + + + + + + + + + +

                      jQuery Mobile Support Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/support/support_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/support/support_core.js new file mode 100644 index 0000000..e30f5f6 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/support/support_core.js @@ -0,0 +1,102 @@ +/* + * mobile support unit tests + */ + +$.testHelper.excludeFileProtocol(function(){ + var prependToFn = $.fn.prependTo, + moduleName = "jquery.mobile.support"; + + module(moduleName, { + teardown: function(){ + //NOTE undo any mocking + $.fn.prependTo = prependToFn; + } + }); + + // NOTE following two tests have debatable value as they only + // prevent property name changes and improper attribute checks + asyncTest( "detects functionality from basic affirmative properties and attributes", function(){ + // TODO expose properties for less brittle tests + $.extend(window, { + WebKitTransitionEvent: true, + orientation: true, + onorientationchange: true + }); + + document.ontouchend = true; + + window.history.pushState = function(){}; + window.history.replaceState = function(){}; + + $.mobile.media = function(){ return true; }; + + $.testHelper.reloadModule( moduleName ).done( function() { + ok($.support.orientation); + ok($.support.touch); + ok($.support.cssTransitions); + ok($.support.pushState); + ok($.support.mediaquery); + start(); + }); + }); + + asyncTest( "detects functionality from basic negative properties and attributes (where possible)", function(){ + delete window["orientation"]; + delete document["ontouchend"]; + + $.testHelper.reloadModule( moduleName ).done( function() { + ok(!$.support.orientation); + ok(!$.support.touch); + start(); + }); + }); + + // NOTE mocks prependTo to simulate base href updates or lack thereof + var mockBaseCheck = function( url ){ + var prependToFn = $.fn.prependTo; + + $.fn.prependTo = function( selector ){ + var result = prependToFn.call(this, selector); + if(this[0].href && this[0].href.indexOf("testurl") != -1) + result = [{href: url}]; + return result; + }; + }; + + asyncTest( "detects dynamic base tag when new base element added and base href updates", function(){ + mockBaseCheck(location.protocol + '//' + location.host + location.pathname + "ui-dir/"); + $.testHelper.reloadModule( moduleName ).done( function() { + ok($.support.dynamicBaseTag); + start(); + }); + }); + + asyncTest( "detects no dynamic base tag when new base element added and base href unchanged", function(){ + mockBaseCheck('testurl'); + $.testHelper.reloadModule( moduleName ).done( function() { + ok(!$.support.dynamicBaseTag); + start(); + }); + }); + + asyncTest( "jQM's IE browser check properly detects IE versions", function(){ + $.testHelper.reloadModule( moduleName ).done( function() { + //here we're just comparing our version to what the conditional compilation finds + var ie = !!$.browser.msie, //get a boolean + version = parseInt( $.browser.version, 10), + jqmdetectedver = $.mobile.browser.ie; + + if( ie ){ + same(version, jqmdetectedver, "It's IE and the version is correct"); + } + else{ + same(ie, jqmdetectedver, "It's not IE"); + } + start(); + }); + }); + + + //TODO propExists testing, refactor propExists into mockable method + //TODO scrollTop testing, refactor scrollTop logic into mockable method +}); diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/swarminject.js b/libs/js/jquery-mobile-1.1.0/tests/unit/swarminject.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/swarminject.js rename to libs/js/jquery-mobile-1.1.0/tests/unit/swarminject.js diff --git a/libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/external.html b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/external.html similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tests/unit/textinput/external.html rename to libs/js/jquery-mobile-1.1.0/tests/unit/textinput/external.html diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/index.html new file mode 100644 index 0000000..7b21eb1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/index.html @@ -0,0 +1,60 @@ + + + + + + jQuery Mobile Textinput Test Suite + + + + + + + + + + + + + + +

                      jQuery Mobile Textinput Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + + + + + + + + + external + + +
                      + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/settings.js b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/settings.js new file mode 100644 index 0000000..0e68422 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/settings.js @@ -0,0 +1,3 @@ +$( document ).bind("mobileinit", function(){ + $.mobile.textinput.prototype.options.clearSearchButtonText = "custom value"; +}); diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/textinput_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/textinput_core.js new file mode 100644 index 0000000..78c1e3e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/textinput/textinput_core.js @@ -0,0 +1,66 @@ +/* + * mobile textinput unit tests + */ +(function($){ + module( "jquery.mobile.forms.textinput.js" ); + + test( "inputs without type specified are enhanced", function(){ + ok( $( "#typeless-input" ).hasClass( "ui-input-text" ) ); + }); + + $.mobile.page.prototype.options.keepNative = "textarea.should-be-native"; + + // not testing the positive case here since's it's obviously tested elsewhere + test( "textarea in the keepNative set shouldn't be enhanced", function() { + ok( !$("textarea.should-be-native").is("ui-input-text") ); + }); + + asyncTest( "textarea should autogrow on document ready", function() { + var test = $( "#init-autogrow" ); + + setTimeout(function() { + ok( $( "#reference-autogrow" )[0].clientHeight < test[0].clientHeight, "the height is greater than the reference text area with no content" ); + ok( test[0].clientHeight > 100, "autogrow text area's height is greater than any style padding"); + start(); + }, 400); + }); + + asyncTest( "textarea should autogrow when text is added via the keyboard", function() { + var test = $( "#keyup-autogrow" ), + originalHeight = test[0].clientHeight; + + test.keyup(function() { + setTimeout(function() { + ok( test[0].clientHeight > originalHeight, "the height is greater than original with no content" ); + ok( test[0].clientHeight > 100, "autogrow text area's height is greater any style/padding"); + start(); + }, 400); + }); + + test.val("foo\n\n\n\n\n\n\n\n\n\n\n\n\n\n").trigger("keyup"); + }); + + asyncTest( "text area should auto grow when the parent page is loaded via ajax", function() { + $.testHelper.pageSequence([ + function() { + $("#external").click(); + }, + + function() { + setTimeout(function() { + ok($.mobile.activePage.find( "textarea" )[0].clientHeight > 100, "text area's height has grown"); + window.history.back(); + }, 1000); + }, + + function() { + start(); + } + ]); + }); + + // NOTE init binding to alter the setting is in settings.js + test( "'clear text' button for search inputs should use configured text", function(){ + strictEqual( $( "#search-input" ).closest( ".ui-input-search" ).find( ".ui-input-clear" ).attr( "title" ), "custom value" ); + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/widget/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/widget/index.html new file mode 100644 index 0000000..f42080e --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/widget/index.html @@ -0,0 +1,80 @@ + + + + + + jQuery Mobile Widget Test Suite + + + + + + + + + + + + + + + +

                      jQuery Mobile Widget Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + +
                      +
                      +
                      ...
                      +
                      +
                      + +
                      + +
                      + +
                      +
                      +
                      +
                      +
                      + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/widget/widget_core.js b/libs/js/jquery-mobile-1.1.0/tests/unit/widget/widget_core.js new file mode 100644 index 0000000..520bccd --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/widget/widget_core.js @@ -0,0 +1,52 @@ +/* + * mobile widget unit tests + */ +(function($){ + module('jquery.mobile.widget.js'); + + test( "getting data from creation options", function(){ + var expected = "bizzle"; + + $.mobile.widget.prototype.options = { "fooBar" : true }; + $.mobile.widget.prototype.element = $("
                      "); + same($.mobile.widget.prototype._getCreateOptions()["fooBar"], + expected); + }); + + test( "getting no data when the options are empty", function(){ + var expected = {}; + + $.mobile.widget.prototype.options = {}; + $.mobile.widget.prototype.element = $("
                      "); + same($.mobile.widget.prototype._getCreateOptions(), + expected); + }); + + test( "getting no data when the element has none", function(){ + var expected = {}; + + $.mobile.widget.prototype.options = { "fooBar" : true }; + $.mobile.widget.prototype.element = $("
                      "); + same($.mobile.widget.prototype._getCreateOptions(), + expected); + }); + + test( "elements embedded in sub page elements are excluded on create when they match the keep native selector", function() { + // uses default keep native of data-role=none + $("#enhance-prevented") + .append('') + .trigger("create"); + + ok( !$("#unenhanced").hasClass( "ui-input-text" ), "doesn't have the ui input text class (unenhanced)"); + }); + + test( "elements embedded in sub page elements are included on create when they don't match the keep native selector", function() { + + // uses default keep native of data-role=none + $("#enhance-allowed") + .append('') + .trigger("create"); + + ok( $("#enhanced").hasClass( "ui-input-text" ), "has the ui input text class (unenhanced)"); + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/widget/widget_init.js b/libs/js/jquery-mobile-1.1.0/tests/unit/widget/widget_init.js new file mode 100644 index 0000000..6f14626 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/widget/widget_init.js @@ -0,0 +1,45 @@ +/* + * mobile widget unit tests + */ +(function($){ + var widgetInitialized = false; + + module( 'jquery.mobile.widget.js' ); + + $( "#foo" ).live( 'pageinit', function(){ + // ordering sensitive here, the value has to be set after the call + // so that if the widget factory says that its not yet initialized, + // which is an exception, the value won't be set + $( "#foo-slider" ).slider( 'refresh' ); + widgetInitialized = true; + }); + + test( "page is enhanced before init is fired", function() { + ok( widgetInitialized ); + }); + + test( "elements within an ignore container are not enhanced when ignoreContentEnabled is true ", function() { + $.mobile.ignoreContentEnabled = true; + + $.mobile.collapsible.prototype.enhanceWithin( $("#ignored") ); + + ok( !$( "#ignored-collapsible" ).hasClass( "ui-collapsible" ), "ignored element doesn't have ui-collapsible" ); + + $.mobile.collapsible.prototype.enhanceWithin( $("#not-ignored") ); + + ok( $( "#collapsible" ).hasClass( "ui-collapsible" ), "identical unignored elements are enahanced" ); + + $.mobile.ignoreContentEnabled = false; + }); + + test( "siblings without ignore parent are enhanced", function() { + $.mobile.ignoreContentEnabled = true; + + $.mobile.collapsible.prototype.enhanceWithin( $("#many-ignored") ); + + ok( !$( "#many-ignored-collapsible" ).hasClass( "ui-collapsible" ), "sibling ignored element doesn't have ui-collapsible" ); + ok( $( "#many-enhanced-collapsible" ).hasClass( "ui-collapsible" ), "sibling unignored elements are enahanced" ); + + $.mobile.ignoreContentEnabled = false; + }); +})( jQuery ); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/index.html b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/index.html new file mode 100644 index 0000000..84eb44a --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/index.html @@ -0,0 +1,46 @@ + + + + + jQuery Mobile Zoom Maniplation Integration Test + + + + + + + + + + + + + + + + +

                      jQuery Mobile FieldContainer Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + + +
                      + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/initial-disable.html b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/initial-disable.html new file mode 100644 index 0000000..0b9eaab --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/initial-disable.html @@ -0,0 +1,46 @@ + + + + + jQuery Mobile Zoom Maniplation Integration Test + + + + + + + + + + + + + + + + +

                      jQuery Mobile FieldContainer Test Suite

                      +

                      +

                      +
                        +
                      + +
                      + + +
                      + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/zoom-initial-disable.js b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/zoom-initial-disable.js new file mode 100644 index 0000000..5dcb239 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/zoom-initial-disable.js @@ -0,0 +1,9 @@ +/* + * mobile zoom + */ +(function($){ + test( "User zooming will not enable when calling enable() method if zooming was disabled in page source", function(){ + $.mobile.zoom.enable(); + ok( !$.mobile.zoom.enabled ); + }); +})(jQuery); \ No newline at end of file diff --git a/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/zoom.js b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/zoom.js new file mode 100644 index 0000000..0f7a8f7 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tests/unit/zoom/zoom.js @@ -0,0 +1,99 @@ +/* + * mobile Fixed Toolbar unit tests + */ +(function($){ + module('jquery.mobile.fixedToolbar.js'); + + var defaultMeta = $( "meta[name=viewport]" ).attr("content"); + + + test( "User zooming is enabled by default", function(){ + ok( $.mobile.zoom.enabled === true, "property is true" ); + }); + + test( "The zoom lock is disabled by default", function(){ + ok( $.mobile.zoom.locked === false, "property is false" ); + }); + + + test( "Meta viewport content is manipulated with maximum-scale", function(){ + $.mobile.zoom.disable(); + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=1, user-scalable=no/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes after enable is called" ); + + $.mobile.zoom.enable(); + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=10, user-scalable=yes/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes0, user-scalable=no after enable is called" ); + + }); + + test( "Meta viewport content restore method restores it back to original value", function(){ + $.mobile.zoom.disable(); + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=1, user-scalable=no/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes after enable is called" ); + + $.mobile.zoom.restore(); + ok( $( "meta[name=viewport]" ).attr( "content" ) === defaultMeta, "The meta viewport tag's content matches its default state" ); + + }); + + + + test( "When locked, the enable method does nothing", function(){ + //enabled it first + $.mobile.zoom.locked = false; + $.mobile.zoom.disable(); + $.mobile.zoom.locked = true; + $.mobile.zoom.enable(); + + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=1, user-scalable=no/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes after enable is called" ); + $.mobile.zoom.locked = false; + $.mobile.zoom.enable(); + + }); + + test( "When locked, the disable method does nothing", function(){ + //enabled it first + $.mobile.zoom.locked = false; + $.mobile.zoom.enable(); + $.mobile.zoom.locked = true; + $.mobile.zoom.disable(); + + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=10, user-scalable=yes/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes0, user-scalable=no after disable is called" ); + + $.mobile.zoom.locked = false; + $.mobile.zoom.enable(); + + }); + + test( "When locked, the enable method with a true 'unlock' argument works", function(){ + //enabled it first + $.mobile.zoom.locked = false; + $.mobile.zoom.disable(); + $.mobile.zoom.locked = true; + $.mobile.zoom.enable( true ); + + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=10, user-scalable=yes/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes0, user-scalable=no after enable is called" ); + ok( $.mobile.zoom.locked === false, "The locked property is false again" ); + + $.mobile.zoom.locked = false; + $.mobile.zoom.enable(); + + }); + + + test( "When locked, the disable method with a true 'lock' argument works", function(){ + //enabled it first + $.mobile.zoom.locked = false; + $.mobile.zoom.enable(); + + $.mobile.zoom.disable( true ); + + ok( $( "meta[name=viewport]" ).attr( "content" ).match( /,maximum-scale=1, user-scalable=no/ ), "The meta viewport tag's content contains maximum-scale=1, user-scalable=yes after disable is called" ); + ok( $.mobile.zoom.locked === true, "The locked property is true" ); + + $.mobile.zoom.locked = false; + $.mobile.zoom.enable(); + + }); + + + +})(jQuery); diff --git a/libs/js/jquery-mobile-1.1.0/tools/config-props.html b/libs/js/jquery-mobile-1.1.0/tools/config-props.html new file mode 100644 index 0000000..7d74114 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tools/config-props.html @@ -0,0 +1,73 @@ + + + + + +Configuration Properties + + + + + + + + +
                      +

                      Configuration Properties

                      +
                      +

                      Below is a dump of the non-function/object properties of the $.mobile and $.support objects. These properties typically control how the jQuery Mobile framework behaves on the various devices/platforms. You can use this page to quickly assess the default support configuration calculated by both jQuery Core and jQuery Mobile.

                      +
                      +
                      + + diff --git a/libs/js/jquery-mobile-1.1.0/tools/index.html b/libs/js/jquery-mobile-1.1.0/tools/index.html new file mode 100644 index 0000000..e9ba683 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tools/index.html @@ -0,0 +1,33 @@ + + + + +jQuery Mobile Tools + + + + + + + + + diff --git a/libs/js/jquery-mobile-1.1.0/tools/log-page-events.html b/libs/js/jquery-mobile-1.1.0/tools/log-page-events.html new file mode 100644 index 0000000..8176d58 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tools/log-page-events.html @@ -0,0 +1,24 @@ + + + + + +Page Event Logger Bookmarklet + + + +

                      Page Event Logger Bookmarklet

                      +

                      A simple bookmarklet for logging jQuery Mobile page events. To use, bookmark the following link:

                      + +

                      For platforms that don't allow bookmarking of javascript: urls, you can copy/paste the following source for the bookmarklet directly into the browser's location bar then hit enter or hit the "go" button on your keypad:

                      +

                      + +

                      +

                      NOTE: Some browsers like Chrome will strip off the javascript: prefix from the string above when you paste it into the location bar. Make sure what you pasted is prefixed by javascript: before attempting to load the bookmarklet.

                      + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tools/log-page-events.js b/libs/js/jquery-mobile-1.1.0/tools/log-page-events.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tools/log-page-events.js rename to libs/js/jquery-mobile-1.1.0/tools/log-page-events.js diff --git a/libs/js/jquery-mobile-1.1.0/tools/page-change-time.html b/libs/js/jquery-mobile-1.1.0/tools/page-change-time.html new file mode 100644 index 0000000..1cd7cf3 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/tools/page-change-time.html @@ -0,0 +1,24 @@ + + + + + +Page Change Timing Bookmarklet + + + +

                      Page Change Timing Bookmarklet

                      +

                      A simple bookmarklet for timing the load, enhanement, and transition of a jQuery Mobile changePage() request. To use, bookmark the following link:

                      + +

                      For platforms that don't allow bookmarking of javascript: urls, you can copy/paste the following source for the bookmarklet directly into the browser's location bar then hit enter or hit the "go" button on your keypad:

                      +

                      + +

                      +

                      NOTE: Some browsers like Chrome will strip off the javascript: prefix from the string above when you paste it into the location bar. Make sure what you pasted is prefixed by javascript: before attempting to load the bookmarklet.

                      + + + diff --git a/libs/js/jquery-mobile-1.0.1pre/tools/page-change-time.js b/libs/js/jquery-mobile-1.1.0/tools/page-change-time.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/tools/page-change-time.js rename to libs/js/jquery-mobile-1.1.0/tools/page-change-time.js diff --git a/libs/js/jquery-mobile-1.1.0/version.txt b/libs/js/jquery-mobile-1.1.0/version.txt new file mode 100644 index 0000000..9084fa2 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/version.txt @@ -0,0 +1 @@ +1.1.0 diff --git a/libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/jquery.easing.1.3.js b/libs/js/jquery.easing.1.3.js similarity index 100% rename from libs/js/jquery-mobile-1.0.1pre/experiments/scrollview/jquery.easing.1.3.js rename to libs/js/jquery.easing.1.3.js diff --git a/src/widgets/common/js/jquery.tmpl.js b/libs/js/jquery.tmpl.js similarity index 100% rename from src/widgets/common/js/jquery.tmpl.js rename to libs/js/jquery.tmpl.js diff --git a/libs/patch/.gitignore b/libs/patch/.gitignore new file mode 100644 index 0000000..a6c7c28 --- /dev/null +++ b/libs/patch/.gitignore @@ -0,0 +1 @@ +*.js diff --git a/libs/patch/0001-JQM-Fix-jqm-build-to-exclude-compressed-version-buil.patch b/libs/patch/0001-JQM-Fix-jqm-build-to-exclude-compressed-version-buil.patch deleted file mode 100644 index 3e0149e..0000000 --- a/libs/patch/0001-JQM-Fix-jqm-build-to-exclude-compressed-version-buil.patch +++ /dev/null @@ -1,62 +0,0 @@ -From 18a19ed0ee31851c720fc6b83b50adea3d91a653 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Tue, 28 Feb 2012 10:48:14 +0900 -Subject: [PATCH] JQM: Fix jqm build to exclude compressed version build - -Signed-off-by: Youmin Ha ---- - libs/js/jquery-mobile-1.0.1pre/Makefile | 16 +++++++++------- - 1 files changed, 9 insertions(+), 7 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/Makefile b/libs/js/jquery-mobile-1.0.1pre/Makefile -index 23541cd..08bf27b 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/Makefile -+++ b/libs/js/jquery-mobile-1.0.1pre/Makefile -@@ -82,6 +82,7 @@ THEME = default - # When no build target is specified, all gets ran - all: init css js zip notify - -+all-but-min: init js css notify - - # Build and minify the CSS files - css: init -@@ -89,14 +90,14 @@ css: init - @@cat js/jquery.mobile.intro.js | ${VER} > ${OUTPUT}/${NAME}.css - @@cat ${CSSTHEMEFILES} ${CSSFILES} >> ${OUTPUT}/${NAME}.css - # ..... and then minify it -- @@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.css -- @@java -jar build/yuicompressor-2.4.6.jar --type css ${OUTPUT}/${NAME}.css >> ${OUTPUT}/${NAME}.min.css -+ #@@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.css -+ #@@java -jar build/yuicompressor-2.4.6.jar --type css ${OUTPUT}/${NAME}.css >> ${OUTPUT}/${NAME}.min.css - # Build the CSS Structure-only file - @@cat js/jquery.mobile.intro.js | ${VER} > ${OUTPUT}/${STRUCTURE}.css - @@cat ${CSSFILES} >> ${OUTPUT}/${STRUCTURE}.css - # ..... and then minify it -- @@echo ${VER_MIN} > ${OUTPUT}/${STRUCTURE}.min.css -- @@java -jar build/yuicompressor-2.4.6.jar --type css ${OUTPUT}/${STRUCTURE}.css >> ${OUTPUT}/${STRUCTURE}.min.css -+ #@@echo ${VER_MIN} > ${OUTPUT}/${STRUCTURE}.min.css -+ #@@java -jar build/yuicompressor-2.4.6.jar --type css ${OUTPUT}/${STRUCTURE}.css >> ${OUTPUT}/${STRUCTURE}.min.css - # ..... and then copy in the images - @@cp -R css/themes/${THEME}/images ${OUTPUT}/ - # Css portion is complete. -@@ -137,8 +138,8 @@ js: init - @@cat js/jquery.mobile.intro.js | ${VER} > ${OUTPUT}/${NAME}.js - @@cat ${JSFILES} >> ${OUTPUT}/${NAME}.js - # ..... and then minify it -- @@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.js -- @@java -jar build/google-compiler-20111003.jar --js ${OUTPUT}/${NAME}.js --warning_level QUIET >> ${OUTPUT}/${NAME}.min.js -+ #@@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.js -+ #@@java -jar build/google-compiler-20111003.jar --js ${OUTPUT}/${NAME}.js --warning_level QUIET >> ${OUTPUT}/${NAME}.min.js - # ------------------------------------------------- - - -@@ -208,4 +209,5 @@ deploy: init js css docs zip - @@rm -rf ${OUTPUT} - # ------------------------------------------------- - -- -+clean: -+ @@rm -rf ${CURDIR}/compiled --- -1.7.5.4 - diff --git a/libs/patch/0001-JQM-fix-vclick-trigger-twice-after-pageChange.patch b/libs/patch/0001-JQM-fix-vclick-trigger-twice-after-pageChange.patch new file mode 100644 index 0000000..996499e --- /dev/null +++ b/libs/patch/0001-JQM-fix-vclick-trigger-twice-after-pageChange.patch @@ -0,0 +1,28 @@ +From f95cf2987e50119260db1763a1b52b4bc34d57b2 Mon Sep 17 00:00:00 2001 +From: "wongi11.lee" +Date: Thu, 21 Jun 2012 17:35:28 +0900 +Subject: [PATCH] JQM:fix vclick trigger twice after pageChange. + +Signed-off-by: Wongi Lee +--- + .../jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js +index 6e9b504..b608460 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.vmouse.js +@@ -195,6 +195,10 @@ function triggerVirtualEvent( eventType, event, flags ) { + function mouseEventCallback( event ) { + var touchID = $.data(event.target, touchTargetPropertyName); + ++ if ( ( $.support.touch === true ) && ( touchID === undefined ) ) { ++ return; ++ } ++ + if ( !blockMouseTriggers && ( !lastTouchID || lastTouchID !== touchID ) ){ + var ve = triggerVirtualEvent( "v" + event.type, event ); + if ( ve ) { +-- +1.7.9.5 + diff --git a/libs/patch/0002-JQM-Fix-bug-on-live-firing-of-custom-events.patch b/libs/patch/0002-JQM-Fix-bug-on-live-firing-of-custom-events.patch deleted file mode 100644 index 093e6ff..0000000 --- a/libs/patch/0002-JQM-Fix-bug-on-live-firing-of-custom-events.patch +++ /dev/null @@ -1,30 +0,0 @@ -From aee148944929c79484c59d2e70b63ffdd09e1dd0 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Tue, 28 Feb 2012 10:59:29 +0900 -Subject: [PATCH] JQM: Fix bug on live firing of custom events - -Signed-off-by: Youmin Ha ---- - .../js/jquery.mobile.event.js | 6 ++++++ - 1 files changed, 6 insertions(+), 0 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.event.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.event.js -index 7b79b79..408d2ba 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.event.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.event.js -@@ -24,6 +24,12 @@ var supportTouch = $.support.touch, - function triggerCustomEvent( obj, eventType, event ) { - var originalType = event.type; - event.type = eventType; -+ -+ // event.liveFired is already set by basic events e.g. vclick, -+ // which is fired already. -+ // To fire this custom event, event.liveFired must be cleared. -+ event.liveFired = undefined; -+ - $.event.handle.call( obj, event ); - event.type = originalType; - } --- -1.7.5.4 - diff --git a/libs/patch/0002-JQM-nolabel-n-favorite-class-for-check-support.patch b/libs/patch/0002-JQM-nolabel-n-favorite-class-for-check-support.patch new file mode 100644 index 0000000..e09c283 --- /dev/null +++ b/libs/patch/0002-JQM-nolabel-n-favorite-class-for-check-support.patch @@ -0,0 +1,41 @@ +From 2807a575905be49a8445aea0b1759a88339f4e16 Mon Sep 17 00:00:00 2001 +From: Koeun Choi +Date: Fri, 15 Jun 2012 17:11:51 +0900 +Subject: [PATCH] JQM:nolabel n favorite class for check support + +Signed-off-by: Koeun Choi +--- + .../js/jquery.mobile.forms.checkboxradio.js | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js +index eb4731b..b373431 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.checkboxradio.js +@@ -43,6 +43,12 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { + return; + } + ++ // Support fake label ++ if ( label.length == 0 ) { ++ label = $( "" ); ++ } ++ + // Expose for other methods + $.extend( this, { + label: label, +@@ -70,6 +76,10 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { + var wrapper = document.createElement('div'); + wrapper.className = 'ui-' + inputtype; + ++ if ( input.hasClass( "favorite" ) ) { ++ wrapper.className += ' favorite'; ++ } ++ + input.add( label ).wrapAll( wrapper ); + + label.bind({ +-- +1.7.9.5 + diff --git a/libs/patch/0003-JQM-Don-t-draw-right-arrow-on-clickable-listitems-Fo.patch b/libs/patch/0003-JQM-Don-t-draw-right-arrow-on-clickable-listitems-Fo.patch deleted file mode 100644 index 0d0b8b3..0000000 --- a/libs/patch/0003-JQM-Don-t-draw-right-arrow-on-clickable-listitems-Fo.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 6a249538e0f36ddcaa70dd8db43f5d4f189a82c7 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Tue, 28 Feb 2012 11:09:31 +0900 -Subject: [PATCH] JQM: Don't draw right arrow on clickable listitems (For - Tizen theme) - -Signed-off-by: Lee Wongi -Signed-off-by: Minkyu Kang ---- - .../js/jquery.mobile.listview.js | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.listview.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.listview.js -index 58a2078..a290f9f 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.listview.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.listview.js -@@ -178,6 +178,7 @@ $.widget( "mobile.listview", $.mobile.widget, { - if ( a.length ) { - icon = item.jqmData("icon"); - -+ icon = false; - item.buttonMarkup({ - wrapperEls: "div", - shadow: false, --- -1.7.5.4 - diff --git a/libs/patch/0003-JQM-trigger-the-pageshow-event-after-transitionPages.patch b/libs/patch/0003-JQM-trigger-the-pageshow-event-after-transitionPages.patch new file mode 100644 index 0000000..efee893 --- /dev/null +++ b/libs/patch/0003-JQM-trigger-the-pageshow-event-after-transitionPages.patch @@ -0,0 +1,27 @@ +From c9edd80183fa459dff180d7f51e9cd03143473b4 Mon Sep 17 00:00:00 2001 +From: Minkyu Kang +Date: Mon, 11 Jun 2012 15:19:06 +0900 +Subject: [PATCH] JQM:trigger the pageshow event after transitionPages + function at none transition + +Signed-off-by: Minkyu Kang +--- + .../js/jquery.mobile.transition.js | 2 +- + 1 file changed, 1 insertions(+), 1 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js +index 9a099dc..4476bfd 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js +@@ -89,7 +89,7 @@ var createHandler = function( sequential ){ + $to.addClass( name + " in" + reverseClass ); + + if( none ){ +- doneIn(); ++ setTimeout( doneIn, 0 ); + } + + }, +-- +1.7.9.5 + diff --git a/libs/patch/0004-JQM-button-event-bug-fixed.patch b/libs/patch/0004-JQM-button-event-bug-fixed.patch deleted file mode 100644 index 861a5c2..0000000 --- a/libs/patch/0004-JQM-button-event-bug-fixed.patch +++ /dev/null @@ -1,115 +0,0 @@ -From 6734ec723c053c9c81949c146a5f3ea5a0fbfdc5 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Tue, 28 Feb 2012 14:19:23 +0900 -Subject: [PATCH] JQM: button event bug fixed - -Signed-off-by: Koeun Choi -Signed-off-by: Minkyu Kang ---- - .../js/jquery.mobile.buttonMarkup.js | 74 +++++++++++++------- - 1 files changed, 49 insertions(+), 25 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js -index a08e611..d192e37 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js -@@ -130,47 +130,71 @@ function closestEnabledButton( element ) { - return element; - } - -+// Bug fix: When moving finger out of button after touching down button, button color MUST be returned. -+// button click event comes this order : vmouseover -> vmousedown -> vmouseup -> vmouseout -+ -+var selectedButton = null; -+var useScrollview = false; -+ - var attachEvents = function() { - $( document ).bind( { -- "vmousedown": function( event ) { -- var btn = closestEnabledButton( event.target ), -- $btn, theme; -+ "vmouseover focus": function( event ) { -+ var $btn, theme; - -- if ( btn ) { -- $btn = $( btn ); -+ // check if there is selected button... if so, make it to "btn-up" state. -+ if ( selectedButton ) { -+ $btn = $( selectedButton ); - theme = $btn.attr( "data-" + $.mobile.ns + "theme" ); -- $btn.removeClass( "ui-btn-up-" + theme ).addClass( "ui-btn-down-" + theme ); -+ $btn.removeClass( "ui-btn-down-" + theme ).removeClass( "ui-btn-hover-" + theme ) -+ .addClass( "ui-btn-up-" + theme ); - } -- }, -- "vmousecancel vmouseup": function( event ) { -- var btn = closestEnabledButton( event.target ), -- $btn, theme; - -- if ( btn ) { -- $btn = $( btn ); -+ selectedButton = closestEnabledButton( event.target ); -+ if ( selectedButton ) { -+ $btn = $( selectedButton ); - theme = $btn.attr( "data-" + $.mobile.ns + "theme" ); -- $btn.removeClass( "ui-btn-down-" + theme ).addClass( "ui-btn-up-" + theme ); -+ $btn.removeClass( "ui-btn-up-" + theme ).addClass( "ui-btn-hover-" + theme ); - } - }, -- "vmouseover focus": function( event ) { -- var btn = closestEnabledButton( event.target ), -- $btn, theme; -+ "vmouseout blur": function( event ) { -+ var $btn, theme; - -- if ( btn ) { -- $btn = $( btn ); -+ if ( selectedButton ) { -+ $btn = $( selectedButton ); - theme = $btn.attr( "data-" + $.mobile.ns + "theme" ); -- $btn.removeClass( "ui-btn-up-" + theme ).addClass( "ui-btn-hover-" + theme ); -+ $btn.removeClass( "ui-btn-hover-" + theme ).removeClass( "ui-btn-down-" + theme ).addClass( "ui-btn-up-" + theme ); - } - }, -- "vmouseout blur": function( event ) { -- var btn = closestEnabledButton( event.target ), -- $btn, theme; -+ "vmousedown": function( event ) { -+ var $btn, theme; -+ -+ if ( !selectedButton ) { -+ selectedButton = closestEnabledButton( event.target ); -+ } - -- if ( btn ) { -- $btn = $( btn ); -+ $btn = $( selectedButton ); -+ theme = $btn.attr( "data-" + $.mobile.ns + "theme" ); -+ $btn.removeClass( "ui-btn-up-" + theme ).addClass( "ui-btn-down-" + theme ); -+ }, -+ "vmousecancel vmouseup": function( event ) { -+ var $btn, theme; -+ -+ if ( selectedButton ) { -+ $btn = $( selectedButton ); - theme = $btn.attr( "data-" + $.mobile.ns + "theme" ); -- $btn.removeClass( "ui-btn-hover-" + theme + " ui-btn-down-" + theme ).addClass( "ui-btn-up-" + theme ); -+ $btn.removeClass( "ui-btn-down-" + theme ).addClass( "ui-btn-up-" + theme ); -+ -+ if ( event.type === "vmousecancel" && useScrollview ) { -+ event.preventDefault(); -+ } -+ selectedButton = null; -+ } -+ }, -+ "scrollstart scrollview_scroll": function( event ) { -+ if ( event.type === "scrollview_scroll" ) { -+ useScrollview = true; - } -+ $( this ).trigger("vmousecancel"); - } - }); - --- -1.7.5.4 - diff --git a/libs/patch/0004-JQM-move-pagelayout-to-winset.patch b/libs/patch/0004-JQM-move-pagelayout-to-winset.patch new file mode 100644 index 0000000..dbc5ab2 --- /dev/null +++ b/libs/patch/0004-JQM-move-pagelayout-to-winset.patch @@ -0,0 +1,68 @@ +From 12f7cdd3e6a427c777eb5b4c48b33fdd0ba1ef15 Mon Sep 17 00:00:00 2001 +From: Jun Jinhyuk +Date: Thu, 5 Jul 2012 01:00:43 -0400 +Subject: [PATCH] JQM move pagelayout to winset + +Change-Id: I38777266f0e4d30bce2db5057e2675f35221096a +--- + .../js/jquery.mobile.fixedToolbar.js | 2 +- + .../js/jquery.mobile.page.sections.js | 16 ++-------------- + 2 files changed, 3 insertions(+), 15 deletions(-) + mode change 100644 => 100755 libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.fixedToolbar.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.fixedToolbar.js +index 0f9c23d..6a40ac5 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.fixedToolbar.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.fixedToolbar.js +@@ -65,7 +65,7 @@ define( [ "jquery", "./jquery.mobile.widget", "./jquery.mobile.core", "./jquery. + + return false; + }, +- initSelector: ":jqmData(position='fixed')" ++ initSelector: ":jqmData(position='dummy')" + }, + + _create: function() { +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js +old mode 100644 +new mode 100755 +index e0a718d..e78af6a +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js +@@ -8,11 +8,12 @@ define( [ "jquery", "./jquery.mobile.page", "./jquery.mobile.core", "./jquery.mo + (function( $, undefined ) { + + $.mobile.page.prototype.options.backBtnText = "Back"; +-$.mobile.page.prototype.options.addBackBtn = false; ++$.mobile.page.prototype.options.addBackBtn = "footer"; + $.mobile.page.prototype.options.backBtnTheme = null; + $.mobile.page.prototype.options.headerTheme = "a"; + $.mobile.page.prototype.options.footerTheme = "a"; + $.mobile.page.prototype.options.contentTheme = null; ++$.mobile.page.prototype.options.footerExist = true; + + $( document ).delegate( ":jqmData(role='page'), :jqmData(role='dialog')", "pagecreate", function( e ) { + +@@ -58,19 +59,6 @@ $( document ).delegate( ":jqmData(role='page'), :jqmData(role='dialog')", "pagec + rightbtn = rightbtn || $headeranchors.eq( 1 ).addClass( "ui-btn-right" ).length; + } + +- // Auto-add back btn on pages beyond first view +- if ( o.addBackBtn && +- role === "header" && +- $( ".ui-page" ).length > 1 && +- $page.jqmData( "url" ) !== $.mobile.path.stripHash( location.hash ) && +- !leftbtn ) { +- +- backBtn = $( ""+ o.backBtnText +"" ) +- // If theme is provided, override default inheritance +- .attr( "data-"+ $.mobile.ns +"theme", o.backBtnTheme || thisTheme ) +- .prependTo( $this ); +- } +- + // Page title + $this.children( "h1, h2, h3, h4, h5, h6" ) + .addClass( "ui-title" ) +-- +1.7.4.1 + diff --git a/libs/patch/0005-JQM-Change-button-design-to-meet-TIZEN-UI.patch b/libs/patch/0005-JQM-Change-button-design-to-meet-TIZEN-UI.patch deleted file mode 100644 index 2985bb0..0000000 --- a/libs/patch/0005-JQM-Change-button-design-to-meet-TIZEN-UI.patch +++ /dev/null @@ -1,100 +0,0 @@ -From 01ba67004fdeaa1c205935ffb3e6739a9005cc21 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Wed, 29 Feb 2012 11:28:03 +0900 -Subject: [PATCH] JQM: Change button design to meet TIZEN UI - -Signed-off-by: Lee Wongi -Signed-off-by: Minkyu Kang ---- - .../js/jquery.mobile.buttonMarkup.js | 61 +++++++++++++++++++- - 1 files changed, 58 insertions(+), 3 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js -index d192e37..93485f1 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.buttonMarkup.js -@@ -2,6 +2,21 @@ - * "buttons" plugin - for making button-like links - */ - -+/* -+ * Button Markup modified for TIZEN style. -+ * -+ * HTML Attributes: -+ * -+ * data-role: button -+ * data-style: circle, nobg, edit -+ * -+ * Examples: -+ * -+ *
                      -+ *
                      -+ *
                      -+ */ -+ - ( function( $, undefined ) { - - $.fn.buttonMarkup = function( options ) { -@@ -73,8 +88,48 @@ $.fn.buttonMarkup = function( options ) { - buttonClass += " ui-shadow"; - } - -- e.setAttribute( "data-" + $.mobile.ns + "theme", o.theme ); -- el.addClass( buttonClass ); -+ /* TIZEN style markup */ -+ buttonStyle = el.jqmData("style"); -+ -+ if ( buttonStyle == "circle" ) { -+ /* style : no text, Icon only */ -+ buttonClass += " ui-btn-corner-circle"; -+ buttonClass += " ui-btn-icon_only"; -+ } else if ( buttonStyle == "nobg" ) { -+ /* style : no text, Icon only, no bg */ -+ buttonClass += " ui-btn-icon-nobg"; -+ buttonClass += " ui-btn-icon_only"; -+ } else if ( buttonStyle == "edit" ) { -+ buttonClass += " ui-btn-edit"; -+ } -+ -+ if ( o.icon ) { -+ if ( $(el).text().length > 0 ) { -+ o.iconpos == "right" ? -+ textClass += " ui-btn-text-padding-right" : -+ textClass += " ui-btn-text-padding-left"; -+ -+ innerClass += " ui-btn-hastxt"; -+ } else { -+ if ( buttonStyle == "circle" ) { -+ /* style : no text, Icon only */ -+ innerClass += " ui-btn-corner-circle"; -+ } else if ( buttonStyle == "nobg" ) { -+ /* style : no text, Icon only, no bg */ -+ innerClass += " ui-btn-icon-nobg"; -+ } -+ -+ buttonClass += " ui-btn-icon_only"; -+ innerClass += " ui-btn-icon-only"; -+ } -+ } else { -+ if ( $(el).text().length > 0 ) { -+ innerClass += " ui-btn-hastxt"; -+ } -+ } -+ -+ el.attr( "data-" + $.mobile.ns + "theme", o.theme ) -+ .addClass( buttonClass ); - - buttonInner.className = innerClass; - buttonInner.setAttribute("aria-hidden", "true"); -@@ -96,7 +151,7 @@ $.fn.buttonMarkup = function( options ) { - // TODO obviously it would be nice to pull this element out instead of - // retrieving it from the DOM again, but this change is much less obtrusive - // and 1.0 draws nigh -- $.data( e, 'textWrapper', $( buttonText ) ); -+ el.data( 'textWrapper', $( buttonText ) ); - } - - return this; --- -1.7.5.4 - diff --git a/libs/patch/0005-JQM-Fix-bug-on-live-firing-custom-events.patch b/libs/patch/0005-JQM-Fix-bug-on-live-firing-custom-events.patch new file mode 100644 index 0000000..f319944 --- /dev/null +++ b/libs/patch/0005-JQM-Fix-bug-on-live-firing-custom-events.patch @@ -0,0 +1,29 @@ +From 3548a6e0000943da605e6cbb00c1ec51ba82cf12 Mon Sep 17 00:00:00 2001 +From: Youmin Ha +Date: Tue, 5 Jun 2012 16:47:59 +0900 +Subject: [PATCH] JQM:Fix bug on live firing custom events + +Signed-off-by: Youmin Ha +--- + .../jquery-mobile-1.1.0/js/jquery.mobile.event.js | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.event.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.event.js +index f9d1744..0dc5428 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.event.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.event.js +@@ -28,6 +28,11 @@ var supportTouch = $.support.touch, + function triggerCustomEvent( obj, eventType, event ) { + var originalType = event.type; + event.type = eventType; ++ ++ // event.liveFired is already set by basic events, e.g. vclick, which is fired already. ++ // To fire this custom event, event.liveFired must be cleared. ++ event.liveFired = undefined; ++ + $.event.handle.call( obj, event ); + event.type = originalType; + } +-- +1.7.9.5 + diff --git a/libs/patch/0006-JQM-Apply-Tizen-button-style.patch b/libs/patch/0006-JQM-Apply-Tizen-button-style.patch new file mode 100644 index 0000000..27a8ffb --- /dev/null +++ b/libs/patch/0006-JQM-Apply-Tizen-button-style.patch @@ -0,0 +1,105 @@ +From 3fea934afc1252e6476750d86e450a61e6d8b816 Mon Sep 17 00:00:00 2001 +From: wongi11.lee +Date: Fri, 8 Jun 2012 19:58:19 +0900 +Subject: [PATCH] JQM:Apply Tizen button style. + +Signed-off-by: Wongi Lee +Signed-off-by: Hyunjung Kim +--- + .../js/jquery.mobile.buttonMarkup.js | 59 ++++++++++++++++++++ + 1 files changed, 59 insertions(+), 0 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js +index c5f32b4..d1b992b 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js +@@ -1,3 +1,22 @@ ++/* ++* "buttons" plugin - for making button-like links ++*/ ++ ++/* ++ * Button Markup modified for TIZEN style. ++ * ++ * HTML Attributes: ++ * ++ * data-role: button ++ * data-style: circle, nobg, edit ++ * ++ * Examples: ++ * ++ *
                      ++ *
                      ++ *
                      ++ */ ++ + //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); + //>>description: Applies button styling to links + //>>label: Buttons: Link-based +@@ -74,6 +93,63 @@ $.fn.buttonMarkup = function( options ) { + buttonClass += o.shadow ? " ui-shadow" : ""; + buttonClass += o.corners ? " ui-btn-corner-all" : ""; + ++ // To distinguish real buttons ++ if( el.jqmData("role") == "button" || e.tagName == "BUTTON" || e.tagName == "A" ){ ++ buttonClass += " ui-btn-box-" + o.theme; ++ } ++ ++ /* TIZEN style markup */ ++ buttonStyle = el.jqmData("style"); ++ ++ if ( buttonStyle == "circle" ) { ++ /* style : no text, Icon only */ ++ buttonClass += " ui-btn-corner-circle"; ++ buttonClass += " ui-btn-icon_only"; ++ } else if ( buttonStyle == "nobg" ) { ++ /* style : no text, Icon only, no bg */ ++ buttonClass += " ui-btn-icon-nobg"; ++ buttonClass += " ui-btn-icon_only"; ++ } else if ( buttonStyle == "edit" ) { ++ buttonClass += " ui-btn-edit"; ++ } ++ ++ if ( o.icon ) { ++ if ( $(el).text().length > 0 ) { ++ o.iconpos == "right" ? ++ textClass += " ui-btn-text-padding-right" : ++ textClass += " ui-btn-text-padding-left"; ++ ++ switch ( o.iconpos ) { ++ case "right" : ++ case "left" : ++ case "top" : ++ case "bottom" : ++ textClass += " ui-btn-text-padding-" + o.iconpos; ++ break; ++ default: ++ textClass += " ui-btn-text-padding-left"; ++ break; ++ } ++ ++ innerClass += " ui-btn-hastxt"; ++ } else { ++ if ( buttonStyle == "circle" ) { ++ /* style : no text, Icon only */ ++ innerClass += " ui-btn-corner-circle"; ++ } else if ( buttonStyle == "nobg" ) { ++ /* style : no text, Icon only, no bg */ ++ innerClass += " ui-btn-icon-nobg"; ++ } ++ ++ buttonClass += " ui-btn-icon_only"; ++ innerClass += " ui-btn-icon-only"; ++ } ++ } else { ++ if ( $(el).text().length > 0 ) { ++ innerClass += " ui-btn-hastxt"; ++ } ++ } ++ + if ( o.mini !== undefined ) { + // Used to control styling in headers/footers, where buttons default to `mini` style. + buttonClass += o.mini ? " ui-mini" : " ui-fullsize"; +-- +1.7.0.4 + diff --git a/libs/patch/0006-JQM-Change-header-footer-code-to-meet-TIZEN-UI.patch b/libs/patch/0006-JQM-Change-header-footer-code-to-meet-TIZEN-UI.patch deleted file mode 100644 index 5008821..0000000 --- a/libs/patch/0006-JQM-Change-header-footer-code-to-meet-TIZEN-UI.patch +++ /dev/null @@ -1,406 +0,0 @@ -From f55b2231026c520cc9899aaf8f2279c29e057da3 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Wed, 29 Feb 2012 15:44:47 +0900 -Subject: [PATCH] JQM: Change header/footer code to meet TIZEN UI - -Signed-off-by: Jun Jinhyuk -Signed-off-by: Minkyu Kang ---- - .../js/jquery.mobile.fixHeaderFooter.js | 293 +++++++++++++++++++- - 1 files changed, 279 insertions(+), 14 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -index 3bb5613..0216c65 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -@@ -2,6 +2,51 @@ - * "fixHeaderFooter" plugin - on-demand positioning for headers,footers - */ - -+/* -+ * Header/Footer can be created using the -+ * data-role="header", data-role="footer" attribute to an element. -+ * -+ * Every page in SLP theme have Header&Footer and default footer contains back button -+ * Framework automatically generate footer even though web developer does not define footer -+ * For more detail footer usage, refer Page(page.section.js) guideline -+ * -+ * Attribute: -+ * data-position : default value is fixed, automatically generated footer has fixed position, -+ * in header, web dev. defines header fix or not. -+ * -+ * Examples: -+ * -+ * HTML markup for creating header : -+ *
                      -+ *

                      NBeat UI

                      -+ *
                      -+ * -+ * HTML markup for creating 1 button title ( button is available 1~3 ) -+ *
                      -+ * Text1 -+ *

                      Title Area

                      -+ *
                      -+ * -+ * HTML markup for creating 2 button and groupControl title ( Groupcontrol is available 2~4 ) -+ *
                      -+ * Text -+ *

                      Title Extend 2 Button

                      -+ * Text -+ *
                      -+ *
                      -+ * -+ * -+ * -+ * -+ *
                      -+ *
                      -+ *
                      -+ * -+ * HTML markup for creating footer -+ *
                      -+ *
                      -+ */ -+ - (function( $, undefined ) { - - var slideDownClass = "ui-header-fixed ui-fixed-inline fade", -@@ -50,6 +95,7 @@ $.mobile.fixedToolbars = (function() { - touchStopEvent = supportTouch ? "touchend" : "mouseup", - stateBefore = null, - scrollTriggered = false, -+ defaultFooterHeight = 114, - touchToggleEnabled = true; - - function showEventCallback( event ) { -@@ -62,6 +108,57 @@ $.mobile.fixedToolbars = (function() { - // - // If we are in autoHideMode, we don't do anything because we know the scroll - // callbacks for the plugin will fire off a show when the scrolling has stopped. -+ -+ var footer_filter; -+ -+ if ( $( document ).find( ".ui-page-active" ).length ) { -+ footer_filter = $( document ).find( ".ui-page-active" ).find( ":jqmData(role='footer')" ); -+ } else { -+ footer_filter = $( document ).find( ":jqmData(role='footer')" ).eq( 0 ); -+ } -+ -+ if ( footer_filter.height() < defaultFooterHeight ) { -+ footer_filter.css("height", defaultFooterHeight); -+ } -+ -+ footer_filter -+ .css( "top", $(window).height() - footer_filter.height() ) -+ .show(); -+ -+ var footerNavbar = footer_filter.find(".ui-navbar"); -+ -+ if ( footerNavbar.jqmData("style") == "toolbar" ) { -+ footerNavbar -+ .css( "width", $(window).width() - footerNavbar.siblings(".ui-btn").width() ); -+ } -+ -+ // divide content mode scrollview and non-scrollview -+ // recalculate content area when resize callback occur -+ if ( event.type == "resize" ) { -+ var s_theme_header = -+ $( document ).find( ".ui-page-active" ).find( ":jqmData(role='header')" ); -+ var s_theme_content = -+ $( document ).find( ".ui-page-active" ).find( ":jqmData(role='content')" ); -+ -+ if ( $.support.scrollview ) { -+ if ( s_theme_header.css("position") != "fixed" ) { -+ s_theme_header.css( "position", "fixed" ); -+ } -+ -+ s_theme_content.css( "top", s_theme_header.height() ); -+ s_theme_content.css( "height", -+ document.documentElement.clientHeight - -+ footer_filter.height() - s_theme_header.height() ); -+ } else { -+ if ( s_theme_header.css("position") != "fixed" ) { -+ s_theme_header.css( "position", "relative" ); -+ s_theme_content -+ .css( "top", "0" ) -+ .css( "height", "" ); -+ } -+ } -+ } -+ - if ( !autoHideMode && currentstate === "overlay" ) { - if ( !delayTimer ) { - $.mobile.fixedToolbars.hide( true ); -@@ -107,6 +204,9 @@ $.mobile.fixedToolbars = (function() { - - ( ( $document.scrollTop() === 0 ) ? $window : $document ) - .bind( "scrollstart", function( event ) { -+ if ( $( event.target ).find(":jqmData(role='header')").is(":jqmData(position='fixed')") ) { -+ return; -+ } - - scrollTriggered = true; - -@@ -131,7 +231,6 @@ $.mobile.fixedToolbars = (function() { - } - }) - .bind( "scrollstop", function( event ) { -- - if ( $( event.target ).closest( ignoreTargets ).length ) { - return; - } -@@ -145,13 +244,141 @@ $.mobile.fixedToolbars = (function() { - stateBefore = null; - }); - -- $window.bind( "resize updatelayout", showEventCallback ); -+ $window.bind( "resize", showEventCallback ); - }); - - // 1. Before page is shown, check for duplicate footer - // 2. After page is shown, append footer to new page - $( ".ui-page" ) - .live( "pagebeforeshow", function( event, ui ) { -+ /* Fixed header modify for theme-s */ -+ var s_theme_header = $( event.target ).find(":jqmData(role='header')"); -+ var s_theme_fieldcontain = s_theme_header.find(":jqmData(role='fieldcontain')"); -+ var s_theme_content = $( event.target ).find(".ui-content"); -+ var title_style = "normal"; -+ -+ if ( s_theme_fieldcontain.length != 0 ) { -+ title_style = "extended"; -+ } -+ -+ if ( s_theme_header.jqmData("position") == "fixed" || window.S.frameworkData.theme.match(/tizen/).length || -+ s_theme_header.css("position") == "fixed" ) { -+ s_theme_header -+ .css( "position", "fixed" ) -+ .css( "top", "0px" ); -+ -+ if ( s_theme_header.children().is(".ui-navbar") ) { -+ s_theme_header.addClass("ui-title-controlbar-height"); -+ $( event.target ).find( ".ui-content" ) -+ .addClass("ui-title-content-controlbar-height"); -+ } else { -+ $( event.target ).find( ".ui-content" ) -+ .addClass("ui-title-content-" + title_style + "-height"); -+ } -+ } -+ -+ if ( s_theme_header.children().is(".ui-option-header") ) { -+ s_theme_content.removeClass("ui-title-content-" + title_style + "-height"); -+ -+ if ( s_theme_header.children().is(".input-search-bar") ) { -+ s_theme_content.addClass("ui-title-content-optionheader-search"); -+ } else { -+ if ( $.tizen.optionheader.prototype.options.collapseOnInit == true ) { -+ s_theme_content -+ .addClass("ui-title-content-option-header-collapsed-1line-height"); -+ } else { -+ s_theme_content -+ .addClass("ui-title-content-option-header-expanded-1line-height"); -+ } -+ } -+ } else if ( s_theme_header.find("input").jqmData("type") == "search" ) { -+ s_theme_content -+ .removeClass("ui-title-content-" + title_style + "-height") -+ .addClass("ui-title-content-search"); -+ } -+ -+ if ( s_theme_header.children().is("a") || -+ s_theme_header.children().find(".ui-radio").length != 0 ) { -+ if ( title_style == "normal" ) { -+ if ( s_theme_header.children("a").length == 3 ) { -+ s_theme_header.find( "a" ).eq( 1 ) -+ .removeClass("ui-btn-right") -+ .addClass("ui-title-normal-3btn"); -+ -+ s_theme_header.find( "a" ).eq( 2 ) -+ .addClass("ui-btn-right"); -+ } -+ } else { -+ var group_length = s_theme_fieldcontain.find(".ui-radio").length; -+ -+ s_theme_header -+ .addClass("ui-title-extended-height"); -+ -+ s_theme_fieldcontain -+ .find(".ui-controlgroup") -+ .addClass("ui-title-extended-controlgroup"); -+ -+ s_theme_fieldcontain -+ .find(".ui-controlgroup") -+ .addClass("ui-extended-controlgroup"); -+ -+ s_theme_fieldcontain -+ .addClass("ui-title-extended-segment-style"); -+ -+ if ( group_length == 2 || group_length == 3 || group_length == 4 ) { -+ s_theme_fieldcontain -+ .addClass("ui-title-extended-controlgroup-" + group_length + "btn"); -+ } -+ } -+ s_theme_content.addClass("ui-title-content-" + title_style + "-height"); -+ } -+ -+ // divide content mode scrollview and non-scrollview -+ // recalculate content area when resize callback occur -+ if ( event.type == "resize" ) { -+ if ( $.support.scrollview ) { -+ if ( s_theme_header.css("position") != "fixed" ) { -+ s_theme_header.css( "position", "fixed" ); -+ } -+ -+ s_theme_content.css( "top", s_theme_header.height() ); -+ } else { -+ if ( s_theme_header.css("position") != "fixed" ) { -+ s_theme_header.css( "position", "relative" ); -+ s_theme_content.css( "top", "0" ); -+ } -+ } -+ } -+ -+ var footer_filter = $( document ).find(":jqmData(role='footer')"); -+ -+ if ( footer_filter.find(".ui-navbar").is(".ui-controlbar-s") ){ -+ footer_filter -+ .css( "top", $(window).height() - footer_filter.height() ) -+ .show(); -+ } -+ -+ if ( footer_filter.children().find(".ui-radio").length != 0 ) { -+ var footerGroup = footer_filter.find(":jqmData(role='fieldcontain')"); -+ var groupLength = footerGroup.find(".ui-radio").length; -+ -+ footerGroup.find(".ui-controlgroup") -+ .addClass("ui-extended-controlgroup") -+ .addClass("ui-footer-extended-controlgroup") -+ .css( "display", "inline" ); -+ -+ /* Groupcontrol cannot initialize inline property at first page */ -+ footerGroup.addClass("ui-title-extended-controlgroup-" + groupLength + "btn"); -+ -+ footerButton = footer_filter.children("a"); -+ footerButton.each(function( i ) { -+ if ( footerButton.eq( i ).is(".ui-btn") && !footerButton.eq( i ).is(".ui-btn-back") ){ -+ footerButton.eq( i ) -+ .removeClass("ui-btn-left") -+ .addClass("ui-btn-footer-right"); -+ } -+ }); -+ } - - var page = $( event.target ), - footer = page.find( ":jqmData(role='footer')" ), -@@ -162,15 +389,53 @@ $.mobile.fixedToolbars = (function() { - - if ( id && prevFooterMatches ) { - stickyFooter = footer; -- setTop( stickyFooter.removeClass( "fade in out" ).appendTo( $.mobile.pageContainer ) ); -+ stickyFooter.removeClass( "fade in out" ).appendTo( $.mobile.pageContainer ); -+ stickyFooter -+ .css("position", "fixed") -+ .css("top", $(".ui-page").find(":jqmData(role='footer')").eq( 0 ).css("top")); -+ -+ } -+ -+ if ( footer.is(".ui-footer-fixed") ) { -+ footer.css( "top", $(window).height() - footer.height() ); -+ } -+ -+ /* Increase Content size with dummy
                      because of footer height */ -+ if ( footer.length != 0 && $( event.target ).find(".dummy-div").length == 0 ) { -+ $( event.target ).find( ":jqmData(role='content')" ).append( '
                      ' ); -+ $( ".dummy-div" ) -+ .css( "width", footer.width() ) -+ .css( "height", footer.height() ); -+ -+ if ( $(".dummy-div").height() < defaultFooterHeight ) { -+ $( ".dummy-div" ).css( "height", defaultFooterHeight ); -+ } - } -+ -+ /* Header position fix(remove transition) */ -+ var next_id = $( event.target ).attr( "id" ); -+ -+ $( "#"+next_id ).find( ":jqmData(role='header')" ) -+ .removeClass( "fade in out" ) -+ .appendTo( $.mobile.pageContainer ); - }) - .live( "pageshow", function( event, ui ) { -+ /* Fixed header modify for theme-s */ -+ var s_theme_header = $( event.target ).find( ":jqmData(role='header')" ); -+ if ( s_theme_header.is(".ui-header-fixed") && s_theme_header.is(".ui-bar-s") ) { -+ $( event.target ).find(":jqmData(role='header')") -+ .css( "position", "fixed" ) -+ .css( "top", "0px" ); -+ -+ ( $( document ).scrollTop() === 0 ? $( window ) : $( document ) ) -+ .unbind("scrollstart") -+ .unbind("silentscroll") -+ .unbind("scrollstop"); -+ } - - var $this = $( this ); - - if ( stickyFooter && stickyFooter.length ) { -- - setTimeout(function() { - setTop( stickyFooter.appendTo( $this ).addClass( "fade" ) ); - stickyFooter = null; -@@ -178,8 +443,13 @@ $.mobile.fixedToolbars = (function() { - } - - $.mobile.fixedToolbars.show( true, this ); -+ -+ /* Header position fix(remove transition) */ -+ $("body").children(":jqmData(role='header')") -+ .insertBefore( $(event.target).find(":jqmData(role='content')").eq( 0 ) ); - }); - -+ - // When a collapsiable is hidden or shown we need to trigger the fixed toolbar to reposition itself (#1635) - $( ".ui-collapsible-contain" ).live( "collapse expand", showEventCallback ); - -@@ -215,10 +485,15 @@ $.mobile.fixedToolbars = (function() { - } - - function setTop( el ) { -+ if ( el.parents(".ui-page").find(":jqmData(role='header')").is(".ui-header-fixed") && -+ el.parents(".ui-page").find(":jqmData(role='header')").is(".ui-bar-s") ) { -+ return; -+ } -+ - var fromTop = $(window).scrollTop(), - thisTop = getOffsetTop( el[ 0 ] ), // el.offset().top returns the wrong value on iPad iOS 3.2.1, call our workaround instead. - thisCSStop = el.css( "top" ) == "auto" ? 0 : parseFloat(el.css( "top" )), -- screenHeight = window.innerHeight, -+ screenHeight = $(window).height(), - thisHeight = el.outerHeight(), - useRelative = el.parents( ".ui-page:not(.ui-page-fullscreen)" ).length, - relval; -@@ -260,20 +535,10 @@ $.mobile.fixedToolbars = (function() { - fromTop = $( window ).scrollTop(), - // el.offset().top returns the wrong value on iPad iOS 3.2.1, call our workaround instead. - thisTop = getOffsetTop( el[ 0 ] ), -- screenHeight = window.innerHeight, -+ screenHeight = $(window).height(), - thisHeight = el.outerHeight(), - alreadyVisible = ( el.is( ".ui-header-fixed" ) && fromTop <= thisTop + thisHeight ) || - ( el.is( ".ui-footer-fixed" ) && thisTop <= fromTop + screenHeight ); -- -- // Add state class -- el.addClass( "ui-fixed-overlay" ).removeClass( "ui-fixed-inline" ); -- -- if ( !alreadyVisible && !immediately ) { -- el.animationComplete(function() { -- el.removeClass( "in" ); -- }).addClass( "in" ); -- } -- setTop(el); - }); - }, - --- -1.7.5.4 - diff --git a/libs/patch/0007-JQM-Add-back-button-into-header-footer.patch b/libs/patch/0007-JQM-Add-back-button-into-header-footer.patch deleted file mode 100644 index 8bcf52e..0000000 --- a/libs/patch/0007-JQM-Add-back-button-into-header-footer.patch +++ /dev/null @@ -1,171 +0,0 @@ -From 4755edbf7aaae376a58f94ec98ca433ce98ef0d9 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Wed, 29 Feb 2012 16:17:13 +0900 -Subject: [PATCH] JQM: Add back button into header/footer - -Signed-off-by: Jun Jinhyuk -Signed-off-by: Minkyu Kang ---- - .../js/jquery.mobile.page.sections.js | 97 ++++++++++++++++++-- - 1 files changed, 90 insertions(+), 7 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.page.sections.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.page.sections.js -index 2317c0c..63bba20 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.page.sections.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.page.sections.js -@@ -2,6 +2,40 @@ - * This plugin handles theming and layout of headers, footers, and content areas - */ - -+/* -+ * Page can be created using the calendarpicker() method or by adding a -+ * data-role="page" attribute to an element. -+ * -+ * Page has 3 main sub element. Header, Footer, Content -+ * 3 sub element can be created using
                      element -+ * -+ * Attribute: -+ * -+ * data-back-Btn-Text: determine which text is displayed in back button -+ * data-add-Back-Btn: Defines if header/footer has back button or not (default false) -+ * data-back-Btn-Theme: defines back button's theme -+ * data-header-Theme: defines header
                      's theme -+ * data-footer-Theme: defines footer
                      's theme -+ * data-content-Theme: defines content
                      's theme -+ * data-footer-Exist: defines to show default footer or not in each page (default true) -+ * data-footer-User-Control-Theme: defines to show default footer in whole page -+ * (default false. if true, all document do not has footer) -+ * -+ * Examples: -+ * -+ * HTML markup for creating Page: -+ *
                      -+ * -+ * How to show back button -+ *
                      -+ * -+ * How to remove footer of specific page -+ *
                      -+ * -+ * How to remove footer of whole page -+ *
                      -+ */ -+ - (function( $, undefined ) { - - $.mobile.page.prototype.options.backBtnText = "Back"; -@@ -10,6 +44,8 @@ $.mobile.page.prototype.options.backBtnTheme = null; - $.mobile.page.prototype.options.headerTheme = "a"; - $.mobile.page.prototype.options.footerTheme = "a"; - $.mobile.page.prototype.options.contentTheme = null; -+$.mobile.page.prototype.options.footerExist = true; -+$.mobile.page.prototype.options.footerUserControl = false; - - $( ":jqmData(role='page'), :jqmData(role='dialog')" ).live( "pagecreate", function( e ) { - -@@ -22,17 +58,23 @@ $( ":jqmData(role='page'), :jqmData(role='dialog')" ).live( "pagecreate", functi - var $this = $( this ), - role = $this.jqmData( "role" ), - theme = $this.jqmData( "theme" ), -- contentTheme = theme || o.contentTheme || ( pageRole === "dialog" && pageTheme ), -+ contentTheme = theme || o.contentTheme || pageTheme, - $headeranchors, - leftbtn, - rightbtn, - backBtn; -+ -+ var normalFooter, -+ footerExist = $this.jqmData("footerexist"); -+ -+ if ( footerExist != undefined ) { -+ o.footerExist = footerExist; -+ } - - $this.addClass( "ui-" + role ); - - //apply theming and markup modifications to page,header,content,footer - if ( role === "header" || role === "footer" ) { -- - var thisTheme = theme || ( role === "header" ? o.headerTheme : o.footerTheme ) || pageTheme; - - $this -@@ -47,20 +89,31 @@ $( ":jqmData(role='page'), :jqmData(role='dialog')" ).live( "pagecreate", functi - rightbtn = $headeranchors.hasClass( "ui-btn-right" ); - - leftbtn = leftbtn || $headeranchors.eq( 0 ).not( ".ui-btn-right" ).addClass( "ui-btn-left" ).length; -- - rightbtn = rightbtn || $headeranchors.eq( 1 ).addClass( "ui-btn-right" ).length; -+ -+ // set default userControl value -+ if ( o.footerUserControl ) { -+ $.mobile.page.prototype.options.footerUserControl = "true"; -+ } - - // Auto-add back btn on pages beyond first view -+ // create backbtn in case footer exist - if ( o.addBackBtn && -- role === "header" && -- $( ".ui-page" ).length > 1 && -+ role === "footer" && -+ o.footerExist && - $this.jqmData( "url" ) !== $.mobile.path.stripHash( location.hash ) && - !leftbtn ) { - -- backBtn = $( ""+ o.backBtnText +"" ) -+ backBtn = $( "" ) - // If theme is provided, override default inheritance - .attr( "data-"+ $.mobile.ns +"theme", o.backBtnTheme || thisTheme ) - .prependTo( $this ); -+ -+ -+ backBtn.bind( "vclick", function( event ) { -+ window.history.back(); -+ return false; -+ }); - } - - // Page title -@@ -80,8 +133,38 @@ $( ":jqmData(role='page'), :jqmData(role='dialog')" ).live( "pagecreate", functi - - // Add ARIA role - $this.attr( "role", "main" ); -+ -+ /* Add default footer to add backbtn */ -+ thisTheme = "s"; -+ -+ if ( o.footerExist ) { -+ backBtn = $( "" ) -+ .attr( "data-" + $.mobile.ns + "theme", o.backBtnTheme || thisTheme ); -+ var footer = $page.find("div:jqmData(role='footer')"); -+ -+ if ( footer.length != 0 ) { -+ if ( !footer.find("jqmData(role='navbar')").is("jqmData(style='tabbar')") ) { -+ backBtn.appendTo( footer ); -+ } -+ } else { -+ if ( !$.mobile.page.prototype.options.footerUserControl ) { -+ normalFooter = $( "" ) -+ .insertAfter( $page.find( ".ui-content" ) ); -+ backBtn.appendTo( normalFooter ); -+ } -+ } -+ -+ if ( backBtn ) { -+ backBtn.bind( "vclick", function( event ) { -+ window.history.back(); -+ return false; -+ }); -+ } -+ } - } - }); - }); - --})( jQuery ); -\ No newline at end of file -+})( jQuery ); --- -1.7.5.4 - diff --git a/libs/patch/0007-JQM-remove-search-from-forms.textinput.patch b/libs/patch/0007-JQM-remove-search-from-forms.textinput.patch new file mode 100644 index 0000000..0d19286 --- /dev/null +++ b/libs/patch/0007-JQM-remove-search-from-forms.textinput.patch @@ -0,0 +1,91 @@ +From c70b1f818389c9703af17bb59e1f78f4eefa7c65 Mon Sep 17 00:00:00 2001 +From: wongi11.lee +Date: Fri, 29 Jun 2012 13:24:49 +0900 +Subject: [PATCH] JQM remove 'search' from forms.textinput. + +Change-Id: I3de28a38dad8cfcc40a6e98273107e5beabb836e +Signed-off-by: wongi11.lee +--- + .../js/jquery.mobile.forms.textinput.js | 49 +++---------------- + 1 files changed, 8 insertions(+), 41 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js +index f444522..a06d54d 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js +@@ -13,8 +13,7 @@ $.widget( "mobile.textinput", $.mobile.widget, { + theme: null, + // This option defaults to true on iOS devices. + preventFocusZoom: /iPhone|iPad|iPod/.test( navigator.platform ) && navigator.userAgent.indexOf( "AppleWebKit" ) > -1, +- initSelector: "input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input[type='time'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input:not([type])", +- clearSearchButtonText: "clear text" ++ initSelector: "input[type='text'], input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input[type='time'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input:not([type])" + }, + + _create: function() { +@@ -46,41 +45,7 @@ $.widget( "mobile.textinput", $.mobile.widget, { + } + + +- //"search" input widget +- if ( input.is( "[type='search'],:jqmData(type='search')" ) ) { +- +- focusedEl = input.wrap( "" ).parent(); +- clearbtn = $( "" + o.clearSearchButtonText + "" ) +- .bind('click', function( event ) { +- input +- .val( "" ) +- .focus() +- .trigger( "change" ); +- clearbtn.addClass( "ui-input-clear-hidden" ); +- event.preventDefault(); +- }) +- .appendTo( focusedEl ) +- .buttonMarkup({ +- icon: "delete", +- iconpos: "notext", +- corners: true, +- shadow: true, +- mini: mini +- }); +- +- function toggleClear() { +- setTimeout(function() { +- clearbtn.toggleClass( "ui-input-clear-hidden", !input.val() ); +- }, 0); +- } +- +- toggleClear(); +- +- input.bind('paste cut keyup focus change blur', toggleClear); +- +- } else { +- input.addClass( "ui-corner-all ui-shadow-inset" + themeclass + miniclass ); +- } ++ input.addClass( "ui-corner-all ui-shadow-inset" + themeclass + miniclass ); + + input.focus(function() { + focusedEl.addClass( $.mobile.focusClass ); +@@ -133,13 +98,15 @@ $.widget( "mobile.textinput", $.mobile.widget, { + }, + + disable: function(){ +- ( this.element.attr( "disabled", true ).is( "[type='search'],:jqmData(type='search')" ) ? +- this.element.parent() : this.element ).addClass( "ui-disabled" ); ++ if ( this.element.attr( "disabled", true ) ) { ++ this.element.addClass( "ui-disabled" ); ++ } + }, + + enable: function(){ +- ( this.element.attr( "disabled", false).is( "[type='search'],:jqmData(type='search')" ) ? +- this.element.parent() : this.element ).removeClass( "ui-disabled" ); ++ if ( this.element.attr( "disabled", false) ) { ++ this.element.removeClass( "ui-disabled" ); ++ } + } + }); + +-- +1.7.0.4 + diff --git a/libs/patch/0008-JQM-checkbox-pressed-no-lable-support.patch b/libs/patch/0008-JQM-checkbox-pressed-no-lable-support.patch deleted file mode 100644 index d49980d..0000000 --- a/libs/patch/0008-JQM-checkbox-pressed-no-lable-support.patch +++ /dev/null @@ -1,108 +0,0 @@ -From 412619cb65dfa87ee6485afa6bbe810a2705dd67 Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Wed, 29 Feb 2012 16:46:14 +0900 -Subject: [PATCH] JQM: checkbox pressed, no-lable support - -Signed-off-by: Koeun Choi ---- - .../js/jquery.mobile.forms.checkboxradio.js | 57 ++++++++++++++++++- - 1 files changed, 54 insertions(+), 3 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.checkboxradio.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.checkboxradio.js -index d09a422..9243f2e 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.checkboxradio.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.checkboxradio.js -@@ -25,10 +25,23 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { - checkedicon = "ui-icon-" + checkedState, - uncheckedicon = "ui-icon-" + uncheckedState; - -+ var checkedpressedicon = checkedicon + "-press", -+ uncheckedpressedicon = uncheckedicon + "-press"; -+ - if ( inputtype !== "checkbox" && inputtype !== "radio" ) { - return; - } - -+ // Support fake label -+ if ( label.length == 0 ) { -+ label = $( "" ); -+ } -+ -+ // Wrap the input + label in a div -+ input.add( label ) -+ .wrapAll( "
                      " ); -+ - // Expose for other methods - $.extend( this, { - label: label, -@@ -36,6 +49,8 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { - checkedClass: checkedClass, - uncheckedClass: uncheckedClass, - checkedicon: checkedicon, -+ checkedpressedicon: checkedpressedicon, -+ uncheckedpressedicon: uncheckedpressedicon, - uncheckedicon: uncheckedicon - }); - -@@ -50,11 +65,19 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { - shadow: false - }); - -- // Wrap the input + label in a div -- input.add( label ) -- .wrapAll( "
                      " ); -+ if ( input.hasClass( "favorite" ) ) { -+ input.parent().addClass( "favorite" ).end(); -+ } - - label.bind({ -+ vmousedown: function() { -+ self.press(); -+ }, -+ vmouseup: function() { -+ self.unpress(); -+ }, -+ -+ - vmouseover: function( event ) { - if ( $( this ).parent().is( ".ui-disabled" ) ) { - event.stopPropagation(); -@@ -154,6 +177,34 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { - .checkboxradio( "refresh" ); - }, - -+ press: function() { -+ var input = this.element, -+ label = this.label, -+ icon = label.find( ".ui-icon" ); -+ -+ if ( !$( input[ 0 ] ).is( ":disabled" ) ) { -+ if ( $( input[ 0 ] ).prop( "checked" ) ) { -+ icon.addClass( this.uncheckedpressedicon ).removeClass( this.checkedicon ); -+ } else { -+ icon.removeClass( this.uncheckedicon ).addClass( this.checkedpressedicon ); -+ } -+ } -+ }, -+ -+ unpress: function() { -+ var input = this.element, -+ label = this.label, -+ icon = label.find( ".ui-icon" ); -+ -+ if ( !$( input[ 0 ] ).is( ":disabled" ) ) { -+ if ( $( input[ 0 ] ).prop( "checked" ) ) { -+ icon.removeClass( this.uncheckedpressedicon ).addClass( this.uncheckedicon ); -+ } else { -+ icon.addClass( this.checkedicon ).removeClass( this.checkedpressedicon ); -+ } -+ } -+ }, -+ - refresh: function() { - var input = this.element, - label = this.label, --- -1.7.5.4 - diff --git a/libs/patch/0008-JQM-remove-auto-populated-right-arrow-button.patch b/libs/patch/0008-JQM-remove-auto-populated-right-arrow-button.patch new file mode 100644 index 0000000..f70c25c --- /dev/null +++ b/libs/patch/0008-JQM-remove-auto-populated-right-arrow-button.patch @@ -0,0 +1,30 @@ +From c0960209ffd4540404d680331f54bdac872476ac Mon Sep 17 00:00:00 2001 +From: wongi11.lee +Date: Fri, 29 Jun 2012 14:25:03 +0900 +Subject: [PATCH] JQM remove auto populated right-arrow button. + +Change-Id: I57c6583aee484c8dedb4a49f12e9dfa2b1bf6b85 +Signed-off-by: wongi11.lee +--- + .../js/jquery.mobile.listview.js | 5 +++++ + 1 files changed, 5 insertions(+), 0 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js +index f3fabfa..4ccdd73 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js +@@ -188,6 +188,11 @@ $.widget( "mobile.listview", $.mobile.widget, { + if ( a.length ) { + icon = item.jqmData("icon"); + ++ /* Remove auto populated right-arrow button. */ ++ if ( icon === undefined ) { ++ icon = false; ++ } ++ + item.buttonMarkup({ + wrapperEls: "div", + shadow: false, +-- +1.7.0.4 + diff --git a/libs/patch/0009-JQM-change-button-hoverDelay-to-0-to-improve-respons.patch b/libs/patch/0009-JQM-change-button-hoverDelay-to-0-to-improve-respons.patch new file mode 100644 index 0000000..b0f0b85 --- /dev/null +++ b/libs/patch/0009-JQM-change-button-hoverDelay-to-0-to-improve-respons.patch @@ -0,0 +1,27 @@ +From b4ca5396f3d90e5f7ce05fba7f4d4182a6921e4b Mon Sep 17 00:00:00 2001 +From: wongi11.lee +Date: Mon, 2 Jul 2012 16:01:35 +0900 +Subject: [PATCH] JQM change button hoverDelay to 0 to improve response. + +Change-Id: Ie37bc90d86a94a2ea48819386a76fe976b91aa79 +Signed-off-by: wongi11.lee +--- + .../jquery-mobile-1.1.0/js/jquery.mobile.core.js | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js +index 7bde672..9007c36 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js +@@ -87,7 +87,7 @@ define( [ "jquery", "../external/requirejs/text!../version.txt", "./jquery.mobil + orientationChangeEnabled: true, + + buttonMarkup: { +- hoverDelay: 200 ++ hoverDelay: 0 + }, + + // TODO might be useful upstream in jquery itself ? +-- +1.7.0.4 + diff --git a/libs/patch/0009-JQM-remove-search-init-selector-and-functions.patch b/libs/patch/0009-JQM-remove-search-init-selector-and-functions.patch deleted file mode 100644 index 7a9bd53..0000000 --- a/libs/patch/0009-JQM-remove-search-init-selector-and-functions.patch +++ /dev/null @@ -1,82 +0,0 @@ -From 83fdd7d7b42cc8a9326f0f991d6a1928c83fb8cf Mon Sep 17 00:00:00 2001 -From: Lee Wongi -Date: Wed, 29 Feb 2012 14:21:44 +0900 -Subject: [PATCH] JQM remove search init selector and functions. - -Signed-off-by: Lee Wongi ---- - .../js/jquery.mobile.forms.textinput.js | 41 ++------------------ - 1 files changed, 4 insertions(+), 37 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.textinput.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.textinput.js -index f44c8a8..44cab9b 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.textinput.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.forms.textinput.js -@@ -7,7 +7,7 @@ - $.widget( "mobile.textinput", $.mobile.widget, { - options: { - theme: null, -- initSelector: "input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input[type='time'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input:not([type])" -+ initSelector: "input[type='text'], input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input[type='time'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input:not([type])" - }, - - _create: function() { -@@ -37,38 +37,7 @@ $.widget( "mobile.textinput", $.mobile.widget, { - } - - -- //"search" input widget -- if ( input.is( "[type='search'],:jqmData(type='search')" ) ) { -- -- focusedEl = input.wrap( "" ).parent(); -- clearbtn = $( "clear text" ) -- .tap(function( event ) { -- input.val( "" ).focus(); -- input.trigger( "change" ); -- clearbtn.addClass( "ui-input-clear-hidden" ); -- event.preventDefault(); -- }) -- .appendTo( focusedEl ) -- .buttonMarkup({ -- icon: "delete", -- iconpos: "notext", -- corners: true, -- shadow: true -- }); -- -- function toggleClear() { -- setTimeout(function() { -- clearbtn.toggleClass( "ui-input-clear-hidden", !input.val() ); -- }, 0); -- } -- -- toggleClear(); -- -- input.bind('paste cut keyup focus change blur', toggleClear); -- -- } else { -- input.addClass( "ui-corner-all ui-shadow-inset" + themeclass ); -- } -+ input.addClass( "ui-corner-all ui-shadow-inset" + themeclass ); - - input.focus(function() { - focusedEl.addClass( "ui-focus" ); -@@ -110,13 +79,11 @@ $.widget( "mobile.textinput", $.mobile.widget, { - }, - - disable: function(){ -- ( this.element.attr( "disabled", true ).is( "[type='search'],:jqmData(type='search')" ) ? -- this.element.parent() : this.element ).addClass( "ui-disabled" ); -+ this.element.attr( "disabled", true ).addClass( "ui-disabled" ); - }, - - enable: function(){ -- ( this.element.attr( "disabled", false).is( "[type='search'],:jqmData(type='search')" ) ? -- this.element.parent() : this.element ).removeClass( "ui-disabled" ); -+ this.element.attr( "disabled", false).removeClass( "ui-disabled" ); - } - }); - --- -1.7.0.4 - diff --git a/libs/patch/0010-JQM-Prevent-blinking-on-page-transition.patch b/libs/patch/0010-JQM-Prevent-blinking-on-page-transition.patch new file mode 100644 index 0000000..6479b70 --- /dev/null +++ b/libs/patch/0010-JQM-Prevent-blinking-on-page-transition.patch @@ -0,0 +1,41 @@ +From bf9dc02776446faee9e5587360584d9d9b9b135e Mon Sep 17 00:00:00 2001 +From: Youmin Ha +Date: Tue, 3 Jul 2012 15:07:07 +0900 +Subject: [PATCH] JQM:Prevent blinking on page transition + +Signed-off-by: Minkyu Kang +Signed-off-by: Youmin Ha +--- + .../js/jquery.mobile.transition.js | 11 ++++++++++- + 1 file changed, 10 insertions(+), 1 deletion(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js +index 56f93a6..e5555e8 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.transition.js +@@ -29,6 +29,15 @@ var createHandler = function( sequential ){ + $.mobile.pageContainer.toggleClass( "ui-mobile-viewport-transitioning viewport-" + name ); + }, + scrollPage = function(){ ++ // Prevent blinking on page scrolling in Tizen/Android devices. ++ // Don't scoll window, when current scroll top(scrollTop()) is already at toScroll, ++ // or when current scroll top is 0 and toScroll is same to defaultHomeScroll ++ // (which means the top position of page). In these case, page scrolling is not needed. ++ var st = $( window ).scrollTop(); ++ if( st === toScroll || ( $.mobile.defaultHomeScroll === toScroll && st == 0 ) ) { ++ return; ++ } ++ + // By using scrollTo instead of silentScroll, we can keep things better in order + // Just to be precautios, disable scrollstart listening like silentScroll would + $.event.special.scrollstart.enabled = false; +@@ -150,4 +159,4 @@ $.mobile.transitionFallbacks = {}; + })( jQuery, this ); + //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); + }); +-//>>excludeEnd("jqmBuildExclude"); +\ No newline at end of file ++//>>excludeEnd("jqmBuildExclude"); +-- +1.7.9.5 + diff --git a/libs/patch/0010-JQM-change-input-s-type-on-fixed-header.patch b/libs/patch/0010-JQM-change-input-s-type-on-fixed-header.patch deleted file mode 100644 index 9fcdf8d..0000000 --- a/libs/patch/0010-JQM-change-input-s-type-on-fixed-header.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 88c84e8e486540403b51573a28350a707f4b60ef Mon Sep 17 00:00:00 2001 -From: Minkyu Kang -Date: Wed, 29 Feb 2012 16:56:24 +0900 -Subject: [PATCH] JQM change input's type on fixed header - -Signed-off-by: Lee Wongi ---- - .../js/jquery.mobile.fixHeaderFooter.js | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -index 0216c65..8fd9357 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -@@ -291,7 +291,7 @@ $.mobile.fixedToolbars = (function() { - .addClass("ui-title-content-option-header-expanded-1line-height"); - } - } -- } else if ( s_theme_header.find("input").jqmData("type") == "search" ) { -+ } else if( s_theme_header.find("input").attr("type") === "search" || s_theme_header.find("input").attr("type") === "tizen-search" ) { - s_theme_content - .removeClass("ui-title-content-" + title_style + "-height") - .addClass("ui-title-content-search"); --- -1.7.5.4 - diff --git a/libs/patch/0011-JQM-add-refresh-api-to-page.patch b/libs/patch/0011-JQM-add-refresh-api-to-page.patch new file mode 100644 index 0000000..238642c --- /dev/null +++ b/libs/patch/0011-JQM-add-refresh-api-to-page.patch @@ -0,0 +1,46 @@ +From 15b17c830a4d9737b23da195e23ed02aabcf2c36 Mon Sep 17 00:00:00 2001 +From: Jun Jinhyuk +Date: Fri, 6 Jul 2012 07:15:19 -0400 +Subject: [PATCH] JQM add refresh api to page + +--- + .../jquery-mobile-1.1.0/js/jquery.mobile.page.js | 12 ++++++++---- + 1 files changed, 8 insertions(+), 4 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js +index d2bd195..85c77fe 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.js +@@ -15,9 +15,9 @@ $.widget( "mobile.page", $.mobile.widget, { + }, + + _create: function() { +- ++ + var self = this; +- ++ + // if false is returned by the callbacks do not create the page + if( self._trigger( "beforecreate" ) === false ){ + return false; +@@ -34,11 +34,15 @@ $.widget( "mobile.page", $.mobile.widget, { + } ); + + }, +- ++ ++ refresh : function() { ++ $( ".ui-page-active" ).children( ".ui-content" ).trigger("updatelayout", ["external"]); ++ }, ++ + removeContainerBackground: function(){ + $.mobile.pageContainer.removeClass( "ui-overlay-" + $.mobile.getInheritedTheme( this.element.parent() ) ); + }, +- ++ + // set the page container background to the page theme + setContainerBackground: function( theme ){ + if( this.options.theme ){ +-- +1.7.4.1 + diff --git a/libs/patch/0011-jQuery-Remove-layerX-layerY-events-which-is-deprecat.patch b/libs/patch/0011-jQuery-Remove-layerX-layerY-events-which-is-deprecat.patch deleted file mode 100644 index f0801ed..0000000 --- a/libs/patch/0011-jQuery-Remove-layerX-layerY-events-which-is-deprecat.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 8983a5b902ea20d879321cad4162c91b0efd6bbf Mon Sep 17 00:00:00 2001 -From: Youmin Ha -Date: Fri, 16 Mar 2012 15:16:03 +0900 -Subject: [PATCH] jQuery: Remove layerX, layerY events which is deprecated in webkit - -Signed-off-by: Youmin Ha ---- - libs/js/jquery-1.6.4.js | 2 +- - libs/js/jquery-1.6.4.min.js | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/libs/js/jquery-1.6.4.js b/libs/js/jquery-1.6.4.js -index 11e6d06..2c12adb 100644 ---- a/libs/js/jquery-1.6.4.js -+++ b/libs/js/jquery-1.6.4.js -@@ -3016,7 +3016,7 @@ jQuery.event = { - return event.result; - }, - -- props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), -+ props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { -diff --git a/libs/js/jquery-1.6.4.min.js b/libs/js/jquery-1.6.4.min.js -index 628ed9b..1d70aab 100644 ---- a/libs/js/jquery-1.6.4.min.js -+++ b/libs/js/jquery-1.6.4.min.js -@@ -1,4 +1,4 @@ - /*! jQuery v1.6.4 http://jquery.com/ | http://jquery.org/license */ - (function(a,b){function cu(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cr(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
                      a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
                      ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
                      t
                      ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

                      ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
                      ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
                      ","
                      "],thead:[1,"","
                      "],tr:[2,"","
                      "],td:[3,"","
                      "],col:[2,"","
                      "],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
                      ","
                      "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
                      ").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
                      ";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); -\ No newline at end of file -+t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

                      ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
                      ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
                      ","
                      "],thead:[1,"","
                      "],tr:[2,"","
                      "],td:[3,"","
                      "],col:[2,"","
                      "],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
                      ","
                      "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
                      ").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
                      ";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); --- -1.7.4.1 - diff --git a/libs/patch/0012-JQM-delete-defaultFooter-size.patch b/libs/patch/0012-JQM-delete-defaultFooter-size.patch deleted file mode 100755 index b715ffe..0000000 --- a/libs/patch/0012-JQM-delete-defaultFooter-size.patch +++ /dev/null @@ -1,52 +0,0 @@ -From e8670410ade06362532722b541ce4bef81222d6b Mon Sep 17 00:00:00 2001 -From: Jun Jinhyuk -Date: Mon, 19 Mar 2012 22:13:16 -0400 -Subject: [PATCH] delete defaultFooter size - -Change-Id: I026d36ed75b53707d682731d26150bee3521a7f2 ---- - .../js/jquery.mobile.fixHeaderFooter.js | 14 +++++++------- - 1 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -index 2d19b4e..23877df 100644 ---- a/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -+++ b/libs/js/jquery-mobile-1.0.1pre/js/jquery.mobile.fixHeaderFooter.js -@@ -95,7 +95,7 @@ $.mobile.fixedToolbars = (function() { - touchStopEvent = supportTouch ? "touchend" : "mouseup", - stateBefore = null, - scrollTriggered = false, -- defaultFooterHeight = 114, -+// defaultFooterHeight = 114, - touchToggleEnabled = true; - - function showEventCallback( event ) { -@@ -117,9 +117,9 @@ $.mobile.fixedToolbars = (function() { - footer_filter = $( document ).find( ":jqmData(role='footer')" ).eq( 0 ); - } - -- if ( footer_filter.height() < defaultFooterHeight ) { -- footer_filter.css("height", defaultFooterHeight); -- } -+// if ( footer_filter.height() < defaultFooterHeight ) { -+// footer_filter.css("height", defaultFooterHeight); -+// } - - footer_filter - .css( "top", $(window).height() - footer_filter.height() ) -@@ -407,9 +407,9 @@ $.mobile.fixedToolbars = (function() { - .css( "width", footer.width() ) - .css( "height", footer.height() ); - -- if ( $(".dummy-div").height() < defaultFooterHeight ) { -- $( ".dummy-div" ).css( "height", defaultFooterHeight ); -- } -+// if ( $(".dummy-div").height() < defaultFooterHeight ) { -+// $( ".dummy-div" ).css( "height", defaultFooterHeight ); -+// } - } - - /* Header position fix(remove transition) */ --- -1.7.4.1 - diff --git a/libs/patch/0012-JQM-set-default-page-transition-to-none.patch b/libs/patch/0012-JQM-set-default-page-transition-to-none.patch new file mode 100644 index 0000000..71a6477 --- /dev/null +++ b/libs/patch/0012-JQM-set-default-page-transition-to-none.patch @@ -0,0 +1,26 @@ +From 55dcac86989fdc737ea6894ca136bb250bdc5f95 Mon Sep 17 00:00:00 2001 +From: Minkyu Kang +Date: Tue, 17 Jul 2012 09:12:49 +0900 +Subject: [PATCH] JQM: set default page transition to none + +Signed-off-by: Minkyu Kang +--- + .../jquery-mobile-1.1.0/js/jquery.mobile.core.js | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js +index 9007c36..ae576b1 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.core.js +@@ -44,7 +44,7 @@ define( [ "jquery", "../external/requirejs/text!../version.txt", "./jquery.mobil + linkBindingEnabled: true, + + // Set default page transition - 'none' for no transitions +- defaultPageTransition: "fade", ++ defaultPageTransition: "none", + + // Set maximum window width for transitions to apply - 'false' for no limit + maxTransitionWidth: false, +-- +1.7.9.5 + diff --git a/libs/patch/0013-JQM-remove-filter-Placeholder-of-listview.patch b/libs/patch/0013-JQM-remove-filter-Placeholder-of-listview.patch new file mode 100644 index 0000000..f585b71 --- /dev/null +++ b/libs/patch/0013-JQM-remove-filter-Placeholder-of-listview.patch @@ -0,0 +1,27 @@ +From 731daf9729c9163dd0db78d72acc0c21ff334ca8 Mon Sep 17 00:00:00 2001 +From: Minkyu Kang +Date: Mon, 20 Aug 2012 15:48:11 +0900 +Subject: [PATCH] JQM: remove filter Placeholder of listview + +Change-Id: I03d5e62e33d3e1fe7455e9b30d2cc479c092503f +Signed-off-by: Minkyu Kang +--- + .../js/jquery.mobile.listview.filter.js | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js +index a2420d8..929b221 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.filter.js +@@ -9,7 +9,7 @@ define( [ "jquery", "./jquery.mobile.listview", "./jquery.mobile.forms.textinput + (function( $, undefined ) { + + $.mobile.listview.prototype.options.filter = false; +-$.mobile.listview.prototype.options.filterPlaceholder = "Filter items..."; ++$.mobile.listview.prototype.options.filterPlaceholder = ""; + $.mobile.listview.prototype.options.filterTheme = "c"; + $.mobile.listview.prototype.options.filterCallback = function( text, searchValue ){ + return text.toLowerCase().indexOf( searchValue ) === -1; +-- +1.7.9.5 + diff --git a/libs/patch/0014-JQM-Add-default-theme-on-buttonMarkup.patch b/libs/patch/0014-JQM-Add-default-theme-on-buttonMarkup.patch new file mode 100644 index 0000000..501ed5a --- /dev/null +++ b/libs/patch/0014-JQM-Add-default-theme-on-buttonMarkup.patch @@ -0,0 +1,34 @@ +From b0b89011ffeb68fc9a207f67558048217912025c Mon Sep 17 00:00:00 2001 +From: Youmin Ha +Date: Wed, 25 Jul 2012 10:15:08 +0900 +Subject: [PATCH] JQM: Add default theme on buttonMarkup + +Signed-off-by: Youmin Ha +--- + .../js/jquery.mobile.buttonMarkup.js | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js +index d523ad9..9ca2366 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.buttonMarkup.js +@@ -38,7 +38,7 @@ $.fn.buttonMarkup = function( options ) { + o = $.extend( {}, $.fn.buttonMarkup.defaults, { + icon: options.icon !== undefined ? options.icon : el.jqmData( "icon" ), + iconpos: options.iconpos !== undefined ? options.iconpos : el.jqmData( "iconpos" ), +- theme: options.theme !== undefined ? options.theme : el.jqmData( "theme" ) || $.mobile.getInheritedTheme( el, "c" ), ++ theme: options.theme !== undefined ? options.theme : el.jqmData( "theme" ) || $.mobile.getInheritedTheme( el, $.fn.buttonMarkup.defaults["theme"] ), + inline: options.inline !== undefined ? options.inline : el.jqmData( "inline" ), + shadow: options.shadow !== undefined ? options.shadow : el.jqmData( "shadow" ), + corners: options.corners !== undefined ? options.corners : el.jqmData( "corners" ), +@@ -235,6 +235,7 @@ $.fn.buttonMarkup = function( options ) { + }; + + $.fn.buttonMarkup.defaults = { ++ theme: "c", + corners: true, + shadow: true, + iconshadow: true, +-- +1.7.9.5 + diff --git a/libs/patch/0015-JQM-If-height-of-textarea-is-bigger-than-window.inne.patch b/libs/patch/0015-JQM-If-height-of-textarea-is-bigger-than-window.inne.patch new file mode 100644 index 0000000..25291e7 --- /dev/null +++ b/libs/patch/0015-JQM-If-height-of-textarea-is-bigger-than-window.inne.patch @@ -0,0 +1,27 @@ +From c8f2ce6d45c42d572ef96cc166a64c8d60bc5ef8 Mon Sep 17 00:00:00 2001 +From: Minkyu Kang +Date: Thu, 9 Aug 2012 17:36:11 +0900 +Subject: [PATCH] JQM: If height of textarea is bigger than + window.innerHeight/2, don't grow up anymore + +Signed-off-by: Minkyu Kang +--- + .../js/jquery.mobile.forms.textinput.js | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js +index f444522..681b9b4 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.forms.textinput.js +@@ -73,7 +73,7 @@ $.widget( "mobile.textinput", $.mobile.widget, { + var scrollHeight = input[ 0 ].scrollHeight, + clientHeight = input[ 0 ].clientHeight; + +- if ( clientHeight < scrollHeight ) { ++ if ( clientHeight < scrollHeight && window.innerHeight / 2 > scrollHeight ) { + input.height(scrollHeight + extraLineHeight); + } + }, +-- +1.7.9.5 + diff --git a/libs/patch/0016-JQM-generate-checkbox-radio-has-class-in-list.patch b/libs/patch/0016-JQM-generate-checkbox-radio-has-class-in-list.patch new file mode 100644 index 0000000..9f3ebcf --- /dev/null +++ b/libs/patch/0016-JQM-generate-checkbox-radio-has-class-in-list.patch @@ -0,0 +1,47 @@ +From cdada84aa4444504a17346146a8b08c9e633eaaa Mon Sep 17 00:00:00 2001 +From: Jun Jinhyuk +Date: Tue, 21 Aug 2012 14:45:17 +0900 +Subject: [PATCH] JQM generate checkbox radio has class in list + +Change-Id: Ie958c0a960d14494f476e2354677fcc588b7a32c +--- + .../js/jquery.mobile.listview.js | 16 ++++++++++++++++ + 1 files changed, 16 insertions(+), 0 deletions(-) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js +index 4ccdd73..a290e32 100644 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.listview.js +@@ -151,6 +151,19 @@ $.widget( "mobile.listview", $.mobile.widget, { + } + } + }, ++ ++ _addCheckboxRadioClasses: function( containers ) ++ { ++ var i, inputAttr, len = containers.length; ++ for ( i = 0; i < len; i++ ) { ++ inputAttr = $( containers[ i ] ).find( "input" ); ++ if ( inputAttr.attr( "type" ) == "checkbox" ) { ++ $( containers[ i ] ).addClass( "ui-li-has-checkbox" ); ++ } else if ( inputAttr.attr( "type" ) == "radio" ) { ++ $( containers[ i ] ).addClass( "ui-li-has-radio" ); ++ } ++ } ++ }, + + refresh: function( create ) { + this.parentPage = this.element.closest( ".ui-page" ); +@@ -313,6 +326,9 @@ $.widget( "mobile.listview", $.mobile.widget, { + this._addThumbClasses( li ); + this._addThumbClasses( $list.find( ".ui-link-inherit" ) ); + ++ this._addCheckboxRadioClasses( li ); ++ this._addCheckboxRadioClasses( $list.find( ".ui-link-inherit" ) ); ++ + this._refreshCorners( create ); + }, + +-- +1.7.4.1 + diff --git a/libs/patch/0016-apply-tizen-default-button-order-in-title-bar-ui-btn.patch b/libs/patch/0016-apply-tizen-default-button-order-in-title-bar-ui-btn.patch new file mode 100644 index 0000000..3038d34 --- /dev/null +++ b/libs/patch/0016-apply-tizen-default-button-order-in-title-bar-ui-btn.patch @@ -0,0 +1,31 @@ +From ea0849395563ced0fab0ce5d4b0c947b49b4b152 Mon Sep 17 00:00:00 2001 +From: Koeun Choi +Date: Fri, 17 Aug 2012 21:05:05 +0900 +Subject: [PATCH] apply tizen default button order in title bar: ui-btn-right. + +Change-Id: I3ad4b706982090e2b1efa28227fe8e40ac9ee039 +--- + .../js/jquery.mobile.page.sections.js | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js +index e78af6a..5e289b5 100755 +--- a/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js ++++ b/libs/js/jquery-mobile-1.1.0/js/jquery.mobile.page.sections.js +@@ -54,9 +54,13 @@ $( document ).delegate( ":jqmData(role='page'), :jqmData(role='dialog')", "pagec + leftbtn = $headeranchors.hasClass( "ui-btn-left" ); + rightbtn = $headeranchors.hasClass( "ui-btn-right" ); + ++ // when button position is not declared, make it "right" button on Tizen. ++ rightbtn = $headeranchors.not( ".ui-btn-left" ).addClass( "ui-btn-right" ); ++ /* + leftbtn = leftbtn || $headeranchors.eq( 0 ).not( ".ui-btn-right" ).addClass( "ui-btn-left" ).length; + + rightbtn = rightbtn || $headeranchors.eq( 1 ).addClass( "ui-btn-right" ).length; ++ */ + } + + // Page title +-- +1.7.9.5 + diff --git a/libs/patch/create-patch.sh b/libs/patch/create-patch.sh index 5ac23ec..97020fd 100755 --- a/libs/patch/create-patch.sh +++ b/libs/patch/create-patch.sh @@ -20,9 +20,6 @@ function reset_branch exit $ret } -# If --cancel option is given, just reset git and exit. -test "$1" == "--cancel" && reset_branch 0 - # Make sure if current branch is PATCH_BRANCH test ! -f "$ORIG_BRANCH_FILE" && echo "ERROR: Original branch file ($ORIG_BRANCH_FILE) is not found!" && exit 1 test "${CURRENT_BRANCH}" != "$PATCH_BRANCH" && echo "ERROR: Current branch is not '$PATCH_BRANCH'." && exit 1 diff --git a/libs/patch/prepare-patch.sh b/libs/patch/prepare-patch.sh index 7ce3297..41b6c7d 100755 --- a/libs/patch/prepare-patch.sh +++ b/libs/patch/prepare-patch.sh @@ -11,9 +11,10 @@ CURRENT_BRANCH_FILE=${CWD}/.current_branch.txt function reset_branch { - echo "Restore to original git branch." + echo "Reset git to original git branch..." test -f "$CURRENT_BRANCH_FILE" && CURRENT_BRANCH="`cat $CURRENT_BRANCH_FILE`" git checkout ${CURRENT_BRANCH} + test -e ".git/rebase-apply" && git am --abort git branch -D ${PATCH_BRANCH} rm -f $CURRENT_BRANCH_FILE exit 1 @@ -22,6 +23,9 @@ function reset_branch # If --cancel option is given, just reset git and exit. test "$1" == "--cancel" && reset_branch +# If current branch file is already exist, reset and exit. +test -f "$CURRENT_BRANCH_FILE" && reset_branch + # Remember current branch name to a file echo "${CURRENT_BRANCH}" > $CURRENT_BRANCH_FILE diff --git a/packaging/upload-to-private-project.sh b/packaging/upload-to-private-project.sh new file mode 100755 index 0000000..d96c0d2 --- /dev/null +++ b/packaging/upload-to-private-project.sh @@ -0,0 +1,57 @@ +#!/bin/bash + +cd `dirname $0`/../ +SRCROOT=`pwd` + +PROJECT=web-ui-fw +VERSION=`grep 'Version:' packaging/web-ui-fw.spec | awk '{print $2}'` +TARNAME=$PROJECT-$VERSION + +OBS_USER=$1 +OBS_LOCAL=home:$OBS_USER +OBSDIR_ROOT=$HOME/obs +OBSDIR_USER=$OBSDIR_ROOT/$OBS_LOCAL +OBSDIR_PROJECT=$OBSDIR_USER/$PROJECT + +if test ! -n "$OBS_USER"; then + echo "Error: No OBS account is given." + echo "USAGE: $0 [--upload]" + echo "" + echo "${HOME}/obs/home:/web-ui-fw direcory will be created." + echo "NOTE:" + echo " If --upload option is given, OBS build request will be done to your home project." + echo " Otherwise, local OBS will be run." + exit 1 +fi + +### OBS +test -d "$OBSDIR_ROOT" || mkdir -p $OBSDIR_ROOT +cd $OBSDIR_ROOT +test -d "$OBSDIR_USER" || osc co $OBS_LOCAL/$PROJECT || ( echo "Error: Failed to checkout $OBS_LOCAL/$PROJECT"; exit 1 ) +cd $OBSDIR_USER +test -d $OBSDIR_PROJECT || osc mkpac $PROJECT + +### Make tarball and spec into obs project dir +cd $OBSDIR_PROJECT +osc rm --force * +rm -rf $OBSDIR_PROJECT/* +cd $SRCROOT +git archive --format=tar --prefix=$TARNAME/ HEAD | gzip > $OBSDIR_PROJECT/$TARNAME.tar.gz +cp -av ./packaging/$PROJECT.spec $OBSDIR_PROJECT/ +cd $OBSDIR_PROJECT + +echo "Complete." +echo "If you want to build locally, run following command:" +echo "cd $OBSDIR_PROJECT; osc build standard --no-verify --local-package --clean" +echo "" + +### Build +if test "$2" == "--upload"; then + osc add * + osc ci +else + #rpmbuild -ba packaging/*.spec + cd $OBSDIR_PROJECT + osc build standard --no-verify --local-package --clean +fi + diff --git a/packaging/web-ui-fw.spec b/packaging/web-ui-fw.spec index 8738e99..0cb5ae8 100644 --- a/packaging/web-ui-fw.spec +++ b/packaging/web-ui-fw.spec @@ -1,34 +1,221 @@ -Name: web-ui-fw -Summary: Tizen Web UI Framework Library -Version: 0.1.11 -Release: 1 -Group: TO_BE/FILLED_IN -License: MIT -BuildRequires: node-js, make +Name: web-ui-fw +Version: 0.1.38 +Release: 0 +Summary: Tizen Web UI Framework Library +Group: Development/Other +License: MIT +BuildArch: noarch +BuildRequires: make +BuildRequires: nodejs +%ifarch %{arm} +BuildRequires: nodejs-x86-arm +%endif + +Source0: %{name}-%{version}.tar.gz %description -Tizen Web UI Framework library package +Tizen Web UI Framework library and theme packages %prep -make clean +%setup -q %build -make +make all -%post +%install +make DESTDIR=%{buildroot} install +%post %files -/usr/lib/tizen-web-ui-fw/*/js -/usr/lib/tizen-web-ui-fw/*/themes/tizen-gray +/usr/share/tizen-web-ui-fw/*/js +/usr/share/tizen-web-ui-fw/latest + +############################### +%package -n web-ui-fw-theme-tizen-gray +BuildArch: noarch +Summary: Tizen Web UI Framework Theme : tizen-gray +%Description -n web-ui-fw-theme-tizen-gray + Tizen Web UI Framework Theme : tizen-gray +%files -n web-ui-fw-theme-tizen-gray +/usr/share/tizen-web-ui-fw/*/themes/tizen-gray + +############################### +%package -n web-ui-fw-theme-tizen-white +BuildArch: noarch +Summary: Tizen Web UI Framework Theme : tizen-white +%Description -n web-ui-fw-theme-tizen-white + Tizen Web UI Framework Theme : tizen-white +%files -n web-ui-fw-theme-tizen-white +/usr/share/tizen-web-ui-fw/*/themes/tizen-white + +############################### +%package -n web-ui-fw-theme-default +BuildArch: noarch +Summary: Tizen Web UI Framework Theme : default +%Description -n web-ui-fw-theme-default + Tizen Web UI Framework Theme : default +%files -n web-ui-fw-theme-default +/usr/share/tizen-web-ui-fw/*/themes/default + +############################### +%package -n web-ui-fw-devel +BuildArch: noarch +Summary: Tizen Web UI Framework Developer's files +%Description -n web-ui-fw-devel + Tizen Web UI Framework Developer's files +%files -n web-ui-fw-devel +/usr/share/tizen-web-ui-fw/bin +/usr/share/tizen-web-ui-fw/template + +############################### +%package -n web-ui-fw-demo-tizen-winsets +BuildArch: noarch +Summary: Tizen Web UI Framework Demo Application: tizen winset demo +%Description -n web-ui-fw-demo-tizen-winsets + Tizen Web UI Framework Demo Application: tizen winset demo +%files -n web-ui-fw-demo-tizen-winsets +/usr/share/tizen-web-ui-fw/demos/tizen-winsets + + +############################### +%changelog + +* Mon Aug 20 2012 Minkyu Kang 0.1.38 +- FIX: + - fix coment of version tag + +* Fri Aug 17 2012 Minkyu Kang 0.1.37 +- FIX : + - button: fix alignment + - listview: adjust the main text width + - virtualgrid: refactoring +- Spec changes: + - transition: support JQM 1.1.0 transitions + - scrollview: support the outer scroll + - notification: remove interval feature + +* Tue Aug 14 2012 Youmin Ha 0.1.36 +- FIX : + - checkboxRadio: Add left/right padding + - button: custom button & icon position + - virtuallist: remove 'recreate' test +- Spec changes: + - header/footer: enable/disable support + +* Fri Aug 10 2012 Minkyu Kang 0.1.35 +- FIX : + - expandablelist: modify show animation + - virtualgrid: Redesign programming interface + - popupwindow: code clean and fixed issues + - pagelayout: fix content height + - license file update + - virtuallist: Change programming interface + - datetimepicker: getting days correctly + - searchbar: set to hidden when cancel button is hide + - White theme title font tuning +- Spec changes: + - default theme tizen-gray to tizen-white + - set default page transition to none + +* Mon Aug 02 2012 Jinhyuk Jun 0.1.34 +- FIX : + - Back Button : enlarge backbutton click size for white theme +- Feature : + - Expandable List : Add refresh api +* Mon Aug 02 2012 Jinhyuk Jun 0.1.33 +- FIX : + - click event touch threshold tuning + +* Mon Aug 02 2012 Jinhyuk Jun 0.1.32 +- FIX : + - Add back button highlight effect for white theme + +* Mon Aug 01 2012 Jinhyuk Jun 0.1.31 +- FIX : + - IME checkroutine update, improve relayout on resize event + - Add highlight effect for radio button list + - Scrollview : fix condition of updatelayout event +- Feature : progressing : add show/hide api + +* Mon Jul 27 2012 Koeun Choi 0.1.30 +- FIX : virtuallist, virtualgrid: Clean up temporary jquery.template object to clear cache + add default theme option on buttonMarkup for tizen theme + [searchbar] first fix : focus/blur fixed + back button does not work when long press + scrollview: don't auto scrolling if resizing area is too large +- Feature : notification : add api to set the icon at tickernoti + demo : update the list sample demo + Support tizen default theme + +* Mon Jul 23 2012 Youmin Ha 0.1.29 +- Improvements & Bugfixes + - HOTFIX: Revert template function with jquery.template + +* Thu Jul 19 2012 Youmin Ha 0.1.28 +- Improvements & Bugfixes + - Fix #WEB-1028: memory leak on virtuallist/virtualgrid +- Spec changes + - $.tizen.loadTheme() function accepts theme name as arguement + - Scrollview supports 'updatelayout' callback + +* Tue Jul 17 2012 Youmin Ha 0.1.27 +- Improvements & Bugfixes + - Revert 'preventing long-press popup' patch, to fix backbutton to work in SocialMagazine +* Tue Jul 17 2012 Youmin Ha 0.1.26 +- Improvements & Bugfixes + - Add tizen-white theme package, to make rpm build to be finished -%package -n libweb-ui-fw +* Tue Jul 17 2012 Youmin Ha 0.1.25 +- Improvements & Bugfixes + - Set 'slide' as default page transition effect, by JQM patch -%package -n libweb-ui-fw-theme-tizen-gray +* Fri Jul 13 2012 Youmin Ha 0.1.24 +- Improvements & Bugfixes + - Fix IME show/hide algorithm + - Fix error on virtualgrid: link _set_scrollbar_size() function to the one in virtuallist -%package -n libweb-ui-fw-dev +* Wed Jul 11 2012 Youmin Ha 0.1.23 +- Improvements & Bugfixes + - Fix notification position + - Fix unit tests -%package -n libweb-ui-fw-demo-tizen-gray + Fri Jul 6 2012 Youmin Ha 0.1.22 +- Spec changes + - JQM 1.1 upgrade +- Improvements & Bugfixes + - Transform3D support on scrollview + - Page layout supports IME control + - Mapview supports pinch zoom on JQM 1.1 + - Fix wrong character on button in minified version + - Virtualgrid supports scrollbar + - Lots of bugfixes +* Fri Jun 22 2012 Youmin Ha 0.1.20 +- Spec changes + - Support 'latest' version (by symlink) for tizen-web-ui-fw.js path. + - imageslider : supports 'resize' event. + - listview : listview has 1px padding-bottom. + - loader : Change global namespace, from S to $.tizen. + - loader : Move loadCustomGlobalizeCulture() into $.tizen.util namespace. +- Improvements & Bugfixes + - Scrollview : supports 'translate3d', instead of 'translate'. + - notification : reset timer when 'show' or 'refresh' event. + - JQM patch : Fix vclick event triggered twice. +- Etc. + - Add & fix unit tests. +* Thu Jun 14 2012 Youmin Ha 0.1.19 +- Spec changes + - mapview : new widget. + - notification : add .refresh() API. + - pagecontrol : add .value([val]) API, and change an attribute name 'data-initVal' to 'data-value'. +- Improvements & Bugfixes + - Support minified CSS. + - loader : Fix & refactor 'loading globalize culture file' routine. + - JQM Patch : Calculate min-height of window in javascript code, and remove predefined min-height value from CSS. + - Many more bugfixes. +- Etc. + - Add many unit tests. + - Fix test coverage instrumentation tool to work with current source code. diff --git a/src/loader/loader.js b/src/loader/loader.js index 2bdffc3..827282a 100644 --- a/src/loader/loader.js +++ b/src/loader/loader.js @@ -1,21 +1,21 @@ /** - * loader.js : Loader for web-ui-fw - * Refactored from bootstrap.js - * - * By Youmin Ha + * loader.js * + * Youmin Ha */ ( function ($, Globalize, window, undefined) { - window.S = { + var tizen = { libFileName : "tizen-web-ui-fw(.min)?.js", frameworkData : { rootDir: '/usr/lib/tizen-web-ui-fw', version: '0.1', - theme: "default", + theme: "tizen-white", viewportScale: false, + defaultFontSize: 16, + minified: false }, util : { @@ -24,6 +24,7 @@ url: scriptPath, dataType: 'script', async: false, + crossDomain: false, success: successCB, error: function ( jqXHR, textStatus, errorThrown ) { if ( errorCB ) { @@ -40,7 +41,7 @@ } ); }, getScaleFactor: function ( ) { - var factor = window.scale, + var factor = navigator.scale, width = 0, defaultWidth = 720; @@ -68,21 +69,39 @@ '', addElementToHead : function ( elem ) { var head = document.getElementsByTagName( 'head' )[0]; - head.appendChild( elem ); - }, - load: function ( path ) { - this.addElementToHead( this.makeLink( path + this.cacheBust ) ); + if( head ) { + $( head ).prepend( elem ); + } }, makeLink : function ( href ) { - var customstylesheetLink = document.createElement( 'link' ); - customstylesheetLink.setAttribute( 'rel', 'stylesheet' ); - customstylesheetLink.setAttribute( 'href', href ); - return customstylesheetLink; + var cssLink = document.createElement( 'link' ); + cssLink.setAttribute( 'rel', 'stylesheet' ); + cssLink.setAttribute( 'href', href ); + cssLink.setAttribute( 'name', 'tizen-theme' ); + return cssLink; + }, + load: function ( path ) { + var head = document.getElementsByTagName( 'head' )[0], + cssLinks = head.getElementsByTagName( 'link' ), + idx, + l = null; + // Find css link element + for ( idx = 0; idx < cssLinks.length; idx++ ) { + if( cssLinks[idx].getAttribute( 'name' ) == "tizen-theme" ) { + l = cssLinks[idx]; + break; + } + } + if ( l ) { // Found the link element! + l.setAttribute( 'href', path ); + } else { + this.addElementToHead( this.makeLink( path ) ); + } } }, getParams: function ( ) { - /* Get data-* params from - * - * - * - *
                        - *
                      - * - */ - - -( function ( $, undefined ) { - - //Keeps track of the number of lists per page UID - //This allows support for multiple nested list in the same page - //https://github.com/jquery/jquery-mobile/issues/1617 - var listCountPerPage = {}, - TOTAL_ITEMS = 0, - last_index = 0; - - $.widget( "tizen.extendablelist", $.mobile.widget, { - options: { - theme: "s", - countTheme: "c", - headerTheme: "b", - dividerTheme: "b", - splitIcon: "arrow-r", - splitTheme: "b", - inset: false, - id: "", /* Extendable list UL elemet's ID */ - extenditems: 50, /* Number of append items */ - childSelector: " li", /* To support swipe list */ - dbtable: "", - template : "", /* Template for each list item */ - loadmore : "tmp_load_more", /* Template for "Load more" message */ - scrollview: false, - initSelector: ":jqmData(role='extendablelist')" - }, - - _stylerMouseUp: function () { - $( this ).addClass( "ui-btn-up-s" ); - $( this ).removeClass( "ui-btn-down-s" ); - }, - - _stylerMouseDown: function () { - $( this ).addClass( "ui-btn-down-s" ); - $( this ).removeClass( "ui-btn-up-s" ); - }, - - _stylerMouseOver: function () { - $( this ).toggleClass( "ui-btn-hover-s" ); - }, - - _stylerMouseOut: function () { - $( this ).toggleClass( "ui-btn-hover-s" ); - }, - - _pushData: function ( template, data ) { - var o = this.options, - i = 0, - dataTable = data, - myTemplate = $( "#" + template ), - loadMoreItems = ( o.extenditems > data.length - last_index ? data.length - last_index : o.extenditems ), - htmlData; - - for (i = 0; i < loadMoreItems; i++ ) { - htmlData = myTemplate.tmpl( dataTable[ i ] ); - $( o.id ).append( $( htmlData ).attr( 'id', 'li_' + i ) ); - last_index++; - } - - /* After push data, re-style extendable list widget */ - $( o.id ).trigger( "create" ); - }, - - _loadmore: function ( event ) { - var t = this, - o = event.data, - i = 0, - dataTable = window[ o.dbtable ], - myTemplate = $( "#" + o.template ), - loadMoreItems = ( o.extenditems > dataTable.length - last_index ? dataTable.length - last_index : o.extenditems ), - htmlData, - more_items_to_load, - num_next_load_items; - - /* Remove load more message */ - $( "#load_more_message" ).remove(); - - /* Append More Items */ - for ( i = 0; i < loadMoreItems; i++ ) { - htmlData = myTemplate.tmpl( dataTable[ last_index ] ); - $( o.id ).append( $( htmlData ).attr( 'id', 'li_' + last_index ) ); - last_index++; - } - - /* Append "Load more" message on the last of list */ - if ( TOTAL_ITEMS > last_index ) { - myTemplate = $( "#" + o.loadmore ); - more_items_to_load = TOTAL_ITEMS - last_index; - num_next_load_items = ( o.extenditems <= more_items_to_load ) ? o.extenditems : more_items_to_load; - htmlData = myTemplate.tmpl( { NUM_MORE_ITEMS : num_next_load_items } ); - - $( o.id ).append( $( htmlData ).attr( 'id', "load_more_message" ) ); - } - - $( o.id ).trigger( "create" ); - $( o.id ).extendablelist( "refresh" ); - }, - - recreate: function ( newArray ) { - var t = this, - o = this.options; - - $( o.id ).empty(); - - TOTAL_ITEMS = newArray.length; - - t._pushData( ( o.template), newArray ); - - if ( o.childSelector == " ul" ) { - $( o.id + " ul" ).swipelist(); - } - - $( o.id ).extendablelist(); - - t.refresh( true ); - }, - - _initList: function () { - var t = this, - o = this.options, - myTemplate, - more_items_to_load, - num_next_load_items, - htmlData; - - /* After AJAX loading success */ - o.dbtable = t.element.data( "dbtable" ); - - TOTAL_ITEMS = $( window[ o.dbtable ] ).size(); - - /* Make Gen list by template */ - if ( last_index <= 0 ) { - t._pushData( ( o.template ), window[ o.dbtable ] ); - - /* Append "Load more" message on the last of list */ - if ( TOTAL_ITEMS > last_index ) { - myTemplate = $( "#" + o.loadmore ); - more_items_to_load = TOTAL_ITEMS - last_index; - num_next_load_items = ( o.extenditems <= more_items_to_load) ? o.extenditems : more_items_to_load; - htmlData = myTemplate.tmpl( { NUM_MORE_ITEMS : num_next_load_items } ); - - $( o.id ).append( $( htmlData ).attr( 'id', "load_more_message" ) ); - - $( "#load_more_message" ).live( "click", t.options, t._loadmore ); - } else { - /* No more items to load */ - $( "#load_more_message" ).die(); - $( "#load_more_message" ).remove(); - } - } - - if ( o.childSelector == " ul" ) { - $( o.id + " ul" ).swipelist(); - } - - $( o.id ).trigger( "create" ); - - t.refresh( true ); - }, - - create: function () { - var o = this.options; - - /* external API for AJAX callback */ - this._create( "create" ); - }, - - _create: function ( event ) { - var t = this, - o = this.options, - $el = this.element; - - // create listview markup - t.element.addClass( function ( i, orig ) { - return orig + " ui-listview ui-extendable-list-container" + ( t.options.inset ? " ui-listview-inset ui-corner-all ui-shadow " : "" ); - }); - - o.id = "#" + $el.attr( "id" ); - - if ( $el.data( "extenditems" ) ) { - o.extenditems = parseInt( $el.data( "extenditems" ), 10 ); - } - - $( o.id ).bind( "pagehide", function (e) { - $( o.id ).empty(); - }); - - /* Scroll view */ - if ( $( ".ui-scrollview-clip" ).size() > 0) { - o.scrollview = true; - } else { - o.scrollview = false; - } - - /* After DB Load complete, Init Extendable list */ - if ( $( o.id ).hasClass( "elLoadSuccess" ) ) { - if ( !$( o.id ).hasClass( "elInitComplete" ) ) { - if ( $el.data( "template" ) ) { - o.template = $el.data( "template" ); - - /* to support swipe list,
                    • or
                        can be main node of extendable list. */ - if ( $el.data( "swipelist" ) == true ) { - o.childSelector = " ul"; - } else { - o.shildSelector = " li"; - } - } - - $( o.id ).addClass( "elInitComplete" ); - } - - t._initList(); - } - }, - - destroy : function () { - var o = this.options; - - $( o.id ).empty(); - - TOTAL_ITEMS = 0; - last_index = 0; - - $( "#load_more_message" ).die(); - }, - - _itemApply: function ( $list, item ) { - var $countli = item.find( ".ui-li-count" ); - - if ( $countli.length ) { - item.addClass( "ui-li-has-count" ); - } - - $countli.addClass( "ui-btn-up-" + ( $list.jqmData( "counttheme" ) || this.options.countTheme ) + " ui-btn-corner-all" ); - - // TODO class has to be defined in markup - item.find( "h1, h2, h3, h4, h5, h6" ).addClass( "ui-li-heading" ).end() - .find( "p, dl" ).addClass( "ui-li-desc" ).end() - .find( ">img:eq(0), .ui-link-inherit>img:eq(0)" ).addClass( "ui-li-thumb" ).each(function () { - item.addClass( $( this ).is( ".ui-li-icon" ) ? "ui-li-has-icon" : "ui-li-has-thumb" ); - }).end() - .find( ".ui-li-aside" ).each(function () { - var $this = $( this ); - $this.prependTo( $this.parent() ); //shift aside to front for css float - }); - }, - - _removeCorners: function ( li, which ) { - var top = "ui-corner-top ui-corner-tr ui-corner-tl", - bot = "ui-corner-bottom ui-corner-br ui-corner-bl"; - - li = li.add( li.find( ".ui-btn-inner, .ui-li-link-alt, .ui-li-thumb" ) ); - - if ( which === "top" ) { - li.removeClass( top ); - } else if ( which === "bottom" ) { - li.removeClass( bot ); - } else { - li.removeClass( top + " " + bot ); - } - }, - - _refreshCorners: function ( create ) { - var $li, - $visibleli, - $topli, - $bottomli; - - if ( this.options.inset ) { - $li = this.element.children( "li" ); - // at create time the li are not visible yet so we need to rely on .ui-screen-hidden - $visibleli = create ? $li.not( ".ui-screen-hidden" ) : $li.filter( ":visible" ); - - this._removeCorners( $li ); - - // Select the first visible li element - $topli = $visibleli.first() - .addClass( "ui-corner-top" ); - - $topli.add( $topli.find( ".ui-btn-inner" ) ) - .find( ".ui-li-link-alt" ) - .addClass( "ui-corner-tr" ) - .end() - .find( ".ui-li-thumb" ) - .not( ".ui-li-icon" ) - .addClass( "ui-corner-tl" ); - - // Select the last visible li element - $bottomli = $visibleli.last() - .addClass( "ui-corner-bottom" ); - - $bottomli.add( $bottomli.find( ".ui-btn-inner" ) ) - .find( ".ui-li-link-alt" ) - .addClass( "ui-corner-br" ) - .end() - .find( ".ui-li-thumb" ) - .not( ".ui-li-icon" ) - .addClass( "ui-corner-bl" ); - } - }, - - refresh: function ( create ) { - this.parentPage = this.element.closest( ".ui-page" ); - this._createSubPages(); - - var o = this.options, - $list = this.element, - self = this, - dividertheme = $list.jqmData( "dividertheme" ) || o.dividerTheme, - listsplittheme = $list.jqmData( "splittheme" ), - listspliticon = $list.jqmData( "spliticon" ), - li = $list.children( "li" ), - counter = $.support.cssPseudoElement || !$.nodeName( $list[ 0 ], "ol" ) ? 0 : 1, - item, - itemClass, - itemTheme, - a, - last, - splittheme, - countParent, - icon, - pos, - numli; - - if ( counter ) { - $list.find( ".ui-li-dec" ).remove(); - } - - for ( pos = 0, numli = li.length; pos < numli; pos++ ) { - item = li.eq( pos ); - itemClass = "ui-li"; - - // If we're creating the element, we update it regardless - if ( create || !item.hasClass( "ui-li" ) ) { - itemTheme = item.jqmData( "theme" ) || o.theme; - a = item.children( "a" ); - - if ( a.length ) { - icon = item.jqmData( "icon" ); - - item.buttonMarkup({ - wrapperEls: "div", - shadow: false, - corners: false, - iconpos: "right", - /* icon: a.length > 1 || icon === false ? false : icon || "arrow-r",*/ - icon: false, /* Remove unnecessary arrow icon */ - theme: itemTheme - }); - - if ( ( icon != false ) && ( a.length == 1 ) ) { - item.addClass( "ui-li-has-arrow" ); - } - - a.first().addClass( "ui-link-inherit" ); - - if ( a.length > 1 ) { - itemClass += " ui-li-has-alt"; - - last = a.last(); - splittheme = listsplittheme || last.jqmData( "theme" ) || o.splitTheme; - - last.appendTo(item) - .attr( "title", last.getEncodedText() ) - .addClass( "ui-li-link-alt" ) - .empty() - .buttonMarkup({ - shadow: false, - corners: false, - theme: itemTheme, - icon: false, - iconpos: false - }) - .find( ".ui-btn-inner" ) - .append( - $( "" ).buttonMarkup( { - shadow : true, - corners : true, - theme : splittheme, - iconpos : "notext", - icon : listspliticon || last.jqmData( "icon" ) || o.splitIcon - }) - ); - } - } else if ( item.jqmData( "role" ) === "list-divider" ) { - - itemClass += " ui-li-divider ui-btn ui-bar-" + dividertheme; - item.attr( "role", "heading" ); - - //reset counter when a divider heading is encountered - if ( counter ) { - counter = 1; - } - - } else { - itemClass += " ui-li-static ui-body-" + itemTheme; - } - } - - if ( counter && itemClass.indexOf( "ui-li-divider" ) < 0 ) { - countParent = item.is( ".ui-li-static:first" ) ? item : item.find( ".ui-link-inherit" ); - - countParent.addClass( "ui-li-jsnumbering" ) - .prepend( "" + (counter++) + ". " ); - } - - item.add( item.children( ".ui-btn-inner" ) ).addClass( itemClass ); - - self._itemApply( $list, item ); - } - - this._refreshCorners( create ); - }, - - //create a string for ID/subpage url creation - _idStringEscape: function ( str ) { - return str.replace(/\W/g , "-"); - - }, - - _createSubPages: function () { - var parentList = this.element, - parentPage = parentList.closest( ".ui-page" ), - parentUrl = parentPage.jqmData( "url" ), - parentId = parentUrl || parentPage[ 0 ][ $.expando ], - parentListId = parentList.attr( "id" ), - o = this.options, - dns = "data-" + $.mobile.ns, - self = this, - persistentFooterID = parentPage.find( ":jqmData(role='footer')" ).jqmData( "id" ), - hasSubPages, - newRemove; - - if ( typeof listCountPerPage[ parentId ] === "undefined" ) { - listCountPerPage[ parentId ] = -1; - } - - parentListId = parentListId || ++listCountPerPage[ parentId ]; - - $( parentList.find( "li>ul, li>ol" ).toArray().reverse() ).each(function ( i ) { - var self = this, - list = $( this ), - listId = list.attr( "id" ) || parentListId + "-" + i, - parent = list.parent(), - nodeEls, - title = nodeEls.first().getEncodedText(),//url limits to first 30 chars of text - id = ( parentUrl || "" ) + "&" + $.mobile.subPageUrlKey + "=" + listId, - theme = list.jqmData( "theme" ) || o.theme, - countTheme = list.jqmData( "counttheme" ) || parentList.jqmData( "counttheme" ) || o.countTheme, - newPage, - anchor; - - nodeEls = $( list.prevAll().toArray().reverse() ); - nodeEls = nodeEls.length ? nodeEls : $( "" + $.trim(parent.contents()[ 0 ].nodeValue) + "" ); - - //define hasSubPages for use in later removal - hasSubPages = true; - - newPage = list.detach() - .wrap( "
                        " ) - .parent() - .before( "
                        " + title + "
                        " ) - .after( persistentFooterID ? $( "
                        " ) : "" ) - .parent() - .appendTo( $.mobile.pageContainer ); - - newPage.page(); - - anchor = parent.find('a:first'); - - if ( !anchor.length ) { - anchor = $( "" ).html( nodeEls || title ).prependTo( parent.empty() ); - } - - anchor.attr( "href", "#" + id ); - - }).extendablelist(); - - // on pagehide, remove any nested pages along with the parent page, as long as they aren't active - // and aren't embedded - if ( hasSubPages && - parentPage.is( ":jqmData(external-page='true')" ) && - parentPage.data( "page" ).options.domCache === false ) { - - newRemove = function ( e, ui ) { - var nextPage = ui.nextPage, npURL; - - if ( ui.nextPage ) { - npURL = nextPage.jqmData( "url" ); - if ( npURL.indexOf( parentUrl + "&" + $.mobile.subPageUrlKey ) !== 0 ) { - self.childPages().remove(); - parentPage.remove(); - } - } - }; - - // unbind the original page remove and replace with our specialized version - parentPage - .unbind( "pagehide.remove" ) - .bind( "pagehide.remove", newRemove); - } - }, - - // TODO sort out a better way to track sub pages of the extendable listview this is brittle - childPages: function () { - var parentUrl = this.parentPage.jqmData( "url" ); - - return $( ":jqmData(url^='" + parentUrl + "&" + $.mobile.subPageUrlKey + "')" ); - } - }); - - //auto self-init widgets - $( document ).bind( "pagecreate create", function ( e ) { - $( $.tizen.extendablelist.prototype.options.initSelector, e.target ).extendablelist(); - }); - -}( jQuery )); +/* *************************************************************************** + * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. + * + * 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. + * *************************************************************************** + * + * Author: Wongi Lee +*/ + +/** + * Extendable List Widget for unlimited data. + * To support more then 1,000 items, special list widget developed. + * Fast initialize and append some element into the DOM tree repeatedly. + * DB connection and works like DB cursor. + * + * HTML Attributes: + * + * data-role: extendablelist + * data-template : jQuery.template ID that populate into extendable list. A button : a
                        element with "data-role : button" should be included on data-template. + * data-dbtable : DB Table name. It used as window[DB NAME]. Loaded data should be converted as window object. + * data-extenditems : Number of elements to extend at once. + * + * ID :
                          element that has "data-role=extendablelist" must have ID attribute. + * Class :
                            element that has "data-role=extendablelist" should have "vlLoadSuccess" class to guaranty DB loading is completed. + * tmp_load_more : Template ID for "load more" message and button. + * + * + *APIs: + * + * create ( void ) + * : API to call _create method. API for AJAX or DB loading callback. + * + * recreate ( Array ) + * : Update extendable list with new data array. For example, update with search result. + * + *Examples: + * + * + * + * + * + *
                              + *
                            + * + */ + + +( function ( $, undefined ) { + + //Keeps track of the number of lists per page UID + //This allows support for multiple nested list in the same page + //https://github.com/jquery/jquery-mobile/issues/1617 + var listCountPerPage = {}, + TOTAL_ITEMS = 0, + last_index = 0; + + $.widget( "tizen.extendablelist", $.mobile.widget, { + options: { + theme: "s", + countTheme: "c", + headerTheme: "b", + dividerTheme: "b", + splitIcon: "arrow-r", + splitTheme: "b", + inset: false, + id: "", /* Extendable list UL elemet's ID */ + extenditems: 50, /* Number of append items */ + childSelector: " li", /* To support swipe list */ + dbtable: "", + template : "", /* Template for each list item */ + loadmore : "tmp_load_more", /* Template for "Load more" message */ + scrollview: false, + initSelector: ":jqmData(role='extendablelist')" + }, + + _stylerMouseUp: function () { + $( this ).addClass( "ui-btn-up-s" ); + $( this ).removeClass( "ui-btn-down-s" ); + }, + + _stylerMouseDown: function () { + $( this ).addClass( "ui-btn-down-s" ); + $( this ).removeClass( "ui-btn-up-s" ); + }, + + _stylerMouseOver: function () { + $( this ).toggleClass( "ui-btn-hover-s" ); + }, + + _stylerMouseOut: function () { + $( this ).toggleClass( "ui-btn-hover-s" ); + $( this ).addClass( "ui-btn-up-s" ); + $( this ).removeClass( "ui-btn-down-s" ); + }, + + _pushData: function ( template, data ) { + var o = this.options, + t = this, + i = 0, + dataTable = data, + myTemplate = $( "#" + template ), + loadMoreItems = ( o.extenditems > data.length - last_index ? data.length - last_index : o.extenditems ), + htmlData; + + for (i = 0; i < loadMoreItems; i++ ) { + htmlData = myTemplate.tmpl( dataTable[ i ] ); + $( o.id ).append( $( htmlData ).attr( 'id', 'li_' + i ) ); + + /* Add style */ + $( o.id + ">" + o.childSelector ) + .addClass( "ui-btn-up-s" ) + .bind( "mouseup", t._stylerMouseUp ) + .bind( "mousedown", t._stylerMouseDown ) + .bind( "mouseover", t._stylerMouseOver ) + .bind( "mouseout", t._stylerMouseOut ); + + last_index++; + } + + /* After push data, re-style extendable list widget */ + $( o.id ).trigger( "create" ); + }, + + _loadmore: function ( event ) { + var t = this, + o = event.data, + i = 0, + dataTable = window[ o.dbtable ], + myTemplate = $( "#" + o.template ), + loadMoreItems = ( o.extenditems > dataTable.length - last_index ? dataTable.length - last_index : o.extenditems ), + htmlData, + more_items_to_load, + num_next_load_items; + + /* Remove load more message */ + $( "#load_more_message" ).remove(); + + /* Append More Items */ + for ( i = 0; i < loadMoreItems; i++ ) { + htmlData = myTemplate.tmpl( dataTable[ last_index ] ); + $( o.id ).append( $( htmlData ).attr( 'id', 'li_' + last_index ) ); + last_index++; + } + + /* Append "Load more" message on the last of list */ + if ( TOTAL_ITEMS > last_index ) { + myTemplate = $( "#" + o.loadmore ); + more_items_to_load = TOTAL_ITEMS - last_index; + num_next_load_items = ( o.extenditems <= more_items_to_load ) ? o.extenditems : more_items_to_load; + htmlData = myTemplate.tmpl( { NUM_MORE_ITEMS : num_next_load_items } ); + + $( o.id ).append( $( htmlData ).attr( 'id', "load_more_message" ) ); + } + + $( o.id ).trigger( "create" ); + $( o.id ).extendablelist( "refresh" ); + }, + + recreate: function ( newArray ) { + var t = this, + o = this.options, + myTemplate, + more_items_to_load, + num_next_load_items, + htmlData; + + $( o.id ).empty(); + + last_index = 0; + TOTAL_ITEMS = newArray.length; + + t._pushData( ( o.template), newArray ); + + /* Append "Load more" message on the last of list */ + if ( TOTAL_ITEMS > last_index ) { + myTemplate = $( "#" + o.loadmore ); + more_items_to_load = TOTAL_ITEMS - last_index; + num_next_load_items = ( o.extenditems <= more_items_to_load) ? o.extenditems : more_items_to_load; + htmlData = myTemplate.tmpl( { NUM_MORE_ITEMS : num_next_load_items } ); + + $( o.id ).append( $( htmlData ).attr( 'id', "load_more_message" ) ); + + $( "#load_more_message" ).live( "click", t.options, t._loadmore ); + } else { + /* No more items to load */ + $( "#load_more_message" ).die(); + $( "#load_more_message" ).remove(); + } + + if ( o.childSelector == " ul" ) { + $( o.id + " ul" ).swipelist(); + } + + $( o.id ).extendablelist(); + + t.refresh( true ); + }, + + _initList: function () { + var t = this, + o = this.options, + myTemplate, + more_items_to_load, + num_next_load_items, + htmlData; + + /* After AJAX loading success */ + o.dbtable = t.element.data( "dbtable" ); + + TOTAL_ITEMS = $( window[ o.dbtable ] ).size(); + + /* Make Gen list by template */ + if ( last_index <= 0 ) { + t._pushData( ( o.template ), window[ o.dbtable ] ); + + /* Append "Load more" message on the last of list */ + if ( TOTAL_ITEMS > last_index ) { + myTemplate = $( "#" + o.loadmore ); + more_items_to_load = TOTAL_ITEMS - last_index; + num_next_load_items = ( o.extenditems <= more_items_to_load) ? o.extenditems : more_items_to_load; + htmlData = myTemplate.tmpl( { NUM_MORE_ITEMS : num_next_load_items } ); + + $( o.id ).append( $( htmlData ).attr( 'id', "load_more_message" ) ); + + $( "#load_more_message" ).live( "click", t.options, t._loadmore ); + } else { + /* No more items to load */ + $( "#load_more_message" ).die(); + $( "#load_more_message" ).remove(); + } + } + + if ( o.childSelector == " ul" ) { + $( o.id + " ul" ).swipelist(); + } + + $( o.id ).trigger( "create" ); + + t.refresh( true ); + }, + + create: function () { + var o = this.options; + + /* external API for AJAX callback */ + this._create( "create" ); + }, + + _create: function ( event ) { + var t = this, + o = this.options, + $el = this.element; + + // create listview markup + t.element.addClass( function ( i, orig ) { + return orig + " ui-listview ui-extendable-list-container" + ( t.options.inset ? " ui-listview-inset ui-corner-all ui-shadow " : "" ); + }); + + o.id = "#" + $el.attr( "id" ); + + if ( $el.data( "extenditems" ) ) { + o.extenditems = parseInt( $el.data( "extenditems" ), 10 ); + } + + $( o.id ).bind( "pagehide", function (e) { + $( o.id ).empty(); + }); + + /* Scroll view */ + if ( $( ".ui-scrollview-clip" ).size() > 0) { + o.scrollview = true; + } else { + o.scrollview = false; + } + + /* After DB Load complete, Init Extendable list */ + if ( $( o.id ).hasClass( "elLoadSuccess" ) ) { + if ( !$( o.id ).hasClass( "elInitComplete" ) ) { + if ( $el.data( "template" ) ) { + o.template = $el.data( "template" ); + + /* to support swipe list,
                          • or
                              can be main node of extendable list. */ + if ( $el.data( "swipelist" ) == true ) { + o.childSelector = " ul"; + } else { + o.shildSelector = " li"; + } + } + + $( o.id ).addClass( "elInitComplete" ); + } + + t._initList(); + } + }, + + destroy : function () { + var o = this.options; + + $( o.id ).empty(); + + TOTAL_ITEMS = 0; + last_index = 0; + + $( "#load_more_message" ).die(); + }, + + _itemApply: function ( $list, item ) { + var $countli = item.find( ".ui-li-count" ); + + if ( $countli.length ) { + item.addClass( "ui-li-has-count" ); + } + + $countli.addClass( "ui-btn-up-" + ( $list.jqmData( "counttheme" ) || this.options.countTheme ) + " ui-btn-corner-all" ); + + // TODO class has to be defined in markup + item.find( "h1, h2, h3, h4, h5, h6" ).addClass( "ui-li-heading" ).end() + .find( "p, dl" ).addClass( "ui-li-desc" ).end() + .find( ">img:eq(0), .ui-link-inherit>img:eq(0)" ).addClass( "ui-li-thumb" ).each(function () { + item.addClass( $( this ).is( ".ui-li-icon" ) ? "ui-li-has-icon" : "ui-li-has-thumb" ); + }).end() + .find( ".ui-li-aside" ).each(function () { + var $this = $( this ); + $this.prependTo( $this.parent() ); //shift aside to front for css float + }); + }, + + _removeCorners: function ( li, which ) { + var top = "ui-corner-top ui-corner-tr ui-corner-tl", + bot = "ui-corner-bottom ui-corner-br ui-corner-bl"; + + li = li.add( li.find( ".ui-btn-inner, .ui-li-link-alt, .ui-li-thumb" ) ); + + if ( which === "top" ) { + li.removeClass( top ); + } else if ( which === "bottom" ) { + li.removeClass( bot ); + } else { + li.removeClass( top + " " + bot ); + } + }, + + _refreshCorners: function ( create ) { + var $li, + $visibleli, + $topli, + $bottomli; + + if ( this.options.inset ) { + $li = this.element.children( "li" ); + // at create time the li are not visible yet so we need to rely on .ui-screen-hidden + $visibleli = create ? $li.not( ".ui-screen-hidden" ) : $li.filter( ":visible" ); + + this._removeCorners( $li ); + + // Select the first visible li element + $topli = $visibleli.first() + .addClass( "ui-corner-top" ); + + $topli.add( $topli.find( ".ui-btn-inner" ) ) + .find( ".ui-li-link-alt" ) + .addClass( "ui-corner-tr" ) + .end() + .find( ".ui-li-thumb" ) + .not( ".ui-li-icon" ) + .addClass( "ui-corner-tl" ); + + // Select the last visible li element + $bottomli = $visibleli.last() + .addClass( "ui-corner-bottom" ); + + $bottomli.add( $bottomli.find( ".ui-btn-inner" ) ) + .find( ".ui-li-link-alt" ) + .addClass( "ui-corner-br" ) + .end() + .find( ".ui-li-thumb" ) + .not( ".ui-li-icon" ) + .addClass( "ui-corner-bl" ); + } + }, + + refresh: function ( create ) { + this.parentPage = this.element.closest( ".ui-page" ); + this._createSubPages(); + + var o = this.options, + $list = this.element, + self = this, + dividertheme = $list.jqmData( "dividertheme" ) || o.dividerTheme, + listsplittheme = $list.jqmData( "splittheme" ), + listspliticon = $list.jqmData( "spliticon" ), + li = $list.children( "li" ), + counter = $.support.cssPseudoElement || !$.nodeName( $list[ 0 ], "ol" ) ? 0 : 1, + item, + itemClass, + itemTheme, + a, + last, + splittheme, + countParent, + icon, + pos, + numli; + + if ( counter ) { + $list.find( ".ui-li-dec" ).remove(); + } + + for ( pos = 0, numli = li.length; pos < numli; pos++ ) { + item = li.eq( pos ); + itemClass = "ui-li"; + + // If we're creating the element, we update it regardless + if ( create || !item.hasClass( "ui-li" ) ) { + itemTheme = item.jqmData( "theme" ) || o.theme; + a = item.children( "a" ); + + if ( a.length ) { + icon = item.jqmData( "icon" ); + + item.buttonMarkup({ + wrapperEls: "div", + shadow: false, + corners: false, + iconpos: "right", + /* icon: a.length > 1 || icon === false ? false : icon || "arrow-r",*/ + icon: false, /* Remove unnecessary arrow icon */ + theme: itemTheme + }); + + if ( ( icon != false ) && ( a.length == 1 ) ) { + item.addClass( "ui-li-has-arrow" ); + } + + a.first().addClass( "ui-link-inherit" ); + + if ( a.length > 1 ) { + itemClass += " ui-li-has-alt"; + + last = a.last(); + splittheme = listsplittheme || last.jqmData( "theme" ) || o.splitTheme; + + last.appendTo(item) + .attr( "title", last.getEncodedText() ) + .addClass( "ui-li-link-alt" ) + .empty() + .buttonMarkup({ + shadow: false, + corners: false, + theme: itemTheme, + icon: false, + iconpos: false + }) + .find( ".ui-btn-inner" ) + .append( + $( "" ).buttonMarkup( { + shadow : true, + corners : true, + theme : splittheme, + iconpos : "notext", + icon : listspliticon || last.jqmData( "icon" ) || o.splitIcon + }) + ); + } + } else if ( item.jqmData( "role" ) === "list-divider" ) { + + itemClass += " ui-li-divider ui-btn ui-bar-" + dividertheme; + item.attr( "role", "heading" ); + + //reset counter when a divider heading is encountered + if ( counter ) { + counter = 1; + } + + } else { + itemClass += " ui-li-static ui-body-" + itemTheme; + } + } + + if ( counter && itemClass.indexOf( "ui-li-divider" ) < 0 ) { + countParent = item.is( ".ui-li-static:first" ) ? item : item.find( ".ui-link-inherit" ); + + countParent.addClass( "ui-li-jsnumbering" ) + .prepend( "" + (counter++) + ". " ); + } + + item.add( item.children( ".ui-btn-inner" ) ).addClass( itemClass ); + + self._itemApply( $list, item ); + } + + this._refreshCorners( create ); + }, + + //create a string for ID/subpage url creation + _idStringEscape: function ( str ) { + return str.replace(/\W/g , "-"); + + }, + + _createSubPages: function () { + var parentList = this.element, + parentPage = parentList.closest( ".ui-page" ), + parentUrl = parentPage.jqmData( "url" ), + parentId = parentUrl || parentPage[ 0 ][ $.expando ], + parentListId = parentList.attr( "id" ), + o = this.options, + dns = "data-" + $.mobile.ns, + self = this, + persistentFooterID = parentPage.find( ":jqmData(role='footer')" ).jqmData( "id" ), + hasSubPages, + newRemove; + + if ( typeof listCountPerPage[ parentId ] === "undefined" ) { + listCountPerPage[ parentId ] = -1; + } + + parentListId = parentListId || ++listCountPerPage[ parentId ]; + + $( parentList.find( "li>ul, li>ol" ).toArray().reverse() ).each(function ( i ) { + var self = this, + list = $( this ), + listId = list.attr( "id" ) || parentListId + "-" + i, + parent = list.parent(), + nodeEls, + title = nodeEls.first().getEncodedText(),//url limits to first 30 chars of text + id = ( parentUrl || "" ) + "&" + $.mobile.subPageUrlKey + "=" + listId, + theme = list.jqmData( "theme" ) || o.theme, + countTheme = list.jqmData( "counttheme" ) || parentList.jqmData( "counttheme" ) || o.countTheme, + newPage, + anchor; + + nodeEls = $( list.prevAll().toArray().reverse() ); + nodeEls = nodeEls.length ? nodeEls : $( "" + $.trim(parent.contents()[ 0 ].nodeValue) + "" ); + + //define hasSubPages for use in later removal + hasSubPages = true; + + newPage = list.detach() + .wrap( "
                              " ) + .parent() + .before( "
                              " + title + "
                              " ) + .after( persistentFooterID ? $( "
                              " ) : "" ) + .parent() + .appendTo( $.mobile.pageContainer ); + + newPage.page(); + + anchor = parent.find('a:first'); + + if ( !anchor.length ) { + anchor = $( "" ).html( nodeEls || title ).prependTo( parent.empty() ); + } + + anchor.attr( "href", "#" + id ); + + }).extendablelist(); + + // on pagehide, remove any nested pages along with the parent page, as long as they aren't active + // and aren't embedded + if ( hasSubPages && + parentPage.is( ":jqmData(external-page='true')" ) && + parentPage.data( "page" ).options.domCache === false ) { + + newRemove = function ( e, ui ) { + var nextPage = ui.nextPage, npURL; + + if ( ui.nextPage ) { + npURL = nextPage.jqmData( "url" ); + if ( npURL.indexOf( parentUrl + "&" + $.mobile.subPageUrlKey ) !== 0 ) { + self.childPages().remove(); + parentPage.remove(); + } + } + }; + + // unbind the original page remove and replace with our specialized version + parentPage + .unbind( "pagehide.remove" ) + .bind( "pagehide.remove", newRemove); + } + }, + + // TODO sort out a better way to track sub pages of the extendable listview this is brittle + childPages: function () { + var parentUrl = this.parentPage.jqmData( "url" ); + + return $( ":jqmData(url^='" + parentUrl + "&" + $.mobile.subPageUrlKey + "')" ); + } + }); + + //auto self-init widgets + $( document ).bind( "pagecreate create", function ( e ) { + $( $.tizen.extendablelist.prototype.options.initSelector, e.target ).extendablelist(); + }); + +}( jQuery )); diff --git a/src/widgets/handler/js/jquery.tizen.scrollview.handler.js b/src/widgets/handler/js/jquery.tizen.scrollview.handler.js index 4e4ae4a..fc93e9a 100755 --- a/src/widgets/handler/js/jquery.tizen.scrollview.handler.js +++ b/src/widgets/handler/js/jquery.tizen.scrollview.handler.js @@ -24,9 +24,11 @@ */ /** - * 'Handler' is widget that is working in conjunction with 'scrollview'. - * 'Handler' is supporting 'scroll event( up/down )' and is indicating scroll - * position. + * ‘Handler’ is a widget helping a user to scroll a window or panel. + * It is different from the scrollview feature in that the handler has a fixed size + * and disappears when a scroll size is smaller than a parent window's size. + * If the handler widget is activated, a scroll bar on the screen will be deactivated. + * The handler widget supports scrolling up and down and indicates the position of the scrolled window. * * HTML Attributes: * @@ -36,10 +38,11 @@ * * APIs: * - * enableHandler ( void ) - * : Get a status that whether enable. * enableHandler ( boolean ) - * : Set a status that whether enable. + * : Get or set the use of Handler. + * If the value is ‘true’, it will be run Handler. + * If the value is ‘false’, it will be not run Handler. + * If no value is specified, will act as a getter. * * Events: * diff --git a/src/widgets/hsvpicker/proto-html/hsvpicker.prototype.html b/src/widgets/hsvpicker/proto-html/hsvpicker.prototype.html index daa9c15..4a527ae 100755 --- a/src/widgets/hsvpicker/proto-html/hsvpicker.prototype.html +++ b/src/widgets/hsvpicker/proto-html/hsvpicker.prototype.html @@ -1,7 +1,7 @@
                              - +
                              @@ -10,12 +10,12 @@
                              - +
                              - +
                              @@ -24,12 +24,12 @@
                              - +
                              - +
                              @@ -38,7 +38,7 @@
                              - +
                              diff --git a/src/widgets/imageslider/js/jquery.mobile.tizen.imageslider.js b/src/widgets/imageslider/js/jquery.mobile.tizen.imageslider.js index c65f942..757d060 100755 --- a/src/widgets/imageslider/js/jquery.mobile.tizen.imageslider.js +++ b/src/widgets/imageslider/js/jquery.mobile.tizen.imageslider.js @@ -24,19 +24,19 @@ */ /* - * Notification widget + * Imageslider widget * * HTML Attributes * * data-role: set to 'imageslider' - * data-start-index: start index + * data-index: start index * data-vertical-align: set to top or middle or bottom. * * APIs * - * add(image_file): add the image (parameter: url of iamge) - * del(image_index): delete the image (parameter: index of image) - * refresh(): refresh the widget, should be called after add or del. + * add(file): add the image (parameter: url of iamge) + * delete(index): delete the image (parameter: index of image) + * refresh(index): refresh the widget, should be called after add or del. (parameter: start index) * * Events * @@ -44,7 +44,7 @@ * * Example * - *
                              + *
                              * * * @@ -60,7 +60,7 @@ * }); * * $('#imageslider-del').bind('vmouseup', function ( e ) { - * $('#imageslider').imageslider('del'); + * $('#imageslider').imageslider('delete'); * }); * */ @@ -68,7 +68,8 @@ (function ( $, window, undefined ) { $.widget( "tizen.imageslider", $.mobile.widget, { options: { - photoFlicking: false + flicking: false, + duration: 500 }, dragging: false, @@ -86,36 +87,35 @@ align_type: null, direction: 1, container: null, - interval: null, + loader: [], - _resize: function ( obj ) { - var width, - height, - margin = 40, + _resize: function ( index ) { + var img = this.images[index], + width = this.images[index].width(), + height = this.images[index].height(), + margin = 0, ratio, img_max_width = this.max_width - margin, img_max_height = this.max_height - margin; - height = obj.height(); - width = obj.width(); - ratio = height / width; if ( width > img_max_width ) { - obj.width( img_max_width ); - obj.height( img_max_width * ratio ); + img.width( img_max_width ); + img.height( img_max_width * ratio ); } - height = obj.height(); + height = img.height(); if ( height > img_max_height ) { - obj.height( img_max_height ); - obj.width( img_max_height / ratio ); + img.height( img_max_height ); + img.width( img_max_height / ratio ); } }, - _align: function ( obj, img ) { - var img_top = 0; + _align: function ( index, obj ) { + var img = this.images[index], + img_top = 0; if ( !obj.length ) { return; @@ -132,36 +132,56 @@ obj.css( 'top', img_top + 'px' ); }, - _detach: function ( image_index, obj ) { + _attach: function ( index, obj ) { + var self = this, + processing = function () { + self._resize( index ); + self._align( index, obj ); + }; + if ( !obj.length ) { return; } - if ( image_index < 0 ) { + if ( index < 0 ) { return; } - if ( image_index >= this.images.length ) { + if ( index >= this.images.length ) { return; } - this.images[image_index].detach(); - obj.css( "display", "none" ); + obj.css( "display", "block" ); + obj.append( this.images[index] ); + + if ( this.images[index].height() ) { + processing(); + } else { + this.loader[index] = setInterval( function () { + if ( !self.images[index].height() ) { + return; + } + + processing(); + clearInterval( self.loader[index] ); + }, 10); + } }, - _attach: function ( image_index, obj ) { + _detach: function ( index, obj ) { if ( !obj.length ) { return; } - if ( image_index < 0 ) { + if ( index < 0 ) { return; } - if ( image_index >= this.images.length ) { + if ( index >= this.images.length ) { return; } - obj.css( "display", "block" ); - obj.append( this.images[image_index] ); - this._resize( this.images[image_index] ); - this._align( obj, this.images[image_index] ); + obj.css( "display", "none" ); + this.images[index].removeAttr("style"); + this.images[index].detach(); + + clearInterval( this.loader[index] ); }, _drag: function ( _x ) { @@ -172,7 +192,7 @@ return; } - if ( this.options.photoFlicking === false ) { + if ( this.options.flicking === false ) { delta = this.org_x - _x; // first image @@ -189,10 +209,10 @@ this.cur_img.css( 'left', coord_x + 'px' ); if ( this.next_img.length ) { - this.next_img.css( 'left', coord_x + this.max_width + 'px' ); + this.next_img.css( 'left', coord_x + this.window_width + 'px' ); } if ( this.prev_img.length ) { - this.prev_img.css( 'left', coord_x - this.max_width + 'px' ); + this.prev_img.css( 'left', coord_x - this.window_width + 'px' ); } }, @@ -235,7 +255,7 @@ this.index++; if ( this.next_img.length ) { - this.next_img.css( 'left', this.max_width + 'px' ); + this.next_img.css( 'left', this.window_width + 'px' ); this._attach( this.index + 1, this.next_img ); } @@ -252,7 +272,7 @@ this.index--; if ( this.prev_img.length ) { - this.prev_img.css( 'left', -this.max_width + 'px' ); + this.prev_img.css( 'left', -this.window_width + 'px' ); this._attach( this.index - 1, this.prev_img ); } @@ -260,22 +280,21 @@ } } - sec = 500; + sec = this.options.duration; self = this; this.moving = true; - this.interval = setInterval( function () { + setTimeout( function () { self.moving = false; - clearInterval( self.interval ); }, sec - 50 ); this.cur_img.animate( { left: 0 }, sec ); if ( this.next_img.length ) { - this.next_img.animate( { left: this.max_width }, sec ); + this.next_img.animate( { left: this.window_width }, sec ); } if ( this.prev_img.length ) { - this.prev_img.animate( { left: -this.max_width }, sec ); + this.prev_img.animate( { left: -this.window_width }, sec ); } }, @@ -345,6 +364,12 @@ }, _show: function () { + /* resizing */ + this.window_width = $( window ).width(); + this.max_width = this._get_width(); + this.max_height = this._get_height(); + this.container.css( 'height', this.max_height ); + this.cur_img = $( 'div' ).find( '.ui-imageslider-bg:eq(' + this.index + ')' ); this.prev_img = this.cur_img.prev(); this.next_img = this.cur_img.next(); @@ -354,13 +379,13 @@ this._attach( this.index + 1, this.next_img ); if ( this.prev_img.length ) { - this.prev_img.css( 'left', -this.max_width + 'px' ); + this.prev_img.css( 'left', -this.window_width + 'px' ); } this.cur_img.css( 'left', '0px' ); if ( this.next_img.length ) { - this.next_img.css( 'left', this.max_width + 'px' ); + this.next_img.css( 'left', this.window_width + 'px' ); } }, @@ -380,22 +405,32 @@ this._del_event(); }, + _get_width: function () { + var $page = $( this.element ).parentsUntil( 'ui-page' ), + $content = $page.children( '.ui-content' ), + padding = parseFloat( $content.css( 'padding-left' ) ) + + parseFloat( $content.css( 'padding-right' ) ), + content_w = $( window ).width() - padding; + + return content_w; + }, + _get_height: function () { - var $page = $( '.ui-page' ), + var $page = $( this.element ).parentsUntil( 'ui-page' ), $content = $page.children( '.ui-content' ), - $header = $page.children( '.ui-header' ), - $footer = $page.children( '.ui-footer' ), - header_h = $header.outerHeight(), - footer_h = $footer.outerHeight(), - padding = parseFloat( $content.css( 'padding-top' ) ) + parseFloat( $content.css( 'padding-bottom' ) ), - content_h = $( window ).height() - header_h - footer_h - padding * 2; + header_h = $page.children( '.ui-header' ).outerHeight() || 0, + footer_h = $page.children( '.ui-footer' ).outerHeight() || 0, + padding = parseFloat( $content.css( 'padding-top' ) ) + + parseFloat( $content.css( 'padding-bottom' ) ), + content_h = $( window ).height() - header_h - footer_h - padding; return content_h; }, _create: function () { var temp_img, - start_index, + self = this, + index, i = 0; $( this.element ).wrapInner( '
                              ' ); @@ -403,10 +438,6 @@ this.container = $( this.element ).find('.ui-imageslider'); - this.max_width = $( window ).width(); - this.max_height = this._get_height(); - this.container.css( 'height', this.max_height ); - temp_img = $( 'div' ).find( '.ui-imageslider-bg:first' ); while ( temp_img.length ) { @@ -419,20 +450,24 @@ this.images[i].detach(); } - start_index = parseInt( $( this.element ).attr( 'data-start-index' ), 10 ); - if ( start_index === undefined ) { - start_index = 0; + index = parseInt( $( this.element ).jqmData( 'index' ), 10 ); + if ( !index ) { + index = 0; } - if ( start_index < 0 ) { - start_index = 0; + if ( index < 0 ) { + index = 0; } - if ( start_index >= this.images.length ) { - start_index = this.images.length - 1; + if ( index >= this.images.length ) { + index = this.images.length - 1; } - this.index = start_index; + this.index = index; + + this.align_type = $( this.element ).jqmData( 'vertical-align' ); - this.align_type = $( this.element ).attr( 'data-vertical-align' ); + $( window ).bind( 'resize', function () { + self.refresh(); + }); }, _update: function () { @@ -472,22 +507,22 @@ this._show(); }, - add: function ( image_file ) { - this.images_hold.push( image_file ); + add: function ( file ) { + this.images_hold.push( file ); }, - del: function ( image_index ) { + delete: function ( index ) { var temp_img; - if ( image_index === undefined ) { - image_index = this.index; + if ( index === undefined ) { + index = this.index; } - if ( image_index < 0 || image_index >= this.images.length ) { + if ( index < 0 || index >= this.images.length ) { return; } - if ( image_index == this.index ) { + if ( index == this.index ) { temp_img = this.cur_img; if ( this.index == 0 ) { @@ -500,43 +535,43 @@ this.cur_img = this.prev_img; this.prev_img = this.prev_img.prev(); if ( this.prev_img.length ) { - this.prev_img.css( 'left', -this.max_width ); - this._attach( image_index - 2, this.prev_img ); + this.prev_img.css( 'left', -this.window_width ); + this._attach( index - 2, this.prev_img ); } this.index--; } else { this.cur_img = this.next_img; this.next_img = this.next_img.next(); if ( this.next_img.length ) { - this.next_img.css( 'left', this.max_width ); - this._attach( image_index + 2, this.next_img ); + this.next_img.css( 'left', this.window_width ); + this._attach( index + 2, this.next_img ); } } - this.cur_img.animate( { left: 0 }, 500 ); + this.cur_img.animate( { left: 0 }, this.options.duration ); - } else if ( image_index == this.index - 1 ) { + } else if ( index == this.index - 1 ) { temp_img = this.prev_img; this.prev_img = this.prev_img.prev(); if ( this.prev_img.length ) { - this.prev_img.css( 'left', -this.max_width ); - this._attach( image_index - 1, this.prev_img ); + this.prev_img.css( 'left', -this.window_width ); + this._attach( index - 1, this.prev_img ); } this.index--; - } else if ( image_index == this.index + 1 ) { + } else if ( index == this.index + 1 ) { temp_img = this.next_img; this.next_img = this.next_img.next(); if ( this.next_img.length ) { - this.next_img.css( 'left', this.max_width ); - this._attach( image_index + 1, this.next_img ); + this.next_img.css( 'left', this.window_width ); + this._attach( index + 1, this.next_img ); } } else { - temp_img = $( 'div' ).find( '.ui-imageslider-bg:eq(' + image_index + ')' ); + temp_img = $( 'div' ).find( '.ui-imageslider-bg:eq(' + index + ')' ); } - this.images.splice( image_index, 1 ); + this.images.splice( index, 1 ); temp_img.detach(); } }); /* End of widget */ diff --git a/src/widgets/multibuttonentry/js/jquery.mobile.tizen.multibuttonentry.js b/src/widgets/multibuttonentry/js/jquery.mobile.tizen.multibuttonentry.js index 1447f39..fa744f7 100755 --- a/src/widgets/multibuttonentry/js/jquery.mobile.tizen.multibuttonentry.js +++ b/src/widgets/multibuttonentry/js/jquery.mobile.tizen.multibuttonentry.js @@ -24,52 +24,58 @@ */ /** - * Multibuttonentry widget is a kind of button widget. - * When a user inputs a text and the text gets an change event, - * the text can be changed from it to a button widget. + * The MultiButtonEntry widget changes a text item to a button. It can be comprised of a number of button widgets. + * When a user types text and the text gets a specific event to change from a text to a button, + * the input text is changed to a MultiButtonEntry widget. + * A user can add the MultiButtonEntry widget to a contact list, email list, or another list. + * The typical use of this widget is composing a number of contacts or phone numbers in a specific area of the screen. * * HTML Attributes: * - * data-listUrl : This attribute is represent a 'id' about page. - * This page is containing prepared data for provide to user. - * For example, like address book. - * data-label: This attribute is providing label for user-guide. (Default : 'To : ') + * data-listUrl : Represents the page id. + * The page contains data for the user, for example, an address book.(Default : null) + * data-label: Provide a label for a user-guide. (Default : 'To : ') * data-descMessage : This attribute is managing message format. - * This message is displayed when widget status was changed to 'focusout'. + * This message is displayed when widget status was changed to 'focusout'. (Default : '{0} & {1} more') * * APIs: * - * inputtext ( void ) - * : Get a string from inputbox. * inputtext ( [string] ) * : If argument is not exist, will get a string from inputbox. * If argument is exist, will set a string to inputbox. * select ( [number] ) - * : If argument is not exist, will act as a getter. - * Get a string of selected block. - * If widget is not exist a selected button, it will return 'null'. - * Select a button located on the index. (number : index of button) + * : If no argument exists, gets a string of the selected block. + * If any button isn't selected on a multibuttonentry widget, this method returns "null" value. + * When a user call this method with an argument which is a number type, + * this method selects the button which is matched with the argument. * add ( text, [number] ) - * : If second argument is not exist, will insert to a new textblock at last position. - * Insert a new button at position that is pointed by index. (number : index of button) + * : If second argument does not exist, will insert to a new button at last position. + * Insert a new button at indexed position. The position is decided by the second argument. + * "index of position" means that the position of inserting a new button is decided by the second argument on "add" method. + * For example, if a user call the method like this "add("Tizen", 2)", + * new button labed "Tizen" will be inserted on the third position. * remove ( [number] ) - * : If argument is not exist, will remove all buttons. - * Remove a button that is pointed by index. (number : index of button) + * : If no argument exists, all buttons are removed. + * Remove a button at indexed position. + * The position is decided by the second argument. (index: index of button) * length ( void ) * : Get a number of buttons. * foucsIn ( void ) * : This method change a status to 'focusin'. * This status is able to manage a widget. * focusOut ( void ) - * : This method change a status to 'focusout'. - * This status is not able to manage a widget. + * : Changes the focus status to 'focus out'. + * The status is not able to manage a widget. + * All buttons that contained in the widget are removed and + * summarized message is displayed. * * * Events: * - * select : This event will occur when select a button. - * add : This event will occur when insert new button. - * remove : This event will occur when remove a button. + * create : Occur when create MultiButtonEntry widget. + * select : Occur when a button is selected. + * add : Occur when new button is inserted. + * remove : Occur when a button is removed. * * Examples: * @@ -164,6 +170,8 @@ }); moreBlock.click( function () { + $(inputbox).hide(); + $.mobile.changePage( option.listUrl, { transition: "slide", reverse: false, @@ -184,8 +192,10 @@ self._viewWidth = $view.innerWidth(); } self._modifyInputBoxWidth(); + $(inputbox).show(); }); }, + // create a textbutton and append this button to parent layer. // @param arg1 : string // @param arg2 : index @@ -212,7 +222,7 @@ } // save src data dataBlock = $( document.createElement( 'input' ) ); - dataBlock.val( content ).addClass( "ui-multibuttonentry-data" ).hide(); + dataBlock.attr( "value", content ).addClass( "ui-multibuttonentry-data" ).hide(); // Create a new text HTMLDivElement. textBlock = $( document.createElement( 'div' ) ); @@ -250,6 +260,7 @@ self._modifyInputBoxWidth(); self._trigger( "add" ); }, + _removeTextBlock : function () { var self = this, $view = this.element, @@ -265,6 +276,7 @@ $view.find( "div:last" ).removeClass( "ui-multibuttonentry-block" ).addClass( "ui-multibuttonentry-sblock" ); } }, + _calcBlockWidth : function ( block ) { var blockWidth = 0; blockWidth = $( block ).outerWidth( true ); @@ -277,6 +289,7 @@ lockBlock.removeClass( "ui-multibuttonentry-sblock" ).addClass( "ui-multibuttonentry-block" ); } }, + // call when remove text block by backspace key. _validateTargetBlock : function () { var self = this, @@ -292,6 +305,7 @@ lastBlock.removeClass( "ui-multibuttonentry-block" ).addClass( "ui-multibuttonentry-sblock" ); } }, + _ellipsisTextBlock : function ( text ) { var self = this, str = text, diff --git a/src/widgets/multimediaview/js/jquery.mobile.tizen.multimediaview.js b/src/widgets/multimediaview/js/jquery.mobile.tizen.multimediaview.js index 68c93ad..24200cc 100755 --- a/src/widgets/multimediaview/js/jquery.mobile.tizen.multimediaview.js +++ b/src/widgets/multimediaview/js/jquery.mobile.tizen.multimediaview.js @@ -1,13 +1,34 @@ -/* +/* *************************************************************************** + * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. + * + * 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. + * *************************************************************************** + * * Authors: Yonghwi Park * Wonseop Kim - */ +*/ /** - * MultiMediaView is a widget that provides an audio or a video content handling features. - * A multi-media content handled with this widget can be played with HTML5's