function htmlEncode(value) { //create a in-memory div, set it's inner text(which jQuery automatically encodes) //then grab the encoded contents back out. The div never exists on the page. return $('
').text(value).html(); } function htmlDecode(value) { return $('').html(value).text(); } // Array Remove - By John Resig (MIT Licensed) Array.prototype.remove = function (from, to) { var rest = this.slice((to || from) + 1 || this.length); this.length = from < 0 ? this.length + from : from; return this.push.apply(this, rest); }; String.prototype.endsWith = function (suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; }; $.fn.checked = function (value) { if (value === true || value === false) { // Set the value of the checkbox return $(this).each(function () { this.checked = value; }); } else { // Return check state return $(this).is(':checked'); } }; $.fn.buttonEnabled = function (enabled) { return enabled ? this.attr('disabled', '').removeAttr('disabled') : this.attr('disabled', 'disabled'); }; $.fn.dateTimeVal = function (val) { if (val != null) { var now = val; var year = now.getFullYear(); var month = now.getMonth().toString().length === 1 ? '0' + (now.getMonth() + 1).toString() : now.getMonth() + 1; var date = now.getDate().toString().length === 1 ? '0' + (now.getDate()).toString() : now.getDate(); var hours = now.getHours().toString().length === 1 ? '0' + now.getHours().toString() : now.getHours(); var minutes = now.getMinutes().toString().length === 1 ? '0' + now.getMinutes().toString() : now.getMinutes(); var seconds = now.getSeconds().toString().length === 1 ? '0' + now.getSeconds().toString() : now.getSeconds(); var formattedDateTime = year + '-' + month + '-' + date + 'T' + hours + ':' + minutes + ':' + seconds; //if (onlyBlank === true && $(this).val()) { // return this; //} return this.val(formattedDateTime); } return this.val(); }; if (!Array.prototype.filter) { Array.prototype.filter = function (fun /*, thisp*/) { "use strict"; if (this == null) throw new TypeError(); var t = Object(this); var len = t.length >>> 0; if (typeof fun != "function") throw new TypeError(); var res = []; var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in t) { var val = t[i]; // in case fun mutates this if (fun.call(thisp, val, i, t)) res.push(val); } } return res; }; } var WebNotifications = { show: function (data) { if (window.Notification) { var level = Notification.permissionLevel ? Notification.permissionLevel() : Notification.permission; if (level === "granted") { var notif = new Notification(data.title, data); if (notif.show) { notif.show(); } if (data.timeout) { setTimeout(function () { if (notif.close) { notif.close(); } else if (notif.cancel) { notif.cancel(); } }, data.timeout); } return notif; } else if (level === "default") { Notification.requestPermission(function () { return WebNotifications.show(data); }); } } else if (window.webkitNotifications) { if (!webkitNotifications.checkPermission()) { var notif = webkitNotifications.createNotification(data.icon, data.title, data.body); notif.show(); if (data.timeout) { setTimeout(function () { if (notif.close) { notif.close(); } else if (notif.cancel) { notif.cancel(); } }, data.timeout); } return notif; } else { webkitNotifications.requestPermission(function () { return WebNotifications.show(data); }); } } }, requestPermission: function () { if (window.webkitNotifications) { if (!webkitNotifications.checkPermission()) { } else { webkitNotifications.requestPermission(function () { }); } } else if (window.Notification) { var level = Notification.permissionLevel ? Notification.permissionLevel() : Notification.permission; if (level === "default") { Notification.requestPermission(function () { }); } } }, supported: function () { return window.Notification || window.webkitNotifications; } }; /* * Javascript Humane Dates * Copyright (c) 2008 Dean Landolt (deanlandolt.com) * Re-write by Zach Leatherman (zachleat.com) * * Adopted from the John Resig's pretty.js * at http://ejohn.org/blog/javascript-pretty-date * and henrah's proposed modification * at http://ejohn.org/blog/javascript-pretty-date/#comment-297458 * * Licensed under the MIT license. */ function humane_date(date_str) { var time_formats = [[90, 'a minute'], // 60*1.5 [3600, 'minutes', 60], // 60*60, 60 [5400, 'an hour'], // 60*60*1.5 [86400, 'hours', 3600], // 60*60*24, 60*60 [129600, 'a day'], // 60*60*24*1.5 [604800, 'days', 86400], // 60*60*24*7, 60*60*24 [907200, 'a week'], // 60*60*24*7*1.5 [2628000, 'weeks', 604800], // 60*60*24*(365/12), 60*60*24*7 [3942000, 'a month'], // 60*60*24*(365/12)*1.5 [31536000, 'months', 2628000], // 60*60*24*365, 60*60*24*(365/12) [47304000, 'a year'], // 60*60*24*365*1.5 [3153600000, 'years', 31536000] // 60*60*24*365*100, 60*60*24*365 ]; var dt = new Date; var date = parseISO8601Date(date_str, { toLocal: true }); var seconds = ((dt - date) / 1000); var token = ' ago'; var i = 0; var format; if (seconds < 0) { seconds = Math.abs(seconds); token = ''; } while (format = time_formats[i++]) { if (seconds < format[0]) { if (format.length == 2) { return format[1] + token; } else { return Math.round(seconds / format[2]) + ' ' + format[1] + token; } } } // overflow for centuries if (seconds > 4730400000) return Math.round(seconds / 4730400000) + ' centuries' + token; return date_str; }; function humane_elapsed(firstDateStr, secondDateStr) { var dt1 = new Date(firstDateStr); var dt2 = new Date(secondDateStr); var seconds = (dt2.getTime() - dt1.getTime()) / 1000; var numdays = Math.floor((seconds % 31536000) / 86400); var numhours = Math.floor(((seconds % 31536000) % 86400) / 3600); var numminutes = Math.floor((((seconds % 31536000) % 86400) % 3600) / 60); var numseconds = Math.round((((seconds % 31536000) % 86400) % 3600) % 60); var elapsedStr = ''; elapsedStr += numdays == 1 ? numdays + ' day ' : ''; elapsedStr += numdays > 1 ? numdays + ' days ' : ''; elapsedStr += numhours == 1 ? numhours + ' hour ' : ''; elapsedStr += numhours > 1 ? numhours + ' hours ' : ''; elapsedStr += numminutes == 1 ? numminutes + ' minute ' : ''; elapsedStr += numminutes > 1 ? numminutes + ' minutes ' : ''; elapsedStr += elapsedStr.length > 0 ? 'and ' : ''; elapsedStr += numseconds == 1 ? numseconds + ' second' : ''; elapsedStr += numseconds == 0 || numseconds > 1 ? numseconds + ' seconds' : ''; return elapsedStr; } function getWindowUrl(win) { return (win || window).location.href; } function getWindowLocationSearch(win) { var search = (win || window).location.search; if (!search) { var index = window.location.href.indexOf('?'); if (index != -1) { search = window.location.href.substring(index); } } return search || ''; } function getParameterByName(name, url) { name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]"); var regexS = "[\\?&]" + name + "=([^]*)"; var regex = new RegExp(regexS, "i"); var results = regex.exec(url || getWindowLocationSearch()); if (results == null) return ""; else return decodeURIComponent(results[1].replace(/\+/g, " ")); } function replaceQueryString(url, param, value) { var re = new RegExp("([?|&])" + param + "=.*?(&|$)", "i"); if (url.match(re)) return url.replace(re, '$1' + param + "=" + value + '$2'); else { if (url.indexOf('?') == -1) { return url + '?' + param + "=" + value; } return url + '&' + param + "=" + value; } } function parseISO8601Date(s, options) { options = options || {}; // parenthese matches: // year month day hours minutes seconds // dotmilliseconds // tzstring plusminus hours minutes var re = /(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(\.\d+)?(Z|([+-])(\d{2}):(\d{2}))?/; var d = s.match(re); // "2010-12-07T11:00:00.000-09:00" parses to: // ["2010-12-07T11:00:00.000-09:00", "2010", "12", "07", "11", // "00", "00", ".000", "-09:00", "-", "09", "00"] // "2010-12-07T11:00:00.000Z" parses to: // ["2010-12-07T11:00:00.000Z", "2010", "12", "07", "11", // "00", "00", ".000", "Z", undefined, undefined, undefined] if (!d) { throw "Couldn't parse ISO 8601 date string '" + s + "'"; } // parse strings, leading zeros into proper ints var a = [1, 2, 3, 4, 5, 6, 10, 11]; for (var i in a) { d[a[i]] = parseInt(d[a[i]], 10); } d[7] = parseFloat(d[7]); // Date.UTC(year, month[, date[, hrs[, min[, sec[, ms]]]]]) // note that month is 0-11, not 1-12 // see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/UTC var ms = Date.UTC(d[1], d[2] - 1, d[3], d[4], d[5], d[6]); // if there are milliseconds, add them if (d[7] > 0) { ms += Math.round(d[7] * 1000); } // if there's a timezone, calculate it if (d[8] != "Z" && d[10]) { var offset = d[10] * 60 * 60 * 1000; if (d[11]) { offset += d[11] * 60 * 1000; } if (d[9] == "-") { ms -= offset; } else { ms += offset; } } else if (!options.toLocal) { ms += new Date().getTimezoneOffset() * 60000; } return new Date(ms); } // jqm.page.params.js - version 0.1 // Copyright (c) 2011, Kin Blas // All rights reserved. // // 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. // * Neither the name of the