Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / pivotgrid / faker.js
diff --git a/examples/pivotgrid/faker.js b/examples/pivotgrid/faker.js
deleted file mode 100644 (file)
index d1b1a98..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
-//script used to generate data.json
-(function() {
-    function buildData(count) {
-        count = count || 1000;
-        
-        var products = ['Ladder', 'Spanner', 'Chair', 'Hammer'],
-            states   = ['CA', 'NY', 'UK', 'AZ', 'TX'],
-            cities   = ['San Francisco', 'Palo Alto', 'London', 'Austin'],
-            people   = ['Tommy Maintz', 'Abe Elias', 'Ed Spencer', 'Jamie Avins'],
-            records  = [],
-            i;
-        
-        for (i = 0; i < count; i++) {
-            records.push({
-                id      : i + 1,
-                product : products[Math.floor(Math.random() * products.length)],
-                city    : cities[Math.floor(Math.random() * cities.length)],
-                state   : states[Math.floor(Math.random() * states.length)],
-                quantity: Math.floor(Math.random() * 10000),
-                value   : Math.floor(Math.random() * 50),
-                month   : Math.ceil(Math.random() * 12),
-                quarter : Math.ceil(Math.random() * 4),
-                year    : 2010 - Math.floor(Math.random() * 2),
-                person  : people[Math.floor(Math.random() * people.length)]
-            });
-        }
-        
-        return records;
-    };
-    
-    function buildPeople(count) {
-        count = count || 800;
-        
-        var colors  = ['Brown', 'Blue', 'Green'],
-            decades = ['1960s', '1970s', '1980s', '1990s'],
-            hands   = ['Left', 'Right'],
-            genders = ['Male', 'Female'],
-            records = [],
-            i;
-        
-        for (i = 0; i < count; i++) {
-            var iq = Math.round(Math.random() * 100);
-            
-            if (iq < 25 && Math.random() > 0.5) {
-                iq += Math.random() * 30;
-            } else if (iq > 75 && Math.random() < 0.9) {
-                iq -= Math.random() * 20;
-            }
-            
-            records.push({
-                eyeColor   : colors[Math.floor(Math.random() * colors.length)],
-                gender     : genders[Math.floor(Math.random() * genders.length)],
-                handedness : hands[Math.floor(Math.random() * hands.length)],
-                birthDecade: decades[Math.floor(Math.random() * decades.length)],
-                height     : 5 + parseFloat((Math.random() * 2).toFixed(1)),
-                iq         : 50 + Math.round(iq)
-            });
-        }
-        
-        return Ext.encode({rows: records});
-    };
-});
\ No newline at end of file