3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <title>The source code</title>
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8 <body onload="prettyPrint();">
9 <pre class="prettyprint lang-js">/*!
10 * Ext JS Library 3.2.2
11 * Copyright(c) 2006-2010 Ext JS, Inc.
13 * http://www.extjs.com/license
15 <div id="cls-Ext.util.Format"></div>/**
16 * @class Ext.util.Format
17 * Reusable data formatting functions
20 Ext.util.Format = function(){
21 var trimRe = /^\s+|\s+$/g,
22 stripTagsRE = /<\/?[^>]+>/gi,
23 stripScriptsRe = /(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig,
27 <div id="method-Ext.util.Format-ellipsis"></div>/**
28 * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
29 * @param {String} value The string to truncate
30 * @param {Number} length The maximum length to allow before truncating
31 * @param {Boolean} word True to try to find a common work break
32 * @return {String} The converted text
34 ellipsis : function(value, len, word){
35 if(value && value.length > len){
37 var vs = value.substr(0, len - 2),
38 index = Math.max(vs.lastIndexOf(' '), vs.lastIndexOf('.'), vs.lastIndexOf('!'), vs.lastIndexOf('?'));
39 if(index == -1 || index < (len - 15)){
40 return value.substr(0, len - 3) + "...";
42 return vs.substr(0, index) + "...";
45 return value.substr(0, len - 3) + "...";
51 <div id="method-Ext.util.Format-undef"></div>/**
52 * Checks a reference and converts it to empty string if it is undefined
53 * @param {Mixed} value Reference to check
54 * @return {Mixed} Empty string if converted, otherwise the original value
56 undef : function(value){
57 return value !== undefined ? value : "";
60 <div id="method-Ext.util.Format-defaultValue"></div>/**
61 * Checks a reference and converts it to the default value if it's empty
62 * @param {Mixed} value Reference to check
63 * @param {String} defaultValue The value to insert of it's undefined (defaults to "")
66 defaultValue : function(value, defaultValue){
67 return value !== undefined && value !== '' ? value : defaultValue;
70 <div id="method-Ext.util.Format-htmlEncode"></div>/**
71 * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
72 * @param {String} value The string to encode
73 * @return {String} The encoded text
75 htmlEncode : function(value){
76 return !value ? value : String(value).replace(/&/g, "&").replace(/>/g, ">").replace(/</g, "<").replace(/"/g, """);
79 <div id="method-Ext.util.Format-htmlDecode"></div>/**
80 * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
81 * @param {String} value The string to decode
82 * @return {String} The decoded text
84 htmlDecode : function(value){
85 return !value ? value : String(value).replace(/>/g, ">").replace(/</g, "<").replace(/"/g, '"').replace(/&/g, "&");
88 <div id="method-Ext.util.Format-trim"></div>/**
89 * Trims any whitespace from either side of a string
90 * @param {String} value The text to trim
91 * @return {String} The trimmed text
93 trim : function(value){
94 return String(value).replace(trimRe, "");
97 <div id="method-Ext.util.Format-substr"></div>/**
98 * Returns a substring from within an original string
99 * @param {String} value The original text
100 * @param {Number} start The start index of the substring
101 * @param {Number} length The length of the substring
102 * @return {String} The substring
104 substr : function(value, start, length){
105 return String(value).substr(start, length);
108 <div id="method-Ext.util.Format-lowercase"></div>/**
109 * Converts a string to all lower case letters
110 * @param {String} value The text to convert
111 * @return {String} The converted text
113 lowercase : function(value){
114 return String(value).toLowerCase();
117 <div id="method-Ext.util.Format-uppercase"></div>/**
118 * Converts a string to all upper case letters
119 * @param {String} value The text to convert
120 * @return {String} The converted text
122 uppercase : function(value){
123 return String(value).toUpperCase();
126 <div id="method-Ext.util.Format-capitalize"></div>/**
127 * Converts the first character only of a string to upper case
128 * @param {String} value The text to convert
129 * @return {String} The converted text
131 capitalize : function(value){
132 return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
136 call : function(value, fn){
137 if(arguments.length > 2){
138 var args = Array.prototype.slice.call(arguments, 2);
140 return eval(fn).apply(window, args);
142 return eval(fn).call(window, value);
146 <div id="method-Ext.util.Format-usMoney"></div>/**
147 * Format a number as US currency
148 * @param {Number/String} value The numeric value to format
149 * @return {String} The formatted currency string
151 usMoney : function(v){
152 v = (Math.round((v-0)*100))/100;
153 v = (v == Math.floor(v)) ? v + ".00" : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
155 var ps = v.split('.'),
157 sub = ps[1] ? '.'+ ps[1] : '.00',
159 while (r.test(whole)) {
160 whole = whole.replace(r, '$1' + ',' + '$2');
163 if(v.charAt(0) == '-'){
164 return '-$' + v.substr(1);
169 <div id="method-Ext.util.Format-date"></div>/**
170 * Parse a value into a formatted date using the specified format pattern.
171 * @param {String/Date} value The value to format (Strings must conform to the format expected by the javascript Date object's <a href="http://www.w3schools.com/jsref/jsref_parse.asp">parse()</a> method)
172 * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
173 * @return {String} The formatted date string
175 date : function(v, format){
180 v = new Date(Date.parse(v));
182 return v.dateFormat(format || "m/d/Y");
185 <div id="method-Ext.util.Format-dateRenderer"></div>/**
186 * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
187 * @param {String} format Any valid date format string
188 * @return {Function} The date formatting function
190 dateRenderer : function(format){
192 return Ext.util.Format.date(v, format);
196 <div id="method-Ext.util.Format-stripTags"></div>/**
197 * Strips all HTML tags
198 * @param {Mixed} value The text from which to strip tags
199 * @return {String} The stripped text
201 stripTags : function(v){
202 return !v ? v : String(v).replace(stripTagsRE, "");
205 <div id="method-Ext.util.Format-stripScripts"></div>/**
206 * Strips all script tags
207 * @param {Mixed} value The text from which to strip script tags
208 * @return {String} The stripped text
210 stripScripts : function(v){
211 return !v ? v : String(v).replace(stripScriptsRe, "");
214 <div id="method-Ext.util.Format-fileSize"></div>/**
215 * Simple format for a file size (xxx bytes, xxx KB, xxx MB)
216 * @param {Number/String} size The numeric value to format
217 * @return {String} The formatted file size
219 fileSize : function(size){
221 return size + " bytes";
222 } else if(size < 1048576) {
223 return (Math.round(((size*10) / 1024))/10) + " KB";
225 return (Math.round(((size*10) / 1048576))/10) + " MB";
229 <div id="method-Ext.util.Format-math"></div>/**
230 * It does simple math for use in a template, for example:<pre><code>
231 * var tpl = new Ext.Template('{value} * 10 = {value:math("* 10")}');
233 * @return {Function} A function that operates on the passed value.
237 return function(v, a){
239 fns[a] = new Function('v', 'return v ' + a + ';');
245 <div id="method-Ext.util.Format-round"></div>/**
246 * Rounds the passed number to the required decimal precision.
247 * @param {Number/String} value The numeric value to round.
248 * @param {Number} precision The number of decimal places to which to round the first parameter's value.
249 * @return {Number} The rounded value.
251 round : function(value, precision) {
252 var result = Number(value);
253 if (typeof precision == 'number') {
254 precision = Math.pow(10, precision);
255 result = Math.round(value * precision) / precision;
260 <div id="method-Ext.util.Format-number"></div>/**
261 * Formats the number according to the format string.
262 * <div style="margin-left:40px">examples (123456.789):
263 * <div style="margin-left:10px">
264 * 0 - (123456) show only digits, no precision<br>
265 * 0.00 - (123456.78) show only digits, 2 precision<br>
266 * 0.0000 - (123456.7890) show only digits, 4 precision<br>
267 * 0,000 - (123,456) show comma and digits, no precision<br>
268 * 0,000.00 - (123,456.78) show comma and digits, 2 precision<br>
269 * 0,0.00 - (123,456.78) shortcut method, show comma and digits, 2 precision<br>
270 * To reverse the grouping (,) and decimal (.) for international numbers, add /i to the end.
271 * For example: 0.000,00/i
273 * @param {Number} v The number to format.
274 * @param {String} format The way you would like to format this text.
275 * @return {String} The formatted number.
277 number: function(v, format) {
291 if(format.substr(format.length - 2) == '/i'){
292 format = format.substr(0, format.length - 2);
298 var hasComma = format.indexOf(comma) != -1,
299 psplit = (i18n ? format.replace(/[^\d\,]/g, '') : format.replace(/[^\d\.]/g, '')).split(dec);
301 if(1 < psplit.length){
302 v = v.toFixed(psplit[1].length);
303 }else if(2 < psplit.length){
304 throw ('NumberFormatException: invalid format, formats should have no more than 1 period: ' + format);
309 var fnum = v.toString();
311 psplit = fnum.split('.');
314 var cnum = psplit[0], parr = [], j = cnum.length, m = Math.floor(j / 3), n = cnum.length % 3 || 3;
316 for (var i = 0; i < j; i += n) {
320 parr[parr.length] = cnum.substr(i, n);
323 fnum = parr.join(comma);
325 fnum += dec + psplit[1];
329 fnum = psplit[0] + dec + psplit[1];
333 return (neg ? '-' : '') + format.replace(/[\d,?\.?]+/, fnum);
336 <div id="method-Ext.util.Format-numberRenderer"></div>/**
337 * Returns a number rendering function that can be reused to apply a number format multiple times efficiently
338 * @param {String} format Any valid number format string for {@link #number}
339 * @return {Function} The number formatting function
341 numberRenderer : function(format){
343 return Ext.util.Format.number(v, format);
347 <div id="method-Ext.util.Format-plural"></div>/**
348 * Selectively do a plural form of a word based on a numeric value. For example, in a template,
349 * {commentCount:plural("Comment")} would result in "1 Comment" if commentCount was 1 or would be "x Comments"
350 * if the value is 0 or greater than 1.
351 * @param {Number} value The value to compare against
352 * @param {String} singular The singular form of the word
353 * @param {String} plural (optional) The plural form of the word (defaults to the singular with an "s")
355 plural : function(v, s, p){
356 return v +' ' + (v == 1 ? s : (p ? p : s+'s'));
359 <div id="method-Ext.util.Format-nl2br"></div>/**
360 * Converts newline characters to the HTML tag <br/>
361 * @param {String} The string value to format.
362 * @return {String} The string with embedded <br/> tags in place of newlines.
365 return Ext.isEmpty(v) ? '' : v.replace(nl2brRe, '<br/>');