summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/data/tests/stores
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/data/tests/stores')
-rw-r--r--includes/js/dojox/data/tests/stores/AtomReadStore.js641
-rw-r--r--includes/js/dojox/data/tests/stores/CsvStore.js1127
-rw-r--r--includes/js/dojox/data/tests/stores/FlickrRestStore.js476
-rw-r--r--includes/js/dojox/data/tests/stores/FlickrStore.js410
-rw-r--r--includes/js/dojox/data/tests/stores/HtmlStore.js804
-rw-r--r--includes/js/dojox/data/tests/stores/HtmlTableStore.js702
-rw-r--r--includes/js/dojox/data/tests/stores/KeyValueStore.js1002
-rw-r--r--includes/js/dojox/data/tests/stores/OpmlStore.js1075
-rw-r--r--includes/js/dojox/data/tests/stores/QueryReadStore.js442
-rw-r--r--includes/js/dojox/data/tests/stores/QueryReadStore.php114
-rw-r--r--includes/js/dojox/data/tests/stores/SnapLogicStore.js438
-rw-r--r--includes/js/dojox/data/tests/stores/XmlStore.js881
-rw-r--r--includes/js/dojox/data/tests/stores/atom1.xml848
-rw-r--r--includes/js/dojox/data/tests/stores/books.html118
-rw-r--r--includes/js/dojox/data/tests/stores/books.xml103
-rw-r--r--includes/js/dojox/data/tests/stores/books2.html43
-rw-r--r--includes/js/dojox/data/tests/stores/books2.xml28
-rw-r--r--includes/js/dojox/data/tests/stores/books3.html14
-rw-r--r--includes/js/dojox/data/tests/stores/books3.xml31
-rw-r--r--includes/js/dojox/data/tests/stores/books_isbnAttr.xml23
-rw-r--r--includes/js/dojox/data/tests/stores/books_isbnAttr2.xml23
-rw-r--r--includes/js/dojox/data/tests/stores/geography.xml51
-rw-r--r--includes/js/dojox/data/tests/stores/geography_withspeciallabel.xml51
-rw-r--r--includes/js/dojox/data/tests/stores/jsonPathStore.js604
-rw-r--r--includes/js/dojox/data/tests/stores/movies.csv9
-rw-r--r--includes/js/dojox/data/tests/stores/movies2.csv9
-rw-r--r--includes/js/dojox/data/tests/stores/patterns.csv11
-rw-r--r--includes/js/dojox/data/tests/stores/properties.js10
-rw-r--r--includes/js/dojox/data/tests/stores/snap_pipeline.php72
29 files changed, 10160 insertions, 0 deletions
diff --git a/includes/js/dojox/data/tests/stores/AtomReadStore.js b/includes/js/dojox/data/tests/stores/AtomReadStore.js
new file mode 100644
index 0000000..1df9493
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/AtomReadStore.js
@@ -0,0 +1,641 @@
+if(!dojo._hasResource["dojox.data.tests.stores.AtomReadStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.AtomReadStore"] = true;
+dojo.provide("dojox.data.tests.stores.AtomReadStore");
+dojo.require("dojox.data.AtomReadStore");
+dojo.require("dojo.data.api.Read");
+
+dojox.data.tests.stores.AtomReadStore.getBlog1Store = function(){
+ return new dojox.data.AtomReadStore({url: dojo.moduleUrl("dojox.data.tests", "stores/atom1.xml").toString()});
+ //return new dojox.data.AtomReadStore({url: "/sos/feeds/blog.php"});
+};
+/*
+dojox.data.tests.stores.AtomReadStore.getBlog2Store = function(){
+ return new dojox.data.AtomReadStore({url: dojo.moduleUrl("dojox.data.tests", "stores/atom2.xml").toString()});
+};
+*/
+dojox.data.tests.stores.AtomReadStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ //console.log("In here.");
+ //console.trace();
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.AtomReadStore",
+ [
+ {
+ name: "ReadAPI: Fetch_One",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on AtomReadStore of a single item.
+ // description:
+ // Simple test of a basic fetch on AtomReadStore of a single item.
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, doh, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_5_Streaming",
+ timeout: 5000, //1 second.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on AtomReadStore.
+ // description:
+ // Simple test of a basic fetch on AtomReadStore.
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ var count = 0;
+
+ function onItem(item, requestObj){
+ t.assertTrue(atomStore.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.is(5, count);
+
+ t.is(null, items);
+ d.callback(true);
+ }
+ //Get everything...
+ atomStore.fetch({
+ query: {
+ },
+ onBegin: null,
+ count: 5,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_Paging",
+ timeout: 5000, //1 second.
+ runTest: function(t) {
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+ var d = new doh.Deferred();
+
+ function dumpFirstFetch(items, request){
+ t.is(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ atomStore.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ console.log("dumpSecondFetch: got "+items.length);
+ t.is(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ atomStore.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ console.log("dumpThirdFetch: got "+items.length);
+ t.is(5, items.length);
+ request.start = 2;
+ request.count = 18;
+ request.onComplete = dumpFourthFetch;
+ atomStore.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ console.log("dumpFourthFetch: got "+items.length);
+ t.is(18, items.length);
+ request.start = 5;
+ request.count = 11;
+ request.onComplete = dumpFifthFetch;
+ atomStore.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ console.log("dumpFifthFetch: got "+items.length);
+ t.is(11, items.length);
+ request.start = 4;
+ request.count = 16;
+ request.onComplete = dumpSixthFetch;
+ atomStore.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ console.log("dumpSixthFetch: got "+items.length);
+ t.is(16, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.is(7, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ atomStore.fetch(request);
+ }
+ atomStore.fetch({
+ query: {
+ },
+ count: 7,
+ onComplete: completed,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getLabel",
+ timeout: 5000, //1 second.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = atomStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ d.callback(true);
+ }
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getLabelAttributes",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = atomStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("title", labelList[0]);
+ d.callback(true);
+ }
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d;
+
+ }
+ },
+ {
+ name: "ReadAPI: getValue",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(1, items.length);
+ t.assertTrue(atomStore.getValue(items[0], "summary") !== null);
+ t.assertTrue(atomStore.getValue(items[0], "content") !== null);
+ t.assertTrue(atomStore.getValue(items[0], "published") !== null);
+ t.assertTrue(atomStore.getValue(items[0], "updated") !== null);
+ console.log("typeof updated = "+typeof(atomStore.getValue(items[0], "updated")));
+ t.assertTrue(atomStore.getValue(items[0], "updated").getFullYear);
+ d.callback(true);
+ }
+
+ //Get one item and look at it.
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getValue_Failure",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+ var passed = false;
+ try{
+ var value = store.getValue("NotAnItem", foo);
+ }catch(e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ }
+ },
+ {
+ name: "ReadAPI: getValues",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(1, items.length);
+ var summary = atomStore.getValues(items[0], "summary");
+ t.assertTrue(dojo.isArray(summary));
+
+ var content = atomStore.getValues(items[0], "content");
+ t.assertTrue(dojo.isArray(content));
+
+ var published = atomStore.getValues(items[0], "published");
+ t.assertTrue(dojo.isArray(published));
+
+ var updated = atomStore.getValues(items[0], "updated");
+ t.assertTrue(dojo.isArray(updated));
+ d.callback(true);
+ }
+ //Get one item and look at it.
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error,
+ t,
+ d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getValues_Failure",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+ var passed = false;
+ try{
+ var value = store.getValues("NotAnItem", foo);
+ }catch(e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ }
+ },
+ {
+ name: "ReadAPI: isItem",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(5, items.length);
+ for(var i=0; i < items.length; i++){
+ t.assertTrue(atomStore.isItem(items[i]));
+ }
+ d.callback(true);
+ }
+
+ //Get everything...
+ atomStore.fetch({
+ query: {
+ },
+ count: 5,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: hasAttribute",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(items[0] !== null);
+ var count = 0;
+ console.log("hasAttribute");
+ t.assertTrue(atomStore.hasAttribute(items[0], "author"));
+ t.assertTrue(atomStore.hasAttribute(items[0], "published"));
+ t.assertTrue(atomStore.hasAttribute(items[0], "updated"));
+ t.assertTrue(atomStore.hasAttribute(items[0], "category"));
+ t.assertTrue(atomStore.hasAttribute(items[0], "id"));
+ t.assertTrue(!atomStore.hasAttribute(items[0], "foo"));
+ t.assertTrue(!atomStore.hasAttribute(items[0], "bar"));
+
+
+ t.assertTrue(atomStore.hasAttribute(items[0], "summary"));
+ t.assertTrue(atomStore.hasAttribute(items[0], "content"));
+ t.assertTrue(atomStore.hasAttribute(items[0], "title"));
+
+
+ var summary = atomStore.getValue(items[0], "summary");
+ var content = atomStore.getValue(items[0], "content");
+ var title = atomStore.getValue(items[0], "title");
+
+ t.assertTrue(summary && summary.text && summary.type == "html");
+ t.assertTrue(content && content.text && content.type == "html");
+ t.assertTrue(title && title.text && title.type == "html");
+
+ //Test that null attributes throw an exception
+ try{
+ atomStore.hasAttribute(items[0], null);
+ t.assertTrue(false);
+ }catch (e){
+
+ }
+ d.callback(true);
+ }
+
+ //Get one item...
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: containsValue",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+
+ t.assertTrue(atomStore.containsValue(items[0], "id","http://shaneosullivan.wordpress.com/2008/01/22/using-aol-hosted-dojo-with-your-custom-code/"));
+
+ d.callback(true);
+ }
+
+ //Get one item...
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getAttributes",
+ timeout: 5000, //1 second
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(atomStore.isItem(items[0]));
+
+ var attributes = atomStore.getAttributes(items[0]);
+ console.log("getAttributes 4: "+attributes.length);
+ t.is(10, attributes.length);
+ d.callback(true);
+ }
+
+ //Get everything...
+ atomStore.fetch({
+ query: {
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: fetch_Category",
+ timeout: 5000, //1 second.
+ runTest: function(t) {
+ // summary:
+ // Retrieve items from the store by category
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(2, items.length);
+ t.assertTrue(atomStore.isItem(items[0]));
+ t.assertTrue(atomStore.isItem(items[1]));
+
+ var categories = atomStore.getValues(items[0], "category");
+ t.assertTrue(dojo.some(categories, function(category){
+ return category.term == "aol";
+ }));
+ categories = atomStore.getValues(items[1], "category");
+ t.assertTrue(dojo.some(categories, function(category){
+ return category.term == "aol";
+ }));
+
+ d.callback(true);
+ }
+
+ //Get everything...
+ atomStore.fetch({
+ query: {
+ category: "aol"
+ },
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: fetch_byID",
+ timeout: 5000, //1 second.
+ runTest: function(t) {
+ // summary:
+ // Retrieve items from the store by category
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ console.log("getById: items.length="+items.length)
+ t.is(1, items.length);
+ t.assertTrue(atomStore.isItem(items[0]));
+
+ var title = atomStore.getValue(items[0], "title");
+ console.log("getById: title.text="+title.text)
+ t.assertTrue(title.text == "Dojo Grid has landed");
+
+ d.callback(true);
+ }
+
+ //Get everything...
+ atomStore.fetch({
+ query: {
+ id: "http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/"
+ },
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: fetch_alternate",
+ timeout: 5000, //1 second.
+ runTest: function(t) {
+ // summary:
+ // Retrieve items from the store by category
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(atomStore.isItem(items[0]));
+
+ var alternate = atomStore.getValue(items[0], "alternate");
+ t.assertEqual(alternate.href, "http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/");
+
+ d.callback(true);
+ }
+
+ //Get everything...
+ atomStore.fetch({
+ query: {
+ id: "http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/"
+ },
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.AtomReadStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var atomStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+
+ var features = atomStore.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read"));
+ count++;
+ }
+ t.assertTrue(count === 1);
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.AtomReadStore.getBlog1Store();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ console.log("Looking at function: [" + i + "]");
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]. Got value: " + testStoreMember);
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+}
diff --git a/includes/js/dojox/data/tests/stores/CsvStore.js b/includes/js/dojox/data/tests/stores/CsvStore.js
new file mode 100644
index 0000000..c1bad11
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/CsvStore.js
@@ -0,0 +1,1127 @@
+if(!dojo._hasResource["dojox.data.tests.stores.CsvStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.CsvStore"] = true;
+dojo.provide("dojox.data.tests.stores.CsvStore");
+dojo.require("dojox.data.CsvStore");
+dojo.require("dojo.data.api.Read");
+dojo.require("dojo.data.api.Identity");
+
+dojox.data.tests.stores.CsvStore.getDatasource = function(filepath){
+ // summary:
+ // A simple helper function for getting the sample data used in each of the tests.
+ // description:
+ // A simple helper function for getting the sample data used in each of the tests.
+
+ var dataSource = {};
+ if(dojo.isBrowser){
+ dataSource.url = dojo.moduleUrl("dojox.data.tests", filepath).toString();
+ }else{
+ // When running tests in Rhino, xhrGet is not available,
+ // so we have the file data in the code below.
+ switch(filepath){
+ case "stores/movies.csv":
+ var csvData = "";
+ csvData += "Title, Year, Producer\n";
+ csvData += "City of God, 2002, Katia Lund\n";
+ csvData += "Rain,, Christine Jeffs\n";
+ csvData += "2001: A Space Odyssey, 1968, Stanley Kubrick\n";
+ csvData += '"This is a ""fake"" movie title", 1957, Sidney Lumet\n';
+ csvData += "Alien, 1979 , Ridley Scott\n";
+ csvData += '"The Sequel to ""Dances With Wolves.""", 1982, Ridley Scott\n';
+ csvData += '"Caine Mutiny, The", 1954, "Dymtryk ""the King"", Edward"\n';
+ break;
+ case "stores/movies2.csv":
+ var csvData = "";
+ csvData += "Title, Year, Producer\n";
+ csvData += "City of God, 2002, Katia Lund\n";
+ csvData += "Rain,\"\", Christine Jeffs\n";
+ csvData += "2001: A Space Odyssey, 1968, Stanley Kubrick\n";
+ csvData += '"This is a ""fake"" movie title", 1957, Sidney Lumet\n';
+ csvData += "Alien, 1979 , Ridley Scott\n";
+ csvData += '"The Sequel to ""Dances With Wolves.""", 1982, Ridley Scott\n';
+ csvData += '"Caine Mutiny, The", 1954, "Dymtryk ""the King"", Edward"\n';
+ break;
+ case "stores/books.csv":
+ var csvData = "";
+ csvData += "Title, Author\n";
+ csvData += "The Transparent Society, David Brin\n";
+ csvData += "The First Measured Century, Theodore Caplow\n";
+ csvData += "Maps in a Mirror, Orson Scott Card\n";
+ csvData += "Princess Smartypants, Babette Cole\n";
+ csvData += "Carfree Cities, Crawford J.H.\n";
+ csvData += "Down and Out in the Magic Kingdom, Cory Doctorow\n";
+ csvData += "Tax Shift, Alan Thein Durning\n";
+ csvData += "The Sneetches and other stories, Dr. Seuss\n";
+ csvData += "News from Tartary, Peter Fleming\n";
+ break;
+ case "stores/patterns.csv":
+ var csvData = "";
+ csvData += "uniqueId, value\n";
+ csvData += "9, jfq4@#!$!@Rf14r14i5u\n";
+ csvData += "6, BaBaMaSaRa***Foo\n";
+ csvData += "2, bar*foo\n";
+ csvData += "8, 123abc\n";
+ csvData += "4, bit$Bite\n";
+ csvData += "3, 123abc\n";
+ csvData += "10, 123abcdefg\n";
+ csvData += "1, foo*bar\n";
+ csvData += "7, \n";
+ csvData += "5, 123abc\n"
+ break;
+ }
+ dataSource.data = csvData;
+ }
+ return dataSource; //Object
+}
+
+dojox.data.tests.stores.CsvStore.verifyItems = function(csvStore, items, attribute, compareArray){
+ // summary:
+ // A helper function for validating that the items array is ordered
+ // the same as the compareArray
+ if(items.length != compareArray.length){ return false; }
+ for(var i = 0; i < items.length; i++){
+ if(!(csvStore.getValue(items[i], attribute) === compareArray[i])){
+ return false; //Boolean
+ }
+ }
+ return true; //Boolean
+}
+
+dojox.data.tests.stores.CsvStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ for (i in errData) {
+ console.log(errData[i]);
+ }
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.CsvStore",
+ [
+ function testReadAPI_fetch_all(t){
+ // summary:
+ // Simple test of a basic fetch on CsvStore.
+ // description:
+ // Simple test of a basic fetch on CsvStore.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertTrue((items.length === 7));
+ d.callback(true);
+ }
+
+ //Get everything...
+ csvStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_all_withEmptyStringField(t){
+ // summary:
+ // Simple test of a basic fetch on CsvStore.
+ // description:
+ // Simple test of a basic fetch on CsvStore.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies2.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertTrue((items.length === 7));
+ d.callback(true);
+ }
+
+ //Get everything...
+ csvStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one(t){
+ // summary:
+ // Simple test of a basic fetch on CsvStore of a single item.
+ // description:
+ // Simple test of a basic fetch on CsvStore of a single item.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ csvStore.fetch({ query: {Title: "*Sequel*"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_fetch_Multiple(t){
+ // summary:
+ // Simple test of a basic fetch on CsvStore of a single item.
+ // description:
+ // Simple test of a basic fetch on CsvStore of a single item.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+
+ var done = [false, false];
+
+ function onCompleteOne(items, request){
+ done[0] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ function onCompleteTwo(items, request){
+ done[1] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ try
+ {
+ csvStore.fetch({ query: {Title: "*Sequel*"},
+ onComplete: onCompleteOne,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+ csvStore.fetch({ query: {Title: "2001:*"},
+ onComplete: onCompleteTwo,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+ }
+ catch(e)
+ {
+ for (i in e) {
+ console.log(e[i]);
+ }
+ }
+
+ return d; //Object
+ },
+ function testReadAPI_fetch_MultipleMixed(t){
+ // summary:
+ // Simple test of a basic fetch on CsvStore of a single item.
+ // description:
+ // Simple test of a basic fetch on CsvStore of a single item.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+
+ var done = [false, false];
+ function onComplete(items, request){
+ done[0] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ function onItem(item){
+ done[1] = true;
+ t.assertTrue(item !== null);
+ t.is('Dymtryk "the King", Edward', csvStore.getValue(item,"Producer"));
+ t.is('Caine Mutiny, The', csvStore.getValue(item,"Title"));
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ csvStore.fetch({ query: {Title: "*Sequel*"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+
+ csvStore.fetchItemByIdentity({identity: "6", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_all_streaming(t){
+ // summary:
+ // Simple test of a basic fetch on CsvStore.
+ // description:
+ // Simple test of a basic fetch on CsvStore.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ count = 0;
+
+ function onBegin(size, requestObj){
+ t.assertTrue(size === 7);
+ }
+ function onItem(item, requestObj){
+ t.assertTrue(csvStore.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.is(7, count);
+ t.is(null, items);
+ d.callback(true);
+ }
+
+ //Get everything...
+ csvStore.fetch({ onBegin: onBegin,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_fetch_paging(t){
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.is(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ csvStore.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.is(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ csvStore.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.is(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ csvStore.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.is(5, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ csvStore.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.is(0, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ csvStore.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.is(5, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.is(7, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ csvStore.fetch(request);
+ }
+
+ csvStore.fetch({onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+
+ },
+
+ function testReadAPI_getLabel(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ args.label = "Title";
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = csvStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("The Sequel to \"Dances With Wolves.\"", label);
+ d.callback(true);
+ }
+ csvStore.fetch({ query: {Title: "*Sequel*"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+ return d;
+ },
+ function testReadAPI_getLabelAttributes(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ args.label = "Title";
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = csvStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("Title", labelList[0]);
+ d.callback(true);
+ }
+ csvStore.fetch({ query: {Title: "*Sequel*"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)
+ });
+ return d;
+ },
+ function testReadAPI_getValue(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is('Dymtryk "the King", Edward', csvStore.getValue(item,"Producer"));
+ t.is('Caine Mutiny, The', csvStore.getValue(item,"Title"));
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "6", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValue_2(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("City of God", csvStore.getValue(item,"Title"));
+ t.is("2002", csvStore.getValue(item,"Year"));
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "0", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValue_3(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("1979", csvStore.getValue(item,"Year"));
+ t.is("Alien", csvStore.getValue(item,"Title"));
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "4", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValue_4(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("2001: A Space Odyssey", csvStore.getValue(item,"Title"));
+ t.is("Stanley Kubrick", csvStore.getValue(item,"Producer"));
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "2", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+
+ function testReadAPI_getValues(t){
+ // summary:
+ // Simple test of the getValues function of the store.
+ // description:
+ // Simple test of the getValues function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ var names = csvStore.getValues(item,"Title");
+ t.assertTrue(dojo.isArray(names));
+ t.is(1, names.length);
+ t.is("Rain", names[0]);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+
+ function testIdentityAPI_fetchItemByIdentity_bad1(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "7", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity_bad2(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "-1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity_bad3(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "999999", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_getIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(7, items.length);
+ var passed = true;
+ for(var i = 0; i < items.length; i++){
+ if(!(csvStore.getIdentity(items[i]) === i)){
+ passed=false;
+ break;
+ }
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ //Get everything...
+ csvStore.fetch({ onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testIdentityAPI_getIdentityAttributes(t){
+ // summary:
+ // Simple test of the getIdentityAttributes
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(csvStore.isItem(item));
+ t.assertEqual(null, csvStore.getIdentityAttributes(item));
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_isItem(t){
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(csvStore.isItem(item));
+ t.assertTrue(!csvStore.isItem({}));
+ t.assertTrue(!csvStore.isItem({ item: "not an item" }));
+ t.assertTrue(!csvStore.isItem("not an item"));
+ t.assertTrue(!csvStore.isItem(["not an item"]));
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_hasAttribute(t){
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.assertTrue(csvStore.hasAttribute(item, "Title"));
+ t.assertTrue(csvStore.hasAttribute(item, "Producer"));
+ t.assertTrue(!csvStore.hasAttribute(item, "Year"));
+ t.assertTrue(!csvStore.hasAttribute(item, "Nothing"));
+ t.assertTrue(!csvStore.hasAttribute(item, "title"));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ csvStore.hasAttribute(item, null);
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_containsValue(t){
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.assertTrue(csvStore.containsValue(item, "Title", "Alien"));
+ t.assertTrue(csvStore.containsValue(item, "Year", "1979"));
+ t.assertTrue(csvStore.containsValue(item, "Producer", "Ridley Scott"));
+ t.assertTrue(!csvStore.containsValue(item, "Title", "Alien2"));
+ t.assertTrue(!csvStore.containsValue(item, "Year", "1979 "));
+ t.assertTrue(!csvStore.containsValue(item, "Title", null));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ csvStore.containsValue(item, null, "foo");
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "4", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getAttributes(t){
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.assertTrue(csvStore.isItem(item));
+
+ var attributes = csvStore.getAttributes(item);
+ t.is(3, attributes.length);
+ for(var i = 0; i < attributes.length; i++){
+ t.assertTrue((attributes[i] === "Title" || attributes[i] === "Year" || attributes[i] === "Producer"));
+ }
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "4", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+
+ function testReadAPI_getAttributes_onlyTwo(t){
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ // Test an item that does not have all of the attributes
+ t.assertTrue(item !== null);
+ t.assertTrue(csvStore.isItem(item));
+
+ var attributes = csvStore.getAttributes(item);
+ t.assertTrue(attributes.length === 2);
+ t.assertTrue(attributes[0] === "Title");
+ t.assertTrue(attributes[1] === "Producer");
+ d.callback(true);
+ }
+ csvStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d;
+ },
+
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var features = csvStore.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read" || i === "dojo.data.api.Identity"));
+ count++;
+ }
+ t.assertTrue(count === 2);
+ },
+ function testReadAPI_fetch_patternMatch0(t){
+ // summary:
+ // Function to test pattern matching of everything starting with lowercase e
+ // description:
+ // Function to test pattern matching of everything starting with lowercase e
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(2, items.length);
+ var valueArray = [ "Alien", "The Sequel to \"Dances With Wolves.\""];
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "Title", valueArray));
+ d.callback(true);
+ }
+
+ csvStore.fetch({query: {Producer: "* Scott"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch1(t){
+ // summary:
+ // Function to test pattern matching of everything with $ in it.
+ // description:
+ // Function to test pattern matching of everything with $ in it.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.assertTrue(items.length === 2);
+ var valueArray = [ "jfq4@#!$!@Rf14r14i5u", "bit$Bite"];
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "value", valueArray));
+ d.callback(true);
+ }
+
+ csvStore.fetch({query: {value: "*$*"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch2(t){
+ // summary:
+ // Function to test exact pattern match
+ // description:
+ // Function to test exact pattern match
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(1, items.length);
+ t.assertTrue(csvStore.getValue(items[0], "value") === "bar*foo");
+ d.callback(true);
+ }
+
+ csvStore.fetch({query: {value: "bar\*foo"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch_caseInsensitive(t){
+ // summary:
+ // Function to test exact pattern match with case insensitivity set.
+ // description:
+ // Function to test exact pattern match with case insensitivity set.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(1, items.length);
+ t.assertTrue(csvStore.getValue(items[0], "value") === "bar*foo");
+ d.callback(true);
+ }
+
+ csvStore.fetch({query: {value: "BAR\\*foo"}, queryOptions: {ignoreCase: true}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch_caseSensitive(t){
+ // summary:
+ // Function to test exact pattern match with case insensitivity set.
+ // description:
+ // Function to test exact pattern match with case insensitivity set.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(0, items.length);
+ d.callback(true);
+ }
+
+ csvStore.fetch({query: {value: "BAR\\*foo"}, queryOptions: {ignoreCase: false}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortNumeric(t){
+ // summary:
+ // Function to test sorting numerically.
+ // description:
+ // Function to test sorting numerically.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.assertTrue(items.length === 10);
+ // TODO: CsvStore treats everything like a string, so these numbers will be sorted lexicographically.
+ var orderedArray = [ "1", "10", "2", "3", "4", "5", "6", "7", "8", "9" ];
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "uniqueId", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "uniqueId"}];
+ csvStore.fetch({onComplete: completed,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d),
+ sort: sortAttributes});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortNumericDescending(t){
+ // summary:
+ // Function to test sorting numerically.
+ // description:
+ // Function to test sorting numerically.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(10, items.length);
+ // TODO: CsvStore treats everything like a string, so these numbers will be sorted lexicographically.
+ var orderedArray = [ "9", "8", "7", "6", "5", "4", "3", "2", "10", "1" ];
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "uniqueId", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "uniqueId", descending: true}];
+ csvStore.fetch({ sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortNumericWithCount(t){
+ // summary:
+ // Function to test sorting numerically in descending order, returning only a specified number of them.
+ // description:
+ // Function to test sorting numerically in descending order, returning only a specified number of them.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(5, items.length);
+ // TODO: CsvStore treats everything like a string, so these numbers will be sorted lexicographically.
+ var orderedArray = [ "9", "8", "7", "6", "5" ];
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "uniqueId", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "uniqueId", descending: true}];
+ csvStore.fetch({sort: sortAttributes,
+ count: 5,
+ onComplete: completed,
+ onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabetic(t){
+ // summary:
+ // Function to test sorting alphabetic ordering.
+ // description:
+ // Function to test sorting alphabetic ordering.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ "123abc",
+ "123abc",
+ "123abc",
+ "123abcdefg",
+ "BaBaMaSaRa***Foo",
+ "bar*foo",
+ "bit$Bite",
+ "foo*bar",
+ "jfq4@#!$!@Rf14r14i5u",
+ undefined
+ ];
+ t.is(10, items.length);
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "value", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "value"}];
+ csvStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabeticDescending(t){
+ // summary:
+ // Function to test sorting alphabetic ordering in descending mode.
+ // description:
+ // Function to test sorting alphabetic ordering in descending mode.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ undefined,
+ "jfq4@#!$!@Rf14r14i5u",
+ "foo*bar",
+ "bit$Bite",
+ "bar*foo",
+ "BaBaMaSaRa***Foo",
+ "123abcdefg",
+ "123abc",
+ "123abc",
+ "123abc"
+ ];
+ t.is(10, items.length);
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "value", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "value", descending: true}];
+ csvStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortMultiple(t){
+ // summary:
+ // Function to test sorting on multiple attributes.
+ // description:
+ // Function to test sorting on multiple attributes.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/patterns.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ var orderedArray0 = [ "8", "5", "3", "10", "6", "2", "4", "1", "9", "7" ];
+ var orderedArray1 = [ "123abc",
+ "123abc",
+ "123abc",
+ "123abcdefg",
+ "BaBaMaSaRa***Foo",
+ "bar*foo",
+ "bit$Bite",
+ "foo*bar",
+ "jfq4@#!$!@Rf14r14i5u",
+ undefined
+ ];
+ t.is(10, items.length);
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "uniqueId", orderedArray0));
+ t.assertTrue(dojox.data.tests.stores.CsvStore.verifyItems(csvStore, items, "value", orderedArray1));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{ attribute: "value"}, { attribute: "uniqueId", descending: true}];
+ csvStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortMultipleSpecialComparator(t){
+ // summary:
+ // Function to test sorting on multiple attributes with a custom comparator.
+ // description:
+ // Function to test sorting on multiple attributes with a custom comparator.
+
+ var args = dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv");
+ var csvStore = new dojox.data.CsvStore(args);
+
+ csvStore.comparatorMap = {};
+ csvStore.comparatorMap["Producer"] = function(a,b){
+ var ret = 0;
+ // We want to sort authors alphabetical by their last name
+ function lastName(name){
+ if(typeof name === "undefined"){ return undefined; }
+
+ var matches = name.match(/\s*(\S+)$/); // Grab the last word in the string.
+ return matches ? matches[1] : name; // Strings with only whitespace will not match.
+ }
+ var lastNameA = lastName(a);
+ var lastNameB = lastName(b);
+ if(lastNameA > lastNameB || typeof lastNameA === "undefined"){
+ ret = 1;
+ }else if(lastNameA < lastNameB || typeof lastNameB === "undefined"){
+ ret = -1;
+ }
+ return ret;
+ };
+
+ var sortAttributes = [{attribute: "Producer", descending: true}, { attribute: "Title", descending: true}];
+
+ var d = new doh.Deferred();
+ function completed(items, findResult){
+ var orderedArray = [5,4,0,3,2,1,6];
+ t.assertTrue(items.length === 7);
+ var passed = true;
+ for(var i = 0; i < items.length; i++){
+ if(!(csvStore.getIdentity(items[i]) === orderedArray[i])){
+ passed=false;
+ break;
+ }
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ csvStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.CsvStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.CsvStore(dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv"));
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ console.log("Looking at function: [" + i + "]");
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]. Got value: " + testStoreMember);
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ },
+ function testIdentityAPI_functionConformance(t){
+ // summary:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.CsvStore(dojox.data.tests.stores.CsvStore.getDatasource("stores/movies.csv"));
+ var identityApi = new dojo.data.api.Identity();
+ var passed = true;
+
+ for(i in identityApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = identityApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ console.log("Looking at function: [" + i + "]");
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+
+}
diff --git a/includes/js/dojox/data/tests/stores/FlickrRestStore.js b/includes/js/dojox/data/tests/stores/FlickrRestStore.js
new file mode 100644
index 0000000..23320ec
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/FlickrRestStore.js
@@ -0,0 +1,476 @@
+if(!dojo._hasResource["dojox.data.tests.stores.FlickrRestStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.FlickrRestStore"] = true;
+dojo.provide("dojox.data.tests.stores.FlickrRestStore");
+dojo.require("dojox.data.FlickrRestStore");
+dojo.require("dojo.data.api.Read");
+
+
+dojox.data.tests.stores.FlickrRestStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.FlickrRestStore",
+ [
+ {
+ name: "ReadAPI: Fetch_One",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on FlickrRestStore of a single item.
+ // description:
+ // Simple test of a basic fetch on FlickrRestStore of a single item.
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, doh, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_20_Streaming",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on FlickrRestStore.
+ // description:
+ // Simple test of a basic fetch on FlickrRestStore.
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ var count = 0;
+
+ function onItem(item, requestObj){
+ t.assertTrue(flickrStore.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.is(5, count);
+
+ t.is(null, items);
+ d.callback(true);
+ }
+ //Get everything...
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ onBegin: null,
+ count: 5,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_Paging",
+ timeout: 30000, //30 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.is(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.is(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.is(5, items.length);
+ request.start = 2;
+ request.count = 18;
+ request.onComplete = dumpFourthFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.is(18, items.length);
+ request.start = 9;
+ request.count = 11;
+ request.onComplete = dumpFifthFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.is(11, items.length);
+ request.start = 4;
+ request.count = 16;
+ request.onComplete = dumpSixthFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.is(16, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.is(7, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ flickrStore.fetch(request);
+ }
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 7,
+ onComplete: completed,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getLabel",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = flickrStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ d.callback(true);
+ }
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getLabelAttributes",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = flickrStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("title", labelList[0]);
+ d.callback(true);
+ }
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getValue",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(1, items.length);
+ t.assertTrue(flickrStore.getValue(items[0], "title") !== null);
+ t.assertTrue(flickrStore.getValue(items[0], "imageUrl") !== null);
+ t.assertTrue(flickrStore.getValue(items[0], "imageUrlSmall") !== null);
+ t.assertTrue(flickrStore.getValue(items[0], "imageUrlMedium") !== null);
+ d.callback(true);
+ }
+
+ //Get one item and look at it.
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getValues",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(1, items.length);
+ var title = flickrStore.getValues(items[0], "title");
+ t.assertTrue(title instanceof Array);
+
+ var imgUrl = flickrStore.getValues(items[0], "imageUrl");
+ t.assertTrue(imgUrl instanceof Array);
+
+ var imgUrlSmall = flickrStore.getValues(items[0], "imageUrlSmall");
+ t.assertTrue(imgUrlSmall instanceof Array);
+
+ var imgUrlMedium = flickrStore.getValues(items[0], "imageUrlMedium");
+ t.assertTrue(imgUrlMedium instanceof Array);
+ d.callback(true);
+ }
+ //Get one item and look at it.
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error,
+ t,
+ d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: isItem",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(5, items.length);
+ for(var i=0; i < items.length; i++){
+ t.assertTrue(flickrStore.isItem(items[i]));
+ }
+ d.callback(true);
+ }
+
+ //Get everything...
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 5,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: hasAttribute",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(items[0] !== null);
+ t.assertTrue(flickrStore.hasAttribute(items[0], "title"));
+ t.assertTrue(flickrStore.hasAttribute(items[0], "author"));
+ t.assertTrue(!flickrStore.hasAttribute(items[0], "Nothing"));
+ t.assertTrue(!flickrStore.hasAttribute(items[0], "Text"));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ flickrStore.hasAttribute(items[0], null);
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ //Get one item...
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: containsValue",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+
+ //Get one item...
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getAttributes",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(flickrStore.isItem(items[0]));
+
+ var attributes = flickrStore.getAttributes(items[0]);
+ t.is(9, attributes.length);
+ d.callback(true);
+ }
+
+ //Get everything...
+ flickrStore.fetch({
+ query: {
+ userid: "44153025@N00",
+ apikey: "8c6803164dbc395fb7131c9d54843627"
+ },
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrRestStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var flickrStore = new dojox.data.FlickrRestStore();
+
+ var features = flickrStore.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read"));
+ count++;
+ }
+ t.assertTrue(count === 1);
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.FlickrRestStore();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ }
+ ]
+);
+
+
+}
diff --git a/includes/js/dojox/data/tests/stores/FlickrStore.js b/includes/js/dojox/data/tests/stores/FlickrStore.js
new file mode 100644
index 0000000..3ed8c6c
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/FlickrStore.js
@@ -0,0 +1,410 @@
+if(!dojo._hasResource["dojox.data.tests.stores.FlickrStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.FlickrStore"] = true;
+dojo.provide("dojox.data.tests.stores.FlickrStore");
+dojo.require("dojox.data.FlickrStore");
+dojo.require("dojo.data.api.Read");
+
+
+dojox.data.tests.stores.FlickrStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.FlickrStore",
+ [
+ {
+ name: "ReadAPI: Fetch_One",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on FlickrStore of a single item.
+ // description:
+ // Simple test of a basic fetch on FlickrStore of a single item.
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ flickrStore.fetch({ query: {tags: "animals"},
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, doh, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_20_Streaming",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on FlickrStore.
+ // description:
+ // Simple test of a basic fetch on FlickrStore.
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ count = 0;
+
+ function onBegin(size, requestObj){
+ t.is(20, size);
+ }
+ function onItem(item, requestObj){
+ t.assertTrue(flickrStore.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.is(20, count);
+ t.is(null, items);
+ d.callback(true);
+ }
+
+ //Get everything...
+ flickrStore.fetch({ onBegin: onBegin,
+ count: 20,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_Paging",
+ timeout: 30000, //30 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.is(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.is(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.is(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.is(18, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.is(11, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ flickrStore.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.is(18, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.is(7, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ flickrStore.fetch(request);
+ }
+ flickrStore.fetch({count: 7, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getLabel",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = flickrStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ d.callback(true);
+ }
+ flickrStore.fetch({ query: {tags: "animals"},
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getLabelAttributes",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = flickrStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("title", labelList[0]);
+ d.callback(true);
+ }
+ flickrStore.fetch({ query: {tags: "animals"},
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getValue",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(1, items.length);
+ t.assertTrue(flickrStore.getValue(items[0], "title") !== null);
+ t.assertTrue(flickrStore.getValue(items[0], "imageUrl") !== null);
+ t.assertTrue(flickrStore.getValue(items[0], "imageUrlSmall") !== null);
+ t.assertTrue(flickrStore.getValue(items[0], "imageUrlMedium") !== null);
+ d.callback(true);
+ }
+
+ //Get one item and look at it.
+ flickrStore.fetch({ count: 1, onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getValues",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(1, items.length);
+ t.assertTrue(flickrStore.getValues(items[0], "title") instanceof Array);
+ t.assertTrue(flickrStore.getValues(items[0], "description") instanceof Array);
+ t.assertTrue(flickrStore.getValues(items[0], "imageUrl") instanceof Array);
+ t.assertTrue(flickrStore.getValues(items[0], "imageUrlSmall") instanceof Array);
+ t.assertTrue(flickrStore.getValues(items[0], "imageUrlMedium") instanceof Array);
+ d.callback(true);
+ }
+ //Get one item and look at it.
+ flickrStore.fetch({ count: 1, onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: isItem",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(5, items.length);
+ for(var i=0; i < items.length; i++){
+ t.assertTrue(flickrStore.isItem(items[i]));
+ }
+ d.callback(true);
+ }
+
+ //Get everything...
+ flickrStore.fetch({ count: 5, onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: hasAttribute",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(items[0] !== null);
+ t.assertTrue(flickrStore.hasAttribute(items[0], "title"));
+ t.assertTrue(flickrStore.hasAttribute(items[0], "description"));
+ t.assertTrue(flickrStore.hasAttribute(items[0], "author"));
+ t.assertTrue(!flickrStore.hasAttribute(items[0], "Nothing"));
+ t.assertTrue(!flickrStore.hasAttribute(items[0], "Text"));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ flickrStore.hasAttribute(items[0], null);
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ //Get one item...
+ flickrStore.fetch({ query: {tags: "animals"},
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: containsValue",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+
+ //Get one item...
+ flickrStore.fetch({ query: {tags: "animals"},
+ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getAttributes",
+ timeout: 10000, //10 seconds. Flickr can sometimes be slow.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(flickrStore.isItem(items[0]));
+
+ var attributes = flickrStore.getAttributes(items[0]);
+ t.is(10, attributes.length);
+ d.callback(true);
+ }
+
+ //Get everything...
+ flickrStore.fetch({ count: 1, onComplete: onComplete, onError: dojo.partial(dojox.data.tests.stores.FlickrStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var flickrStore = new dojox.data.FlickrStore();
+
+ var features = flickrStore.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read"));
+ count++;
+ }
+ t.assertTrue(count === 1);
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.FlickrStore();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+
+}
diff --git a/includes/js/dojox/data/tests/stores/HtmlStore.js b/includes/js/dojox/data/tests/stores/HtmlStore.js
new file mode 100644
index 0000000..648dd06
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/HtmlStore.js
@@ -0,0 +1,804 @@
+if(!dojo._hasResource["dojox.data.tests.stores.HtmlStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.HtmlStore"] = true;
+dojo.provide("dojox.data.tests.stores.HtmlStore");
+dojo.require("dojox.data.HtmlStore");
+dojo.require("dojo.data.api.Read");
+dojo.require("dojo.data.api.Identity");
+
+
+dojox.data.tests.stores.HtmlStore.getBooks3Store = function(){
+ return new dojox.data.HtmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books3.html").toString(), dataId: "books3"});
+};
+
+dojox.data.tests.stores.HtmlStore.getBooks2Store = function(){
+ return new dojox.data.HtmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books2.html").toString(), dataId: "books2"});
+};
+
+dojox.data.tests.stores.HtmlStore.getBooksStore = function(){
+ return new dojox.data.HtmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books.html").toString(), dataId: "books"});
+};
+
+doh.register("dojox.data.tests.stores.HtmlStore",
+ [
+/***************************************
+ dojo.data.api.Read API
+***************************************/
+ function testReadAPI_fetch_all_table(t){
+ // summary:
+ // Simple test of fetching all xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching all xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlStore.getBooksStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_all_list(t){
+ // summary:
+ // Simple test of fetching all xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching all xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlStore.getBooks3Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{name:"*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one_table(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one_list(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlStore.getBooks3Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{name:"A9B57C - Title of 1 - Author of 1"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_paging(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlStore.getBooksStore();
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.assertEqual(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ store.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.assertEqual(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ store.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.assertEqual(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.assertEqual(18, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.assertEqual(11, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ store.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.assertEqual(18, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.assertEqual(20, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ store.fetch(request);
+ }
+
+ function error(errData, request){
+ d.errback(errData);
+ }
+
+ store.fetch({onComplete: completed, onError: error});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern0(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern1(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(4, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B57?"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern2(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with * pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with * pattern match
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern_caseInsensitive(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case insensitive mode.
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case insensitive mode.
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9b574"}, queryOptions: {ignoreCase: true}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern_caseSensitive(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case sensitive mode.
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case sensitive mode.
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9B574"}, queryOptions: {ignoreCase: false}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getLabel_table(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = store.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("Item #4", label);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+ function testReadAPI_getLabel_list(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.HtmlStore.getBooks3Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = store.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("A9B57C - Title of 1 - Author of 1", label);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{name:"A9B57C - Title of 1 - Author of 1"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+ function testReadAPI_getLabelAttributes(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = store.getLabelAttributes(items[0]);
+ t.assertTrue(labelList === null);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+
+ function testReadAPI_getValue(t){
+ // summary:
+ // Simple test of the getValue API
+ // description:
+ // Simple test of the getValue API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ t.assertEqual(store.getValue(item,"isbn"), "A9B574");
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getValues(t){
+ // summary:
+ // Simple test of the getValues API
+ // description:
+ // Simple test of the getValues API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ var values = store.getValues(item,"isbn");
+ t.assertEqual(1,values.length);
+ t.assertEqual("A9B574", values[0]);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItem(t){
+ // summary:
+ // Simple test of the isItem API
+ // description:
+ // Simple test of the isItem API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.isItem(item));
+ t.assertTrue(!store.isItem({}));
+ t.assertTrue(!store.isItem("Foo"));
+ t.assertTrue(!store.isItem(1));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItem_multistore(t){
+ // summary:
+ // Simple test of the isItem API across multiple store instances.
+ // description:
+ // Simple test of the isItem API across multiple store instances.
+ var store1 = dojox.data.tests.stores.HtmlStore.getBooksStore();
+ var store2 = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete1(items, request) {
+ t.assertEqual(1, items.length);
+ var item1 = items[0];
+ t.assertTrue(store1.isItem(item1));
+
+ function onComplete2(items, request) {
+ t.assertEqual(1, items.length);
+ var item2 = items[0];
+ t.assertTrue(store2.isItem(item2));
+ t.assertTrue(!store1.isItem(item2));
+ t.assertTrue(!store2.isItem(item1));
+ d.callback(true);
+ }
+ store2.fetch({query:{isbn:"A9B574"}, onComplete: onComplete2, onError: onError});
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store1.fetch({query:{isbn:"1"}, onComplete: onComplete1, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_hasAttribute(t){
+ // summary:
+ // Simple test of the hasAttribute API
+ // description:
+ // Simple test of the hasAttribute API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ t.assertTrue(!store.hasAttribute(item,"bob"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_containsValue(t){
+ // summary:
+ // Simple test of the containsValue API
+ // description:
+ // Simple test of the containsValue API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ t.assertTrue(!store.containsValue(item,"isbn", "bob"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortDescending(t){
+ // summary:
+ // Simple test of the sorting API in descending order.
+ // description:
+ // Simple test of the sorting API in descending order.
+ var store = dojox.data.tests.stores.HtmlStore.getBooksStore();
+
+ //Comparison is done as a string type (toString comparison), so the order won't be numeric
+ //So have to compare in 'alphabetic' order.
+ var order = [9,8,7,6,5,4,3,20,2,19,18,17,16,15,14,13,12,11,10,1];
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(order[i], store.getValue(items[i],"isbn").toString());
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn", descending: true}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortAscending(t){
+ // summary:
+ // Simple test of the sorting API in ascending order.
+ // description:
+ // Simple test of the sorting API in ascending order.
+ var store = dojox.data.tests.stores.HtmlStore.getBooksStore();
+
+ //Comparison is done as a string type (toString comparison), so the order won't be numeric
+ //So have to compare in 'alphabetic' order.
+ var order = [1,10,11,12,13,14,15,16,17,18,19,2,20,3,4,5,6,7,8,9];
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 1;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(order[i], store.getValue(items[i],"isbn").toString());
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn"}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortDescendingNumeric(t){
+ // summary:
+ // Simple test of the sorting API in descending order using a numeric comparator.
+ // description:
+ // Simple test of the sorting API in descending order using a numeric comparator.
+ var store = dojox.data.tests.stores.HtmlStore.getBooksStore();
+
+ //isbn should be treated as a numeric, not as a string comparison
+ store.comparatorMap = {};
+ store.comparatorMap["isbn"] = function(a, b){
+ var ret = 0;
+ if(parseInt(a.toString()) > parseInt(b.toString())){
+ ret = 1;
+ }else if(parseInt(a.toString()) < parseInt(b.toString())){
+ ret = -1;
+ }
+ return ret; //int, {-1,0,1}
+ };
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 20;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(itemId, store.getValue(items[i],"isbn").toString());
+ itemId--;
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn", descending: true}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortAscendingNumeric(t){
+ // summary:
+ // Simple test of the sorting API in ascending order using a numeric comparator.
+ // description:
+ // Simple test of the sorting API in ascending order using a numeric comparator.
+ var store = dojox.data.tests.stores.HtmlStore.getBooksStore();
+
+ //isbn should be treated as a numeric, not as a string comparison
+ store.comparatorMap = {};
+ store.comparatorMap["isbn"] = function(a, b){
+ var ret = 0;
+ if(parseInt(a.toString()) > parseInt(b.toString())){
+ ret = 1;
+ }else if(parseInt(a.toString()) < parseInt(b.toString())){
+ ret = -1;
+ }
+ return ret; //int, {-1,0,1}
+ };
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 1;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(itemId, store.getValue(items[i],"isbn").toString());
+ itemId++;
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn"}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItemLoaded(t){
+ // summary:
+ // Simple test of the isItemLoaded API
+ // description:
+ // Simple test of the isItemLoaded API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.isItemLoaded(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+ var features = store.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read" || i === "dojo.data.api.Identity"));
+ count++;
+ }
+ t.assertEqual(2, count);
+ },
+ function testReadAPI_getAttributes(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ var attributes = store.getAttributes(item);
+ t.assertEqual(3,attributes.length);
+ for(var i=0; i<attributes.length; i++){
+ t.assertTrue((attributes[i] === "isbn" || attributes[i] === "title" || attributes[i] === "author"));
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.HtmlStore.getBooksStore();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]");
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ },
+/***************************************
+ dojo.data.api.Identity API
+***************************************/
+ function testIdentityAPI_getIdentity_table(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertEqual(4,store.getIdentity(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_getIdentity_list(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks3Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertEqual("A9B57C - Title of 1 - Author of 1",store.getIdentity(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{name:"A9B57C - Title of 1 - Author of 1"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_getIdentityAttributes(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ //Should have none, as it's not a public attribute.
+ var attributes = store.getIdentityAttributes(item);
+ t.assertEqual(null, attributes);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_fetchItemByIdentity_table(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity API
+ // description:
+ // Simple test of the fetchItemByIdentity API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onItem(item, request) {
+ t.assertTrue(item !== null);
+ t.assertTrue(store.isItem(item));
+ t.assertEqual("A9B574", store.getValue(item, "isbn"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetchItemByIdentity({identity: 4, onItem: onItem, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_fetchItemByIdentity_list(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity API
+ // description:
+ // Simple test of the fetchItemByIdentity API
+ var store = dojox.data.tests.stores.HtmlStore.getBooks3Store();
+
+ var d = new doh.Deferred();
+ function onItem(item, request) {
+ t.assertTrue(item !== null);
+ t.assertTrue(store.isItem(item));
+ t.assertEqual("A9B57C - Title of 1 - Author of 1", store.getValue(item, "name"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetchItemByIdentity({identity: "A9B57C - Title of 1 - Author of 1", onItem: onItem, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_functionConformance(t){
+ // summary:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.HtmlStore.getBooksStore();
+ var identityApi = new dojo.data.api.Identity();
+ var passed = true;
+
+ for(i in identityApi){
+ var member = identityApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]");
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+//Register the remote tests ... when they work.
+//doh.registerUrl("dojox.data.tests.stores.HtmlStore.remote", dojo.moduleUrl("dojox.data.tests", "ml/test_HtmlStore_declaratively.html"));
+
+}
diff --git a/includes/js/dojox/data/tests/stores/HtmlTableStore.js b/includes/js/dojox/data/tests/stores/HtmlTableStore.js
new file mode 100644
index 0000000..5c21e85
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/HtmlTableStore.js
@@ -0,0 +1,702 @@
+if(!dojo._hasResource["dojox.data.tests.stores.HtmlTableStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.HtmlTableStore"] = true;
+dojo.provide("dojox.data.tests.stores.HtmlTableStore");
+dojo.require("dojox.data.HtmlTableStore");
+dojo.require("dojo.data.api.Read");
+dojo.require("dojo.data.api.Identity");
+
+
+dojox.data.tests.stores.HtmlTableStore.getBooks2Store = function(){
+ return new dojox.data.HtmlTableStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books2.html").toString(), tableId: "books2"});
+};
+
+dojox.data.tests.stores.HtmlTableStore.getBooksStore = function(){
+ return new dojox.data.HtmlTableStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books.html").toString(), tableId: "books"});
+};
+
+doh.register("dojox.data.tests.stores.HtmlTableStore",
+ [
+/***************************************
+ dojo.data.api.Read API
+***************************************/
+ function testReadAPI_fetch_all(t){
+ // summary:
+ // Simple test of fetching all xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching all xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_paging(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.assertEqual(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ store.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.assertEqual(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ store.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.assertEqual(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.assertEqual(18, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.assertEqual(11, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ store.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.assertEqual(18, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.assertEqual(20, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ store.fetch(request);
+ }
+
+ function error(errData, request){
+ d.errback(errData);
+ }
+
+ store.fetch({onComplete: completed, onError: error});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern0(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern1(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(4, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B57?"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern2(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with * pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with * pattern match
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern_caseInsensitive(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case insensitive mode.
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case insensitive mode.
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9b574"}, queryOptions: {ignoreCase: true}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern_caseSensitive(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case sensitive mode.
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case sensitive mode.
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9B574"}, queryOptions: {ignoreCase: false}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getLabel(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = store.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("Table Row #3", label);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+ function testReadAPI_getLabelAttributes(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = store.getLabelAttributes(items[0]);
+ t.assertTrue(labelList === null);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+
+ function testReadAPI_getValue(t){
+ // summary:
+ // Simple test of the getValue API
+ // description:
+ // Simple test of the getValue API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ t.assertEqual(store.getValue(item,"isbn"), "A9B574");
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getValues(t){
+ // summary:
+ // Simple test of the getValues API
+ // description:
+ // Simple test of the getValues API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ var values = store.getValues(item,"isbn");
+ t.assertEqual(1,values.length);
+ t.assertEqual("A9B574", values[0]);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItem(t){
+ // summary:
+ // Simple test of the isItem API
+ // description:
+ // Simple test of the isItem API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.isItem(item));
+ t.assertTrue(!store.isItem({}));
+ t.assertTrue(!store.isItem("Foo"));
+ t.assertTrue(!store.isItem(1));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItem_multistore(t){
+ // summary:
+ // Simple test of the isItem API across multiple store instances.
+ // description:
+ // Simple test of the isItem API across multiple store instances.
+ var store1 = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+ var store2 = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete1(items, request) {
+ t.assertEqual(1, items.length);
+ var item1 = items[0];
+ t.assertTrue(store1.isItem(item1));
+
+ function onComplete2(items, request) {
+ t.assertEqual(1, items.length);
+ var item2 = items[0];
+ t.assertTrue(store2.isItem(item2));
+ t.assertTrue(!store1.isItem(item2));
+ t.assertTrue(!store2.isItem(item1));
+ d.callback(true);
+ }
+ store2.fetch({query:{isbn:"A9B574"}, onComplete: onComplete2, onError: onError});
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store1.fetch({query:{isbn:"1"}, onComplete: onComplete1, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_hasAttribute(t){
+ // summary:
+ // Simple test of the hasAttribute API
+ // description:
+ // Simple test of the hasAttribute API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ t.assertTrue(!store.hasAttribute(item,"bob"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_containsValue(t){
+ // summary:
+ // Simple test of the containsValue API
+ // description:
+ // Simple test of the containsValue API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ t.assertTrue(!store.containsValue(item,"isbn", "bob"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortDescending(t){
+ // summary:
+ // Simple test of the sorting API in descending order.
+ // description:
+ // Simple test of the sorting API in descending order.
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+
+ //Comparison is done as a string type (toString comparison), so the order won't be numeric
+ //So have to compare in 'alphabetic' order.
+ var order = [9,8,7,6,5,4,3,20,2,19,18,17,16,15,14,13,12,11,10,1];
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(order[i], store.getValue(items[i],"isbn").toString());
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn", descending: true}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortAscending(t){
+ // summary:
+ // Simple test of the sorting API in ascending order.
+ // description:
+ // Simple test of the sorting API in ascending order.
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+
+ //Comparison is done as a string type (toString comparison), so the order won't be numeric
+ //So have to compare in 'alphabetic' order.
+ var order = [1,10,11,12,13,14,15,16,17,18,19,2,20,3,4,5,6,7,8,9];
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 1;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(order[i], store.getValue(items[i],"isbn").toString());
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn"}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortDescendingNumeric(t){
+ // summary:
+ // Simple test of the sorting API in descending order using a numeric comparator.
+ // description:
+ // Simple test of the sorting API in descending order using a numeric comparator.
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+
+ //isbn should be treated as a numeric, not as a string comparison
+ store.comparatorMap = {};
+ store.comparatorMap["isbn"] = function(a, b){
+ var ret = 0;
+ if(parseInt(a.toString()) > parseInt(b.toString())){
+ ret = 1;
+ }else if(parseInt(a.toString()) < parseInt(b.toString())){
+ ret = -1;
+ }
+ return ret; //int, {-1,0,1}
+ };
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 20;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(itemId, store.getValue(items[i],"isbn").toString());
+ itemId--;
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn", descending: true}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortAscendingNumeric(t){
+ // summary:
+ // Simple test of the sorting API in ascending order using a numeric comparator.
+ // description:
+ // Simple test of the sorting API in ascending order using a numeric comparator.
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+
+ //isbn should be treated as a numeric, not as a string comparison
+ store.comparatorMap = {};
+ store.comparatorMap["isbn"] = function(a, b){
+ var ret = 0;
+ if(parseInt(a.toString()) > parseInt(b.toString())){
+ ret = 1;
+ }else if(parseInt(a.toString()) < parseInt(b.toString())){
+ ret = -1;
+ }
+ return ret; //int, {-1,0,1}
+ };
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 1;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(itemId, store.getValue(items[i],"isbn").toString());
+ itemId++;
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn"}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItemLoaded(t){
+ // summary:
+ // Simple test of the isItemLoaded API
+ // description:
+ // Simple test of the isItemLoaded API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.isItemLoaded(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+ var features = store.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read" || i === "dojo.data.api.Identity"));
+ count++;
+ }
+ t.assertEqual(2, count);
+ },
+ function testReadAPI_getAttributes(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ var attributes = store.getAttributes(item);
+ t.assertEqual(3,attributes.length);
+ for(var i=0; i<attributes.length; i++){
+ t.assertTrue((attributes[i] === "isbn" || attributes[i] === "title" || attributes[i] === "author"));
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]");
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ },
+/***************************************
+ dojo.data.api.Identity API
+***************************************/
+ function testIdentityAPI_getIdentity(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertEqual(3,store.getIdentity(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_getIdentityAttributes(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ //Should have none, as it's not a public attribute.
+ var attributes = store.getIdentityAttributes(item);
+ t.assertEqual(null, attributes);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_fetchItemByIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity API
+ // description:
+ // Simple test of the fetchItemByIdentity API
+ var store = dojox.data.tests.stores.HtmlTableStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onItem(item, request) {
+ t.assertTrue(item !== null);
+ t.assertTrue(store.isItem(item));
+ t.assertEqual("A9B574", store.getValue(item, "isbn"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetchItemByIdentity({identity: 3, onItem: onItem, onError: onError});
+ return d; //Object
+ },
+ function testIdentityAPI_functionConformance(t){
+ // summary:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.HtmlTableStore.getBooksStore();
+ var identityApi = new dojo.data.api.Identity();
+ var passed = true;
+
+ for(i in identityApi){
+ var member = identityApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]");
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+//Register the remote tests ... when they work.
+//doh.registerUrl("dojox.data.tests.stores.HtmlTableStore.remote", dojo.moduleUrl("dojox.data.tests", "ml/test_HtmlTableStore_declaratively.html"));
+
+}
diff --git a/includes/js/dojox/data/tests/stores/KeyValueStore.js b/includes/js/dojox/data/tests/stores/KeyValueStore.js
new file mode 100644
index 0000000..1be92a7
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/KeyValueStore.js
@@ -0,0 +1,1002 @@
+if(!dojo._hasResource["dojox.data.tests.stores.KeyValueStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.KeyValueStore"] = true;
+dojo.provide("dojox.data.tests.stores.KeyValueStore");
+dojo.require("dojox.data.KeyValueStore");
+dojo.require("dojo.data.api.Read");
+dojo.require("dojo.data.api.Identity");
+
+dojox.data.tests.stores.KeyValueStore.getDatasource = function(type){
+ // summary:
+ // A simple helper function for getting the sample data used in each of the tests.
+ // description:
+ // A simple helper function for getting the sample data used in each of the tests.
+
+ var dataSource = {};
+ var filepath = "stores/properties.js";
+ if(dojo.isBrowser){
+ dataSource.url = dojo.moduleUrl("dojox.data.tests", filepath).toString();
+ }else{
+ // When running tests in Rhino, xhrGet is not available,
+ // so we have the file data in the code below.
+ var keyData = "/*[";
+ // Properties of December 1, 2007
+ keyData += '{ "year": "2007" },';
+ keyData += '{ "nmonth": "12" },';
+ keyData += '{ "month": "December" },';
+ keyData += '{ "nday": "1" },';
+ keyData += '{ "day": "Saturday" },';
+ keyData += '{ "dayOfYear": "335" },';
+ keyData += '{ "weekOfYear": "48" }';
+ keyData += ']*/';
+ dataSource.data = keyData;
+ }
+ return dataSource; //Object
+}
+
+dojox.data.tests.stores.KeyValueStore.verifyItems = function(keyStore, items, attribute, compareArray){
+ // summary:
+ // A helper function for validating that the items array is ordered
+ // the same as the compareArray
+ if(items.length != compareArray.length){ return false; }
+ for(var i = 0; i < items.length; i++){
+ if(!(keyStore.getValue(items[i], attribute) === compareArray[i])){
+ return false; //Boolean
+ }
+ }
+ return true; //Boolean
+}
+
+dojox.data.tests.stores.KeyValueStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ for (i in errData) {
+ console.log(errData[i]);
+ }
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.KeyValueStore",
+ [
+ function testReadAPI_fetch_all(t){
+ // summary:
+ // Simple test of a basic fetch on KeyValueStore.
+ // description:
+ // Simple test of a basic fetch on KeyValueStore.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/properties.js");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertTrue((items.length === 7));
+ d.callback(true);
+ }
+
+ //Get everything...
+ keyStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_all_withEmptyStringField(t){
+ // summary:
+ // Simple test of a basic fetch on KeyValueStore.
+ // description:
+ // Simple test of a basic fetch on KeyValueStore.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertTrue((items.length === 7));
+ d.callback(true);
+ }
+
+ //Get everything...
+ keyStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one(t){
+ // summary:
+ // Simple test of a basic fetch on KeyValueStore of a single item.
+ // description:
+ // Simple test of a basic fetch on KeyValueStore of a single item.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ keyStore.fetch({ query: {key: "year"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_fetch_Multiple(t){
+ // summary:
+ // Simple test of a basic fetch on KeyValueStore of a single item.
+ // description:
+ // Simple test of a basic fetch on KeyValueStore of a single item.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+
+ var done = [false, false];
+
+ function onCompleteOne(items, request){
+ done[0] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ function onCompleteTwo(items, request){
+ done[1] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ try
+ {
+ keyStore.fetch({ query: {key: "year"},
+ onComplete: onCompleteOne,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+ keyStore.fetch({ query: {key: "month"},
+ onComplete: onCompleteTwo,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+ }
+ catch(e)
+ {
+ for (i in e) {
+ console.log(e[i]);
+ }
+ }
+
+ return d; //Object
+ },
+ function testReadAPI_fetch_MultipleMixed(t){
+ // summary:
+ // Simple test of a basic fetch on KeyValueStore of a single item.
+ // description:
+ // Simple test of a basic fetch on KeyValueStore of a single item.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+
+ var done = [false, false];
+ function onComplete(items, request){
+ done[0] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ function onItem(item){
+ done[1] = true;
+ t.assertTrue(item !== null);
+ t.is('year', keyStore.getValue(item,"key"));
+ t.is(2007, keyStore.getValue(item,"value"));
+ t.is(2007, keyStore.getValue(item,"year"));
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ keyStore.fetch({ query: {key: "day"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_all_streaming(t){
+ // summary:
+ // Simple test of a basic fetch on KeyValueStore.
+ // description:
+ // Simple test of a basic fetch on KeyValueStore.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ count = 0;
+
+ function onBegin(size, requestObj){
+ t.assertTrue(size === 7);
+ }
+ function onItem(item, requestObj){
+ t.assertTrue(keyStore.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.is(7, count);
+ t.is(null, items);
+ d.callback(true);
+ }
+
+ //Get everything...
+ keyStore.fetch({ onBegin: onBegin,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_fetch_paging(t){
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.is(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ keyStore.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.is(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ keyStore.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.is(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ keyStore.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.is(5, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ keyStore.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.is(0, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ keyStore.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.is(5, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.is(7, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ keyStore.fetch(request);
+ }
+
+ keyStore.fetch({onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+
+ function testReadAPI_getLabel(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = keyStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("year", label);
+ d.callback(true);
+ }
+ keyStore.fetch({ query: {key: "year"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+ return d;
+ },
+ function testReadAPI_getLabelAttributes(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource();
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = keyStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("key", labelList[0]);
+ d.callback(true);
+ }
+ keyStore.fetch({ query: {key: "year"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)
+ });
+ return d;
+ },
+ function testReadAPI_getValue(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("nday", keyStore.getValue(item,"key"));
+ t.is(1, keyStore.getValue(item,"value"));
+ t.is(1, keyStore.getValue(item,"nday"));
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "nday", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValue_2(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("day", keyStore.getValue(item,"key"));
+ t.is("Saturday", keyStore.getValue(item,"value"));
+ t.is("Saturday", keyStore.getValue(item,"day"));
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "day", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValue_3(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("dayOfYear", keyStore.getValue(item,"key"));
+ t.is(335, keyStore.getValue(item,"value"));
+ t.is(335, keyStore.getValue(item,"dayOfYear"));
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "dayOfYear", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValue_4(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.is("weekOfYear", keyStore.getValue(item,"key"));
+ t.is(48, keyStore.getValue(item,"value"));
+ t.is(48, keyStore.getValue(item,"weekOfYear"));
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "weekOfYear", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getValues(t){
+ // summary:
+ // Simple test of the getValues function of the store.
+ // description:
+ // Simple test of the getValues function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ var names = keyStore.getValues(item,"year");
+ t.assertTrue(dojo.isArray(names));
+ t.is(1, names.length);
+ t.is(2007, names[0]);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+
+ function testIdentityAPI_fetchItemByIdentity_bad1(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "y3ar", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity_bad2(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "-1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity_bad3(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "999999", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_getIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(7, items.length);
+ t.is(keyStore.getIdentity(items[0]), 'year');
+ t.is(keyStore.getIdentity(items[1]), 'nmonth');
+ t.is(keyStore.getIdentity(items[2]), 'month');
+ t.is(keyStore.getIdentity(items[3]), 'nday');
+ t.is(keyStore.getIdentity(items[4]), 'day');
+ t.is(keyStore.getIdentity(items[5]), 'dayOfYear');
+ t.is(keyStore.getIdentity(items[6]), 'weekOfYear');
+ d.callback(true);
+ }
+
+ //Get everything...
+ keyStore.fetch({ onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testIdentityAPI_getIdentityAttributes(t){
+ // summary:
+ // Simple test of the getIdentityAttributes
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(keyStore.isItem(item));
+ t.assertEqual("key", keyStore.getIdentityAttributes(item));
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_isItem(t){
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(keyStore.isItem(item));
+ t.assertTrue(!keyStore.isItem({}));
+ t.assertTrue(!keyStore.isItem({ item: "not an item" }));
+ t.assertTrue(!keyStore.isItem("not an item"));
+ t.assertTrue(!keyStore.isItem(["not an item"]));
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_hasAttribute(t){
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.assertTrue(keyStore.hasAttribute(item, "key"));
+ t.assertTrue(keyStore.hasAttribute(item, "value"));
+ t.assertTrue(keyStore.hasAttribute(item, "year"));
+ t.assertTrue(!keyStore.hasAttribute(item, "Year"));
+ t.assertTrue(!keyStore.hasAttribute(item, "Nothing"));
+ t.assertTrue(!keyStore.hasAttribute(item, "Title"));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ keyStore.hasAttribute(item, null);
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_containsValue(t){
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.assertTrue(keyStore.containsValue(item, "year", "2007"));
+ t.assertTrue(keyStore.containsValue(item, "value", "2007"));
+ t.assertTrue(keyStore.containsValue(item, "key", "year"));
+ t.assertTrue(!keyStore.containsValue(item, "Title", "Alien2"));
+ t.assertTrue(!keyStore.containsValue(item, "Year", "1979 "));
+ t.assertTrue(!keyStore.containsValue(item, "Title", null));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ keyStore.containsValue(item, null, "foo");
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+ function testReadAPI_getAttributes(t){
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ t.assertTrue(keyStore.isItem(item));
+
+ var attributes = keyStore.getAttributes(item);
+ t.is(3, attributes.length);
+ for(var i = 0; i < attributes.length; i++){
+ t.assertTrue((attributes[i] === "year" || attributes[i] === "value" || attributes[i] === "key"));
+ }
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "year", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+
+ function testReadAPI_getAttributes_onlyTwo(t){
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ // Test an item that does not have all of the attributes
+ t.assertTrue(item !== null);
+ t.assertTrue(keyStore.isItem(item));
+
+ var attributes = keyStore.getAttributes(item);
+ t.assertTrue(attributes.length === 3);
+ t.assertTrue(attributes[0] === "key");
+ t.assertTrue(attributes[1] === "value");
+ t.assertTrue(attributes[2] === "nmonth");
+ d.callback(true);
+ }
+ keyStore.fetchItemByIdentity({identity: "nmonth", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d;
+ },
+
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var features = keyStore.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read" || i === "dojo.data.api.Identity"));
+ count++;
+ }
+ t.assertTrue(count === 2);
+ },
+ function testReadAPI_fetch_patternMatch0(t){
+ // summary:
+ // Function to test pattern matching of everything starting with lowercase e
+ // description:
+ // Function to test pattern matching of everything starting with lowercase e
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(2, items.length);
+ var valueArray = [ "nmonth", "month"];
+ t.assertTrue(dojox.data.tests.stores.KeyValueStore.verifyItems(keyStore, items, "key", valueArray));
+ d.callback(true);
+ }
+
+ keyStore.fetch({query: {key: "*month"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch1(t){
+ // summary:
+ // Function to test pattern matching of everything with $ in it.
+ // description:
+ // Function to test pattern matching of everything with $ in it.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.assertTrue(items.length === 2);
+ var valueArray = [ "1", "Saturday"];
+ t.assertTrue(dojox.data.tests.stores.KeyValueStore.verifyItems(keyStore, items, "value", valueArray));
+ d.callback(true);
+ }
+
+ keyStore.fetch({query: {key: "*day"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch2(t){
+ // summary:
+ // Function to test exact pattern match
+ // description:
+ // Function to test exact pattern match
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(2, items.length);
+ t.assertTrue(keyStore.getValue(items[0], "value") === "12");
+ t.assertTrue(keyStore.getValue(items[0], "key") === "nmonth");
+ t.assertTrue(keyStore.getValue(items[1], "value") === "1");
+ t.assertTrue(keyStore.getValue(items[1], "key") === "nday");
+ d.callback(true);
+ }
+
+ keyStore.fetch({query: {value: "1*"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch_caseInsensitive(t){
+ // summary:
+ // Function to test exact pattern match with case insensitivity set.
+ // description:
+ // Function to test exact pattern match with case insensitivity set.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(1, items.length);
+ t.assertTrue(keyStore.getValue(items[0], "value") === "December");
+ d.callback(true);
+ }
+
+ keyStore.fetch({query: {key: "MONth"}, queryOptions: {ignoreCase: true}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch_caseSensitive(t){
+ // summary:
+ // Function to test exact pattern match with case insensitivity set.
+ // description:
+ // Function to test exact pattern match with case insensitivity set.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(0, items.length);
+ d.callback(true);
+ }
+
+ keyStore.fetch({query: {value: "DECEMberO"}, queryOptions: {ignoreCase: false}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabetic(t){
+ // summary:
+ // Function to test sorting alphabetic ordering.
+ // description:
+ // Function to test sorting alphabetic ordering.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ "day", "dayOfYear", "month", "nday", "nmonth", "weekOfYear", "year" ];
+ t.is(7, items.length);
+ t.assertTrue(dojox.data.tests.stores.KeyValueStore.verifyItems(keyStore, items, "key", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "key"}];
+ keyStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabeticDescending(t){
+ // summary:
+ // Function to test sorting alphabetic ordering in descending mode.
+ // description:
+ // Function to test sorting alphabetic ordering in descending mode.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ "year", "weekOfYear", "nmonth", "nday", "month", "dayOfYear", "day" ];
+ t.is(7, items.length);
+ t.assertTrue(dojox.data.tests.stores.KeyValueStore.verifyItems(keyStore, items, "key", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "key", descending: true}];
+ keyStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortMultiple(t){
+ // summary:
+ // Function to test sorting on multiple attributes.
+ // description:
+ // Function to test sorting on multiple attributes.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/patterns.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ var orderedArray1 = [ "123abc",
+ "123abc",
+ "123abc",
+ "123abcdefg",
+ "BaBaMaSaRa***Foo",
+ "bar*foo",
+ "bit$Bite",
+ "foo*bar",
+ "jfq4@#!$!@Rf14r14i5u",
+ undefined
+ ];
+ var orderedArray0 = [ "day", "dayOfYear", "month", "nday", "nmonth", "weekOfYear", "year" ];
+ var orderedArray1 = [ "Saturday", "335", "December", "1", "12", "48", "2007" ];
+ t.is(7, items.length);
+ t.assertTrue(dojox.data.tests.stores.KeyValueStore.verifyItems(keyStore, items, "key", orderedArray0));
+ t.assertTrue(dojox.data.tests.stores.KeyValueStore.verifyItems(keyStore, items, "value", orderedArray1));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{ attribute: "key"}, { attribute: "value", descending: true}];
+ keyStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortMultipleSpecialComparator(t){
+ // summary:
+ // Function to test sorting on multiple attributes with a custom comparator.
+ // description:
+ // Function to test sorting on multiple attributes with a custom comparator.
+
+ var args = dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv");
+ var keyStore = new dojox.data.KeyValueStore(args);
+
+ keyStore.comparatorMap = {};
+ keyStore.comparatorMap["key"] = function(a,b){
+ var ret = 0;
+ // We want to sort keys alphabetical by the last character in the string
+ function lastChar(name){
+ if(typeof name === "undefined"){ return undefined; }
+
+ return name.slice(name.length-1); // Grab the last character in the string.
+ }
+ var lastCharA = lastChar(a);
+ var lastCharB = lastChar(b);
+ if(lastCharA > lastCharB || typeof lastCharA === "undefined"){
+ ret = 1;
+ }else if(lastCharA < lastCharB || typeof lastCharB === "undefined"){
+ ret = -1;
+ }
+ return ret;
+ };
+
+ var sortAttributes = [{attribute: "key", descending: true}, { attribute: "value", descending: true}];
+
+ var d = new doh.Deferred();
+ function completed(items, findResult){
+ var orderedArray = [5,4,0,3,2,1,6];
+ var orderedArray = [ "day", "nday", "weekOfYear", "dayOfYear", "year", "month", "nmonth" ];
+ t.assertTrue(items.length === 7);
+ var passed = true;
+ for(var i = 0; i < items.length; i++){
+ if(!(keyStore.getIdentity(items[i]) === orderedArray[i])){
+ passed=false;
+ break;
+ }
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ keyStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.KeyValueStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.KeyValueStore(dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv"));
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ console.log("Looking at function: [" + i + "]");
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]. Got value: " + testStoreMember);
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ },
+ function testIdentityAPI_functionConformance(t){
+ // summary:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.KeyValueStore(dojox.data.tests.stores.KeyValueStore.getDatasource("stores/movies.csv"));
+ var identityApi = new dojo.data.api.Identity();
+ var passed = true;
+
+ for(i in identityApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = identityApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ console.log("Looking at function: [" + i + "]");
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+
+}
diff --git a/includes/js/dojox/data/tests/stores/OpmlStore.js b/includes/js/dojox/data/tests/stores/OpmlStore.js
new file mode 100644
index 0000000..4fe7be4
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/OpmlStore.js
@@ -0,0 +1,1075 @@
+if(!dojo._hasResource["dojox.data.tests.stores.OpmlStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.OpmlStore"] = true;
+dojo.provide("dojox.data.tests.stores.OpmlStore");
+dojo.require("dojox.data.OpmlStore");
+dojo.require("dojo.data.api.Read");
+
+dojox.data.tests.stores.OpmlStore.getDatasource = function(filepath){
+ // summary:
+ // A simple helper function for getting the sample data used in each of the tests.
+ // description:
+ // A simple helper function for getting the sample data used in each of the tests.
+
+ var dataSource = {};
+ if(dojo.isBrowser){
+ dataSource.url = dojo.moduleUrl("dojox.data.tests", filepath).toString();
+ }else{
+ // When running tests in Rhino, xhrGet is not available,
+ // so we have the file data in the code below.
+ switch(filepath){
+ case "stores/geography.xml":
+ var opmlData = "";
+ opmlData += '<?xml version="1.0" encoding="ISO-8859-1"?>\n';
+ opmlData += ' <opml version="1.0">\n';
+ opmlData += ' <head>\n';
+ opmlData += ' <title>geography.opml</title>\n';
+ opmlData += ' <dateCreated>2006-11-10</dateCreated>\n';
+ opmlData += ' <dateModified>2006-11-13</dateModified>\n';
+ opmlData += ' <ownerName>Magellan, Ferdinand</ownerName>\n';
+ opmlData += ' </head>\n';
+ opmlData += ' <body>\n';
+ opmlData += ' <outline text="Africa" type="continent">\n';
+ opmlData += ' <outline text="Egypt" type="country"/>\n';
+ opmlData += ' <outline text="Kenya" type="country">\n';
+ opmlData += ' <outline text="Nairobi" type="city"/>\n';
+ opmlData += ' <outline text="Mombasa" type="city"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Sudan" type="country">\n';
+ opmlData += ' <outline text="Khartoum" type="city"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Asia" type="continent">\n';
+ opmlData += ' <outline text="China" type="country"/>\n';
+ opmlData += ' <outline text="India" type="country"/>\n';
+ opmlData += ' <outline text="Russia" type="country"/>\n';
+ opmlData += ' <outline text="Mongolia" type="country"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Australia" type="continent" population="21 million">\n';
+ opmlData += ' <outline text="Australia" type="country" population="21 million"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Europe" type="continent">\n';
+ opmlData += ' <outline text="Germany" type="country"/>\n';
+ opmlData += ' <outline text="France" type="country"/>\n';
+ opmlData += ' <outline text="Spain" type="country"/>\n';
+ opmlData += ' <outline text="Italy" type="country"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="North America" type="continent">\n';
+ opmlData += ' <outline text="Mexico" type="country" population="108 million" area="1,972,550 sq km">\n';
+ opmlData += ' <outline text="Mexico City" type="city" population="19 million" timezone="-6 UTC"/>\n';
+ opmlData += ' <outline text="Guadalajara" type="city" population="4 million" timezone="-6 UTC"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Canada" type="country" population="33 million" area="9,984,670 sq km">\n';
+ opmlData += ' <outline text="Ottawa" type="city" population="0.9 million" timezone="-5 UTC"/>\n';
+ opmlData += ' <outline text="Toronto" type="city" population="2.5 million" timezone="-5 UTC"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="United States of America" type="country"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="South America" type="continent">\n';
+ opmlData += ' <outline text="Brazil" type="country" population="186 million"/>\n';
+ opmlData += ' <outline text="Argentina" type="country" population="40 million"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' </body>\n';
+ opmlData += ' </opml>\n';
+ break;
+ case "stores/geography_withspeciallabel.xml":
+ var opmlData = "";
+ opmlData += '<?xml version="1.0" encoding="ISO-8859-1"?>\n';
+ opmlData += '<opml version="1.0">\n';
+ opmlData += ' <head>\n';
+ opmlData += ' <title>geography.opml</title>\n';
+ opmlData += ' <dateCreated>2006-11-10</dateCreated>\n';
+ opmlData += ' <dateModified>2006-11-13</dateModified>\n';
+ opmlData += ' <ownerName>Magellan, Ferdinand</ownerName>\n';
+ opmlData += ' </head>\n';
+ opmlData += ' <body>\n';
+ opmlData += ' <outline text="Africa" type="continent" label="Continent/Africa">\n';
+ opmlData += ' <outline text="Egypt" type="country" label="Country/Egypt"/>\n';
+ opmlData += ' <outline text="Kenya" type="country" label="Country/Kenya">\n';
+ opmlData += ' <outline text="Nairobi" type="city" label="City/Nairobi"/>\n';
+ opmlData += ' <outline text="Mombasa" type="city" label="City/Mombasa"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Sudan" type="country" label="Country/Sudan">\n';
+ opmlData += ' <outline text="Khartoum" type="city" label="City/Khartoum"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Asia" type="continent" label="Continent/Asia">\n';
+ opmlData += ' <outline text="China" type="country" label="Country/China"/>\n';
+ opmlData += ' <outline text="India" type="country" label="Country/India"/>\n';
+ opmlData += ' <outline text="Russia" type="country" label="Country/Russia"/>\n';
+ opmlData += ' <outline text="Mongolia" type="country" label="Country/Mongolia"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Australia" type="continent" population="21 million" label="Continent/Australia">\n';
+ opmlData += ' <outline text="Australia" type="country" population="21 million" label="Country/Australia"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Europe" type="continent" label="Contintent/Europe">\n';
+ opmlData += ' <outline text="Germany" type="country" label="Country/Germany"/>\n';
+ opmlData += ' <outline text="France" type="country" label="Country/France"/>\n';
+ opmlData += ' <outline text="Spain" type="country" label="Country/Spain"/>\n';
+ opmlData += ' <outline text="Italy" type="country" label="Country/Italy"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="North America" type="continent" label="Continent/North America">\n';
+ opmlData += ' <outline text="Mexico" type="country" population="108 million" area="1,972,550 sq km" label="Country/Mexico">\n';
+ opmlData += ' <outline text="Mexico City" type="city" population="19 million" timezone="-6 UTC" label="City/Mexico City"/>\n';
+ opmlData += ' <outline text="Guadalajara" type="city" population="4 million" timezone="-6 UTC" label="City/Guadalajara"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="Canada" type="country" population="33 million" area="9,984,670 sq km" label="Country/Canada">\n';
+ opmlData += ' <outline text="Ottawa" type="city" population="0.9 million" timezone="-5 UTC" label="City/Ottawa"/>\n';
+ opmlData += ' <outline text="Toronto" type="city" population="2.5 million" timezone="-5 UTC" label="City/Toronto"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="United States of America" type="country" label="Country/United States of America"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' <outline text="South America" type="continent" label="Continent/South America">\n';
+ opmlData += ' <outline text="Brazil" type="country" population="186 million" label="Country/Brazil"/>\n';
+ opmlData += ' <outline text="Argentina" type="country" population="40 million" label="Country/Argentina"/>\n';
+ opmlData += ' </outline>\n';
+ opmlData += ' </body>\n';
+ opmlData += '</opml>\n';
+ break;
+ }
+ dataSource.data = opmlData;
+ }
+ return dataSource; //Object
+}
+
+dojox.data.tests.stores.OpmlStore.verifyItems = function(opmlStore, items, attribute, compareArray){
+ // summary:
+ // A helper function for validating that the items array is ordered
+ // the same as the compareArray
+ if(items.length != compareArray.length){ return false; }
+ for(var i = 0; i < items.length; i++){
+ if(!(opmlStore.getValue(items[i], attribute) === compareArray[i])){
+ return false; //Boolean
+ }
+ }
+ return true; //Boolean
+}
+
+dojox.data.tests.stores.OpmlStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.OpmlStore",
+ [
+ function testReadAPI_fetch_all(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore.
+ // description:
+ // Simple test of a basic fetch on OpmlStore.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(6, items.length);
+ d.callback(true);
+ }
+
+ //Get everything...
+ opmlStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore of a single item.
+ // description:
+ // Simple test of a basic fetch on OpmlStore of a single item.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d; //Object
+ },
+
+ function testReadAPI_fetch_one_Multiple(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore of a single item.
+ // description:
+ // Simple test of a basic fetch on OpmlStore of a single item.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ var done = [false,false];
+ function onCompleteOne(items, request){
+ done[0] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+ function onCompleteTwo(items, request){
+ done[1] = true;
+ t.is(1, items.length);
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onCompleteOne,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+
+ opmlStore.fetch({ query: {text: "North America"},
+ onComplete: onCompleteTwo,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+
+ return d; //Object
+ },
+
+ function testReadAPI_fetch_one_MultipleMixed(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore of a single item mixing two fetch types.
+ // description:
+ // Simple test of a basic fetch on Cpmltore of a single item mixing two fetch types.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+
+ var done = [false, false];
+ function onComplete(items, request){
+ done[0] = true;
+ t.is(1, items.length);
+ console.log("Found item: " + opmlStore.getValue(items[0],"text") + " with identity: " + opmlStore.getIdentity(items[0]));
+ t.is(0, opmlStore.getIdentity(items[0]));
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ function onItem(item){
+ done[1] = true;
+ t.assertTrue(item !== null);
+ console.log("Found item: " + opmlStore.getValue(item,"text"));
+ t.is('Egypt', opmlStore.getValue(item,"text")); //Should be the second node parsed, ergo id 1, first node is id 0.
+ t.is(1, opmlStore.getIdentity(item));
+ if(done[0] && done[1]){
+ d.callback(true);
+ }
+ }
+
+ opmlStore.fetch({ query: {text: "Africa"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+
+ opmlStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+
+ return d; //Object
+ },
+
+ function testReadAPI_fetch_one_deep(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore of a single item that's nested down as a child item.
+ // description:
+ // Simple test of a basic fetch on OpmlStore of a single item that's nested down as a child item.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.is(1, items.length);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Mexico City"},
+ queryOptions: {deep:true},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d; //Object
+ },
+
+ function testReadAPI_fetch_one_deep_off(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore of a single item that's nested down as a child item.
+ // description:
+ // Simple test of a basic fetch on OpmlStore of a single item that's nested down as a child item.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ //Nothing should be found.
+ t.is(0, items.length);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Mexico City"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d; //Object
+ },
+
+ function testReadAPI_fetch_all_streaming(t){
+ // summary:
+ // Simple test of a basic fetch on OpmlStore.
+ // description:
+ // Simple test of a basic fetch on OpmlStore.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ count = 0;
+
+ function onBegin(size, requestObj){
+ t.is(6, size);
+ }
+ function onItem(item, requestObj){
+ t.assertTrue(opmlStore.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.is(6, count);
+ t.is(null, items);
+ d.callback(true);
+ }
+
+ //Get everything...
+ opmlStore.fetch({ onBegin: onBegin,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_fetch_paging(t){
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.is(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ opmlStore.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.is(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ opmlStore.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.is(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ opmlStore.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.is(4, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ opmlStore.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.is(0, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ opmlStore.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.is(4, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.is(6, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ opmlStore.fetch(request);
+ }
+
+ opmlStore.fetch({onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+
+ },
+ function testReadAPI_getLabel(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = opmlStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("Asia", label);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d;
+ },
+ function testReadAPI_getLabelAttributes(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = opmlStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("text", labelList[0]);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d;
+ },
+
+ function testReadAPI_getLabel_nondefault(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography_withspeciallabel.xml");
+ args.label="label";
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = opmlStore.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("Continent/Asia", label);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d;
+ },
+ function testReadAPI_getLabelAttributes_nondefault(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography_withspeciallabel.xml");
+ args.label="label";
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = opmlStore.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("label", labelList[0]);
+ d.callback(true);
+ }
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d;
+ },
+
+ function testReadAPI_getValue(t){
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(6, items.length);
+
+ t.is("Africa", opmlStore.getValue(items[0],"text"));
+ t.is("Asia", opmlStore.getValue(items[1],"text"));
+ t.is("Australia", opmlStore.getValue(items[2],"text"));
+ t.is("Europe", opmlStore.getValue(items[3],"text"));
+ t.is("North America", opmlStore.getValue(items[4],"text"));
+ t.is("South America", opmlStore.getValue(items[5],"text"));
+
+ t.is("continent", opmlStore.getValue(items[1],"type"));
+ t.is("21 million", opmlStore.getValue(items[2],"population"));
+
+ var firstChild = opmlStore.getValue(items[4],"children");
+ t.assertTrue(opmlStore.isItem(firstChild));
+ t.is("Mexico", opmlStore.getValue(firstChild,"text"));
+ t.is("country", opmlStore.getValue(firstChild,"type"));
+ t.is("108 million", opmlStore.getValue(firstChild,"population"));
+ t.is("1,972,550 sq km", opmlStore.getValue(firstChild,"area"));
+
+ firstChild = opmlStore.getValue(firstChild,"children");
+ t.assertTrue(opmlStore.isItem(firstChild));
+ t.is("Mexico City", opmlStore.getValue(firstChild,"text"));
+ t.is("city", opmlStore.getValue(firstChild,"type"));
+ t.is("19 million", opmlStore.getValue(firstChild,"population"));
+ t.is("-6 UTC", opmlStore.getValue(firstChild,"timezone"));
+
+ d.callback(true);
+ }
+
+ //Get everything...
+ opmlStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_getValues(t){
+ // summary:
+ // Simple test of the getValues function of the store.
+ // description:
+ // Simple test of the getValues function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items){
+ t.is(1, items.length);
+
+ var children = opmlStore.getValues(items[0],"children");
+ t.is(3, children.length);
+ for(var i=0; i<children.length; i++){
+ t.assertTrue(opmlStore.isItem(children[i]));
+ }
+
+ t.is("Mexico", opmlStore.getValues(children[0],"text")[0]);
+ t.is("country", opmlStore.getValues(children[0],"type")[0]);
+ t.is("108 million", opmlStore.getValues(children[0],"population")[0]);
+ t.is("1,972,550 sq km", opmlStore.getValues(children[0],"area")[0]);
+
+ t.is("Canada", opmlStore.getValues(children[1],"text")[0]);
+ t.is("country", opmlStore.getValues(children[1],"type")[0]);
+
+ children = opmlStore.getValues(children[1],"children");
+ t.is(2, children.length);
+ for(var i=0; i<children.length; i++){
+ t.assertTrue(opmlStore.isItem(children[i]));
+ }
+ t.is("Ottawa", opmlStore.getValues(children[0],"text")[0]);
+ t.is("Toronto", opmlStore.getValues(children[1],"text")[0]);
+
+ d.callback(true);
+ }
+
+ //Get one item...
+ opmlStore.fetch({ query: {text: "North America"},
+ onComplete: completed,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_isItem(t){
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.is(6, items.length);
+ for(var i=0; i<6; i++){
+ t.assertTrue(opmlStore.isItem(items[i]));
+ }
+ t.assertTrue(!opmlStore.isItem({}));
+ t.assertTrue(!opmlStore.isItem({ item: "not an item" }));
+ t.assertTrue(!opmlStore.isItem("not an item"));
+ t.assertTrue(!opmlStore.isItem(["not an item"]));
+
+ d.callback(true);
+ }
+
+ //Get everything...
+ opmlStore.fetch({ onComplete: completedAll, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_hasAttribute(t){
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(items[0] !== null);
+ t.assertTrue(opmlStore.hasAttribute(items[0], "text"));
+ t.assertTrue(opmlStore.hasAttribute(items[0], "type"));
+ t.assertTrue(!opmlStore.hasAttribute(items[0], "population"));
+ t.assertTrue(!opmlStore.hasAttribute(items[0], "Nothing"));
+ t.assertTrue(!opmlStore.hasAttribute(items[0], "Text"));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ opmlStore.hasAttribute(items[0], null);
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+
+ d.callback(true);
+ }
+
+ //Get one item...
+ opmlStore.fetch({ query: {text: "Asia"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_containsValue(t){
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(1, items.length);
+ t.assertTrue(items[0] !== null);
+ t.assertTrue(opmlStore.containsValue(items[0], "text", "North America"));
+ t.assertTrue(opmlStore.containsValue(items[0], "type", "continent"));
+ t.assertTrue(!opmlStore.containsValue(items[0], "text", "America"));
+ t.assertTrue(!opmlStore.containsValue(items[0], "Type", "continent"));
+ t.assertTrue(!opmlStore.containsValue(items[0], "text", null));
+
+ var children = opmlStore.getValues(items[0], "children");
+ t.assertTrue(opmlStore.containsValue(items[0], "children", children[0]));
+ t.assertTrue(opmlStore.containsValue(items[0], "children", children[1]));
+ t.assertTrue(opmlStore.containsValue(items[0], "children", children[2]));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ opmlStore.containsValue(items[0], null, "foo");
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+
+ d.callback(true);
+ }
+
+ //Get one item...
+ opmlStore.fetch({ query: {text: "North America"},
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)
+ });
+ return d; //Object
+ },
+ function testReadAPI_getAttributes(t){
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.is(6, items.length);
+ t.assertTrue(opmlStore.isItem(items[0]));
+
+ var attributes = opmlStore.getAttributes(items[0]);
+ t.is(3, attributes.length);
+ for(var i = 0; i < attributes.length; i++){
+ t.assertTrue((attributes[i] === "text" || attributes[i] === "type" || attributes[i] === "children"));
+ }
+
+ d.callback(true);
+ }
+
+ //Get everything...
+ opmlStore.fetch({ onComplete: onComplete, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var features = opmlStore.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read") || (i === "dojo.data.api.Identity"));
+ count++;
+ }
+ t.assertTrue(count === 2);
+ },
+ function testReadAPI_fetch_patternMatch0(t){
+ // summary:
+ // Function to test pattern matching of everything starting with Capital A
+ // description:
+ // Function to test pattern matching of everything starting with Capital A
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(3, items.length);
+ var valueArray = [ "Africa", "Asia", "Australia"];
+ t.assertTrue(dojox.data.tests.stores.OpmlStore.verifyItems(opmlStore, items, "text", valueArray));
+ d.callback(true);
+ }
+
+ opmlStore.fetch({query: {text: "A*"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch1(t){
+ // summary:
+ // Function to test pattern matching of everything with America in it.
+ // description:
+ // Function to test pattern matching of everything with America in it.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.assertTrue(items.length === 2);
+ var valueArray = [ "North America", "South America"];
+ t.assertTrue(dojox.data.tests.stores.OpmlStore.verifyItems(opmlStore, items, "text", valueArray));
+ d.callback(true);
+ }
+
+ opmlStore.fetch({query: {text: "*America*"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch2(t){
+ // summary:
+ // Function to test exact pattern match
+ // description:
+ // Function to test exact pattern match
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(1, items.length);
+ t.assertTrue(opmlStore.getValue(items[0], "text") === "Europe");
+ d.callback(true);
+ }
+
+ opmlStore.fetch({query: {text: "Europe"}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch_caseInsensitive(t){
+ // summary:
+ // Function to test exact pattern match with case insensitivity set.
+ // description:
+ // Function to test exact pattern match with case insensitivity set.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(1, items.length);
+ t.assertTrue(opmlStore.getValue(items[0], "text") === "Asia");
+ d.callback(true);
+ }
+
+ opmlStore.fetch({query: {text: "asia"}, queryOptions: {ignoreCase: true}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_patternMatch_caseSensitive(t){
+ // summary:
+ // Function to test exact pattern match with case sensitivity set.
+ // description:
+ // Function to test exact pattern match with case sensitivity set.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ t.is(0, items.length);
+ d.callback(true);
+ }
+
+ opmlStore.fetch({query: {text: "ASIA"}, queryOptions: {ignoreCase: false}, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabetic(t){
+ // summary:
+ // Function to test sorting alphabetic ordering.
+ // description:
+ // Function to test sorting alphabetic ordering.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ "Africa", "Asia", "Australia", "Europe", "North America", "South America"];
+ t.is(6, items.length);
+ t.assertTrue(dojox.data.tests.stores.OpmlStore.verifyItems(opmlStore, items, "text", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "text"}];
+ opmlStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabeticDescending(t){
+ // summary:
+ // Function to test sorting alphabetic ordering in descending mode.
+ // description:
+ // Function to test sorting alphabetic ordering in descending mode.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ "South America", "North America", "Europe", "Australia", "Asia", "Africa"
+ ];
+ t.is(6, items.length);
+ t.assertTrue(dojox.data.tests.stores.OpmlStore.verifyItems(opmlStore, items, "text", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "text", descending: true}];
+ opmlStore.fetch({sort: sortAttributes, onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_fetch_sortAlphabeticWithCount(t){
+ // summary:
+ // Function to test sorting numerically in descending order, returning only a specified number of them.
+ // description:
+ // Function to test sorting numerically in descending order, returning only a specified number of them.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ //Output should be in this order...
+ var orderedArray = [ "South America", "North America", "Europe", "Australia"
+ ];
+ t.is(4, items.length);
+ t.assertTrue(dojox.data.tests.stores.OpmlStore.verifyItems(opmlStore, items, "text", orderedArray));
+ d.callback(true);
+ }
+
+ var sortAttributes = [{attribute: "text", descending: true}];
+ opmlStore.fetch({sort: sortAttributes,
+ count: 4,
+ onComplete: completed,
+ onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d; //Object
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.OpmlStore(dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml"));
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ },
+ function testIdentityAPI_fetchItemByIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item !== null);
+ d.callback(true);
+ }
+ opmlStore.fetchItemByIdentity({identity: "1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d;
+ },
+
+ function testIdentityAPI_fetchItemByIdentity_bad1(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ opmlStore.fetchItemByIdentity({identity: "200", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity_bad2(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ opmlStore.fetchItemByIdentity({identity: "-1", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_fetchItemByIdentity_bad3(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+ var d = new doh.Deferred();
+ function onItem(item){
+ t.assertTrue(item === null);
+ d.callback(true);
+ }
+ opmlStore.fetchItemByIdentity({identity: "999999", onItem: onItem, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d)});
+ return d;
+ },
+ function testIdentityAPI_getIdentity(t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ // description:
+ // Simple test of the fetchItemByIdentity function of the store.
+
+ var args = dojox.data.tests.stores.OpmlStore.getDatasource("stores/geography.xml");
+ var opmlStore = new dojox.data.OpmlStore(args);
+
+ var d = new doh.Deferred();
+ function completed(items, request){
+ var passed = true;
+ for(var i = 0; i < items.length; i++){
+ console.log("Identity is: " + opmlStore.getIdentity(items[i]) + " count is : "+ i);
+ if(!(opmlStore.getIdentity(items[i]) == i)){
+ passed=false;
+ break;
+ }
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ //Get everything...
+ opmlStore.fetch({ onComplete: completed, onError: dojo.partial(dojox.data.tests.stores.OpmlStore.error, t, d), queryOptions: {deep: true}});
+ return d; //Object
+ },
+ function testIdentityAPI_functionConformance(t){
+ // summary:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test identity API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.OpmlStore(dojox.data.tests.stores.CsvStore.getDatasource("stores/geography.xml"));
+ var identityApi = new dojo.data.api.Identity();
+ var passed = true;
+
+ for(i in identityApi){
+ if(i.toString().charAt(0) !== '_')
+ {
+ var member = identityApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ console.log("Looking at function: [" + i + "]");
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+
+}
diff --git a/includes/js/dojox/data/tests/stores/QueryReadStore.js b/includes/js/dojox/data/tests/stores/QueryReadStore.js
new file mode 100644
index 0000000..f725f06
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/QueryReadStore.js
@@ -0,0 +1,442 @@
+if(!dojo._hasResource["dojox.data.tests.stores.QueryReadStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.QueryReadStore"] = true;
+dojo.provide("dojox.data.tests.stores.QueryReadStore");
+dojo.require("dojox.data.QueryReadStore");
+dojo.require("dojo.data.api.Read");
+
+//dojo.require("dojox.testing.DocTest");
+
+dojox.data.tests.stores.QueryReadStore.getStore = function(){
+ return new dojox.data.QueryReadStore({
+ url: dojo.moduleUrl("dojox.data.tests", "stores/QueryReadStore.php").toString()
+ });
+};
+
+
+tests.register("dojox.data.tests.stores.QueryReadStore",
+ [
+ /*
+ function testDocTests(t) {
+ // summary:
+ // Run all the doc comments.
+ var doctest = new dojox.testing.DocTest();
+ doctest.run("dojox.data.QueryReadStore");
+ t.assertTrue(doctest.errors.length==0);
+ },
+ */
+
+ function testReadApi_getValue(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ // The good cases.
+ t.assertEqual("Alabama", store.getValue(item, "name"));
+ t.assertEqual("<img src='images/Alabama.jpg'/>Alabama", store.getValue(item, "label"));
+ t.assertEqual("AL", store.getValue(item, "abbreviation"));
+ // Test the defaultValue cases (the third paramter).
+ t.assertEqual("default value", store.getValue(item, "NAME", "default value"));
+ // TODO Test for null somehow ...
+ // Read api says: Returns null if and only if null was explicitly set as the attribute value.
+
+ // According to Read-API getValue() an exception is thrown when
+ // the item is not an item or when the attribute is not a string.
+ t.assertError(Error, store, "getValue", ["not an item", "NOT THERE"]);
+ t.assertError(Error, store, "getValue", [item, {}]);
+
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alabama"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_getValues(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ // The good cases.
+ t.assertEqual(["Alabama"], store.getValues(item, "name"));
+ t.assertEqual(["<img src='images/Alabama.jpg'/>Alabama"], store.getValues(item, "label"));
+ t.assertEqual(["AL"], store.getValues(item, "abbreviation"));
+ // TODO Test for null somehow ...
+ // Read api says: Returns null if and only if null was explicitly set as the attribute value.
+
+ // Test for not-existing attributes without defaultValues and invalid items.
+ // TODO
+ t.assertEqual([], store.getValues(item, "NOT THERE"));
+ var errThrown = false;
+ try{
+ //Should throw an exception.
+ var values = store.getValues("not an item", "NOT THERE");
+ }catch (e){
+ errThrown = true;
+ }
+ t.assertTrue(errThrown);
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alabama"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_getAttributes(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ // The good case(s).
+ t.assertEqual(['id', 'name', 'label', 'abbreviation', 'capital'], store.getAttributes(item));
+ t.assertError(Error, store, "getAttributes", [{}]);
+
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alabama"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_getLabel(t){
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ // The good cases.
+ t.assertEqual(["<img src='images/Alabama.jpg'/>Alabama"], store.getLabel(item));
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alabama"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_hasAttribute(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ // The positive cases.
+ t.assertEqual(true, store.hasAttribute(item, "name"));
+ t.assertEqual(true, store.hasAttribute(item, "label"));
+ t.assertEqual(true, store.hasAttribute(item, "abbreviation"));
+ // Make sure attribute case doesnt matter.
+ t.assertEqual(false, store.hasAttribute(item, "NAME"));
+ t.assertEqual(false, store.hasAttribute(item, "Name"));
+ t.assertEqual(false, store.hasAttribute(item, "Label"));
+ // Pass in an invalid item.
+ t.assertEqual(false, store.hasAttribute({}, "abbreviation"));
+ // pass in something that looks like the item with the attribute.
+ t.assertEqual(false, store.hasAttribute({name:"yo"}, "name"));
+
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alaska"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_containsValue(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ t.assertTrue(store.containsValue(item, "name", "Alaska"));
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alaska"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_isItem(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ // The good case.
+ t.assertEqual(true, store.isItem(items[0]));
+ // Try a pure object.
+ t.assertEqual(false, store.isItem({}));
+ // Try to look like an item.
+ t.assertEqual(false, store.isItem({name:"Alaska", label:"Alaska", abbreviation:"AK"}));
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alaska"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ function testReadApi_isItemLoaded(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ var item = items[0];
+ // The good case(s).
+ t.assertTrue(store.isItemLoaded(item));
+
+ d.callback(true);
+ }
+ store.fetch({query:{q:"Alabama"}, onComplete: onComplete});
+ return d; //Object
+ },
+
+ //function testReadApi_loadItem(t){
+ // // summary:
+ // // description:
+ // t.assertTrue(false);
+ //},
+
+ function testReadApi_fetch_all(t){
+ // summary:
+ // Simple test of fetching all items.
+ // description:
+ // Simple test of fetching all items.
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(8, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{q:"m"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadApi_fetch_onBegin(t){
+ // summary:
+ // Simple test of fetching items, checking that onBegin size is all items matched, and page is just the items asked for.
+ // description:
+ // Simple test of fetching items, checking that onBegin size is all items matched, and page is just the items asked for.
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ var passed = false;
+ function onBegin(size, request){
+ t.assertEqual(8, size);
+ passed = true;
+ }
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ if(passed){
+ d.callback(true);
+ }else{
+ d.errback(new Error("Store did not return proper number of rows, regardless of page size"));
+ }
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{q:"m"}, start: 0, count: 5, onBegin: onBegin, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadApi_fetch_onBegin_ServersidePaging(t){
+ // summary:
+ // Simple test of fetching items, checking that onBegin size is all items matched, and page is just the items asked for.
+ // description:
+ // Simple test of fetching items, checking that onBegin size is all items matched, and page is just the items asked for.
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ var passed = false;
+ function onBegin(size, request){
+ t.assertEqual(8, size);
+ passed = true;
+ }
+ function onComplete(items, request) {
+ t.assertEqual(3, items.length);
+ if(passed){
+ d.callback(true);
+ }else{
+ d.errback(new Error("Store did not return proper number of rows, regardless of page size"));
+ }
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{q:"m"}, start: 5, count: 5, onBegin: onBegin, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadApi_fetch_onBegin_ClientsidePaging(t){
+ // summary:
+ // Simple test of fetching items, checking that onBegin size is all items matched, and page is just the items asked for.
+ // description:
+ // Simple test of fetching items, checking that onBegin size is all items matched, and page is just the items asked for.
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+ store.doClientPaging = true;
+
+ var d = new doh.Deferred();
+ var passed = false;
+ function onBegin(size, request){
+ t.assertEqual(8, size);
+ passed = true;
+ }
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ if(passed){
+ d.callback(true);
+ }else{
+ d.errback(new Error("Store did not return proper number of rows, regardless of page size"));
+ }
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{q:"m"}, start: 0, count: 5, onBegin: onBegin, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadApi_fetch_one(t){
+ // summary:
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{q:"Alaska"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadApi_fetch_client_paging(t){
+ // summary:
+ // Lets test that paging on the same request does not trigger
+ // server requests.
+ // description:
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+ store.doClientPaging = true;
+
+ var lastRequestHash = null;
+ var firstItems = [];
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ lastRequestHash = store.lastRequestHash;
+ firstItems = items;
+
+ // Do the next request AFTER the previous one, so we are sure its sequential.
+ // We need to be sure so we can compare to the data from the first request.
+ function onComplete1(items, request) {
+ t.assertEqual(5, items.length);
+ t.assertEqual(lastRequestHash, store.lastRequestHash);
+ t.assertEqual(firstItems[1], items[0]);
+ d.callback(true);
+ }
+ req.start = 1;
+ req.onComplete = onComplete1;
+ store.fetch(req);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ var req = {query:{q:"m"}, start:0, count:5,
+ onComplete: onComplete, onError: onError};
+ store.fetch(req);
+ return d; //Object
+ },
+
+ function testReadApi_fetch_server_paging(t) {
+ // Verify that the paging on the server side does work.
+ // This is the test for http://trac.dojotoolkit.org/ticket/4761
+ //
+ // How? We request 10 items from the server, start=0, count=10.
+ // The second request requests 5 items: start=5, count=5 and those
+ // 5 items should have the same values as the last 5 of the first
+ // request.
+ // This tests if the server side paging does work.
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+
+ var lastRequestHash = null;
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(10, items.length);
+ lastRequestHash = store.lastRequestHash;
+ firstItems = items;
+
+ // Do the next request AFTER the previous one, so we are sure its sequential.
+ // We need to be sure so we can compare to the data from the first request.
+ function onComplete1(items, request) {
+ t.assertEqual(5, items.length);
+ // Compare the hash of the last request, they must be different,
+ // since another server request was issued.
+ t.assertTrue(lastRequestHash!=store.lastRequestHash);
+ t.assertEqual(store.getValue(firstItems[5], "name"), store.getValue(items[0], "name"));
+ t.assertEqual(store.getValue(firstItems[6], "name"), store.getValue(items[1], "name"));
+ t.assertEqual(store.getValue(firstItems[7], "name"), store.getValue(items[2], "name"));
+ t.assertEqual(store.getValue(firstItems[8], "name"), store.getValue(items[3], "name"));
+ t.assertEqual(store.getValue(firstItems[9], "name"), store.getValue(items[4], "name"));
+ d.callback(true);
+ }
+ // Init a new store, or it will use the old data, since the query has not changed.
+ store.doClientPaging = false;
+ store.fetch({start:5, count:5, onComplete: onComplete1, onError: onError});
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{}, start:0, count:10, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadApi_getFeatures(t) {
+ var store = dojox.data.tests.stores.QueryReadStore.getStore();
+ var features = store.getFeatures();
+ t.assertTrue(features["dojo.data.api.Read"]);
+ t.assertTrue(features["dojo.data.api.Identity"]);
+ var count = 0;
+ for (i in features){
+ count++;
+ }
+ t.assertEqual(2, count);
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.QueryReadStore.getStore();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]");
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+}
diff --git a/includes/js/dojox/data/tests/stores/QueryReadStore.php b/includes/js/dojox/data/tests/stores/QueryReadStore.php
new file mode 100644
index 0000000..26fbcde
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/QueryReadStore.php
@@ -0,0 +1,114 @@
+<?php
+
+header("Content-Type", "text/json");
+
+$allItems = array(
+ array('id'=>0, 'name'=>"Alabama", 'label'=>"<img src='images/Alabama.jpg'/>Alabama", 'abbreviation'=>"AL", 'capital'=>'Montgomery'),
+ array('id'=>1, 'name'=>"Alaska", 'label'=>"Alaska", 'abbreviation'=>"AK", 'capital'=>'Juneau'),
+ //array('id'=>2, 'name'=>"American Samoa", 'label'=>"American Samoa", 'abbreviation'=>"AS", 'capital'=>''),
+ array('id'=>3, 'name'=>"Arizona", 'label'=>"Arizona", 'abbreviation'=>"AZ", 'capital'=>'Phoenix'),
+ array('id'=>4, 'name'=>"Arkansas", 'label'=>"Arkansas", 'abbreviation'=>"AR", 'capital'=>'Little Rock'),
+ //array('id'=>5, 'name'=>"Armed Forces Europe", 'label'=>"Armed Forces Europe", 'abbreviation'=>"AE", 'capital'=>''),
+ //array('id'=>6, 'name'=>"Armed Forces Pacific", 'label'=>"Armed Forces Pacific", 'abbreviation'=>"AP", 'capital'=>''),
+ //array('id'=>7, 'name'=>"Armed Forces the Americas", 'label'=>"Armed Forces the Americas", 'abbreviation'=>"AA", 'capital'=>''),
+ array('id'=>8, 'name'=>"California", 'label'=>"California", 'abbreviation'=>"CA", 'capital'=>'Sacramento'),
+ array('id'=>9, 'name'=>"Colorado", 'label'=>"Colorado", 'abbreviation'=>"CO", 'capital'=>'Denver'),
+ array('id'=>10, 'name'=>"Connecticut", 'label'=>"Connecticut", 'abbreviation'=>"CT", 'capital'=>'Hartford'),
+ array('id'=>11, 'name'=>"Delaware", 'label'=>"Delaware", 'abbreviation'=>"DE", 'capital'=>'Dover'),
+ //array('id'=>12, 'name'=>"District of Columbia", 'label'=>"District of Columbia", 'abbreviation'=>"DC", 'capital'=>''),
+ //array('id'=>13, 'name'=>"Federated States of Micronesia", 'label'=>"Federated States of Micronesia", 'abbreviation'=>"FM", 'capital'=>''),
+ array('id'=>14, 'name'=>"Florida", 'label'=>"Florida", 'abbreviation'=>"FL", 'capital'=>'Tallahassee'),
+ array('id'=>15, 'name'=>"Georgia", 'label'=>"Georgia", 'abbreviation'=>"GA", 'capital'=>'Atlanta'),
+ //array('id'=>16, 'name'=>"Guam", 'label'=>"Guam", 'abbreviation'=>"GU", 'capital'=>''),
+ array('id'=>17, 'name'=>"Hawaii", 'label'=>"Hawaii", 'abbreviation'=>"HI", 'capital'=>'Honolulu'),
+ array('id'=>18, 'name'=>"Idaho", 'label'=>"Idaho", 'abbreviation'=>"ID", 'capital'=>'Boise'),
+ array('id'=>19, 'name'=>"Illinois", 'label'=>"Illinois", 'abbreviation'=>"IL", 'capital'=>'Springfield'),
+ array('id'=>20, 'name'=>"Indiana", 'label'=>"Indiana", 'abbreviation'=>"IN", 'capital'=>'Indianapolis'),
+ array('id'=>21, 'name'=>"Iowa", 'label'=>"Iowa", 'abbreviation'=>"IA", 'capital'=>'Des Moines'),
+ array('id'=>22, 'name'=>"Kansas", 'label'=>"Kansas", 'abbreviation'=>"KS", 'capital'=>'Topeka'),
+ array('id'=>23, 'name'=>"Kentucky", 'label'=>"Kentucky", 'abbreviation'=>"KY", 'capital'=>'Frankfort'),
+ array('id'=>24, 'name'=>"Louisiana", 'label'=>"Louisiana", 'abbreviation'=>"LA", 'capital'=>'Baton Rouge'),
+ array('id'=>25, 'name'=>"Maine", 'label'=>"Maine", 'abbreviation'=>"ME", 'capital'=>'Augusta'),
+ //array('id'=>26, 'name'=>"Marshall Islands", 'label'=>"Marshall Islands", 'abbreviation'=>"MH", 'capital'=>''),
+ array('id'=>27, 'name'=>"Maryland", 'label'=>"Maryland", 'abbreviation'=>"MD", 'capital'=>'Annapolis'),
+ array('id'=>28, 'name'=>"Massachusetts", 'label'=>"Massachusetts", 'abbreviation'=>"MA", 'capital'=>'Boston'),
+ array('id'=>29, 'name'=>"Michigan", 'label'=>"Michigan", 'abbreviation'=>"MI", 'capital'=>'Lansing'),
+ array('id'=>30, 'name'=>"Minnesota", 'label'=>"Minnesota", 'abbreviation'=>"MN", 'capital'=>'Saint Paul'),
+ array('id'=>31, 'name'=>"Mississippi", 'label'=>"Mississippi", 'abbreviation'=>"MS", 'capital'=>'Jackson'),
+ array('id'=>32, 'name'=>"Missouri", 'label'=>"Missouri", 'abbreviation'=>"MO", 'capital'=>'Jefferson City'),
+ array('id'=>33, 'name'=>"Montana", 'label'=>"Montana", 'abbreviation'=>"MT", 'capital'=>'Helena'),
+ array('id'=>34, 'name'=>"Nebraska", 'label'=>"Nebraska", 'abbreviation'=>"NE", 'capital'=>'Lincoln'),
+ array('id'=>35, 'name'=>"Nevada", 'label'=>"Nevada", 'abbreviation'=>"NV", 'capital'=>'Carson City'),
+ array('id'=>36, 'name'=>"New Hampshire", 'label'=>"New Hampshire", 'abbreviation'=>"NH", 'capital'=>'Concord'),
+ array('id'=>37, 'name'=>"New Jersey", 'label'=>"New Jersey", 'abbreviation'=>"NJ", 'capital'=>'Trenton'),
+ array('id'=>38, 'name'=>"New Mexico", 'label'=>"New Mexico", 'abbreviation'=>"NM", 'capital'=>'Santa Fe'),
+ array('id'=>39, 'name'=>"New York", 'label'=>"New York", 'abbreviation'=>"NY", 'capital'=>'Albany'),
+ array('id'=>40, 'name'=>"North Carolina", 'label'=>"North Carolina", 'abbreviation'=>"NC", 'capital'=>'Raleigh'),
+ array('id'=>41, 'name'=>"North Dakota", 'label'=>"North Dakota", 'abbreviation'=>"ND", 'capital'=>'Bismarck'),
+ //array('id'=>42, 'name'=>"Northern Mariana Islands", 'label'=>"Northern Mariana Islands", 'abbreviation'=>"MP", 'capital'=>''),
+ array('id'=>43, 'name'=>"Ohio", 'label'=>"Ohio", 'abbreviation'=>"OH", 'capital'=>'Columbus'),
+ array('id'=>44, 'name'=>"Oklahoma", 'label'=>"Oklahoma", 'abbreviation'=>"OK", 'capital'=>'Oklahoma City'),
+ array('id'=>45, 'name'=>"Oregon", 'label'=>"Oregon", 'abbreviation'=>"OR", 'capital'=>'Salem'),
+ array('id'=>46, 'name'=>"Pennsylvania", 'label'=>"Pennsylvania", 'abbreviation'=>"PA", 'capital'=>'Harrisburg'),
+ //array('id'=>47, 'name'=>"Puerto Rico", 'label'=>"Puerto Rico", 'abbreviation'=>"PR", 'capital'=>''),
+ array('id'=>48, 'name'=>"Rhode Island", 'label'=>"Rhode Island", 'abbreviation'=>"RI", 'capital'=>'Providence'),
+ array('id'=>49, 'name'=>"South Carolina", 'label'=>"South Carolina", 'abbreviation'=>"SC", 'capital'=>'Columbia'),
+ array('id'=>50, 'name'=>"South Dakota", 'label'=>"South Dakota", 'abbreviation'=>"SD", 'capital'=>'Pierre'),
+ array('id'=>51, 'name'=>"Tennessee", 'label'=>"Tennessee", 'abbreviation'=>"TN", 'capital'=>'Nashville'),
+ array('id'=>52, 'name'=>"Texas", 'label'=>"Texas", 'abbreviation'=>"TX", 'capital'=>'Austin'),
+ array('id'=>53, 'name'=>"Utah", 'label'=>"Utah", 'abbreviation'=>"UT", 'capital'=>'Salt Lake City'),
+ array('id'=>54, 'name'=>"Vermont", 'label'=>"Vermont", 'abbreviation'=>"VT", 'capital'=>'Montpelier'),
+ //array('id'=>55, 'name'=> "Virgin Islands, U.S.", 'label'=>"Virgin Islands, U.S.", 'abbreviation'=>"VI", 'capital'=>''),
+ array('id'=>56, 'name'=>"Virginia", 'label'=>"Virginia", 'abbreviation'=>"VA", 'capital'=>'Richmond'),
+ array('id'=>57, 'name'=>"Washington", 'label'=>"Washington", 'abbreviation'=>"WA", 'capital'=>'Olympia'),
+ array('id'=>58, 'name'=>"West Virginia", 'label'=>"West Virginia", 'abbreviation'=>"WV", 'capital'=>'Charleston'),
+ array('id'=>59, 'name'=>"Wisconsin", 'label'=>"Wisconsin", 'abbreviation'=>"WI", 'capital'=>'Madison'),
+ array('id'=>60, 'name'=>"Wyoming", 'label'=>"Wyoming", 'abbreviation'=>"WY", 'capital'=>'Cheyenne'),
+);
+
+$q = "";
+if (array_key_exists("q", $_REQUEST)) {
+ $q = $_REQUEST['q'];
+}else if (array_key_exists("name", $_REQUEST)) {
+ $q = $_REQUEST['name'];
+}
+
+if (strlen($q) && $q[strlen($q)-1]=="*") {
+ $q = substr($q, 0, strlen($q)-1);
+}
+$ret = array();
+foreach ($allItems as $item) {
+ if (!$q || strpos(strtolower($item['name']), strtolower($q))===0) {
+ $ret[] = $item;
+ }
+}
+
+// Handle sorting
+if (array_key_exists("sort", $_REQUEST)) {
+ $sort = $_REQUEST['sort'];
+ // Check if $sort starts with "-" then we have a DESC sort.
+ $desc = strpos($sort, '-')===0 ? true : false;
+ $sort = strpos($sort, '-')===0 ? substr($sort, 1) : $sort;
+ if (in_array($sort, array_keys($ret[0]))) {
+ $toSort = array();
+ foreach ($ret as $i) $toSort[$i[$sort]] = $i;
+ if ($desc) krsort($toSort); else ksort($toSort);
+ $newRet = array();
+ foreach ($toSort as $i) $newRet[] = $i;
+ $ret = $newRet;
+ }
+}
+
+
+// Handle total number of matches as a return, regardless of page size, but taking the filtering into account (if taken place).
+$numRows = count($ret);
+
+// Handle paging, if given.
+if (array_key_exists("start", $_REQUEST)) {
+ $ret = array_slice($ret, $_REQUEST['start']);
+}
+if (array_key_exists("count", $_REQUEST)) {
+ $ret = array_slice($ret, 0, $_REQUEST['count']);
+}
+
+print '/*'.json_encode(array('numRows'=>$numRows, 'items'=>$ret, 'identity'=>'id')).'*/';
diff --git a/includes/js/dojox/data/tests/stores/SnapLogicStore.js b/includes/js/dojox/data/tests/stores/SnapLogicStore.js
new file mode 100644
index 0000000..d544799
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/SnapLogicStore.js
@@ -0,0 +1,438 @@
+if(!dojo._hasResource["dojox.data.tests.stores.SnapLogicStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.SnapLogicStore"] = true;
+dojo.provide("dojox.data.tests.stores.SnapLogicStore");
+dojo.require("dojox.data.SnapLogicStore");
+dojo.require("dojo.data.api.Read");
+
+dojox.data.tests.stores.SnapLogicStore.pipelineUrl = dojo.moduleUrl("dojox.data.tests", "stores/snap_pipeline.php").toString();
+dojox.data.tests.stores.SnapLogicStore.pipelineSize = 14;
+dojox.data.tests.stores.SnapLogicStore.attributes = ["empno", "ename", "job", "hiredate", "sal", "comm", "deptno"];
+
+dojox.data.tests.stores.SnapLogicStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ d.errback(errData);
+}
+
+doh.register("dojox.data.tests.stores.SnapLogicStore",
+ [
+ {
+ name: "ReadAPI: Fetch One",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch from a SnapLogic pipeline
+ // description:
+ // Simple test of a basic fetch from a SnapLogic pipeline
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ store.fetch({ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, doh, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_10_Streaming",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of a basic fetch on SnapLogic pipeline.
+ // description:
+ // Simple test of a basic fetch on SnapLogic pipeline.
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ count = 0;
+
+ function onBegin(size, requestObj){
+ t.assertEqual(dojox.data.tests.stores.SnapLogicStore.pipelineSize, size);
+ }
+ function onItem(item, requestObj){
+ t.assertTrue(store.isItem(item));
+ count++;
+ }
+ function onComplete(items, request){
+ t.assertEqual(10, count);
+ t.assertTrue(items === null);
+ d.callback(true);
+ }
+
+ //Get everything...
+ store.fetch({ onBegin: onBegin,
+ count: 10,
+ onItem: onItem,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch Zero",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Try fetching 0 records. A count of the items in the pipeline should be returned.
+ // description:
+ // Try fetching 0 records. A count of the items in the pipeline should be returned.
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onBegin(count, request){
+ t.assertEqual(dojox.data.tests.stores.SnapLogicStore.pipelineSize, count);
+ d.callback(true);
+ }
+ store.fetch({ count: 0,
+ onBegin: onBegin,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, doh, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: Fetch_Paging",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Test of multiple fetches on a single result. Paging, if you will.
+ // description:
+ // Test of multiple fetches on a single result. Paging, if you will.
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.assertEqual(request.count, items.length);
+ request.start = dojox.data.tests.stores.SnapLogicStore.pipelineSize / 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ store.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.assertEqual(1, items.length);
+ request.start = 0;
+ request.count = dojox.data.tests.stores.SnapLogicStore.pipelineSize / 2;
+ request.onComplete = dumpThirdFetch;
+ store.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.assertEqual(request.count, items.length);
+ request.count = dojox.data.tests.stores.SnapLogicStore.pipelineSize * 2;
+ request.onComplete = dumpFourthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.assertEqual(dojox.data.tests.stores.SnapLogicStore.pipelineSize, items.length);
+ request.start = Math.floor(3 * dojox.data.tests.stores.SnapLogicStore.pipelineSize / 4);
+ request.count = dojox.data.tests.stores.SnapLogicStore.pipelineSize;
+ request.onComplete = dumpFifthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.assertEqual(dojox.data.tests.stores.SnapLogicStore.pipelineSize - request.start, items.length);
+ request.start = 2;
+ request.count = dojox.data.tests.stores.SnapLogicStore.pipelineSize * 10;
+ request.onComplete = dumpSixthFetch;
+ store.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.assertEqual(dojox.data.tests.stores.SnapLogicStore.pipelineSize - request.start, items.length);
+ d.callback(true);
+ }
+
+ store.fetch({ count: 5,
+ onComplete: dumpFirstFetch,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getLabel",
+ timeout: 3000, //3 seconds
+ runTest: function(t) {
+ // summary:
+ // Test that the label function returns undefined since it's not supported.
+ // description:
+ // Test that the label function returns undefined since it's not supported.
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = store.getLabel(items[0]);
+ t.assertTrue(label === undefined);
+ d.callback(true);
+ }
+ store.fetch({ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getLabelAttributes",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getLabelAttributes returns null since it's not supported.
+ // description:
+ // Simple test of the getLabelAttributes returns null since it's not supported.
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = store.getLabelAttributes(items[0]);
+ t.assertTrue(labelList === null);
+ d.callback(true);
+ }
+ store.fetch({ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)
+ });
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getValue",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertEqual(1, items.length);
+ console.debug(items[0]);
+ t.assertTrue(store.getValue(items[0], "empno") === 7369);
+ t.assertTrue(store.getValue(items[0], "ename") === "SMITH,CLERK");
+ console.debug(store.getValue(items[0], "sal"));
+ t.assertTrue(store.getValue(items[0], "sal") == 800.00);
+ console.debug(1);
+ t.assertTrue(store.getValue(items[0], "deptno") === 20);
+ d.callback(true);
+ }
+
+ store.fetch({ count: 1,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)});
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: getValues",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getValue function of the store.
+ // description:
+ // Simple test of the getValue function of the store.
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertEqual(1, items.length);
+ for(var i = 0; i < dojox.data.tests.stores.SnapLogicStore.attributes.length; ++i){
+ var values = store.getValues(items[0], dojox.data.tests.stores.SnapLogicStore.attributes[i]);
+ t.assertTrue(dojo.isArray(values));
+ t.assertTrue(values[0] === store.getValue(items[0], dojox.data.tests.stores.SnapLogicStore.attributes[i]));
+ }
+ d.callback(true);
+ }
+
+ store.fetch({ count: 1,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)});
+ return d;
+ }
+ },
+ {
+ name: "ReadAPI: isItem",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the isItem function of the store
+ // description:
+ // Simple test of the isItem function of the store
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function completedAll(items){
+ t.assertEqual(5, items.length);
+ for(var i=0; i < items.length; i++){
+ t.assertTrue(store.isItem(items[i]));
+ }
+ d.callback(true);
+ }
+
+ //Get everything...
+ store.fetch({ count: 5,
+ onComplete: completedAll,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: hasAttribute",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the hasAttribute function of the store
+ // description:
+ // Simple test of the hasAttribute function of the store
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.assertEqual(1, items.length);
+ t.assertTrue(items[0] !== null);
+ for(var i = 0; i < dojox.data.tests.stores.SnapLogicStore.attributes.length; ++i){
+ t.assertTrue(store.hasAttribute(items[0], dojox.data.tests.stores.SnapLogicStore.attributes[i]));
+ }
+ t.assertTrue(!store.hasAttribute(items[0], "Nothing"));
+ t.assertTrue(!store.hasAttribute(items[0], "Text"));
+
+ //Test that null attributes throw an exception
+ var passed = false;
+ try{
+ store.hasAttribute(items[0], null);
+ }catch (e){
+ passed = true;
+ }
+ t.assertTrue(passed);
+ d.callback(true);
+ }
+
+ //Get one item...
+ store.fetch({ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: containsValue",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the containsValue function of the store
+ // description:
+ // Simple test of the containsValue function of the store
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.assertEqual(1, items.length);
+ var value = store.getValue(items[0], "LastName");
+ t.assertTrue(store.containsValue(items[0], "LastName", value));
+ d.callback(true);
+ }
+
+ //Get one item...
+ store.fetch({ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)
+ });
+ return d; //Object
+ }
+ },
+ {
+ name: "ReadAPI: getAttributes",
+ timeout: 3000, //3 seconds.
+ runTest: function(t) {
+ // summary:
+ // Simple test of the getAttributes function of the store
+ // description:
+ // Simple test of the getAttributes function of the store
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var d = new doh.Deferred();
+ function onComplete(items){
+ t.assertEqual(1, items.length);
+
+ var itemAttributes = store.getAttributes(items[0]);
+ t.assertEqual(dojox.data.tests.stores.SnapLogicStore.attributes.length, itemAttributes.length);
+ for(var i = 0; i < dojox.data.tests.stores.SnapLogicStore.attributes.length; ++i){
+ t.assertTrue(dojo.indexOf(itemAttributes, dojox.data.tests.stores.SnapLogicStore.attributes[i]) !== -1);
+ }
+ d.callback(true);
+ }
+
+ //Get everything...
+ store.fetch({ count: 1,
+ onComplete: onComplete,
+ onError: dojo.partial(dojox.data.tests.stores.SnapLogicStore.error, t, d)});
+ return d; //Object
+ }
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var store = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+
+ var features = store.getFeatures();
+ var count = 0;
+ for(var i in features){
+ t.assertEqual(i, "dojo.data.api.Read");
+ count++;
+ }
+
+ t.assertEqual(count, 1);
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = new dojox.data.SnapLogicStore({url: dojox.data.tests.stores.SnapLogicStore.pipelineUrl});
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(var i in readApi){
+ if(i.toString().charAt(0) !== '_'){
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+}
diff --git a/includes/js/dojox/data/tests/stores/XmlStore.js b/includes/js/dojox/data/tests/stores/XmlStore.js
new file mode 100644
index 0000000..0c99732
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/XmlStore.js
@@ -0,0 +1,881 @@
+if(!dojo._hasResource["dojox.data.tests.stores.XmlStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.XmlStore"] = true;
+dojo.provide("dojox.data.tests.stores.XmlStore");
+dojo.require("dojox.data.XmlStore");
+dojo.require("dojo.data.api.Read");
+dojo.require("dojo.data.api.Write");
+
+
+dojox.data.tests.stores.XmlStore.getBooks2Store = function(){
+ return new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books2.xml").toString(), label: "title"});
+};
+
+dojox.data.tests.stores.XmlStore.getBooksStore = function(){
+ return new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books.xml").toString(), label: "title"});
+};
+
+doh.register("dojox.data.tests.stores.XmlStore",
+ [
+ function testReadAPI_fetch_all(t){
+ // summary:
+ // Simple test of fetching all xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching all xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.XmlStore.getBooksStore();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_one(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ {
+ name: "testReadAPI_fetch_paging",
+ timeout: 10000,
+ runTest: function(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn
+ var store = dojox.data.tests.stores.XmlStore.getBooksStore();
+ var d = new doh.Deferred();
+ function dumpFirstFetch(items, request){
+ t.assertEqual(5, items.length);
+ request.start = 3;
+ request.count = 1;
+ request.onComplete = dumpSecondFetch;
+ store.fetch(request);
+ }
+
+ function dumpSecondFetch(items, request){
+ t.assertEqual(1, items.length);
+ request.start = 0;
+ request.count = 5;
+ request.onComplete = dumpThirdFetch;
+ store.fetch(request);
+ }
+
+ function dumpThirdFetch(items, request){
+ t.assertEqual(5, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpFourthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFourthFetch(items, request){
+ t.assertEqual(18, items.length);
+ request.start = 9;
+ request.count = 100;
+ request.onComplete = dumpFifthFetch;
+ store.fetch(request);
+ }
+
+ function dumpFifthFetch(items, request){
+ t.assertEqual(11, items.length);
+ request.start = 2;
+ request.count = 20;
+ request.onComplete = dumpSixthFetch;
+ store.fetch(request);
+ }
+
+ function dumpSixthFetch(items, request){
+ t.assertEqual(18, items.length);
+ d.callback(true);
+ }
+
+ function completed(items, request){
+ t.assertEqual(20, items.length);
+ request.start = 1;
+ request.count = 5;
+ request.onComplete = dumpFirstFetch;
+ store.fetch(request);
+ }
+
+ function error(errData, request){
+ d.errback(errData);
+ }
+
+ store.fetch({onComplete: completed, onError: error});
+ return d; //Object
+ }
+ },
+ function testReadAPI_fetch_pattern0(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern1(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(4, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B57?"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern2(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with * pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with * pattern match
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern_caseInsensitive(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case insensitive mode.
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case insensitive mode.
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9b574"}, queryOptions: {ignoreCase: true}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_pattern_caseSensitive(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case sensitive mode.
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match and in case sensitive mode.
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?9B574"}, queryOptions: {ignoreCase: false}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_all_rootItem(t){
+ // summary:
+ // Simple test of fetching all xml items through an XML element called isbn
+ // description:
+ // Simple test of fetching all xml items through an XML element called isbn
+ var store = new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books3.xml").toString(),
+ rootItem:"book"});
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_withAttrMap_all(t){
+ var store = new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books_isbnAttr.xml").toString(),
+ attributeMap: {"book.isbn": "@isbn"}});
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ console.debug(error);
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_withAttrMap_one(t){
+ var store = new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books_isbnAttr.xml").toString(),
+ attributeMap: {"book.isbn": "@isbn"}});
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ console.debug(error);
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"2"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_withAttrMap_pattern0(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books_isbnAttr2.xml").toString(),
+ attributeMap: {"book.isbn": "@isbn"}});
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(3, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"ABC?"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_withAttrMap_pattern1(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books_isbnAttr2.xml").toString(),
+ attributeMap: {"book.isbn": "@isbn"}});
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(5, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_fetch_withAttrMap_pattern2(t){
+ // summary:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ // description:
+ // Simple test of fetching one xml items through an XML element called isbn with ? pattern match
+ var store = new dojox.data.XmlStore({url: dojo.moduleUrl("dojox.data.tests", "stores/books_isbnAttr2.xml").toString(),
+ attributeMap: {"book.isbn": "@isbn"}});
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(2, items.length);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"?C*"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+
+ function testReadAPI_getLabel(t){
+ // summary:
+ // Simple test of the getLabel function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabel function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var label = store.getLabel(items[0]);
+ t.assertTrue(label !== null);
+ t.assertEqual("Title of 4", label);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+ function testReadAPI_getLabelAttributes(t){
+ // summary:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+ // description:
+ // Simple test of the getLabelAttributes function against a store set that has a label defined.
+
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request){
+ t.assertEqual(items.length, 1);
+ var labelList = store.getLabelAttributes(items[0]);
+ t.assertTrue(dojo.isArray(labelList));
+ t.assertEqual("title", labelList[0]);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d;
+ },
+
+ function testReadAPI_getValue(t){
+ // summary:
+ // Simple test of the getValue API
+ // description:
+ // Simple test of the getValue API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ t.assertEqual(store.getValue(item,"isbn"), "A9B574");
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getValues(t){
+ // summary:
+ // Simple test of the getValues API
+ // description:
+ // Simple test of the getValues API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ var values = store.getValues(item,"isbn");
+ t.assertEqual(1,values.length);
+ t.assertEqual("A9B574", values[0]);
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItem(t){
+ // summary:
+ // Simple test of the isItem API
+ // description:
+ // Simple test of the isItem API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.isItem(item));
+ t.assertTrue(!store.isItem({}));
+ t.assertTrue(!store.isItem("Foo"));
+ t.assertTrue(!store.isItem(1));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItem_multistore(t){
+ // summary:
+ // Simple test of the isItem API across multiple store instances.
+ // description:
+ // Simple test of the isItem API across multiple store instances.
+ var store1 = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var store2 = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete1(items, request) {
+ t.assertEqual(1, items.length);
+ var item1 = items[0];
+ t.assertTrue(store1.isItem(item1));
+
+ function onComplete2(items, request) {
+ t.assertEqual(1, items.length);
+ var item2 = items[0];
+ t.assertTrue(store2.isItem(item2));
+ t.assertTrue(!store1.isItem(item2));
+ t.assertTrue(!store2.isItem(item1));
+ d.callback(true);
+ }
+ store2.fetch({query:{isbn:"A9B574"}, onComplete: onComplete2, onError: onError});
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store1.fetch({query:{isbn:"A9B574"}, onComplete: onComplete1, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_hasAttribute(t){
+ // summary:
+ // Simple test of the hasAttribute API
+ // description:
+ // Simple test of the hasAttribute API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.hasAttribute(item,"isbn"));
+ t.assertTrue(!store.hasAttribute(item,"bob"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_containsValue(t){
+ // summary:
+ // Simple test of the containsValue API
+ // description:
+ // Simple test of the containsValue API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ t.assertTrue(!store.containsValue(item,"isbn", "bob"));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortDescending(t){
+ // summary:
+ // Simple test of the sorting API in descending order.
+ // description:
+ // Simple test of the sorting API in descending order.
+ var store = dojox.data.tests.stores.XmlStore.getBooksStore();
+
+ //Comparison is done as a string type (toString comparison), so the order won't be numeric
+ //So have to compare in 'alphabetic' order.
+ var order = [9,8,7,6,5,4,3,20,2,19,18,17,16,15,14,13,12,11,10,1];
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ console.log("Number of items: " + items.length);
+ t.assertEqual(20, items.length);
+
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(order[i], store.getValue(items[i],"isbn").toString());
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn", descending: true}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortAscending(t){
+ // summary:
+ // Simple test of the sorting API in ascending order.
+ // description:
+ // Simple test of the sorting API in ascending order.
+ var store = dojox.data.tests.stores.XmlStore.getBooksStore();
+
+ //Comparison is done as a string type (toString comparison), so the order won't be numeric
+ //So have to compare in 'alphabetic' order.
+ var order = [1,10,11,12,13,14,15,16,17,18,19,2,20,3,4,5,6,7,8,9];
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 1;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(order[i], store.getValue(items[i],"isbn").toString());
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn"}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortDescendingNumeric(t){
+ // summary:
+ // Simple test of the sorting API in descending order using a numeric comparator.
+ // description:
+ // Simple test of the sorting API in descending order using a numeric comparator.
+ var store = dojox.data.tests.stores.XmlStore.getBooksStore();
+
+ //isbn should be treated as a numeric, not as a string comparison
+ store.comparatorMap = {};
+ store.comparatorMap["isbn"] = function(a, b){
+ var ret = 0;
+ if(parseInt(a.toString()) > parseInt(b.toString())){
+ ret = 1;
+ }else if(parseInt(a.toString()) < parseInt(b.toString())){
+ ret = -1;
+ }
+ return ret; //int, {-1,0,1}
+ };
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 20;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(itemId, store.getValue(items[i],"isbn").toString());
+ itemId--;
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn", descending: true}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_sortAscendingNumeric(t){
+ // summary:
+ // Simple test of the sorting API in ascending order using a numeric comparator.
+ // description:
+ // Simple test of the sorting API in ascending order using a numeric comparator.
+ var store = dojox.data.tests.stores.XmlStore.getBooksStore();
+
+ //isbn should be treated as a numeric, not as a string comparison
+ store.comparatorMap = {};
+ store.comparatorMap["isbn"] = function(a, b){
+ var ret = 0;
+ if(parseInt(a.toString()) > parseInt(b.toString())){
+ ret = 1;
+ }else if(parseInt(a.toString()) < parseInt(b.toString())){
+ ret = -1;
+ }
+ return ret; //int, {-1,0,1}
+ };
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(20, items.length);
+ var itemId = 1;
+ for(var i = 0; i < items.length; i++){
+ t.assertEqual(itemId, store.getValue(items[i],"isbn").toString());
+ itemId++;
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+
+ var sortAttributes = [{attribute: "isbn"}];
+ store.fetch({query:{isbn:"*"}, sort: sortAttributes, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_isItemLoaded(t){
+ // summary:
+ // Simple test of the isItemLoaded API
+ // description:
+ // Simple test of the isItemLoaded API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.isItemLoaded(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_getFeatures(t){
+ // summary:
+ // Simple test of the getFeatures function of the store
+ // description:
+ // Simple test of the getFeatures function of the store
+
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+ var features = store.getFeatures();
+ var count = 0;
+ for(i in features){
+ t.assertTrue((i === "dojo.data.api.Read" || i === "dojo.data.api.Write"));
+ count++;
+ }
+ t.assertEqual(2, count);
+ },
+ function testReadAPI_getAttributes(t){
+ // summary:
+ // Simple test of the getAttributes API
+ // description:
+ // Simple test of the getAttributes API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ var attributes = store.getAttributes(item);
+
+ //Should be six, as all items should have tagName, childNodes, and text() special attributes
+ //in addition to any doc defined ones, which in this case are author, title, and isbn
+ //FIXME: Figure out why IE returns 5! Need to get firebug lite working in IE for that.
+ //Suspect it's childNodes, may not be defined if there are no child nodes.
+ for(var i = 0; i < attributes.length; i++){
+ console.log("attribute found: " + attributes[i]);
+ }
+ if(dojo.isIE){
+ t.assertEqual(5,attributes.length);
+ }else{
+ t.assertEqual(6,attributes.length);
+ }
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testWriteAPI_setValue(t){
+ // summary:
+ // Simple test of the setValue API
+ // description:
+ // Simple test of the setValue API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ store.setValue(item, "isbn", "A9B574-new");
+ t.assertEqual(store.getValue(item,"isbn").toString(), "A9B574-new");
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testWriteAPI_setValues(t){
+ // summary:
+ // Simple test of the setValues API
+ // description:
+ // Simple test of the setValues API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ store.setValues(item, "isbn", ["A9B574-new1", "A9B574-new2"]);
+ var values = store.getValues(item,"isbn");
+ t.assertEqual(values[0].toString(), "A9B574-new1");
+ t.assertEqual(values[1].toString(), "A9B574-new2");
+ store.setValues(values[0], "text()", ["A9B574", "-new3"]);
+ t.assertEqual(store.getValue(values[0],"text()").toString(), "A9B574-new3");
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testWriteAPI_unsetAttribute(t){
+ // summary:
+ // Simple test of the unsetAttribute API
+ // description:
+ // Simple test of the unsetAttribute API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ store.unsetAttribute(item,"isbn");
+ t.assertTrue(!store.hasAttribute(item,"isbn"));
+ t.assertTrue(store.isDirty(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testWriteAPI_isDirty(t){
+ // summary:
+ // Simple test of the isDirty API
+ // description:
+ // Simple test of the isDirty API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ store.setValue(item, "isbn", "A9B574-new");
+ t.assertEqual(store.getValue(item,"isbn").toString(), "A9B574-new");
+ t.assertTrue(store.isDirty(item));
+ d.callback(true);
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testWriteAPI_revert(t){
+ // summary:
+ // Simple test of the isDirty API
+ // description:
+ // Simple test of the isDirty API
+ var store = dojox.data.tests.stores.XmlStore.getBooks2Store();
+
+ var d = new doh.Deferred();
+ function onComplete(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ t.assertTrue(!store.isDirty(item));
+ store.setValue(item, "isbn", "A9B574-new");
+ t.assertEqual(store.getValue(item,"isbn").toString(), "A9B574-new");
+ t.assertTrue(store.isDirty(item));
+ store.revert();
+
+ //Fetch again to see if it reset the state.
+ function onComplete1(items, request) {
+ t.assertEqual(1, items.length);
+ var item = items[0];
+ t.assertTrue(store.containsValue(item,"isbn", "A9B574"));
+ d.callback(true);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete1, onError: onError});
+ }
+ function onError(error, request) {
+ d.errback(error);
+ }
+ store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError});
+ return d; //Object
+ },
+ function testReadAPI_functionConformance(t){
+ // summary:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test read API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.XmlStore.getBooksStore();
+ var readApi = new dojo.data.api.Read();
+ var passed = true;
+
+ for(i in readApi){
+ var member = readApi[i];
+ //Check that all the 'Read' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ console.log("Problem with function: [" + i + "]");
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ },
+ function testWriteAPI_functionConformance(t){
+ // summary:
+ // Simple test write API conformance. Checks to see all declared functions are actual functions on the instances.
+ // description:
+ // Simple test write API conformance. Checks to see all declared functions are actual functions on the instances.
+
+ var testStore = dojox.data.tests.stores.XmlStore.getBooksStore();
+ var writeApi = new dojo.data.api.Write();
+ var passed = true;
+
+ for(i in writeApi){
+ var member = writeApi[i];
+ //Check that all the 'Write' defined functions exist on the test store.
+ if(typeof member === "function"){
+ var testStoreMember = testStore[i];
+ if(!(typeof testStoreMember === "function")){
+ passed = false;
+ break;
+ }
+ }
+ }
+ t.assertTrue(passed);
+ }
+ ]
+);
+
+
+
+
+
+}
diff --git a/includes/js/dojox/data/tests/stores/atom1.xml b/includes/js/dojox/data/tests/stores/atom1.xml
new file mode 100644
index 0000000..faff9aa
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/atom1.xml
@@ -0,0 +1,848 @@
+<?xml version="1.0" encoding="UTF-8"?><feed
+ xmlns="http://www.w3.org/2005/Atom"
+ xmlns:thr="http://purl.org/syndication/thread/1.0"
+ xml:lang="en"
+ xml:base="http://shaneosullivan.wordpress.com/wp-atom.php"
+ >
+ <title type="text">SOS</title>
+ <subtitle type="text">..where the wave finally broke, and rolled back.. Shane O'Sullivan's technical blog</subtitle>
+
+ <updated>2008-01-22T14:32:09Z</updated>
+ <generator uri="http://wordpress.org/" version="MU">WordPress</generator>
+
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com" />
+ <id>http://shaneosullivan.wordpress.com/feed/atom/</id>
+ <link rel="self" type="application/atom+xml" href="http://shaneosullivan.wordpress.com/feed/atom/" />
+
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Using AOL hosted Dojo with your custom code]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2008/01/22/using-aol-hosted-dojo-with-your-custom-code/" />
+ <id>http://shaneosullivan.wordpress.com/2008/01/22/using-aol-hosted-dojo-with-your-custom-code/</id>
+ <updated>2008-01-22T14:32:09Z</updated>
+ <published>2008-01-22T14:32:09Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Dojo" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Javascript" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Technical" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="aol" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="cross domain" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="open source" />
+ <summary type="html"><![CDATA[The Dojo Ajax Toolkit is kindly hosted by AOL for the consumption of anyone at all. This has the advantage of
+
+Reducing the load on your own server
+Speeding up the delivery, as a Content Delivery Network (CDN) is used to ensure that the server is as close as possible to the client, and
+The more people [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2008/01/22/using-aol-hosted-dojo-with-your-custom-code/"><![CDATA[<div class='snap_preview'><br /><p>The <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a> is kindly <a href="http://dev.aol.com/dojo" target="_blank">hosted</a> by AOL for the consumption of anyone at all. This has the advantage of</p>
+
+<ul>
+<li>Reducing the load on your own server</li>
+<li>Speeding up the delivery, as a Content Delivery Network (CDN) is used to ensure that the server is as close as possible to the client, and</li>
+<li>The more people who use this the better, as the same Dojo files will be cached when users move from site to site, as they&#8217;ll all be downloading the AOL hosted files.</li>
+<li>Gzip compression as standard, so the files are as small as possible</li>
+</ul>
+<p>Additionally, since release 0.9 onwards, the main Dojo JavaScript file, <i>dojo.js</i>, is always exactly the same, whereas in previous released it changed for every developer who built it.</p>
+<p>However, the problem comes in where you want to use your own custom code with the hosted Dojo code. This is because the hosted code uses <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/functions-used-everywhere/dojo-require" target="_blank">Dojo&#8217;s loading system</a> to dynamically load the resources needed on the page, and this will read the files from AOL, not your server (as you would expect - it knows nothing about your server). If you want to <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-4-meta-dojo/package-system-and-custom-builds" target="_blank">build custom layers</a> to improve performance, the remotely hosted Dojo will not be able to find them.</p>
+
+<p>So, the solution I generally tend to use is to put the AOL <i>dojo.js</i> on every page, and tell Dojo to load any other required files from my own server. To do this, set the <i>baseUrl </i>parameter on the djConfig attribute for the JavaScript file to the folder where Dojo is stored on your server. E.g.</p>
+<p><b>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://o.aolcdn.com/dojo/1.0.2/dojo/dojo.js&#8221; djConfig=&#8221;{baseUrl:&#8217;/js/dojo/&#8217;}&#8221;&gt;&lt;/script&gt;</b></p>
+
+<p>Notice here that the file I load is <i>dojo.js</i>, the normal version, not <i>dojo.xd.js</i>, which is the cross domain version capable of loading files from AOL.</p>
+<p>After doing this, you can then include whatever custom built layers you like onto an particular page. For example, if you have a layer built for the <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/gallery" target="_blank">dojox.image.Gallery</a> widget called <i>/js/dojo/dojox/image/Gallery-layer.js</i>, you can load it either dynamically:</p>
+<p><b>&lt;script type=&#8221;text/javascript&#8221;&gt;dojo.require(&#8221;dojox.image.Gallery-layer.js&#8221;);&lt;/script&gt;</b></p>
+
+<p>or include it via a script tag:</p>
+<p><b>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/dojo/dojox/image/Gallery-layer.js&#8221;&gt;&lt;/script&gt;</b></p>
+<p>and it should work just as if you were using Dojo from your own server. Only of course you are not - AOL is serving up that file, and in many cases users will already have cached that file, speeding up your site quite nicely.</p>
+<p>Another approach is to create a custom namespace, register it with Dojo, and put all your layers in there&#8230;. but that&#8217;s for another post <img src='http://shaneosullivan.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
+
+<b>Share this post:</b><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2008/1/22/using-aol-hosted-dojo-with-your-custom-code&amp;phase=2" target="_blank" title="Post 'Using AOL hosted Dojo with your custom code">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2008/1/22/using-aol-hosted-dojo-with-your-custom-code&amp;title=Using+AOL+hosted+Dojo+with+your+custom+code" target="_blank" title="Post 'Using AOL hosted Dojo with your custom code">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2008/1/22/using-aol-hosted-dojo-with-your-custom-code&amp;subject=Using+AOL+hosted+Dojo+with+your+custom+code" target="_blank" title="Post 'Using AOL hosted Dojo with your custom code">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2008/1/22/using-aol-hosted-dojo-with-your-custom-code&amp;title=Using+AOL+hosted+Dojo+with+your+custom+code" target="_blank" title="Post 'Using AOL hosted Dojo with your custom code">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2008/1/22/using-aol-hosted-dojo-with-your-custom-code&amp;title=Using+AOL+hosted+Dojo+with+your+custom+code" target="_blank" title="Post 'Using AOL hosted Dojo with your custom code">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2008/1/22/using-aol-hosted-dojo-with-your-custom-code&amp;title=Using+AOL+hosted+Dojo+with+your+custom+code&amp;top=1" target="_blank" title="Post 'Using AOL hosted Dojo with your custom code">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/88/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/88/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=88&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2008/01/22/using-aol-hosted-dojo-with-your-custom-code/#comments" thr:count="1"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2008/01/22/using-aol-hosted-dojo-with-your-custom-code/feed/atom/" thr:count="1"/>
+ <thr:total>1</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Dojo Demo Engine Update]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update/" />
+ <id>http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update/</id>
+ <updated>2008-01-12T13:22:38Z</updated>
+ <published>2008-01-07T01:02:43Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Demo Engine" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="demo" /><category scheme="http://shaneosullivan.wordpress.com" term="dijit" /><category scheme="http://shaneosullivan.wordpress.com" term="documentation" /><category scheme="http://shaneosullivan.wordpress.com" term="dojo.query" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox" /><category scheme="http://shaneosullivan.wordpress.com" term="json" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[A short while ago I posted about the demo engine I&#8217;m writing for the Dojo Ajax Toolkit. Click here to read that post or go to http://www.skynet.ie/~sos/js/demo/dojo/dojoc/demos/featureexplorer.html to see it in action.
+Features
+Since that post, quite a lot of work has gone into both the features and the content of the demo engine, and the development [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update/"><![CDATA[<div class='snap_preview'><br /><p>A short while ago I posted about the demo engine I&#8217;m writing for the Dojo Ajax Toolkit. <a href="http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/" target="_blank">Click here</a> to read that post or go to <a href="http://www.skynet.ie/~sos/js/demo/dojo/dojoc/demos/featureexplorer.html" target="_blank">http://www.skynet.ie/~sos/js/demo/dojo/dojoc/demos/featureexplorer.html</a> to see it in action.</p>
+
+<p><b>Features</b></p>
+<p><b></b>Since that post, quite a lot of work has gone into both the features and the content of the demo engine, and the development process has solidified nicely. Some of the features include:</p>
+<ul>
+<li><b>Tree navigation</b>. A <i>dijit.Tree</i> widget, reading from a remote JSON data store is used to navigate the various demos.</li>
+<li><b>Search feature</b>. A <i>dijit.form.ComboBox</i> widget, reading from the same JSON data store as the tree, can be used to dynamically search for demos by matching any part of their name.</li>
+
+<li><b>Theme switcher</b>. A <i>dijit.form.ComboBox</i> widget is used to switch between the CSS styles that Dojo provides.</li>
+<li><b>URL addressability</b>. Using a hash identifier (e.g. <i>#Dojo_Query_By%20Class</i>) in the URL of the demo engine causes it to open that demo when it has finished loading. For example, if you click <a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dojo_Query_By%20Class" target="_blank">this link</a>, it will open the <i>dojo.query</i> demo showing you how to select nodes by class name. Opening any demo changes the URL in the browser to the URL for that demo, for easy bookmarking.</li>
+
+<li><b>Integrated build process</b>. A simple build script is integrated with the Dojo build process. It builds a JSON data file listing all the existing demos and their respective files. It also builds files with URL links for each demo.</li>
+</ul>
+<p><b>Content</b></p>
+<p>To date, a lot of content has been added. Many, many widgets in <a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dijit" target="_blank">Dijit</a> and <a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dojox" target="_blank">DojoX<br />
+</a> have have been added, including the majority of the <a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dijit_Form%20Controls" target="_blank">Form Controls</a>.</p>
+
+<p>The latest, pretty cool additions have been the <a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dojo_IO" target="_blank">IO</a> and <a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dojo_Query" target="_blank">dojo.query</a> demos. These cover things such as:</p>
+<ul>
+<li>Performing a XMLHttpRequest request</li>
+<li>Using an iFrame transport</li>
+<li>Submitting a form asynchronously</li>
+<li>Loading remote JavaScript files from another domain</li>
+<li>Selecting nodes using <a href="http://www.w3.org/TR/REC-CSS2/selector.html" target="_blank">CSS selectors</a> with <a href="http://ajaxian.com/archives/dojoquery-a-css-query-engine" target="_blank">dojo.query</a></li>
+
+<li>Performing operations on the NodeList returned from dojo.query</li>
+<li>Attaching events to the <a href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-536297177" target="_blank">NodeList</a> returned from dojo.query</li>
+</ul>
+<p><b>File Naming Scheme</b><br />
+A simple file naming scheme is used to add content to the demo framework. Each folder beneath the root folder represents a demo. Each file in a folder must be named the same as the folder, with five possible extensions. For example, given a folder with the name &#8216;<b>Button</b>&#8216;, the possible files are:</p>
+<ul>
+
+<li><b>Button.html</b> - this contains the demo to be displayed. Any JavaScript code inside &lt;script&gt; tags is executed, and any &lt;link type=&#8221;text/css&#8221;&gt; and &lt;style&gt; tags have their CSS loaded. The executed code is shown in the <i>View</i> tab, and and the source code is shown in the <i>XML</i> tab. The <i>&lt;html&gt;</i>, <i>&lt;head&gt;</i> and <i>&lt;body&gt;</i> tags are not required.</li>
+
+<li><b>Button.js</b> - this contains pure JavaScript code that performs the same operations as Button.html, if applicable. It is not executed however. It is shown in the <i>JS</i> tab.</li>
+<li><b>Button.txt</b> - this contains the text description of the demo. It is loaded above the tabs.</li>
+<li><b>Button.links</b> - this contains a JSON array of URL links. The build script transforms these links into HTML, and the result is loaded into the <i>Links</i> tab. One neat feature of this is that all links from sub folders are integrated with the parent folder and displayed in a nested structure. Do, for example, clicking on <i>Dijit</i> will show all the links for all widgets in the Dijit project.</li>
+
+<li><b>Button.full.html</b> - this is standalone demo, that is designed to run outside the demo engine. The <i>View</i> tab provides a link to the external file.</li>
+<li><b>sort.txt</b> - this contains a comma separated list of the child folders contained in this folder. It specifies the order in which to display the child demos in the tree. If this file is not specified, then an alphabetical ordering is used.</li>
+</ul>
+<p>All of these files are optional. If a file in a folder does not match this naming scheme, it is assumed to be some kind of resource that the demo needs, such as an image or a JSON data file. In this case, the file can be named whatever you like.</p>
+<p>The tree structure in the demo engine mirrors the folder layout.</p>
+
+<p><b>Still To Do</b></p>
+<p>There remains quite a lot of work ahead. There are a few bugs remaining, some more cross browser testing is needed, and of course more content is required, particularly the base Dojo package.</p>
+<p>In the relatively near future this should be opened up to the public for development. The Dojo folks are setting up a source control server for community additions, and this demo engine should be part of that. Once that is done, people can start adding all sorts of cool stuff!<br />
+<b>Share this post:</b><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update&amp;phase=2" target="_blank" title="Post 'Dojo Demo Engine Update">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update&amp;title=Dojo+Demo+Engine+Update" target="_blank" title="Post 'Dojo Demo Engine Update">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update&amp;subject=Dojo+Demo+Engine+Update" target="_blank" title="Post 'Dojo Demo Engine Update">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update&amp;title=Dojo+Demo+Engine+Update" target="_blank" title="Post 'Dojo Demo Engine Update">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update&amp;title=Dojo+Demo+Engine+Update" target="_blank" title="Post 'Dojo Demo Engine Update">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update&amp;title=Dojo+Demo+Engine+Update&amp;top=1" target="_blank" title="Post 'Dojo Demo Engine Update">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/87/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/87/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=87&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update/#comments" thr:count="3"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update/feed/atom/" thr:count="3"/>
+ <thr:total>3</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Navigating in an IE Modal Dialog]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog/" />
+ <id>http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog/</id>
+ <updated>2007-12-31T16:36:21Z</updated>
+ <published>2007-12-31T16:36:21Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Internet Explorer" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="modal" /> <summary type="html"><![CDATA[Internet Explorer has a nice feature where a new window can be opened modally using the window.showModalDialog function, meaning that the page that opened it cannot be accessed until the new window is closed. This can be useful in many situations.
+However, the main limitation of IE Modal Dialogs (other than being non-standard), is that [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog/"><![CDATA[<div class='snap_preview'><br /><p>Internet Explorer has a nice feature where a new window can be opened modally using the <a href="http://msdn2.microsoft.com/en-us/library/ms536759.aspx"><i>window.showModalDialog</i></a> function, meaning that the page that opened it cannot be accessed until the new window is closed. This can be useful in many situations.</p>
+
+<p>However, the main limitation of IE Modal Dialogs (other than being non-standard), is that any hyperlink clicked in a modal dialog causes another, non modal, dialog to be opened, rather than opening the page linked to in the same window, as would happen in a normal pop up window.</p>
+<p>The key to solving this problem is to note that a modal dialog only opens another window when a <a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_Methods" target="_blank">GET</a> request is made, not when a <a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_Methods" target="_blank">POST</a> request is made. However, an anchor tag automatically causes a GET request, so the solution is to:</p>
+<ol>
+<li> Catch the click on each anchor tag, cancel it,</li>
+<li>Submit a dynamically created FORM element, with it&#8217;s <i>method</i> set to &#8216;<i>POST&#8217; </i>and it&#8217;s <i>action</i> set to the URL of the link clicked.</li>
+
+</ol>
+<p>While it is possible to put a listener on each anchor tag to achieve this, such an approach will not scale well. Instead, place a listener on the <b>body </b>tag. The example below is done using methods from the <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a>, since that the toolkit I use the most, but you can of course use whatever methods you like to achieve the same result:</p>
+<blockquote><p> <code>&lt;script type="text/javascript"&gt;<br />
+dojo.addOnLoad(function(){<br />
+dojo.connect(dojo.body(), &#8220;onclick&#8221;, function(evt) {<br />
+if(evt.target.tagName != &#8220;A&#8221;) {return true;}<br />
+dojo.stopEvent(evt);<br />
+var form = document.createElement(&#8221;form&#8221;);<br />
+form.setAttribute(&#8221;target&#8221;, window.name ? window.name : &#8220;SrPopUp&#8221;);<br />
+form.setAttribute(&#8221;action&#8221;, url);<br />
+form.setAttribute(&#8221;method&#8221;,&#8221;POST&#8221;);<br />
+document.appendChild(form);<br />
+form.submit();<br />
+return false;<br />
+});<br />
+});<br />
+
+&lt;/script&gt;</code></p></blockquote>
+<p>This method assumes that you have control over the content of the page being shown in the modal dialog. It would also make sense to add a similar listener to the body tag for key events, as a user can trigger an anchor tag by tabbing to it and hitting enter.</p>
+<p>Thanks to <a href="http://www.dannyg.com/support/modalFix.html" target="_blank">Danny Goodman</a> and <a href="http://www.dannyg.com/support/SOCmodalWindow.js" target="_blank">Steiner Overbeck Cook</a> for coming up with this solution.<br />
+<b>Share this post:</b><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog&amp;phase=2" target="_blank" title="Post 'Navigating in an IE Modal Dialog">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog&amp;title=Navigating+in+an+IE+Modal+Dialog" target="_blank" title="Post 'Navigating in an IE Modal Dialog">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog&amp;subject=Navigating+in+an+IE+Modal+Dialog" target="_blank" title="Post 'Navigating in an IE Modal Dialog">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog&amp;title=Navigating+in+an+IE+Modal+Dialog" target="_blank" title="Post 'Navigating in an IE Modal Dialog">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog&amp;title=Navigating+in+an+IE+Modal+Dialog" target="_blank" title="Post 'Navigating in an IE Modal Dialog">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog&amp;title=Navigating+in+an+IE+Modal+Dialog&amp;top=1" target="_blank" title="Post 'Navigating in an IE Modal Dialog">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=86&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog/#comments" thr:count="1"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/12/31/navigating-in-an-ie-modal-dialog/feed/atom/" thr:count="1"/>
+ <thr:total>1</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[A new Demo engine for Dojo]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/" />
+ <id>http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/</id>
+ <updated>2008-01-12T13:23:15Z</updated>
+ <published>2007-12-04T09:29:16Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="demo" /><category scheme="http://shaneosullivan.wordpress.com" term="dijit" /><category scheme="http://shaneosullivan.wordpress.com" term="documentation" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox.image" /><category scheme="http://shaneosullivan.wordpress.com" term="json" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[A couple of weeks ago I saw a cool demo framework for an Ajax toolkit just released as open source. It&#8217;s a very slick implementation, with a tree listing all the various demos, and a tabbed area showing the implementation, and the widget in practice.
+So, I think to myself, this is exactly what the [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/"><![CDATA[<div class='snap_preview'><br /><p>A couple of weeks ago I saw a cool <a href="http://www.smartclient.com/#_Welcome" target="_blank">demo framework</a> for an Ajax toolkit just released as open source. It&#8217;s a very slick implementation, with a tree listing all the various demos, and a tabbed area showing the implementation, and the widget in practice.</p>
+
+<p>So, I think to myself, this is exactly what the <a href="http://www.dojotoolkit.org/" target="_blank">Dojo Ajax Toolkit</a> is missing! Cut to today, and I&#8217;ve put the first rough cut at the demo framework on the web for people&#8217;s perusal. Check it out at <a href="http://www.skynet.ie/~sos/js/demo/dojo/dojoc/demos/featureexplorer.html" target="_blank">http://www.skynet.ie/~sos/js/demo/dojo/dojoc/demos/featureexplorer.html</a> .</p>
+<p><b>Note: I have written a follow up post <a href="http://shaneosullivan.wordpress.com/2008/01/07/dojo-demo-engine-update/" target="_blank">here</a>.</b></p>
+<p>Some of the features include:</p>
+<ul>
+
+<li>Tree navigation for the demos. Demos can be nested as deep as required.</li>
+<li>View tab. This shows the widgets in action.</li>
+<li>HTML tab. This shows how to instantiate the widget using HTML markup.</li>
+<li>JS tab. This shows how to instantiate the widget using JavaScript code.</li>
+<li>Links tab. This shows various hyperlinks to alternate content for that demo, e.g. the <a href="http://dojotoolkit.org/book/dojo-book-0-9-0" target="_blank">Dojo Book</a>.</li>
+<li>Demo description. Gives a text description of the demo.</li>
+<li>Theme selector. This allows you to change from one CSS theme to another</li>
+<li>Ability to link to standalone demos that open in a new page. This is useful for large demos that show the integration of many widgets together, and may not fit well within the demo framework itself. See the Dijit/Mail demo for an example of this.</li>
+
+<li>A build system that takes a very simple naming scheme for the demos, and creates a JSON data store that the framework runs off of. So, whenever a user adds a new demo, they simply have to re-run the build step, and that&#8217;s it! No need for a server side script, so you can run this right off your hard drive.</li>
+</ul>
+<p>This is still very much beta code, and there are a couple of errors floating around, but those will of course be hunted down. There are also some Internet Explorer issues that I&#8217;ll get to soon, so try this in Firefox for now (<b>update Dec 05 2007 - most of these have been solved, with one or two small bugs remaining)</b>. I&#8217;m in discussions to get this into the Dojo toolkit, so that the community at large can start adding in demos. I&#8217;ve put in quite a few already, but it&#8217;s so easy to do that this could become a huge resource for the Dojo community.</p>
+<p>If you have any suggestions, please let me know.</p>
+<p><a href="http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/demo-framework/" target="_blank" rel="attachment wp-att-85" title="Demo Framework"><img src="http://shaneosullivan.files.wordpress.com/2007/12/demo_framework.jpg" alt="Demo Framework" /></a><br />
+
+<b>Share this post:</b><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/12/4/a-new-demo-engine-for-dojo&amp;phase=2" target="_blank" title="Post 'A new Demo engine for Dojo">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/12/4/a-new-demo-engine-for-dojo&amp;title=A+new+Demo+engine+for+Dojo" target="_blank" title="Post 'A new Demo engine for Dojo">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/12/4/a-new-demo-engine-for-dojo&amp;subject=A+new+Demo+engine+for+Dojo" target="_blank" title="Post 'A new Demo engine for Dojo">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/12/4/a-new-demo-engine-for-dojo&amp;title=A+new+Demo+engine+for+Dojo" target="_blank" title="Post 'A new Demo engine for Dojo">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/12/4/a-new-demo-engine-for-dojo&amp;title=A+new+Demo+engine+for+Dojo" target="_blank" title="Post 'A new Demo engine for Dojo">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/12/4/a-new-demo-engine-for-dojo&amp;title=A+new+Demo+engine+for+Dojo&amp;top=1" target="_blank" title="Post 'A new Demo engine for Dojo">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=84&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/#comments" thr:count="3"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/12/04/a-new-demo-engine-for-dojo/feed/atom/" thr:count="3"/>
+ <thr:total>3</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Upgrading Ubuntu Feisty Fawn (7.04) to Gutsy Gibbon (7.10)]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-704-to-gutsy-gibbon-710/" />
+ <id>http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-704-to-gutsy-gibbon-710/</id>
+ <updated>2008-01-12T10:26:42Z</updated>
+ <published>2007-10-18T16:11:37Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Gutsy Gibbon" /><category scheme="http://shaneosullivan.wordpress.com" term="Ubuntu" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[Today I&#8217;ve begun the process of upgrading my Ubuntu installation of version 7.04 to version 7.10. To see my previous tutorial of getting Ubuntu installed on my IBM Thinkpad X41, see http://shaneosullivan.wordpress.com/2007/02/16/installing-ubuntu-edgy-on-a-thinkpad-x41-tablet/.
+This post lists whatever issues I found when upgrading, and my solutions to them. For the official instructions, see https://help.ubuntu.com/community/GutsyUpgrades.
+Third Party software [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-704-to-gutsy-gibbon-710/"><![CDATA[<div class='snap_preview'><br /><p>Today I&#8217;ve begun the process of upgrading my Ubuntu installation of version 7.04 to version 7.10. To see my previous tutorial of getting Ubuntu installed on my IBM Thinkpad X41, see <a href="http://shaneosullivan.wordpress.com/2007/02/16/installing-ubuntu-edgy-on-a-thinkpad-x41-tablet/" target="_blank">http://shaneosullivan.wordpress.com/2007/02/16/installing-ubuntu-edgy-on-a-thinkpad-x41-tablet/</a>.</p>
+
+<p>This post lists whatever issues I found when upgrading, and my solutions to them. For the official instructions, see <a href="https://help.ubuntu.com/community/GutsyUpgrades" target="_blank">https://help.ubuntu.com/community/GutsyUpgrades</a>.</p>
+<p><b>Third Party software sources cause problems</b></p>
+<p>My first problem was caused by having links to third party software distribution sites. When running the &#8220;<i>update-manager -d</i>&#8221; command, I received an error, saying the dbus couldn&#8217;t run.</p>
+<p>This was caused by having third party software sources enabled that no longer existed, for whatever reason.</p>
+
+<p>To fix this:</p>
+<ol>
+<li>click <i>&#8220;System/Administration/Software Sources&#8221;</i></li>
+<li>Click the &#8220;<i>Third-Party Software</i>&#8221; tab</li>
+<li>Deselect any non-Ubuntu software sources. You can always reselect them after the upgrade</li>
+
+</ol>
+<p><b>Modifying the software channels gets stuck</b></p>
+<p>When the second step in the &#8220;Distribution Upgrade&#8221; application is running, that is, the &#8220;Modifying the software channels&#8221; step, it got stuck downloading files. It would say</p>
+<p>Downloading file 36 of 97</p>
+<p>and stay at that number for a long time. This was not a bandwidth issue, it simply stopped. To fix this</p>
+<ol>
+<li>Click the &#8220;<i>Cancel</i>&#8221; button.</li>
+
+<li>Run the &#8220;<i>update-manager -d</i>&#8221; command again.</li>
+<li>Repeat this each time it gets stuck downloading files. I had to do this four times for it to work completely.</li>
+</ol>
+<p><b>Dual monitors didn&#8217;t work correctly</b></p>
+<p>When booted up with an external monitor plugged in, the desktop was fixed at 640 * 480 pixels resolution. I found someone else with a similar issue at <a href="http://ubuntuforums.org/showthread.php?t=566947" target="_blank">http://ubuntuforums.org/showthread.php?t=566947</a> , but their solution didn&#8217;t work for me. I solved this by:</p>
+
+<ol>
+<li>Unplugging the monitor.</li>
+<li>Restart the machine, and log in.</li>
+<li>Click &#8220;<i>System/Administration/Screens and Graphics</i>&#8220;</li>
+<li>Click the &#8220;<i>Graphics Card</i>&#8221; tab.</li>
+
+<li>Click the &#8220;<i>Driver</i>&#8221; button</li>
+<li>From the &#8220;<i>Driver</i>&#8221; dropdown list, choose &#8220;<i>i810 - Intel Integrated Graphics Chipsets</i>&#8220;</li>
+<li>Restart the machine.</li>
+
+</ol>
+<p><b>Compiz has problems with dual monitors</b></p>
+<p>Compiz (the 3D graphics stuff) causes problems and refuses to work at all if I am using dual monitors. Still working on this one.</p>
+<p><b>Some Eclipse plug-ins no longer work</b></p>
+<p>As a Java developer, I often use the <a href="http://www.eclipse.org" target="_blank">Eclipse</a> development platform. I include some non-standard plugins in the application, like plugins for Subversion support. However, when Ubuntu is upgraded to 7.10, the base Eclipse platform in upgraded, but not the non-standard plugins, which stops some of them from working.</p>
+<p><i>Update: actually, this didn&#8217;t fix my Eclipse problems, please ignore <img src='http://shaneosullivan.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </i></p>
+
+<p>The solution is to upgrade the plugins in the usual Eclipse manner:</p>
+<ol>
+<li>Open Eclipse</li>
+<li>Click <i>Help/Software Updates/Find and Install</i></li>
+<li>Click <i>Finish</i></li>
+<li>Wait a while&#8230;</li>
+</ol>
+
+<p><b>Running low on disk space after upgrade</b></p>
+<p>My laptop was running out of disk space after the install, as it downloaded quite a few packages. I found a very good blog post on how to clean up your Ubuntu install at <a href="http://www.ubuntugeek.com/cleaning-up-all-unnecessary-junk-files-in-ubuntu.html" target="_blank">http://www.ubuntugeek.com/cleaning-up-all-unnecessary-junk-files-in-ubuntu.html</a>.</p>
+<p>Make sure to read comment #7 also, that alone saved me 1GB.</p>
+<p><span style="font-weight:bold;">Some Thinkpad features no longer work</span></p>
+<p>I found that some things didn&#8217;t work that did work before, for example the stylus pen and the middle &#8217;scroller&#8217; button of the mouse. If this happens, just reapply the settings I describe <a href="http://shaneosullivan.wordpress.com/2007/02/16/ubuntu-on-thinkpad-x41-enabling-thinkpad-specific-components/" target="_blank">here</a>, as the upgrade removed them. This solved the problems for me.</p>
+
+<p><b>Share this post:</b><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-%28704%29-to-gutsy-gibbon-%287.10%29&amp;phase=2" target="_blank" title="Post 'Upgrading Ubuntu Feisty Fawn (704) to Gutsy Gibbon (7.10)">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-%28704%29-to-gutsy-gibbon-%287.10%29&amp;title=Upgrading+Ubuntu+Feisty+Fawn+%28704%29+to+Gutsy+Gibbon+%287.10%29" target="_blank" title="Post 'Upgrading Ubuntu Feisty Fawn (704) to Gutsy Gibbon (7.10)">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-%28704%29-to-gutsy-gibbon-%287.10%29&amp;subject=Upgrading+Ubuntu+Feisty+Fawn+%28704%29+to+Gutsy+Gibbon+%287.10%29" target="_blank" title="Post 'Upgrading Ubuntu Feisty Fawn (704) to Gutsy Gibbon (7.10)">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-%28704%29-to-gutsy-gibbon-%287.10%29&amp;title=Upgrading+Ubuntu+Feisty+Fawn+%28704%29+to+Gutsy+Gibbon+%287.10%29" target="_blank" title="Post 'Upgrading Ubuntu Feisty Fawn (704) to Gutsy Gibbon (7.10)">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-%28704%29-to-gutsy-gibbon-%287.10%29&amp;title=Upgrading+Ubuntu+Feisty+Fawn+%28704%29+to+Gutsy+Gibbon+%287.10%29" target="_blank" title="Post 'Upgrading Ubuntu Feisty Fawn (704) to Gutsy Gibbon (7.10)">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-%28704%29-to-gutsy-gibbon-%287.10%29&amp;title=Upgrading+Ubuntu+Feisty+Fawn+%28704%29+to+Gutsy+Gibbon+%287.10%29&amp;top=1" target="_blank" title="Post 'Upgrading Ubuntu Feisty Fawn (704) to Gutsy Gibbon (7.10)">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=82&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-704-to-gutsy-gibbon-710/#comments" thr:count="25"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/10/18/upgrading-ubuntu-feisty-fawn-704-to-gutsy-gibbon-710/feed/atom/" thr:count="25"/>
+ <thr:total>25</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Introducing the new Dojo Image Widgets]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets/" />
+ <id>http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets/</id>
+ <updated>2008-01-08T11:23:13Z</updated>
+ <published>2007-10-13T11:09:13Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Dojo" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Flickr" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Image Gallery" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Javascript" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="Technical" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="aol" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="cross domain" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="dijit" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="dojo.data" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="dojox" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="dojox.data" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="dojox.image" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="json" />
+ <category scheme="http://shaneosullivan.wordpress.com" term="open source" />
+ <summary type="html"><![CDATA[In previous posts (here for the Dojo 0.4.3 version, here and here), I wrote how I wrote an image gallery for version 0.4.3 of the Dojo Ajax Toolkit, and how I was translating it for the latest version of the toolkit, version 1.0.
+Well, that work is now, finally, complete, and I have to say, I&#8217;m [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets/"><![CDATA[<div class='snap_preview'><br /><p>In previous posts (<a href="http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/" target="_blank">here for the Dojo 0.4.3 version</a>, <a href="http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09/" target="_blank">here</a> and <a href="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/" target="_blank">here</a>), I wrote how I wrote an <a href="http://www.skynet.ie/~sos/ajax/imagegallery.php">image gallery for version 0.4.3</a> of the <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a>, and how I was translating it for the latest version of the toolkit, version 1.0.</p>
+
+<p>Well, that work is now, finally, complete, and I have to say, I&#8217;m pretty damn happy with the results. The code is now part of the <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image" target="_blank">dojox.image</a> project (dojox is the Dojo extensions project, for cool new code that may in the future make it into the core code base if enough people like/want it).</p>
+<p>If you&#8217;d like to just see the gallery in action, have a look at the <a href="http://www.skynet.ie/~sos/photos.php" target="_blank">Photos page on my personal website</a>, or see the links at the bottom of the post, otherwise, read on!</p>
+<p><b>Update: changes have been made to the widgets since this post was written, resulting in some badly aligned images. This will be fixed in the next few days. (Oct 25th 2007)</b></p>
+<p><b>Update: issue above has been fixed (Oct 29th 2007)</b></p>
+
+<h2>All For One&#8230;.</h2>
+<p>The gallery is composed of three widgets:</p>
+<ul>
+<li>dojox.image.<a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/thumbnailpicker" target="_blank">ThumbnailPicker</a> - a widget to list many small images in either a horizontal or vertical orientation, scroll through them, and attach click events that other widgets can listen to</li>
+<li>dojox.image.<a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/slideshow" target="_blank">SlideShow</a> - a widget that displays one image at a time, and can run a slideshow, changing the images every &#8216;x&#8217; seconds.</li>
+<li>dojox.image.<a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/gallery" target="_blank">Gallery</a> - A wrapper around the ThumbnailPicker, and SlideShow widgets.</li>
+
+</ul>
+<p>Both the ThumbnailPicker and Slideshow widgets can also be used on their own, and have no dependencies on each other.<br />
+<img src="http://dojotoolkit.org/files/gallery_0.jpg" height="515" width="524" /></p>
+<h2>Dojo Data Is Too Cool for School</h2>
+<p>One of the coolest features of all of these widgets is that they all feed off image data provided by the<a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/data-retrieval-dojo-data-0" target="_blank"> dojo.data</a> API. What this basically means is that each widget can display images from any source, with no modification whatsoever. You simply pass it a Dojo data store, and is shows the pictures. Some of the data stores currently in the Dojo toolkit include:</p>
+<ul>
+<li>dojo.data.<a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/what-dojo-data/available-stores/dojo-data-item" target="_blank">ItemFileReadStore</a> - pull in simple JSON data in an array. You could use this if you simply have a directory of images on your own web server you would like to display</li>
+<li>dojox.data.<a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/using-dojo-data/available-stores/flickr-rest-s" target="_blank">FlickrRestStore</a> (<a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/data/demos/demo_FlickrRestStore.html" target="_blank">demo</a>) - query the Flickr photo sharing website for images. This is all done on the browser, with no need for any server-side redirects. This is <a href="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/" target="_blank">another of my additions</a> to the Dojo toolkit - I love Flickr, feel free to check out my photo stream <a href="http://www.flickr.com/photos/shaneosullivan/" target="_blank">here</a>. I previously wrote another blog post on this data store <a href="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/" target="_blank">here</a>.</li>
+
+<li>dojox.data.PicasaStore (<a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/data/demos/demo_PicasaStore.html" target="_blank">demo</a>) - query Google&#8217;s Picasa image sharing website for images. As with the Flickr data store, this is done on the browser, with no need for server side support.</li>
+</ul>
+<p>and many more&#8230;.. You can also write your own data store if you so desire, but the ones included in the toolkit should cover almost everything you might need.</p>
+<h2>Gimme, Gimme, Gimme!</h2>
+<p>So, how can I get this, you ask! Well, you can:</p>
+<ul>
+<li>Have a look at the test pages for the widgets:
+
+<ul>
+<li><a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/image/tests/test_Gallery.html" target="_blank">Test page for ThumbnailPicker</a></li>
+<li><a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/image/tests/test_SlideShow.html">Test page for SlideShow</a></li>
+<li><a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/image/tests/test_Gallery.html" target="_blank">Test page for Gallery</a></li>
+<li><a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/data/demos/demo_FlickrRestStore.html" target="_blank">Demo page for dojox.data.FlickrRestStore</a></li>
+
+<li><a href="http://www.skynet.ie/~sos/photos.php" target="_blank">The Gallery on my personal website</a> - example of using the widget hosted on your own server</li>
+<li><a href="http://kadca.com/site/index.php?/photos" target="_blank">The Gallery on another website</a> - example of using the widget hosted on <a href="http://dev.aol.com/dojo" target="_blank">AOL&#8217;s cross domain</a> <a href="http://en.wikipedia.org/wiki/Content_Delivery_Network" target="_blank">CDN</a> network.</li>
+<li><a href="http://www.skynet.ie/~sos/js/demo/dojo/dijit/demos/featureexplorer.html#Dojox_Image" target="_blank">Demo page for all DojoX Image widgets</a></li>
+
+</ul>
+</li>
+<li>Read the documentation (I know!! Documentation&#8230; in Dojo!!)
+<ul>
+<li><a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/thumbnailpicker" target="_blank">Doc page for ThumbnailPicker</a></li>
+<li><a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/slideshow" target="_blank">Doc page for SlideShow</a></li>
+<li><a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox/dojox-image/gallery" target="_blank">Doc page for Gallery</a></li>
+
+<li><a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/using-dojo-data/available-stores/dojox-data-fl" target="_blank">Doc page for dojox.data.FlickrRestStore</a></li>
+</ul>
+</li>
+<li>Download the <a href="http://archive.dojotoolkit.org/nightly/" target="_blank">latest nightly archive</a> from Dojo.</li>
+<li><a href="http://dojotoolkit.org/book/dojo-book-0-9/part-4-meta-dojo/get-code-subversion" target="_blank">Check out the code</a> from the Subversion repository.</li>
+<li>Wait for Dojo 1.0 to come out (end of Oct 2007) and download the full release from the main<a href="http://www.dojotoolkit.org" target="_blank"> Dojo website</a>.</li>
+
+</ul>
+<p><b>Update: Dojo 1.0 is now released. Get it at <a href="http://www.dojotoolkit.org/downloads" target="_blank">http://www.dojotoolkit.org/downloads</a></b><br />
+As always, any and all feedback is welcome. Also, a big thanks to <a href="http://higginsforpresident.net/" target="_blank">Peter Higgins</a>, owner of the dojox.image project, and <a href="http://www.ibm.com/developerworks/blogs/page/webtwooh?tag=Jared_Jurkiewicz" target="_blank">Jared Jurkiewicz</a>, owner of the dojo.data project, for all their helpful ideas, and for reviewing/committing my code to the Dojo project.<br />
+<b>Share this post:</b><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets&amp;phase=2" target="_blank" title="Post 'Introducing the new Dojo Image Widgets">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets&amp;title=Introducing+the+new+Dojo+Image+Widgets" target="_blank" title="Post 'Introducing the new Dojo Image Widgets">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets&amp;subject=Introducing+the+new+Dojo+Image+Widgets" target="_blank" title="Post 'Introducing the new Dojo Image Widgets">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets&amp;title=Introducing+the+new+Dojo+Image+Widgets" target="_blank" title="Post 'Introducing the new Dojo Image Widgets">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets&amp;title=Introducing+the+new+Dojo+Image+Widgets" target="_blank" title="Post 'Introducing the new Dojo Image Widgets">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets&amp;title=Introducing+the+new+Dojo+Image+Widgets&amp;top=1" target="_blank" title="Post 'Introducing the new Dojo Image Widgets">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=81&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets/#comments" thr:count="46"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/10/13/introducing-the-new-dojo-image-widgets/feed/atom/" thr:count="46"/>
+ <thr:total>46</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Dojo Grid has landed]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/" />
+ <id>http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/</id>
+ <updated>2007-10-14T21:46:03Z</updated>
+ <published>2007-10-05T13:23:17Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="grid" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[The previously announced Dojo Grid has landed in source control, and is in the nightly builds. It has all sorts of fancy functionality, like support for lazy loading huge data sets, individual styling of rows and columns, inline editing etc.
+Check it out at http://archive.dojotoolkit.org/nightly/checkout/dojox/grid/tests/
+Very cool stuff!
+Update: The Sitepen guys have recently blogged about [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/"><![CDATA[<div class='snap_preview'><br /><p>The <a href="http://ajaxian.com/archives/plugging-in-to-the-dojo-grid" target="_blank">previously </a> <a href="http://sitepen.com/pressReleases.php?item=20070917">announced</a> Dojo Grid has landed in source control, and is in the nightly builds. It has all sorts of fancy functionality, like support for lazy loading huge data sets, individual styling of rows and columns, inline editing etc.</p>
+
+<p>Check it out at <a href="http://archive.dojotoolkit.org/nightly/checkout/dojox/grid/tests/" target="_blank">http://archive.dojotoolkit.org/nightly/checkout/dojox/grid/tests/</a></p>
+<p>Very cool stuff!</p>
+<p><strong>Update: </strong>The Sitepen guys have recently blogged about the grid at <a href="http://www.sitepen.com/blog/2007/10/13/dojo-grid-update/" target="_blank">http://www.sitepen.com/blog/2007/10/13/dojo-grid-update/</a></p>
+<p><strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed&amp;phase=2" target="_blank" title="Post 'Dojo Grid has landed">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed&amp;title=Dojo+Grid+has+landed" target="_blank" title="Post 'Dojo Grid has landed">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed&amp;subject=Dojo+Grid+has+landed" target="_blank" title="Post 'Dojo Grid has landed">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed&amp;title=Dojo+Grid+has+landed" target="_blank" title="Post 'Dojo Grid has landed">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed&amp;title=Dojo+Grid+has+landed" target="_blank" title="Post 'Dojo Grid has landed">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed&amp;title=Dojo+Grid+has+landed&amp;top=1" target="_blank" title="Post 'Dojo Grid has landed">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=80&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/#comments" thr:count="0"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/10/05/dojo-grid-has-landed/feed/atom/" thr:count="0"/>
+ <thr:total>0</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[A TortoiseSVN replacement for Ubuntu]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu/" />
+ <id>http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu/</id>
+ <updated>2007-10-04T15:50:50Z</updated>
+ <published>2007-10-04T15:50:50Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Linux" /><category scheme="http://shaneosullivan.wordpress.com" term="Nautilus" /><category scheme="http://shaneosullivan.wordpress.com" term="Subversion" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="TortoiseSVN" /><category scheme="http://shaneosullivan.wordpress.com" term="Ubuntu" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[I work on a number of open source projects, and many of them use the Subversion version control system to manage their code. Before my switch from Windows XP to Ubuntu Linux (which I am still ecstatically happy with btw), I became a big fan of TortoiseSVN, an extremely useful Subversion client that integrates itself [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu/"><![CDATA[<div class='snap_preview'><br /><p>I work on a number of open source projects, and many of them use the <a href="http://subversion.tigris.org/" target="_blank">Subversion</a> version control system to manage their code. Before <a href="http://shaneosullivan.wordpress.com/2007/02/16/installing-ubuntu-edgy-on-a-thinkpad-x41-tablet/" target="_blank">my switch</a> from Windows XP to <a href="http://www.ubuntu.com" target="_blank">Ubuntu Linux </a>(which I am still ecstatically happy with btw), I became a big fan of <a href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN,</a> an extremely useful Subversion client that integrates itself directly into Windows Explorer.</p>
+
+<p>TortoiseSVN is simple to use, very intuitive, and does everything I need from it. You simply right click on a folder you want to store your checked out files in, give it the URL of the Subversion server, and it checks out the code, updates it, checks it back in (if you have permission), performs file diffs &#8230;.. basically everything you need to do is integrated right in with your file browser.</p>
+<p>So, I miss this in Ubuntu, as TortoiseSVN is Windows only. However, I recently found a replacement, which integrates nicely with Nautilus, the Ubuntu file browser. While it is not as slick as TortoiseSVN, it works in a very similar way. You right click on a folder, and have a selection of SVN operations you can perform.</p>
+<p>See <a href="http://marius.scurtescu.com/2005/08/24/nautilus_scripts_for_subversion" target="_blank">http://marius.scurtescu.com/2005/08/24/nautilus_scripts_for_subversion</a> for details.</p>
+<p><img src="http://shaneosullivan.files.wordpress.com/2007/10/nautilussubversionscripts.png?w=615&h=264" alt="Nautilus Subversion Menu" height="264" width="615" /></p>
+<p><img src="http://shaneosullivan.files.wordpress.com/2007/10/nautilussubversionscripts-add.png" alt="Nautilus Subversion Dialog" /></p>
+<p>One thing that is missing from this is the display of icons in the file browser (Nautilus) to inform you of the state of a file - checked out, modified, not added to source control etc. Another person has developed a solution to this, which unfortunately I have not, yet, been able to get working, but perhaps you will have more luck.</p>
+
+<p>See <a href="http://www.kryogenix.org/days/2006/09/12/extremely-noddy-tortoisesvn-for-the-gnome-desktop" target="_blank">http://www.kryogenix.org/days/2006/09/12/extremely-noddy-tortoisesvn-for-the-gnome-desktop</a> for details on this.<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu&amp;phase=2" target="_blank" title="Post 'A TortoiseSVN replacement for Ubuntu">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu&amp;title=A+TortoiseSVN+replacement+for+Ubuntu" target="_blank" title="Post 'A TortoiseSVN replacement for Ubuntu">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu&amp;subject=A+TortoiseSVN+replacement+for+Ubuntu" target="_blank" title="Post 'A TortoiseSVN replacement for Ubuntu">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu&amp;title=A+TortoiseSVN+replacement+for+Ubuntu" target="_blank" title="Post 'A TortoiseSVN replacement for Ubuntu">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu&amp;title=A+TortoiseSVN+replacement+for+Ubuntu" target="_blank" title="Post 'A TortoiseSVN replacement for Ubuntu">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu&amp;title=A+TortoiseSVN+replacement+for+Ubuntu&amp;top=1" target="_blank" title="Post 'A TortoiseSVN replacement for Ubuntu">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/77/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/77/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=77&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu/#comments" thr:count="3"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/10/04/a-tortoisesvn-replacement-for-ubuntu/feed/atom/" thr:count="3"/>
+ <thr:total>3</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Querying Flickr with Dojo!]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/" />
+ <id>http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/</id>
+ <updated>2007-09-22T18:26:51Z</updated>
+ <published>2007-09-22T16:10:05Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Flickr" /><category scheme="http://shaneosullivan.wordpress.com" term="Image Gallery" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="dojo.data" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox.data" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox.image" /><category scheme="http://shaneosullivan.wordpress.com" term="json" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[I&#8217;ve recently submitted a new data store for the Dojo Ajax Toolkit that makes it very simple to query Flickr for your and other peoples images. For those not familiar with Flickr, it is a photo sharing website, one of the most popular on the net. However, what makes it quite special is [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/"><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve recently submitted a new data store for the <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a> that makes it very simple to query <a href="http://www.flickr.com">Flickr</a> for your and other peoples images. For those not familiar with Flickr, it is a photo sharing website, one of the most popular on the net. However, what makes it quite special is the <a href="http://www.flickr.com/services/api/" target="_blank">comprehensive public API</a>s that it exposes.</p>
+
+<p>While these APIs are extremely useful, however, they are also very complex, with a steep learning curve before you can even get started. In steps Dojo and their new <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/using-dojo-data" target="_blank">Data API</a> specification, whose stated aim is to have a single unified interface to all data sources, so that users of a data store won&#8217;t have to care if they&#8217;re reading from a database, from a XML or JSON file, or from some remote service like Flickr.</p>
+<p>So, long story short, I&#8217;ve written an implementation of the Dojo Data APIs to query data from Flickr. It is part of the <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-5-dojox-extensions-dojo-0" target="_blank">DojoX</a> project, and is called <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/using-dojo-data/available-stores/flickr-rest-s" target="_blank">dojox.data.FlickrRestStore</a>. It provides quite a few methods of querying for photos:</p>
+<ul>
+<li>By one or more tags, matchine any or all of them</li>
+<li>By user id</li>
+
+<li>By set id</li>
+<li>Full text search</li>
+<li>Sorting on date taken, date published or &#8216;interestingness&#8217;</li>
+</ul>
+<p>FlickrRestStore also performs caching of image data, so if you request the data twice it won&#8217;t make a second remote request.</p>
+<p>The store is also designed to be accessed by multiple clients simultaneously. If two clients request the same data, only one request is made, with both clients being notified of the identical results.</p>
+<p><strong>Examples</strong></p>
+
+<p>I&#8217;ve put a fairly comprehensive set of examples in the Dojo book at <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/using-dojo-data/available-stores/flickr-rest-s#examples" target="_blank">http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo<br />
+/using-dojo-data/available-stores/flickr-rest-s#examples </a>.</p>
+<p>You can see a <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/data/demos/demo_FlickrRestStore.html" target="_blank">Demo</a> of it running at <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/data/demos/demo_FlickrRestStore.html" target="_blank">http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/data/demos/demo_FlickrRestStore.html</a> .</p>
+<p>The unit tests cover quite a few cases also, and you can see them at <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/data/tests/stores/FlickrRestStore.js" target="_blank">http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/data/tests/stores/FlickrRestStore.js</a></p>
+<p>To get the code, you can:</p>
+
+<ul>
+<li>Check out the latest copy of the Dojo toolkit, see the instructions <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-4-meta-dojo/get-code-subversion" target="_blank">here</a>.</li>
+<li>Grab the entire nightly build from <a href="http://archive.dojotoolkit.org/nightly/" target="_blank">http://archive.dojotoolkit.org/nightly/</a></li>
+<li>Wait for release 1.0!</li>
+</ul>
+<p><strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo&amp;phase=2" target="_blank" title="Post 'Querying Flickr with Dojo!">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo&amp;title=Querying+Flickr+with+Dojo%21" target="_blank" title="Post 'Querying Flickr with Dojo!">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo%21&amp;subject=Querying+Flickr+with+Dojo" target="_blank" title="Post 'Querying Flickr with Dojo!">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo%21&amp;title=Querying+Flickr+with+Dojo" target="_blank" title="Post 'Querying Flickr with Dojo!">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo%21&amp;title=Querying+Flickr+with+Dojo" target="_blank" title="Post 'Querying Flickr with Dojo!">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo&amp;title=Querying+Flickr+with+Dojo%21&amp;top=1" target="_blank" title="Post 'Querying Flickr with Dojo!">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=76&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/#comments" thr:count="3"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/09/22/querying-flickr-with-dojo/feed/atom/" thr:count="3"/>
+ <thr:total>3</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Specifying the callback function with the Flickr JSON APIs]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis/" />
+ <id>http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis/</id>
+ <updated>2007-09-13T09:54:53Z</updated>
+ <published>2007-09-13T09:31:30Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Flickr" /><category scheme="http://shaneosullivan.wordpress.com" term="Image Gallery" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox.data" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox.image" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[Flickr is a photo sharing website that has a very flexible set of APIs that other applications and websites can use to access the photos it stores. This post shows you how to specify a callback function that Flickr can call to pass your web application information on photos it stores.
+Quite a while ago I [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis/"><![CDATA[<div class='snap_preview'><br /><p>Flickr is a photo sharing website that has a very flexible set of <a href="http://en.wikipedia.org/wiki/Api" target="_blank">API</a>s that other applications and websites can use to access the photos it stores. This post shows you how to specify a callback function that Flickr can call to pass your web application information on photos it stores.</p>
+
+<p>Quite a while ago I looked into the <a href="http://www.flickr.com" target="_blank">Flickr</a> APIs for a website I was writing. Looking at the service that returns photo data in <a href="http://en.wikipedia.org/wiki/Json" target="_blank">JSON</a> (Javascript Object Notation), I noticed that it did so by calling a predefined function, <em>jsonFlickrApi, </em>passing in the data to that function. This seemed to be an obvious weak spot, since if more than one widget on a page were accessing the Flickr REST services, they would clash with each other, possibly receiving each others data. Obviously not a good thing.</p>
+<p>Cut to today. I&#8217;ve been working on a JavaScript data store that operates against the Flickr <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer" target="_blank">REST</a> services for the <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a>, and had another look at the Flickr APIs. Now, whether I missed it before (doubtful, as I looked specifically for it), or the fine Flickr folk have listened to complaints (very likely), but there is now a parameter that can be passed to the Flickr API that specifies the callback function to use when the data is retrieved from Flickr.</p>
+<p>All you have to do is pass a parameter <em>jsoncallback</em> to Flickr, with the name of the function you want to be called with the data, and thats it.</p>
+
+<p>E.g. if I had a function:</p>
+<p>function myCallbackFunction(data) {</p>
+<p>alert(&#8221;I received &#8221; + data.photos.photo.length +&#8221; photos&#8221;);</p>
+<p>}</p>
+<p>I could then specify a &lt;script&gt; element in my HTML page to retrieve the data in a cross site manner (since you can&#8217;t make cross site <a href="http://en.wikipedia.org/wiki/XmlHttpRequest" target="_blank">XmlHttpRequest </a>calls), like so:</p>
+
+<p>&lt;SCRIPT type=&#8221;text/javascript&#8221; src=&#8221;http://www.flickr.com/services/rest/?format=json&amp;<font color="#ff0000">jsoncallback=myCallbackFunction</font><br />
+&amp;method=flickr.people.getPublicPhotos<br />
+&amp;api_key=8c6803164dbc395fb7131c9d54843627<br />
+&amp;user_id=44153025%40N00&amp;per_page=1&#8243;&gt;</p>
+
+<p>&lt;/SCRIPT&gt;</p>
+<p>Note the jsoncallback parameter in the <em>src</em> attribute. This results in JavaScript similar to:</p>
+<p><em>myCallbackFunction<span class="sourceRowText">({&#8221;photos&#8221;:{&#8221;page&#8221;:1, &#8220;pages&#8221;:489, &#8220;perpage&#8221;:1, &#8220;total&#8221;:&#8221;489&#8243;, &#8220;photo&#8221;:[{&#8221;id&#8221;:&#8221;1352049918&#8243;, &#8220;owner&#8221;:&#8221;44153025@N00&#8243;, &#8220;secret&#8221;:&#8221;5636009306&#8243;, &#8220;server&#8221;:&#8221;1111&#8243;, &#8220;farm&#8221;:2, &#8220;title&#8221;:&#8221;The Liffey Panorama&#8221;, &#8220;ispublic&#8221;:1, &#8220;isfriend&#8221;:0, &#8220;isfamily&#8221;:0}]}, &#8220;stat&#8221;:&#8221;ok&#8221;});</span></em></p>
+
+<p>being called.</p>
+<p>Thanks Flickr! Nice to see them listening, and continually improving. This will make web applications built on Flickr much more robust, without the need of ridiculous hackery to get around unnecessarily difficult APIs. See <a href="http://www.flickr.com/services/api/response.json.html" target="_blank">http://www.flickr.com/services/api/response.json.html</a> for the offical info on JSON responses.</p>
+<p>Keep an eye out for my dojox.data.FlickrRestStore being release some day soon!!<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis&amp;phase=2" target="_blank" title="Post 'Specifying the callback function with the Flickr JSON APIs">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis&amp;title=Specifying+the+callback+function+with+the+Flickr+JSON+APIs" target="_blank" title="Post 'Specifying the callback function with the Flickr JSON APIs">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis&amp;subject=Specifying+the+callback+function+with+the+Flickr+JSON+APIs" target="_blank" title="Post 'Specifying the callback function with the Flickr JSON APIs">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis&amp;title=Specifying+the+callback+function+with+the+Flickr+JSON+APIs" target="_blank" title="Post 'Specifying the callback function with the Flickr JSON APIs">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis&amp;title=Specifying+the+callback+function+with+the+Flickr+JSON+APIs" target="_blank" title="Post 'Specifying the callback function with the Flickr JSON APIs">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis&amp;title=Specifying+the+callback+function+with+the+Flickr+JSON+APIs&amp;top=1" target="_blank" title="Post 'Specifying the callback function with the Flickr JSON APIs">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/75/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/75/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=75&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis/#comments" thr:count="0"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/09/13/specifying-the-callback-function-with-the-flickr-json-apis/feed/atom/" thr:count="0"/>
+ <thr:total>0</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Image Gallery, Slideshow, and Flickr data source for Dojo 0.9]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09/" />
+ <id>http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09/</id>
+ <updated>2007-09-05T08:32:22Z</updated>
+ <published>2007-09-04T23:32:51Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Image Gallery" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="dijit" /><category scheme="http://shaneosullivan.wordpress.com" term="dojo.image" /><category scheme="http://shaneosullivan.wordpress.com" term="dojox" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[In a previous post (see here) I spoke about how I&#8217;d written an Image Gallery widget that worked with Dojo Ajax Toolkit version 0.4.2 and 0.4.3. I contacted the good folks at Dojo about updating it for the latest release, 0.9, and adding it to the toolkit.
+They were very receptive to the idea, [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09/"><![CDATA[<div class='snap_preview'><br /><p>In a previous post (see <a href="http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/" target="_blank">here</a>) I spoke about how I&#8217;d written an Image Gallery widget that worked with <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a> version 0.4.2 and 0.4.3. I contacted the good folks at Dojo about updating it for the latest release, <a href="http://ajaxian.com/archives/dojo-09-final-version-released" target="_blank">0.9</a>, and adding it to the toolkit.</p>
+
+<p>They were very receptive to the idea, with a few suggestions. Firstly, rather than having its own method of storing information, it should run off the <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/data-retrieval-dojo-data-0" target="_blank">dojo.data </a>API, and secondly, it should go into the newly created dojox.image project.</p>
+<p>Both of these suggestions were perfectly reasonable, so, cut to a few weeks later and I&#8217;ve finished my first pass at converting over the code from 0.4.3 to 0.9. As the Dojo APIs have changed drastically recently, this was no simple matter, but thats the subject of another blog post.</p>
+<p>The code is not finished (or even checked in) yet, but you can see some examples of it running from test pages. There are two separate widgets:</p>
+<ul>
+<li>dojox.image.SlideShow - a simple widget that runs a slide show of images, with urls loaded from a dojo.data store.</li>
+<li>dojox.image.ImageGallery - this wraps the SlideShow widget, adding thumbnail views. This is also loaded from a dojo.data store.</li>
+</ul>
+<p>Finally, I&#8217;ve implemented a dojo.data store that reads from the <a href="http://www.flickr.com/photos/shaneosullivan" target="_blank">Flickr</a> REST APIs, to pull down lists of photos. This store is more complex than the existing Flickr store, as it does caching of results, as well as going against a much more flexible API, meaning that expanding its capabilities later is possible.</p>
+
+<p>Whether or not this goes into dojox or not is still undecided. However, you can see the widgets running using this data store.</p>
+<p>See the test files at <a href="http://www.skynet.ie/~sos/js2/dojox/image/tests/" target="_blank">http://www.skynet.ie/~sos/js2/dojox/image/tests</a> for examples of this working.</p>
+<p>Note that this is NOT the final code. It may still be buggy, may look different in the future (it&#8217;s pretty basic now), and the code will be cleaned up. However, if you have any suggestions, please feel free to leave comments on this post.</p>
+<p><strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09&amp;phase=2" target="_blank" title="Post 'Image Gallery, Slideshow, and Flickr data source for Dojo 09">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09&amp;title=Image+Gallery,+Slideshow,+and+Flickr+data+source+for+Dojo+09" target="_blank" title="Post 'Image Gallery, Slideshow, and Flickr data source for Dojo 09">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09&amp;subject=Image+Gallery,+Slideshow,+and+Flickr+data+source+for+Dojo+09" target="_blank" title="Post 'Image Gallery, Slideshow, and Flickr data source for Dojo 09">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09&amp;title=Image+Gallery,+Slideshow,+and+Flickr+data+source+for+Dojo+09" target="_blank" title="Post 'Image Gallery, Slideshow, and Flickr data source for Dojo 09">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09&amp;title=Image+Gallery,+Slideshow,+and+Flickr+data+source+for+Dojo+09" target="_blank" title="Post 'Image Gallery, Slideshow, and Flickr data source for Dojo 09">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09&amp;title=Image+Gallery,+Slideshow,+and+Flickr+data+source+for+Dojo+09&amp;top=1" target="_blank" title="Post 'Image Gallery, Slideshow, and Flickr data source for Dojo 09">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/74/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/74/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=74&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09/#comments" thr:count="1"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/09/04/image-gallery-slideshow-and-flickr-data-source-for-dojo-09/feed/atom/" thr:count="1"/>
+ <thr:total>1</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Dojo event performance tip]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip/" />
+ <id>http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip/</id>
+ <updated>2007-08-23T12:38:36Z</updated>
+ <published>2007-08-23T12:29:08Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="dojo.event" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /><category scheme="http://shaneosullivan.wordpress.com" term="performance" /> <summary type="html"><![CDATA[When working with the Dojo Ajax Toolkit and using it&#8217;s dojo.event package to listen to DOM and custom events, the two most common approaches are:
+
+Listen for an event (or function call) to be triggered on an object, and when it is to run a custom function, e.g.
+ var alertFn = function() [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip/"><![CDATA[<div class='snap_preview'><br /><p>When working with the <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a> and using it&#8217;s <em>dojo.event</em> package to listen to DOM and custom events, the two most common approaches are:</p>
+
+<ol>
+<li>Listen for an event (or function call) to be triggered on an object, and when it is to run a custom function, e.g.<br />
+<strong> var alertFn = function() {alert(&#8221;widget is showing&#8221;);};<br />
+dojo.event.connect(myWidget, &#8220;onShow&#8221;, <font color="#ff0000">alertFn</font>);</strong></li>
+<p>This basically says that when the &#8220;onShow&#8221; function is called on some widget, called myWidget, run a function that does a simple alert. Of course you can do whatever you like inside this function.</p>
+
+<li>Listen for an event (or function call) to be triggered on an object, and when it is to run a custom function defined in the scope of an object, e.g.<br />
+<strong> var myObj = {<br />
+alertFn: function() {alert(&#8221;widget is showing&#8221;);}<br />
+};<br />
+dojo.event.connect(myWidget, &#8220;onShow&#8221;,<font color="#ff0000">myObj, &#8220;alertFn&#8221;</font>);</strong></p>
+<p>This is saying that I have an object called &#8220;<font color="#ff0000">myObj</font>&#8220;, which has a function called &#8220;<font color="#ff0000">alertFn</font>&#8220;, and when the &#8220;<font color="#ff0000">onShow</font>&#8221; method on &#8220;<font color="#ff0000">myWidget</font>&#8221; is called, call the &#8220;<font color="#ff0000">alertFn</font>&#8221; function on &#8220;<font color="#ff0000">myObj</font>&#8220;.</li>
+
+</ol>
+<p>I&#8217;ve found that when working with Dojo version 0.4.2 and 0.4.3, <strong>using the second approach is far far quicker</strong>. It turns out that internally, if you simply pass an anonymous function to Dojo, it will add that function to an internal structure and do a brute force search on that internal structure to make sure that this function is unique. This can result in a very significant performance hit - I&#8217;ve seen it take up over 50% of the startup time of a page on one of our more JavaScript heavy applications.</p>
+<p>So, the conclusion is that if you are <em>dojo.event.connect</em>, which is one of the most useful functions in the toolkit, make sure to use four arguments to the function (approach #2 above), rather than just three (approach #1 above). If necessary, place a simple wrapper around the function as I have shown.<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip&amp;phase=2" target="_blank" title="Post 'Dojo event performance tip">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip&amp;title=Dojo+event+performance+tip" target="_blank" title="Post 'Dojo event performance tip">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip&amp;subject=Dojo+event+performance+tip" target="_blank" title="Post 'Dojo event performance tip">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip&amp;title=Dojo+event+performance+tip" target="_blank" title="Post 'Dojo event performance tip">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip&amp;title=Dojo+event+performance+tip" target="_blank" title="Post 'Dojo event performance tip">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip&amp;title=Dojo+event+performance+tip&amp;top=1" target="_blank" title="Post 'Dojo event performance tip">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/73/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/73/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=73&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip/#comments" thr:count="0"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/08/23/dojo-event-performance-tip/feed/atom/" thr:count="0"/>
+ <thr:total>0</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Dojo 0.9 released]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released/" />
+ <id>http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released/</id>
+ <updated>2007-09-04T15:23:50Z</updated>
+ <published>2007-08-22T10:24:51Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="dijit" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[The latest version of the Dojo Ajax Toolkit has just been released into the wild. Version 0.9 is a very streamlined progression of the toolkit, with many of the less essential features pushed out to another project, DojoX, and the Dojo widgets given their own project, Dijit.
+Another big change is the the main [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released/"><![CDATA[<div class='snap_preview'><br /><p>The latest version of the <a href="http://www.dojotoolkit.org" target="_blank">Dojo Ajax Toolkit</a> has just been released into the wild. Version 0.9 is a very streamlined progression of the toolkit, with many of the less essential features pushed out to another project, DojoX, and the Dojo widgets given their own project, Dijit.</p>
+
+<p>Another big change is the the main JavaScript file in Dojo, dojo.js, is no longer customisable. It now contains the most common features required by most web developers, and nothing more. As a result, it is far smaller than previous incarnations, down to ~24k when gzipped.</p>
+<p>Some resources:</p>
+<p>James Burke has written up a very informative post about what exactly is baked into the default build of dojo.js, which you can find at <a href="http://dojotoolkit.org/2007/08/22/dissecting-0-9s-dojo-js" target="_blank">http://dojotoolkit.org/2007/08/22/dissecting-0-9s-dojo-js</a> . Well worth a read.</p>
+<p>Bill Keese wrote up a guided tour of 0.9 at <a href="http://dojotoolkit.org/2007/08/20/dijit-0-9-guided-tour" target="_blank">http://dojotoolkit.org/2007/08/20/dijit-0-9-guided-tour</a>.</p>
+<p>The Dojo book for version 0.9 can be found at <a href="http://dojotoolkit.org/book/dojo-book-0-9-0" target="_blank">http://dojotoolkit.org/book/dojo-book-0-9-0</a>. It&#8217;s almost finished (almost!) as of today, Aug 22 2007.</p>
+
+<p>The Ajaxian post on Dojo 0.9 can be read at <a href="http://ajaxian.com/archives/dojo-09-final-version-released" target="_blank">http://ajaxian.com/archives/dojo-09-final-version-released</a>.</p>
+<p>Download the toolkit from <a href="http://build.dojotoolkit.org/0.9.0/" target="_blank">http://build.dojotoolkit.org/0.9.0</a>. This page gives some information on how you can use Dojo from AOL&#8217;s hosting servers, so you never have to download it at all.<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released&amp;phase=2" target="_blank" title="Post 'Dojo 0.9 released">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released&amp;title=Dojo+0.9+released" target="_blank" title="Post 'Dojo 0.9 released">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released&amp;subject=Dojo+0.9+released" target="_blank" title="Post 'Dojo 0.9 released">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released&amp;title=Dojo+0.9+released" target="_blank" title="Post 'Dojo 0.9 released">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released&amp;title=Dojo+0.9+released" target="_blank" title="Post 'Dojo 0.9 released">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released&amp;title=Dojo+0.9+released&amp;top=1" target="_blank" title="Post 'Dojo 0.9 released">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/72/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/72/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=72&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released/#comments" thr:count="2"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/08/22/dojo-09-released/feed/atom/" thr:count="2"/>
+ <thr:total>2</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Dojo theme browser shows off Dijit widgets]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets/" />
+ <id>http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets/</id>
+ <updated>2007-11-05T13:45:45Z</updated>
+ <published>2007-08-17T12:18:57Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Rich Text" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="dijit" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[The Dojo/Dijit (Dojo&#8217;s widget project) toolkit has created a page where you can view many of their widgets using the four CSS themes written so far for Dojo. This is cool for a couple of reasons.
+Firstly, it showcases the excellent work the Dijit developers have put into new themeing skins. There are four [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets/"><![CDATA[<div class='snap_preview'><br /><p>The <a href="http://www.dojotoolkit.org" target="_blank">Dojo</a>/<a href="http://dojotoolkit.org/developer/dijit" target="_blank">Dijit</a> (Dojo&#8217;s widget project) toolkit has <a href="http://dojotoolkit.org/~bill/0.9/dijit/themes/themeTester.html?theme=tundra" target="_blank">created a page</a> where you can view many of their widgets using the four <a href="http://en.wikipedia.org/wiki/Css" target="_blank">CSS</a> themes written so far for Dojo. This is cool for a couple of reasons.</p>
+
+<p>Firstly, it showcases the excellent work the Dijit developers have put into new themeing skins. There are four themes completed so far, and changing the look of Dojo is now as simple as including a different CSS file on your web page. All Dijit widgets now run off a single CSS file, rather than each having their own CSS file.</p>
+<p>Secondly, it shows the usage of many of Dijit&#8217;s widgets (say that five times in a row! <img src='http://shaneosullivan.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ). Many of the demos from the 0.4.* days are gone now, and this is about as comprehensive a demo of Dojo&#8217;s widgets as you&#8217;re likely to see for a while. And yes, they are very nice indeed.</p>
+<p>Go to <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/themeTester.html" target="_blank">http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/themeTester.html</a> to see the default theme (<em>tundra</em>) in use. Click on the &#8220;Alternate Themes&#8221; tab at the bottom of the page to switch themes to one of the alternate themes.</p>
+
+<p>Enjoy!</p>
+<p><strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets&amp;phase=2" target="_blank" title="Post 'Dojo theme browser shows off Dijit widgets">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets&amp;title=Dojo+theme+browser+shows+off+Dijit+widgets" target="_blank" title="Post 'Dojo theme browser shows off Dijit widgets">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets&amp;subject=Dojo+theme+browser+shows+off+Dijit+widgets" target="_blank" title="Post 'Dojo theme browser shows off Dijit widgets">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets&amp;title=Dojo+theme+browser+shows+off+Dijit+widgets" target="_blank" title="Post 'Dojo theme browser shows off Dijit widgets">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets&amp;title=Dojo+theme+browser+shows+off+Dijit+widgets" target="_blank" title="Post 'Dojo theme browser shows off Dijit widgets">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets&amp;title=Dojo+theme+browser+shows+off+Dijit+widgets&amp;top=1" target="_blank" title="Post 'Dojo theme browser shows off Dijit widgets">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/71/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/71/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=71&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets/#comments" thr:count="2"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/08/17/dojo-theme-browser-shows-off-dijit-widgets/feed/atom/" thr:count="2"/>
+ <thr:total>2</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Why is my web page slow? YSlow for Firebug can tell you.]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you/" />
+ <id>http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you/</id>
+ <updated>2007-07-26T08:28:03Z</updated>
+ <published>2007-07-25T15:08:30Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Firebug" /><category scheme="http://shaneosullivan.wordpress.com" term="Firefox" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="tools" /> <summary type="html"><![CDATA[Yahoo have released a very useful extension for Firebug, which is itself an extension for Firefox, which can be used to analyze a web page&#8217;s performance. The extension, called YSlow, appears as a separate pane in Firebug, and gives you a whole load of statistics about your page.
+However, in addition to the bare numbers, [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you/"><![CDATA[<div class='snap_preview'><br /><p>Yahoo have released a <a href="http://developer.yahoo.com/yslow/" target="_blank">very useful extension</a> for <a href="http://www.getfirebug.com" target="_blank">Firebug</a>, which is itself an extension for <a href="http://www.getfirefox.com" target="_blank">Firefox</a>, which can be used to analyze a web page&#8217;s performance. The extension, called <a href="http://developer.yahoo.com/yslow/" target="_blank">YSlow</a>, appears as a separate pane in Firebug, and gives you a whole load of statistics about your page.</p>
+
+<p>However, in addition to the bare numbers, it also gives your page a ranking, from zero to a hundred, and offers tips in plain English on you can improve the performance of your page.</p>
+<p>All in all, a very handy little addition to a web developer&#8217;s toolkit.</p>
+<p>One caveat is that it is of course not perfect - I tried to use it on Gmail, and it gave the site a 98% mark (practically impossible to achieve in reality), as the initial page of the Gmail application simply loads a single JavaScript page and not much else. Therefore, YSlow seems to only analyze content sent down the wire to browser upon page load, and ignores generated content. However, this does not take away from the fact that it is perfectly suitable for the vast majority of websites out there.</p>
+<p>More information available <a href="http://developer.yahoo.com/yslow/" target="_blank">here</a>, or read Ajaxian&#8217;s post <a href="http://ajaxian.com/archives/yahoo-announces-yslow-firebug-based-performance-tool" target="_blank">here</a>.<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you&amp;phase=2" target="_blank" title="Post 'Why is my web page slow YSlow for Firebug can tell you.">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you&amp;title=Why+is+my+web+page+slow+YSlow+for+Firebug+can+tell+you." target="_blank" title="Post 'Why is my web page slow YSlow for Firebug can tell you.">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you&amp;subject=Why+is+my+web+page+slow+YSlow+for+Firebug+can+tell+you." target="_blank" title="Post 'Why is my web page slow YSlow for Firebug can tell you.">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you&amp;title=Why+is+my+web+page+slow+YSlow+for+Firebug+can+tell+you." target="_blank" title="Post 'Why is my web page slow YSlow for Firebug can tell you.">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you&amp;title=Why+is+my+web+page+slow+YSlow+for+Firebug+can+tell+you." target="_blank" title="Post 'Why is my web page slow YSlow for Firebug can tell you.">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you&amp;title=Why+is+my+web+page+slow+YSlow+for+Firebug+can+tell+you.&amp;top=1" target="_blank" title="Post 'Why is my web page slow YSlow for Firebug can tell you.">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/68/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/68/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=68&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you/#comments" thr:count="1"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/07/25/why-is-my-web-page-slow-yslow-for-firebug-can-tell-you/feed/atom/" thr:count="1"/>
+ <thr:total>1</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Flickr and Dojo Image Gallery]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/" />
+ <id>http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/</id>
+ <updated>2007-07-19T10:44:19Z</updated>
+ <published>2007-07-03T15:53:33Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Flickr" /><category scheme="http://shaneosullivan.wordpress.com" term="Image Gallery" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="json" /> <summary type="html"><![CDATA[I have created an Image Gallery widget built on Dojo 0.4.3 that integrates nicely with Flickr. The widget it written entirely using JavaScript and CSS as a standalone Dojo widget, and is released under the same open source license as Dojo, the Academic Free License.
+For more information, including the code and examples, see http://www.skynet.ie/~sos/ajax/imagegallery.php.
+Some [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/"><![CDATA[<div class='snap_preview'><br /><p>I have created an Image Gallery widget built on <a href="http://www.dojotoolkit.org" target="_blank">Dojo</a> 0.4.3 that integrates nicely with <a href="http://www.flickr.com" target="_blank">Flickr</a>. The widget it written entirely using JavaScript and CSS as a standalone Dojo widget, and is released under the same open source license as Dojo, the Academic Free License.</p>
+
+<p>For more information, including the code and examples, see <a href="http://www.skynet.ie/~sos/ajax/imagegallery.php" target="_blank">http://www.skynet.ie/~sos/ajax/imagegallery.php</a>.</p>
+<p>Some of the features of the widget include:</p>
+<ul>
+<li> Pages of thumbnails.</li>
+<li> Intelligent pre-loading of images so the images you are looking at are loaded first.</li>
+<li> Fade effects for transitioning of images</li>
+<li> Populated using JSON data - any JSON data, not just Flickr.</li>
+<li> Flickr integration - remotely load your Flickr images.</li>
+
+<li> Paging through a Flickr collection.</li>
+<li> Slideshow</li>
+</ul>
+<p>The widget can be instantiated from both HTML markup and programmatically in JavaScript.</p>
+<p>To view your own Flickr pictures on the widget, without installing it on your own site, go to <a href="http://www.skynet.ie/~sos/ajax/yourpics.php" target="_blank">http://www.skynet.ie/~sos/ajax/yourpics.php</a> .</p>
+<p>There is a discussion thread in the Flickr API group at <a href="http://www.flickr.com/groups/api/discuss/72157600624623643/" target="_blank">http://www.flickr.com/groups/api/discuss/72157600624623643</a>.</p>
+<p>So, why create this widget? Well, firstly I wanted a JavaScript image gallery that would list thumbnails and allow me to page through Flickr photos. Also, a slide show would have been nice. I was surprised to discover that I couldn&#8217;t find one that I liked in the twenty or so minutes I spent looking for one. I found a handy Flash based one, but I wanted a HTML and JavaScript only widget. So I grabbed Dojo 0.4.3 (my JavaScript library of choice right now) and wrote one.</p>
+
+<p>Here is a screen shot:</p>
+<p><a href="http://www.skynet.ie/~sos/ajax/imagegallery.php" target="_blank"><br />
+<img src="http://farm2.static.flickr.com/1359/704747548_d3062f896a.jpg?v=0" alt="Screenshot" border="0" height="458" width="500" /></a></p>
+<p>The widget has all the features that I personally require at the moment, but will probably evolve as I think of new things to add. If you have any suggestions/bug reports, please comment on this post.</p>
+<p><strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery&amp;phase=2" target="_blank" title="Post 'Flickr and Dojo Image Gallery">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery&amp;title=Flickr+and+Dojo+Image+Gallery" target="_blank" title="Post 'Flickr and Dojo Image Gallery">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery&amp;subject=Flickr+and+Dojo+Image+Gallery" target="_blank" title="Post 'Flickr and Dojo Image Gallery">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery&amp;title=Flickr+and+Dojo+Image+Gallery" target="_blank" title="Post 'Flickr and Dojo Image Gallery">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery&amp;title=Flickr+and+Dojo+Image+Gallery" target="_blank" title="Post 'Flickr and Dojo Image Gallery">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery&amp;title=Flickr+and+Dojo+Image+Gallery&amp;top=1" target="_blank" title="Post 'Flickr and Dojo Image Gallery">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/66/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/66/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=66&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/#comments" thr:count="7"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/07/03/flickr-and-dojo-image-gallery/feed/atom/" thr:count="7"/>
+ <thr:total>7</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Is Dojo being ignored by developers?]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/06/19/is-dojo-being-ignored-by-developers/" />
+ <id>http://shaneosullivan.wordpress.com/2007/06/19/is-dojo-being-ignored-by-developers/</id>
+ <updated>2007-06-26T10:18:09Z</updated>
+ <published>2007-06-19T10:36:49Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /> <summary type="html"><![CDATA[The two main areas of interest for me over the last year or two, blog-wise that is, have been the Dojo Ajax toolkit, one of the more popular open source JavaScript toolkits, and Ubuntu Linux, the very popular operating system that is seen by many as the best chance Linux has of succeeding on the [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/06/19/is-dojo-being-ignored-by-developers/"><![CDATA[<div class='snap_preview'><br /><p>The two main areas of interest for me over the last year or two, blog-wise that is, have been the <a href="http://www.dojotoolkit.org" target="_blank">Dojo</a> <a href="http://en.wikipedia.org/wiki/Ajax_%28programming%29" target="_blank">Ajax</a> toolkit, one of the more popular open source <a href="http://en.wikipedia.org/wiki/JavaScript" target="_blank">JavaScript</a> toolkits, and <a href="http://www.ubuntu.com/" target="_blank">Ubuntu Linux</a>, the very popular operating system that is seen by many as the best chance Linux has of succeeding on the desktop.</p>
+
+<p>Due to the fact that my blog is hosted on Wordpress.com, I am provided with very detailed statistics on which blog posts are more popular, what days they are accessed on etc. Looking at these, a very definite trend has become apparent</p>
+<blockquote><p><strong>While the number of hits received by the Ubuntu blogs remains more or less steady, hits on Dojo blog posts falls dramatically on the weekend.</strong></p></blockquote>
+<p>While this is not an exact measurement by any means, it points to a worrying possibility. People are obviously working with Ubuntu on their spare time, <a href="http://shaneosullivan.wordpress.com/2007/02/16/ubuntu-on-thinkpad-x41-basic-installation-instructions/" target="_blank">installing it</a>, <a href="http://shaneosullivan.wordpress.com/2007/04/30/ubuntu-on-thinkpad-x41-upgrading-to-feisty-fawn-704/" target="_blank">upgrading</a>, <a href="http://shaneosullivan.wordpress.com/2007/02/16/ubuntu-on-thinkpad-x41-installing-utility-programs/" target="_blank">adding applications</a> and <a href="http://shaneosullivan.wordpress.com/2007/02/16/ubuntu-on-thinkpad-x41-installing-the-beryl-window-manager/" target="_blank">window managers</a> etc, and need help doing this. They are personally interested in Ubuntu, not just professionally. This is one of the main reasons for Ubuntu&#8217;s success - people are excited and motivated by it. They want to work and play with it on their own time.</p>
+
+<p>This does not seem to be the case for Dojo.</p>
+<p>Dojo has the backing of many large and small companies, including two I have worked for, my previous employer <a href="http://www.ibm.com" target="_blank">IBM</a>, and my current employer <a href="http://www.curamsoftware.com" target="_blank">Curam</a>. Both of these are attracted to Dojo for a number of reasons, chief among them being it&#8217;s good design and wide range of features. The very large size of the toolkit is not a problem for them (and corporations in general) because it will be included in websites that employees will use to do their everyday work tasks (e.g. using a corporate installation of <a href="http://www-306.ibm.com/software/info1/websphere/index.jsp?tab=landings/portalbuzz&amp;S_TACT=103BEW01" target="_blank">IBM WebSphere Portal</a>), so the JavaScript is cached and the performance hit is avoided.</p>
+<p>However, for hobbyists, this is not the case. A person might only visit a single page on their website, and a ~200KB overhead for perhaps something simple like a collapsible menu and some fading effects is simply not feasible. I&#8217;ve experienced this recently when writing a <a href="http://www.skynet.ie/~sos" target="_blank">simple website for myself </a>- all I wanted was some fading/sliding effects, but the huge overhead just wasn&#8217;t worth it. And I am a very big supporter of Dojo (I&#8217;ve contributed code even - <a href="http://dojotoolkit.org/node/291" target="_blank">here</a> and <a href="http://codinginparadise.org/weblog/2007/03/shane-osullivan-creates-dojo-storage.html" target="_blank">here</a>), and use it every day at <u><em>work</em></u>.</p>
+
+<p>The Dojo team are working hard on the 0.9 release, which is addressing many of these issues, bringing the base size down to a more manageable size (at time of writing <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojo/dojo.js" target="_blank">dojo.js</a> is down to 68KB). I look forward to the day when my site statistics change, when Dojo can stand on the shoulders of many thousands of enthusiastic hackers rather than being held up by a few big corporations. I really do.</p>
+<p>However, this does not seem to be the case today. Version 0.9 has a lot of work to do.<br />
+<strong>Share this post: </strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/6/19/is-dojo-being-ignored-by-developers&amp;phase=2" target="_blank" title="Post 'Is Dojo being ignored by developers?">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/6/19/is-dojo-being-ignored-by-developers&amp;title=Is+Dojo+being+ignored+by+developers" target="_blank" title="Post 'Is Dojo being ignored by developers?">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/6/19/is-dojo-being-ignored-by-developers&amp;subject=Is+Dojo+being+ignored+by+developers?" target="_blank" title="Post 'Is Dojo being ignored by developers?">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/6/19/is-dojo-being-ignored-by-developers&amp;title=Is+Dojo+being+ignored+by+developers?" target="_blank" title="Post 'Is Dojo being ignored by developers?">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/6/19/is-dojo-being-ignored-by-developers&amp;title=Is+Dojo+being+ignored+by+developers" target="_blank" title="Post 'Is Dojo being ignored by developers?">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/6/19/is-dojo-being-ignored-by-developers&amp;title=Is+Dojo+being+ignored+by+developers&amp;top=1" target="_blank" title="Post 'Is Dojo being ignored by developers?">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/64/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/64/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=64&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/06/19/is-dojo-being-ignored-by-developers/#comments" thr:count="5"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/06/19/is-dojo-being-ignored-by-developers/feed/atom/" thr:count="5"/>
+ <thr:total>5</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Dojo Charting example to show website statistics]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/06/15/dojo-charting-example-to-show-website-statistics-2/" />
+ <id>http://shaneosullivan.wordpress.com/2007/06/15/dojo-charting-example-to-show-website-statistics-2/</id>
+ <updated>2007-06-15T12:38:24Z</updated>
+ <published>2007-06-15T12:35:35Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Dojo" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Technical" /><category scheme="http://shaneosullivan.wordpress.com" term="chart" /><category scheme="http://shaneosullivan.wordpress.com" term="charting" /><category scheme="http://shaneosullivan.wordpress.com" term="dojo.charting" /><category scheme="http://shaneosullivan.wordpress.com" term="json" /><category scheme="http://shaneosullivan.wordpress.com" term="open source" /><category scheme="http://shaneosullivan.wordpress.com" term="php" /> <summary type="html"><![CDATA[I&#8217;ve created an example usage of the Dojo Charting engine, which you can find at http://www.skynet.ie/~sos/pageStats.php. View the source to see how it works.
+It&#8217;s a modified version of the unit test available with the Dojo toolkit, but used in a specific scenario - in this case, to graph the page impressions for my personal [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/06/15/dojo-charting-example-to-show-website-statistics-2/"><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve created an example usage of the <a href="http://www.dojotoolkit.org" target="_blank">Dojo</a> <a href="http://ajaxian.com/archives/dojo-charting-engine-released" target="_blank">Charting</a> engine, which you can find at <a href="http://www.skynet.ie/~sos/pageStats.php" target="_blank">http://www.skynet.ie/~sos/pageStats.php</a>. View the source to see how it works.<br />
+It&#8217;s a modified version of the unit test available with the Dojo toolkit, but used in a specific scenario - in this case, to graph the page impressions for my <a href="http://www.skynet.ie/~sos">personal website</a> . The <a href="http://en.wikipedia.org/wiki/Json" target="_blank">JSON</a> data on the page is dynamically generated by PHP, however all other processing is done in JavaScript.</p>
+
+<p>You can filter the data to show info on any combination of pages, and also use a number of different chart types.</p>
+<p>The code is well documented, so should be easy to follow.<br />
+Some other good examples of using the Dojo Charting engine can be found <a href="http://www.ridgway.co.za/archive/2007/04/13/A-Simple-Dojo-Charting-Example.aspx" target="_blank">here</a> and <a href="http://labs.mackirdy.com/chart/chart4.html" target="_blank">here</a>.<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/6/15/dojo-charting-example-to-show-website-statistics-2&amp;phase=2" target="_blank" title="Post 'Dojo Charting example to show website statistics">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/6/15/dojo-charting-example-to-show-website-statistics-2&amp;title=Dojo+Charting+example+to+show+website+statistics" target="_blank" title="Post 'Dojo Charting example to show website statistics">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/6/15/dojo-charting-example-to-show-website-statistics-2&amp;subject=Dojo+Charting+example+to+show+website+statistics" target="_blank" title="Post 'Dojo Charting example to show website statistics">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/6/15/dojo-charting-example-to-show-website-statistics-2&amp;title=Dojo+Charting+example+to+show+website+statistics" target="_blank" title="Post 'Dojo Charting example to show website statistics">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/6/15/dojo-charting-example-to-show-website-statistics-2&amp;title=Dojo+Charting+example+to+show+website+statistics" target="_blank" title="Post 'Dojo Charting example to show website statistics">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/6/15/dojo-charting-example-to-show-website-statistics-2&amp;title=Dojo+Charting+example+to+show+website+statistics&amp;top=1" target="_blank" title="Post 'Dojo Charting example to show website statistics">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/63/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/63/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=63&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/06/15/dojo-charting-example-to-show-website-statistics-2/#comments" thr:count="4"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/06/15/dojo-charting-example-to-show-website-statistics-2/feed/atom/" thr:count="4"/>
+ <thr:total>4</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[GreaseMonkey script to add Digg-like links to posts]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/05/22/greasemonkey-script-to-add-digg-like-links-to-posts/" />
+ <id>http://shaneosullivan.wordpress.com/2007/05/22/greasemonkey-script-to-add-digg-like-links-to-posts/</id>
+ <updated>2007-05-23T14:56:07Z</updated>
+ <published>2007-05-22T16:57:02Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Firefox" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="greasemonkey" /> <summary type="html"><![CDATA[I decided today that I wanted to put links at the bottom of each of my blog posts that would allow people to perform actions on the post, e.g:
+
+Digg it
+Kick it
+Mail it
+Bookmark it on del.icio.us
+Bookmark it on reddit.com
+Bookmark it on live.com
+
+My blog is on Wordpress.com which doesn&#8217;t seem to have a plugin that will [...]]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/05/22/greasemonkey-script-to-add-digg-like-links-to-posts/"><![CDATA[<div class='snap_preview'><br /><p>I decided today that I wanted to put links at the bottom of each of my blog posts that would allow people to perform actions on the post, e.g:</p>
+
+<ul>
+<li><a href="http://digg.com" target="_blank">Digg </a>it</li>
+<li><a href="http://www.dotnetkicks.com" target="_blank">Kick</a> it</li>
+<li>Mail it</li>
+<li>Bookmark it on <a href="http://del.icio.us" target="_blank">del.icio.us</a></li>
+<li>Bookmark it on <a href="http://reddit.com" target="_blank">reddit.com</a></li>
+
+<li>Bookmark it on <a href="http://favorites.live.com" target="_blank">live.com</a></li>
+</ul>
+<p>My blog is on <a href="http://shaneosullivan.wordpress.com" target="_blank">Wordpress.com</a> which doesn&#8217;t seem to have a plugin that will allow me to do this. So, I got off my ass and wrote a <a href="http://greasemonkey.mozdev.org/" target="_blank">GreaseMonkey</a> Firefox script that&#8217;ll do it for me. You can download this script <a href="http://www.skynet.ie/~sos/misc/wordpresslinker.user.js" target="_blank"></a>by going to <a href="http://userscripts.org/scripts/show/9421" target="_blank">http://userscripts.org/scripts/show/9421</a> and clicking the &#8220;Install This Script&#8221; button.</p>
+
+<p>The links that are inserted are at the bottom of this post. The script is open source (GPL license), so take it, play with it, whatever. If you find any bugs, please let me know by commenting on this post.<br />
+<strong>Share this post:</strong><a href="http://www.digg.com/submit?url=http://shaneosullivan.wordpress.com/2007/5/22/greasemonkey-script-to-add-digg-like-links-to-posts&amp;phase=2" target="_blank" title="Post 'GreaseMonkey script to add Digg-like links to posts">digg it</a>|<a href="http://www.dotnetkicks.com/submit/?url=http://shaneosullivan.wordpress.com/2007/5/22/greasemonkey-script-to-add-digg-like-links-to-posts&amp;title=GreaseMonkey+script+to+add+Digg-like+links+to+posts" target="_blank" title="Post 'GreaseMonkey script to add Digg-like links to posts">kick it</a>|<a href="mailto:?body=Thought%20you%20might%20like%20this:%20http://shaneosullivan.wordpress.com/2007/5/22/greasemonkey-script-to-add-digg-like-links-to-posts&amp;subject=GreaseMonkey+script+to+add+Digg-like+links+to+posts" target="_blank" title="Post 'GreaseMonkey script to add Digg-like links to posts">Email it</a>|<a href="http://del.icio.us/post?url=http://shaneosullivan.wordpress.com/2007/5/22/greasemonkey-script-to-add-digg-like-links-to-posts&amp;title=GreaseMonkey+script+to+add+Digg-like+links+to+posts" target="_blank" title="Post 'GreaseMonkey script to add Digg-like links to posts">bookmark it</a>|<a href="http://reddit.com/submit?url=http://shaneosullivan.wordpress.com/2007/5/22/greasemonkey-script-to-add-digg-like-links-to-posts&amp;title=GreaseMonkey+script+to+add+Digg-like+links+to+posts" target="_blank" title="Post 'GreaseMonkey script to add Digg-like links to posts">reddit</a>|<a href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://shaneosullivan.wordpress.com/2007/5/22/greasemonkey-script-to-add-digg-like-links-to-posts&amp;title=GreaseMonkey+script+to+add+Digg-like+links+to+posts&amp;top=1" target="_blank" title="Post 'GreaseMonkey script to add Digg-like links to posts">liveIt</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=61&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/05/22/greasemonkey-script-to-add-digg-like-links-to-posts/#comments" thr:count="8"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/05/22/greasemonkey-script-to-add-digg-like-links-to-posts/feed/atom/" thr:count="8"/>
+ <thr:total>8</thr:total>
+ </entry>
+ <entry>
+ <author>
+ <name>Shane O'Sullivan</name>
+ <uri>http://shaneosullivan.wordpress.com/</uri>
+ </author>
+ <title type="html"><![CDATA[Article on the square pegs and round holes of desktop and web applications]]></title>
+ <link rel="alternate" type="text/html" href="http://shaneosullivan.wordpress.com/2007/05/22/article-on-the-square-pegs-and-round-holes-of-desktop-and-web-applications/" />
+ <id>http://shaneosullivan.wordpress.com/2007/05/22/article-on-the-square-pegs-and-round-holes-of-desktop-and-web-applications/</id>
+ <updated>2007-05-22T08:57:59Z</updated>
+ <published>2007-05-22T08:49:00Z</published>
+ <category scheme="http://shaneosullivan.wordpress.com" term="Ajax" /><category scheme="http://shaneosullivan.wordpress.com" term="Javascript" /><category scheme="http://shaneosullivan.wordpress.com" term="Zimbra" /> <summary type="html"><![CDATA[Bill Higgins of IBM has written a very well thought out article of why web applications should look and act like web applications, and not the desktop variety. Well worth a read - http://billhiggins.us/weblog/2007/05/17/the-uncanny-valley-of-user-interface-design
+ ]]></summary>
+ <content type="html" xml:base="http://shaneosullivan.wordpress.com/2007/05/22/article-on-the-square-pegs-and-round-holes-of-desktop-and-web-applications/"><![CDATA[<div class='snap_preview'><br /><p><a href="http://billhiggins.us/weblog/about/" target="_blank">Bill Higgins</a> of IBM has written a very well thought out article of why web applications should look and act like web applications, and not the desktop variety. Well worth a read - <a href="http://billhiggins.us/weblog/2007/05/17/the-uncanny-valley-of-user-interface-design" target="_blank">http://billhiggins.us/weblog/2007/05/17/the-uncanny-valley-of-user-interface-design</a></p>
+
+<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shaneosullivan.wordpress.com/56/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shaneosullivan.wordpress.com/56/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shaneosullivan.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shaneosullivan.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shaneosullivan.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shaneosullivan.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shaneosullivan.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shaneosullivan.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shaneosullivan.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shaneosullivan.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shaneosullivan.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shaneosullivan.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shaneosullivan.wordpress.com&blog=258432&post=56&subd=shaneosullivan&ref=&feed=1" /></div>]]></content>
+ <link rel="replies" type="text/html" href="http://shaneosullivan.wordpress.com/2007/05/22/article-on-the-square-pegs-and-round-holes-of-desktop-and-web-applications/#comments" thr:count="0"/>
+ <link rel="replies" type="appication/atom+xml" href="http://shaneosullivan.wordpress.com/2007/05/22/article-on-the-square-pegs-and-round-holes-of-desktop-and-web-applications/feed/atom/" thr:count="0"/>
+ <thr:total>0</thr:total>
+ </entry>
+ </feed>
+
diff --git a/includes/js/dojox/data/tests/stores/books.html b/includes/js/dojox/data/tests/stores/books.html
new file mode 100644
index 0000000..8535cec
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books.html
@@ -0,0 +1,118 @@
+<html>
+<head>
+ <title>Books.html</title>
+</head>
+<body>
+<table id="books">
+ <thead>
+ <tr>
+ <th>isbn</th>
+ <th>title</th>
+ <th>author</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>1</td>
+ <td>Title of 1</td>
+ <td>Author of 1</td>
+ </tr>
+ <tr>
+ <td>2</td>
+ <td>Title of 2</td>
+ <td>Author of 2</td>
+ </tr>
+ <tr>
+ <td>3</td>
+ <td>Title of 3</td>
+ <td>Author of 3</td>
+ </tr>
+ <tr>
+ <td>4</td>
+ <td>Title of 4</td>
+ <td>Author of 4</td>
+ </tr>
+ <tr>
+ <td>5</td>
+ <td>Title of 5</td>
+ <td>Author of 5</td>
+ </tr>
+ <tr>
+ <td>6</td>
+ <td>Title of 6</td>
+ <td>Author of 6</td>
+ </tr>
+ <tr>
+ <td>7</td>
+ <td>Title of 7</td>
+ <td>Author of 7</td>
+ </tr>
+ <tr>
+ <td>8</td>
+ <td>Title of 8</td>
+ <td>Author of 8</td>
+ </tr>
+ <tr>
+ <td>9</td>
+ <td>Title of 9</td>
+ <td>Author of 9</td>
+ </tr>
+ <tr>
+ <td>10</td>
+ <td>Title of 10</td>
+ <td>Author of 10</td>
+ </tr>
+ <tr>
+ <td>11</td>
+ <td>Title of 11</td>
+ <td>Author of 11</td>
+ </tr>
+ <tr>
+ <td>12</td>
+ <td>Title of 12</td>
+ <td>Author of 12</td>
+ </tr>
+ <tr>
+ <td>13</td>
+ <td>Title of 13</td>
+ <td>Author of 13</td>
+ </tr>
+ <tr>
+ <td>14</td>
+ <td>Title of 14</td>
+ <td>Author of 14</td>
+ </tr>
+ <tr>
+ <td>15</td>
+ <td>Title of 15</td>
+ <td>Author of 15</td>
+ </tr>
+ <tr>
+ <td>16</td>
+ <td>Title of 16</td>
+ <td>Author of 16</td>
+ </tr>
+ <tr>
+ <td>17</td>
+ <td>Title of 17</td>
+ <td>Author of 17</td>
+ </tr>
+ <tr>
+ <td>18</td>
+ <td>Title of 18</td>
+ <td>Author of 18</td>
+ </tr>
+ <tr>
+ <td>19</td>
+ <td>Title of 19</td>
+ <td>Author of 19</td>
+ </tr>
+ <tr>
+ <td>20</td>
+ <td>Title of 20</td>
+ <td>Author of 20</td>
+ </tr>
+ </tbody>
+</table>
+</body>
+</html>
diff --git a/includes/js/dojox/data/tests/stores/books.xml b/includes/js/dojox/data/tests/stores/books.xml
new file mode 100644
index 0000000..4c330e6
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books.xml
@@ -0,0 +1,103 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<books>
+ <book>
+ <isbn>1</isbn>
+ <title>Title of 1</title>
+ <author>Author of 1</author>
+ </book>
+ <book>
+ <isbn>2</isbn>
+ <title>Title of 2</title>
+ <author>Author of 2</author>
+ </book>
+ <book>
+ <isbn>3</isbn>
+ <title>Title of 3</title>
+ <author>Author of 3</author>
+ </book>
+ <book>
+ <isbn>4</isbn>
+ <title>Title of 4</title>
+ <author>Author of 4</author>
+ </book>
+ <book>
+ <isbn>5</isbn>
+ <title>Title of 5</title>
+ <author>Author of 5</author>
+ </book>
+ <book>
+ <isbn>6</isbn>
+ <title>Title of 6</title>
+ <author>Author of 6</author>
+ </book>
+ <book>
+ <isbn>7</isbn>
+ <title>Title of 7</title>
+ <author>Author of 7</author>
+ </book>
+ <book>
+ <isbn>8</isbn>
+ <title>Title of 8</title>
+ <author>Author of 8</author>
+ </book>
+ <book>
+ <isbn>9</isbn>
+ <title>Title of 9</title>
+ <author>Author of 9</author>
+ </book>
+ <book>
+ <isbn>10</isbn>
+ <title>Title of 10</title>
+ <author>Author of 10</author>
+ </book>
+ <book>
+ <isbn>11</isbn>
+ <title>Title of 11</title>
+ <author>Author of 11</author>
+ </book>
+ <book>
+ <isbn>12</isbn>
+ <title>Title of 12</title>
+ <author>Author of 12</author>
+ </book>
+ <book>
+ <isbn>13</isbn>
+ <title>Title of 13</title>
+ <author>Author of 13</author>
+ </book>
+ <book>
+ <isbn>14</isbn>
+ <title>Title of 14</title>
+ <author>Author of 14</author>
+ </book>
+ <book>
+ <isbn>15</isbn>
+ <title>Title of 15</title>
+ <author>Author of 15</author>
+ </book>
+ <book>
+ <isbn>16</isbn>
+ <title>Title of 16</title>
+ <author>Author of 16</author>
+ </book>
+ <book>
+ <isbn>17</isbn>
+ <title>Title of 17</title>
+ <author>Author of 17</author>
+ </book>
+ <book>
+ <isbn>18</isbn>
+ <title>Title of 18</title>
+ <author>Author of 18</author>
+ </book>
+ <book>
+ <isbn>19</isbn>
+ <title>Title of 19</title>
+ <author>Author of 19</author>
+ </book>
+ <book>
+ <isbn>20</isbn>
+ <title>Title of 20</title>
+ <author>Author of 20</author>
+ </book>
+</books>
diff --git a/includes/js/dojox/data/tests/stores/books2.html b/includes/js/dojox/data/tests/stores/books2.html
new file mode 100644
index 0000000..c0b3550
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books2.html
@@ -0,0 +1,43 @@
+<html>
+<head>
+ <title>Books2.html</title>
+</head>
+<body>
+<table id="books2">
+ <thead>
+ <tr>
+ <th>isbn</th>
+ <th>title</th>
+ <th>author</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>A9B57C</td>
+ <td>Title of 1</td>
+ <td>Author of 1</td>
+ </tr>
+ <tr>
+ <td>A9B57F</td>
+ <td>Title of 2</td>
+ <td>Author of 2</td>
+ </tr>
+ <tr>
+ <td>A9B577</td>
+ <td>Title of 3</td>
+ <td>Author of 3</td>
+ </tr>
+ <tr>
+ <td>A9B574</td>
+ <td>Title of 4</td>
+ <td>Author of 4</td>
+ </tr>
+ <tr>
+ <td>A9B5CC</td>
+ <td>Title of 5</td>
+ <td>Author of 5</td>
+ </tr>
+ </tbody>
+</table>
+</body>
+</html> \ No newline at end of file
diff --git a/includes/js/dojox/data/tests/stores/books2.xml b/includes/js/dojox/data/tests/stores/books2.xml
new file mode 100644
index 0000000..d1fa494
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books2.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<books>
+ <book>
+ <isbn>A9B57C</isbn>
+ <title>Title of 1</title>
+ <author>Author of 1</author>
+ </book>
+ <book>
+ <isbn>A9B57F</isbn>
+ <title>Title of 2</title>
+ <author>Author of 2</author>
+ </book>
+ <book>
+ <isbn>A9B577</isbn>
+ <title>Title of 3</title>
+ <author>Author of 3</author>
+ </book>
+ <book>
+ <isbn>A9B574</isbn>
+ <title>Title of 4</title>
+ <author>Author of 4</author>
+ </book>
+ <book>
+ <isbn>A9B5CC</isbn>
+ <title>Title of 5</title>
+ <author>Author of 5</author>
+ </book>
+</books>
diff --git a/includes/js/dojox/data/tests/stores/books3.html b/includes/js/dojox/data/tests/stores/books3.html
new file mode 100644
index 0000000..7d0f81d
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books3.html
@@ -0,0 +1,14 @@
+<html>
+<head>
+ <title>Books2.html</title>
+</head>
+<body>
+<ul id="books3">
+ <li>A9B57C - Title of 1 - Author of 1</li>
+ <li>A9B57F - Title of 2 - Author of 2</li>
+ <li>A9B577 - Title of 3 - Author of 3</li>
+ <li>A9B574 - Title of 4 - Author of 4</li>
+ <li>A9B5CC - Title of 5 - Author of 5</li>
+</ul>
+</body>
+</html> \ No newline at end of file
diff --git a/includes/js/dojox/data/tests/stores/books3.xml b/includes/js/dojox/data/tests/stores/books3.xml
new file mode 100644
index 0000000..c44b4c3
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books3.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<books>
+ <category>
+ <name>Category 1</name>
+ <book>
+ <isbn>1</isbn>
+ <title>Title of 1</title>
+ <author>Author of 1</author>
+ </book>
+ <book>
+ <isbn>2</isbn>
+ <title>Title of 2</title>
+ <author>Author of 2</author>
+ </book>
+ <book>
+ <isbn>3</isbn>
+ <title>Title of 3</title>
+ <author>Author of 3</author>
+ </book>
+ <book>
+ <isbn>4</isbn>
+ <title>Title of 4</title>
+ <author>Author of 4</author>
+ </book>
+ <book>
+ <isbn>5</isbn>
+ <title>Title of 5</title>
+ <author>Author of 5</author>
+ </book>
+ </category>
+</books>
diff --git a/includes/js/dojox/data/tests/stores/books_isbnAttr.xml b/includes/js/dojox/data/tests/stores/books_isbnAttr.xml
new file mode 100644
index 0000000..b9f3d27
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books_isbnAttr.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<books>
+ <book isbn="1">
+ <title>Title of 1</title>
+ <author>Author of 1</author>
+ </book>
+ <book isbn="2">
+ <title>Title of 2</title>
+ <author>Author of 2</author>
+ </book>
+ <book isbn="3">
+ <title>Title of 3</title>
+ <author>Author of 3</author>
+ </book>
+ <book isbn="4">
+ <title>Title of 4</title>
+ <author>Author of 4</author>
+ </book>
+ <book isbn="5">
+ <title>Title of 5</title>
+ <author>Author of 5</author>
+ </book>
+</books>
diff --git a/includes/js/dojox/data/tests/stores/books_isbnAttr2.xml b/includes/js/dojox/data/tests/stores/books_isbnAttr2.xml
new file mode 100644
index 0000000..a6ce005
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/books_isbnAttr2.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<books>
+ <book isbn="ABC1">
+ <title>Title of 1</title>
+ <author>Author of 1</author>
+ </book>
+ <book isbn="ABC2">
+ <title>Title of 2</title>
+ <author>Author of 2</author>
+ </book>
+ <book isbn="ABC3">
+ <title>Title of 3</title>
+ <author>Author of 3</author>
+ </book>
+ <book isbn="ACB4">
+ <title>Title of 4</title>
+ <author>Author of 4</author>
+ </book>
+ <book isbn="ACF5">
+ <title>Title of 5</title>
+ <author>Author of 5</author>
+ </book>
+</books>
diff --git a/includes/js/dojox/data/tests/stores/geography.xml b/includes/js/dojox/data/tests/stores/geography.xml
new file mode 100644
index 0000000..070a8c1
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/geography.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<opml version="1.0">
+ <head>
+ <title>geography.opml</title>
+ <dateCreated>2006-11-10</dateCreated>
+ <dateModified>2006-11-13</dateModified>
+ <ownerName>Magellan, Ferdinand</ownerName>
+ </head>
+ <body>
+ <outline text="Africa" type="continent">
+ <outline text="Egypt" type="country"/>
+ <outline text="Kenya" type="country">
+ <outline text="Nairobi" type="city"/>
+ <outline text="Mombasa" type="city"/>
+ </outline>
+ <outline text="Sudan" type="country">
+ <outline text="Khartoum" type="city"/>
+ </outline>
+ </outline>
+ <outline text="Asia" type="continent">
+ <outline text="China" type="country"/>
+ <outline text="India" type="country"/>
+ <outline text="Russia" type="country"/>
+ <outline text="Mongolia" type="country"/>
+ </outline>
+ <outline text="Australia" type="continent" population="21 million">
+ <outline text="Australia" type="country" population="21 million"/>
+ </outline>
+ <outline text="Europe" type="continent">
+ <outline text="Germany" type="country"/>
+ <outline text="France" type="country"/>
+ <outline text="Spain" type="country"/>
+ <outline text="Italy" type="country"/>
+ </outline>
+ <outline text="North America" type="continent">
+ <outline text="Mexico" type="country" population="108 million" area="1,972,550 sq km">
+ <outline text="Mexico City" type="city" population="19 million" timezone="-6 UTC"/>
+ <outline text="Guadalajara" type="city" population="4 million" timezone="-6 UTC"/>
+ </outline>
+ <outline text="Canada" type="country" population="33 million" area="9,984,670 sq km">
+ <outline text="Ottawa" type="city" population="0.9 million" timezone="-5 UTC"/>
+ <outline text="Toronto" type="city" population="2.5 million" timezone="-5 UTC"/>
+ </outline>
+ <outline text="United States of America" type="country"/>
+ </outline>
+ <outline text="South America" type="continent">
+ <outline text="Brazil" type="country" population="186 million"/>
+ <outline text="Argentina" type="country" population="40 million"/>
+ </outline>
+ </body>
+</opml>
diff --git a/includes/js/dojox/data/tests/stores/geography_withspeciallabel.xml b/includes/js/dojox/data/tests/stores/geography_withspeciallabel.xml
new file mode 100644
index 0000000..597c164
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/geography_withspeciallabel.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<opml version="1.0">
+ <head>
+ <title>geography.opml</title>
+ <dateCreated>2006-11-10</dateCreated>
+ <dateModified>2006-11-13</dateModified>
+ <ownerName>Magellan, Ferdinand</ownerName>
+ </head>
+ <body>
+ <outline text="Africa" type="continent" label="Continent/Africa">
+ <outline text="Egypt" type="country" label="Country/Egypt"/>
+ <outline text="Kenya" type="country" label="Country/Kenya">
+ <outline text="Nairobi" type="city" label="City/Nairobi"/>
+ <outline text="Mombasa" type="city" label="City/Mombasa"/>
+ </outline>
+ <outline text="Sudan" type="country" label="Country/Sudan">
+ <outline text="Khartoum" type="city" label="City/Khartoum"/>
+ </outline>
+ </outline>
+ <outline text="Asia" type="continent" label="Continent/Asia">
+ <outline text="China" type="country" label="Country/China"/>
+ <outline text="India" type="country" label="Country/India"/>
+ <outline text="Russia" type="country" label="Country/Russia"/>
+ <outline text="Mongolia" type="country" label="Country/Mongolia"/>
+ </outline>
+ <outline text="Australia" type="continent" population="21 million" label="Continent/Australia">
+ <outline text="Australia" type="country" population="21 million" label="Country/Australia"/>
+ </outline>
+ <outline text="Europe" type="continent" label="Contintent/Europe">
+ <outline text="Germany" type="country" label="Country/Germany"/>
+ <outline text="France" type="country" label="Country/France"/>
+ <outline text="Spain" type="country" label="Country/Spain"/>
+ <outline text="Italy" type="country" label="Country/Italy"/>
+ </outline>
+ <outline text="North America" type="continent" label="Continent/North America">
+ <outline text="Mexico" type="country" population="108 million" area="1,972,550 sq km" label="Country/Mexico">
+ <outline text="Mexico City" type="city" population="19 million" timezone="-6 UTC" label="City/Mexico City"/>
+ <outline text="Guadalajara" type="city" population="4 million" timezone="-6 UTC" label="City/Guadalajara"/>
+ </outline>
+ <outline text="Canada" type="country" population="33 million" area="9,984,670 sq km" label="Country/Canada">
+ <outline text="Ottawa" type="city" population="0.9 million" timezone="-5 UTC" label="City/Ottawa"/>
+ <outline text="Toronto" type="city" population="2.5 million" timezone="-5 UTC" label="City/Toronto"/>
+ </outline>
+ <outline text="United States of America" type="country" label="Country/United States of America"/>
+ </outline>
+ <outline text="South America" type="continent" label="Continent/South America">
+ <outline text="Brazil" type="country" population="186 million" label="Country/Brazil"/>
+ <outline text="Argentina" type="country" population="40 million" label="Country/Argentina"/>
+ </outline>
+ </body>
+</opml>
diff --git a/includes/js/dojox/data/tests/stores/jsonPathStore.js b/includes/js/dojox/data/tests/stores/jsonPathStore.js
new file mode 100644
index 0000000..9a42a18
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/jsonPathStore.js
@@ -0,0 +1,604 @@
+if(!dojo._hasResource["dojox.data.tests.stores.jsonPathStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.data.tests.stores.jsonPathStore"] = true;
+dojo.provide("dojox.data.tests.stores.jsonPathStore");
+dojo.require("dojox.data.jsonPathStore");
+
+dojox.data.tests.stores.jsonPathStore.error = function(t, d, errData){
+ // summary:
+ // The error callback function to be used for all of the tests.
+ d.errback(errData);
+}
+
+dojox.data.tests.testData=dojo.toJson({"store": {"book": [{"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95}, {"category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99}, {"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99}], "bicycle": {"color": "red", "price": 19.95}}});
+
+dojox.data.tests.test_ID_Data=dojo.toJson({"gadgetList": {"myId": "product", "1000": {"name": "Gadget", "type": "Junk", "myId": "1000", "price": "19.99"}, "1001": {"name": "Gadget2", "type": "Junk", "myId": "1010", "price": "17.99"}, "1003": {"name": "Gadget3", "type": "Junk", "myId": "1009", "price": "15.99"}, "1004": {"name": "Gadget4", "type": "Junk", "myId": "1008", "price": "13.99"}, "1005": {"name": "Gadget5", "type": "Junk", "myId": "1007", "price": "11.99"}, "1006": {"name": "Gadget6", "type": "Junk", "myId": "1006", "price": "9.99"}}, "testList": {"a": {"name": "test", "type": "Junk", "myId": "3000", "price": "19.99"}, "b": {"name": "test2", "type": "Junk", "myId": "3010", "price": "17.99"}, "c": {"name": "test3", "type": "Junk", "myId": "3009", "price": "15.99"}, "d": {"name": "test4", "type": "Junk", "myId": "3008", "price": "13.99"}, "e": {"name": "test5", "type": "Junk", "myId": "3007", "price": "11.99"}, "f": {"name": "test6", "type": "Junk", "myId": "3006", "price": "9.99"}}, "bricknbrack": [{"name": "BrickNBrack", "type": "Junk", "myId": "2000", "price": "19.99"}, {"name": "BrickNBrack2", "type": "Junk", "myId": "2010", "price": "17.99"}, {"name": "BrickNBrack3", "type": "Junk", "myId": "2009", "price": "15.99"}, {"name": "BrickNBrack4", "type": "Junk", "myId": "2008", "price": "13.99"}, {"name": "BrickNBrack5", "type": "Junk", "myId": "2007", "price": "11.99"}, {"name": "BrickNBrack6", "type": "Junk", "myId": "2006", "price": "9.99"}]});
+
+doh.register("dojox.data.tests.stores.jsonPathStore",
+ [
+ {
+ name: "Create, Index, Export: {clone: true, suppressExportMeta: true}",
+ options: {clone: true, suppressExportMeta: true},
+ runTest: function(t) {
+ var original= dojox.data.tests.test_ID_Data;
+ var store= new dojox.data.jsonPathStore({
+ data: original,
+ mode: dojox.data.SYNC_MODE,
+ idAttribute: "myId",
+ indexOnLoad: true
+ });
+
+ //snapshot of the store after creation;
+ var storeWithMeta = dojo.toJson(store._data);
+ var result = store.dump(this.options);
+ doh.assertEqual(storeWithMeta, result);
+ }
+ },
+ {
+ name: "Create, Index, Export: {cleanMeta: true, clone: true}",
+ options: {cleanMeta: true, clone: true, suppressExportMeta: true},
+ runTest: function(t) {
+ var original= dojox.data.tests.test_ID_Data;
+ var store= new dojox.data.jsonPathStore({
+ data: original,
+ mode: dojox.data.SYNC_MODE,
+ idAttribute: "myId",
+ indexOnLoad: true
+ });
+
+ var result = store.dump(this.options);
+ doh.assertEqual(original, result);
+ }
+ },
+ {
+ name: "Create, Index, Export: {suppressExportMeta: true}",
+ options: {suppressExportMeta: true},
+ runTest: function(t) {
+ var original= dojox.data.tests.test_ID_Data;
+ var store= new dojox.data.jsonPathStore({
+ data: original,
+ mode: dojox.data.SYNC_MODE,
+ idAttribute: "myId",
+ indexOnLoad: true
+ });
+
+ //snapshot of the store after creation;
+ var storeWithMeta = dojo.toJson(store._data);
+ var result = store.dump(this.options);
+ doh.assertEqual(storeWithMeta, result);
+ }
+ },
+ {
+ name: "Create, Index, Export: {clone: true, type: 'raw', suppressExportMeta: true}",
+ options: {clone: true, type: "raw", suppressExportMeta: true},
+ runTest: function(t) {
+ var original= dojox.data.tests.test_ID_Data;
+ var store= new dojox.data.jsonPathStore({
+ data: original,
+ mode: dojox.data.SYNC_MODE,
+ idAttribute: "myId",
+ indexOnLoad: true
+ });
+
+ //snapshot of the store after creation;
+ var storeWithMeta = dojo.toJson(store._data);
+ var result = dojo.toJson(store.dump(this.options));
+ doh.assertEqual(storeWithMeta, result);
+ }
+ },
+ {
+ name: "Create, Index, Export: {clone: true, suppressExportMeta: true}",
+ options: {cleanMeta: true},
+ runTest: function(t) {
+ var original= dojox.data.tests.test_ID_Data;
+ var store= new dojox.data.jsonPathStore({
+ data: original,
+ mode: dojox.data.SYNC_MODE,
+ idAttribute: "myId",
+ indexOnLoad: true
+ });
+
+ //snapshot of the store after creation;
+ var result = store.dump(this.options);
+ doh.assertEqual(original, result);
+ }
+ },
+ {
+ name: "Create, Index, Export: {type: raw}",
+ options: {type: "raw"},
+ runTest: function(t) {
+ var original= dojox.data.tests.test_ID_Data;
+ var store= new dojox.data.jsonPathStore({
+ data: original,
+ mode: dojox.data.SYNC_MODE,
+ idAttribute: "myId",
+ indexOnLoad: true
+ });
+
+ //snapshot of the store after creation;
+ var result = dojo.toJson(store.dump(this.options));
+ var storeWithMeta = dojo.toJson(store._data);
+ doh.assertEqual(storeWithMeta, result);
+ }
+ },
+ {
+ name: "ReadAPI: fetch() Empty Request Test [SYNC_MODE]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var success = dojo.toJson([{"book": [{"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95, "_meta": {"path": "$['store']['book'][0]", "autoId": true, "referenceIds": ["_ref_1"]}, "_id": "_auto_3"}, {"category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99, "_meta": {"path": "$['store']['book'][1]", "autoId": true, "referenceIds": ["_ref_2"]}, "_id": "_auto_4"}, {"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99, "_meta": {"path": "$['store']['book'][2]", "autoId": true, "referenceIds": ["_ref_3"]}, "_id": "_auto_5"}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99, "_meta": {"path": "$['store']['book'][3]", "autoId": true, "referenceIds": ["_ref_4"]}, "_id": "_auto_6"}], "bicycle": {"color": "red", "price": 19.95, "_meta": {"path": "$['store']['bicycle']", "autoId": true, "referenceIds": ["_ref_5"]}, "_id": "_auto_2"}, "_meta": {"path": "$['store']", "autoId": true, "referenceIds": ["_ref_0"]}, "_id": "_auto_0"}, [{"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95, "_meta": {"path": "$['store']['book'][0]", "autoId": true, "referenceIds": ["_ref_1"]}, "_id": "_auto_3"}, {"category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99, "_meta": {"path": "$['store']['book'][1]", "autoId": true, "referenceIds": ["_ref_2"]}, "_id": "_auto_4"}, {"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99, "_meta": {"path": "$['store']['book'][2]", "autoId": true, "referenceIds": ["_ref_3"]}, "_id": "_auto_5"}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99, "_meta": {"path": "$['store']['book'][3]", "autoId": true, "referenceIds": ["_ref_4"]}, "_id": "_auto_6"}], {"color": "red", "price": 19.95, "_meta": {"path": "$['store']['bicycle']", "autoId": true, "referenceIds": ["_ref_5"]}, "_id": "_auto_2"}, {"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95, "_meta": {"path": "$['store']['book'][0]", "autoId": true, "referenceIds": ["_ref_1"]}, "_id": "_auto_3"}, {"category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99, "_meta": {"path": "$['store']['book'][1]", "autoId": true, "referenceIds": ["_ref_2"]}, "_id": "_auto_4"}, {"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99, "_meta": {"path": "$['store']['book'][2]", "autoId": true, "referenceIds": ["_ref_3"]}, "_id": "_auto_5"}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99, "_meta": {"path": "$['store']['book'][3]", "autoId": true, "referenceIds": ["_ref_4"]}, "_id": "_auto_6"}]);
+ var result = dojo.toJson(store.fetch());
+ doh.assertEqual(success, result);
+ return true;
+ }
+ },
+
+ {
+ name: "ReadAPI: fetch('$.store.book[*]') test [SYNC_MODE]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var success = dojo.toJson([{"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95, "_meta": {"path": "$['store']['book'][0]", "autoId": true, "referenceIds": ["_ref_1"]}, "_id": "_auto_3"}, {"category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99, "_meta": {"path": "$['store']['book'][1]", "autoId": true, "referenceIds": ["_ref_2"]}, "_id": "_auto_4"}, {"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99, "_meta": {"path": "$['store']['book'][2]", "autoId": true, "referenceIds": ["_ref_3"]}, "_id": "_auto_5"}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99, "_meta": {"path": "$['store']['book'][3]", "autoId": true, "referenceIds": ["_ref_4"]}, "_id": "_auto_6"}]);
+ var result = dojo.toJson(store.fetch({query:"$.store.book[*]"}));
+ doh.assertEqual(success, result);
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: fetch('$.store.book[*]') test [ASYNC_MODE forced SYNC_MODE by string parameter]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.ASYNC_MODE});
+ var success = dojo.toJson([{"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95, "_meta": {"path": "$['store']['book'][0]", "autoId": true, "referenceIds": ["_ref_1"]}, "_id": "_auto_3"}, {"category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99, "_meta": {"path": "$['store']['book'][1]", "autoId": true, "referenceIds": ["_ref_2"]}, "_id": "_auto_4"}, {"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99, "_meta": {"path": "$['store']['book'][2]", "autoId": true, "referenceIds": ["_ref_3"]}, "_id": "_auto_5"}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99, "_meta": {"path": "$['store']['book'][3]", "autoId": true, "referenceIds": ["_ref_4"]}, "_id": "_auto_6"}]);
+ var result = dojo.toJson(store.fetch("$.store.book[*]"));
+ doh.assertEqual(success, result);
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: fetch({query: '$.store.book[*]', start: 2})",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var success = dojo.toJson([{"category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99, "_meta": {"path": "$['store']['book'][2]", "autoId": true, "referenceIds": ["_ref_3"]}, "_id": "_auto_5"}, {"category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99, "_meta": {"path": "$['store']['book'][3]", "autoId": true, "referenceIds": ["_ref_4"]}, "_id": "_auto_6"}]);
+ var result = dojo.toJson(store.fetch({query: '$.store.book[*]', start: 2}));
+ doh.assertEqual(success, result);
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: fetch({query: '$.store.book[*]', start: 2, count: 1})",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var result = store.fetch({query: "$.store.book[*]", start: 2, count: 1});
+ doh.assertEqual(result[0].author, 'Herman Melville');
+ return true;
+ }
+ },
+
+ {
+ name: "ReadAPI: fetch(query: '$.store.book[0]'...callbacks...) [ASYNC_MODE]",
+ runTest: function(datastore, t){
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData});
+ var d = new doh.Deferred();
+ function onBegin(count, args){
+ doh.assertEqual(1, count);
+ }
+ function onItem(item){
+ doh.assertTrue(store.isItem(item));
+ }
+
+ function onComplete(results){
+ doh.assertEqual(1, results.length);
+ doh.assertEqual("Nigel Rees", results[0]["author"]);
+ d.callback(true);
+ }
+
+ function onError(errData){
+ t.assertTrue(false);
+ d.errback(errData);
+ }
+
+ store.fetch({query: "$.store.book[0]", onBegin: onBegin, onItem: onItem, onError: onError, onComplete: onComplete});
+ return d; // Deferred
+ }
+ },
+ {
+ name: "ReadAPI: isItem() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var result = store.fetch("$.store.book[*].author");
+ doh.assertFalse(store.isItem(result[0]));
+ result = store.fetch("$.store.book[*]");
+ doh.assertTrue(store.isItem(result[0]));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getValue() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var data = store.fetch("$.store.book[*]");
+ var result = store.getValue(data[0], "author");
+ doh.assertEqual("Nigel Rees", result);
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getValues() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var result = store.fetch("$.store.book[*]");
+ doh.assertEqual(dojo.toJson(store.getValues(result[0], "author")),dojo.toJson(["Nigel Rees"]));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getAttributes() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var result = store.fetch("$.store.book[*]");
+ doh.assertEqual(dojo.toJson(store.getAttributes(result[0])),'["category","author","title","price","_meta","_id"]');
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getAttributes() test [hideMetaAttributes]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, hideMetaAttributes: true});
+ var result = store.fetch("$.store.book[*]");
+ doh.assertEqual('["category","author","title","price","_id"]',dojo.toJson(store.getAttributes(result[0])));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: hasAttribute() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var result = store.fetch("$.store.book[*]");
+ doh.assertTrue(store.hasAttribute(result[0], "author"));
+ doh.assertFalse(store.hasAttribute(result[0],"_im_invalid_fooBar"));
+ return true;
+ }
+ },
+
+ {
+ name: "ReadAPI: containsValue() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ var result = store.fetch("$.store.book[*]");
+ doh.assertTrue(store.containsValue(result[0], "author", "Nigel Rees"));
+ doh.assertFalse(store.containsValue(result[0], "author", "_im_invalid_fooBar"));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getFeatures() test",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE});
+ //doh.debug("Store Features: ", dojo.toJson(store.getFeatures()));
+ var success='{"dojo.data.api.Read":true,"dojo.data.api.Identity":true,"dojo.data.api.Write":true,"dojo.data.api.Notification":true}';
+ doh.assertEqual(success,dojo.toJson(store.getFeatures()));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getLabel(item) test [multiple label attributes]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, labelAttribute: ["title", "author"]});
+ var result = store.fetch("$.store.book[0]")[0];
+ doh.assertEqual("Sayings of the Century Nigel Rees",store.getLabel(result));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getLabelAttributes(item) test [multiple label attributes]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, labelAttribute: ["title", "author"]});
+ var result = store.fetch("$.store.book[0]")[0];
+ doh.assertEqual('["title","author"]',dojo.toJson(store.getLabelAttributes(result)));
+ return true;
+ }
+ },
+ {
+ name: "ReadAPI: getLabelAttributes(item) test [single label attribute]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, labelAttribute: ["title"]});
+ var result = store.fetch("$.store.book[0]")[0];
+ doh.assertEqual('["title"]',dojo.toJson(store.getLabelAttributes(result)));
+ return true;
+ }
+ },
+ {
+ name: "jsonPathStore Feature: override createLabel",
+ runTest: function(t) {
+ var createLabel = function(item){
+ return item[this.labelAttribute[0]] + " By " + item[this.labelAttribute[1]];
+ };
+
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, labelAttribute: ["title", "author"], createLabel: createLabel});
+ var result = store.fetch("$.store.book[0]")[0];
+ doh.assertEqual('Sayings of the Century By Nigel Rees',store.getLabel(result));
+ return true;
+ }
+ },
+ {
+ name: "jsonPathStore Feature: autoIdentity",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+ var result = dojo.toJson(store.fetch("$.store.book[0]")[0]);
+ var success=dojo.toJson( {"category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95, "_meta": {"path": "$['store']['book'][0]", "autoId": true, "referenceIds": ["_ref_1"]}, "_id": "_auto_3"});
+ doh.assertEqual(success,result);
+ return true;
+ }
+ },
+
+ {
+ name: "jsonPathStore Feature: autoIdentity [clean export removing added id attributes in addition to meta]",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+ //do a search to popuplate some of the itesm with autoId data
+ var result = store.fetch("$.store.book[0]");
+ result = store.dump({cleanMeta: true});
+ doh.assertEqual(dojox.data.tests.testData,result);
+ return true;
+ }
+ },
+
+ {
+ name: "IdentityAPI: getIdentity(item)",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+ var data= store.fetch("$.store.book[0]")[0];
+ var result= store.getIdentity(data);
+ var success="_auto_3";
+ doh.assertEqual(success,result);
+ return true;
+ }
+ },
+
+ {
+
+ name: "IdentityAPI: fetchItemByIdentity(item) [SYNC_MODE]",
+ runTest: function(t){
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+
+ var data= store.fetch("$.store.book[0]")[0];
+ var id = store.getIdentity(data);
+ var result = dojo.toJson(store.fetchItemByIdentity({identity:id}));
+ var success = dojo.toJson(data);
+ doh.assertEqual(success,result);
+ return true;
+ }
+ },
+ {
+
+ name: "jsonPathStore Feature: byId(item) [fetchItemByIdentity alias] [SYNC_MODE]",
+ runTest: function(t){
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+
+ var data= store.fetch("$.store.book[0]")[0];
+ var id = store.getIdentity(data);
+ var result = dojo.toJson(store.byId({identity:id}));
+ var success = dojo.toJson(data);
+ doh.assertEqual(success,result);
+ return true;
+ }
+ },
+
+ {
+ name: "IdentityAPI: fetchItemByIdentity(id) single Item [ASYNC_MODE]",
+ timeout: 1000,
+ runTest: function(datastore, t){
+ // summary:
+ // Simple test of the fetchItemByIdentity function of the store.
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, indexOnLoad: true});
+ var d = new doh.Deferred();
+ var query = {query: "$.store.book[0]", mode: dojox.data.SYNC_MODE};
+ var data = store.fetch(query)[0];
+ var id = store.getIdentity(data);
+
+ function onItem(item){
+ doh.assertTrue(store.isItem(item));
+ doh.assertEqual(data["author"], item["author"]);
+ d.callback(true);
+ }
+
+ function onError(errData){
+
+ t.assertTrue(false);
+ d.errback(errData);
+ }
+
+ store.fetchItemByIdentity({identity: id, onItem: onItem, onError: onError});
+
+ return d; // Deferred
+ }
+ },
+ {
+ name: "IdentityAPI: getIdentityAttributes(item) ",
+ runTest: function(t) {
+ var store= new dojox.data.jsonPathStore({data:dojox.data.tests.testData, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+ var data= store.fetch("$.store.book[0]")[0];
+ var result = dojo.toJson(store.getIdentityAttributes(data));
+ var success = '["_id"]';
+ doh.assertEqual(success,result);
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: newItem(item) add to store root.",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+
+ var testObject = {
+ propA: "foo",
+ propB: "bar"
+ }
+
+ var testObject2 = {
+ propA: "foo",
+ propB: "bar"
+ }
+
+ var newItem = store.newItem(testObject);
+ doh.assertTrue(store.isItem(newItem));
+
+ newItem = store.newItem(testObject2);
+ doh.assertTrue(store.isItem(newItem));
+
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: newItem(item) no idAttribute on data item, added only with pInfo",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE});
+
+ var parentItem = store.fetch("$.store.book[0]")[0];
+
+ var testObject = {
+ propA: "foo",
+ propB: "bar"
+ }
+
+ var newItem = store.newItem(testObject,{parent: parentItem, attribute: "TEST_PROPERTY"});
+ doh.assertTrue(store.isItem(newItem));
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: newItem(item) given id, no parent Attribute",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+
+ var parentItem = store.fetch("$.store.book[0]")[0];
+
+ var testObject = {
+ _id: "99999",
+ propA: "foo",
+ propB: "bar"
+ }
+
+ var newItem = store.newItem(testObject,{parent: parentItem});
+ doh.assertTrue(store.isItem(newItem));
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: newItem(item) given id and parent Attribute",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+
+ var parentItem = store.fetch("$.store.book[0]")[0];
+
+ var testObject = {
+ _id: "99999",
+ propA: "foo",
+ propB: "bar"
+ }
+
+ var newItem = store.newItem(testObject,{parent: parentItem, attribute: "TEST"});
+ doh.assertTrue(store.isItem(newItem));
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: newItem(item) adding to an array",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, idAttribute: "_id"});
+
+ var parentItem = store.fetch("$.store")[0];
+
+ var testObject = {
+ _id: "99999",
+ propA: "foo",
+ propB: "bar"
+ }
+
+ var newItem = store.newItem(testObject,{parent: parentItem, attribute: "book"});
+ doh.assertTrue(store.isItem(newItem));
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: setValue(item, value)",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, indexOnLoad: true, idAttribute: "_id"});
+ var item = store.fetch("$.store")[0];
+
+ var snapshot = store.dump({clone:true, cleanMeta: false, suppressExportMeta: true});
+
+ store.setValue(item, "Foo", "Bar");
+ doh.assertEqual(store._data.store.Foo, "Bar");
+ doh.assertTrue(store._data.store._meta.isDirty);
+ store.save();
+ doh.assertFalse(store._data.store._meta.isDirty);
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: setValues(item, value)",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, indexOnLoad: true, idAttribute: "_id"});
+ var item = store.fetch("$.store")[0];
+
+ var snapshot = store.dump({clone:true, cleanMeta: false, suppressExportMeta: true});
+
+ store.setValues(item, "Foo", ["Bar", "Diddly", "Ar"]);
+ doh.assertEqual(store._data.store.Foo[0], "Bar");
+ doh.assertEqual(store._data.store.Foo.length, 3);
+ doh.assertTrue(store._data.store._meta.isDirty);
+ store.save();
+ doh.assertFalse(store._data.store._meta.isDirty);
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: unsetAttribute(item, attribute)",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, indexOnLoad: true, idAttribute: "_id"});
+ var item = store.fetch("$.store")[0];
+
+ var snapshot = store.dump({clone:true, cleanMeta: false, suppressExportMeta: true});
+
+ store.setValues(item, "Foo", ["Bar", "Diddly", "Ar"]);
+ doh.assertEqual(store._data.store.Foo[0], "Bar");
+ doh.assertEqual(store._data.store.Foo.length, 3);
+ doh.assertTrue(store._data.store._meta.isDirty);
+ store.save();
+ doh.assertFalse(store._data.store._meta.isDirty);
+ store.unsetAttribute(item,"Foo");
+ doh.assertFalse(item.Foo);
+ doh.assertTrue(store._data.store._meta.isDirty);
+ store.save();
+ doh.assertFalse(store._data.store._meta.isDirty);
+ return true;
+ }
+ },
+ {
+ name: "WriteAPI: revert()",
+ runTest: function(t) {
+ var original = dojox.data.tests.testData;
+ var store= new dojox.data.jsonPathStore({data:original, mode: dojox.data.SYNC_MODE, indexOnLoad: true, idAttribute: "_id"});
+ var item = store.fetch("$.store")[0];
+
+ var snapshot = store.dump({clone:true, cleanMeta: false, suppressExportMeta: true});
+
+ store.setValues(item, "Foo", ["Bar", "Diddly", "Ar"]);
+ doh.assertEqual(store._data.store.Foo[0], "Bar");
+ doh.assertEqual(store._data.store.Foo.length, 3);
+ doh.assertTrue(store._data.store._meta.isDirty);
+ store.revert();
+ doh.assertFalse(store._data.store._meta.isDirty);
+ doh.assertFalse(store._data.store.Foo);
+ return true;
+ }
+ }
+ ]
+);
+
+}
diff --git a/includes/js/dojox/data/tests/stores/movies.csv b/includes/js/dojox/data/tests/stores/movies.csv
new file mode 100644
index 0000000..baf71eb
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/movies.csv
@@ -0,0 +1,9 @@
+Title, Year, Producer
+City of God, 2002, Katia Lund
+Rain,, Christine Jeffs
+2001: A Space Odyssey, , Stanley Kubrick
+"This is a ""fake"" movie title", 1957, Sidney Lumet
+Alien, 1979 , Ridley Scott
+"The Sequel to ""Dances With Wolves.""", 1982, Ridley Scott
+"Caine Mutiny, The", 1954, "Dymtryk ""the King"", Edward"
+
diff --git a/includes/js/dojox/data/tests/stores/movies2.csv b/includes/js/dojox/data/tests/stores/movies2.csv
new file mode 100644
index 0000000..401bcfc
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/movies2.csv
@@ -0,0 +1,9 @@
+Title, Year, Producer
+City of God, 2002, Katia Lund
+Rain,"", Christine Jeffs
+2001: A Space Odyssey, , Stanley Kubrick
+"This is a ""fake"" movie title", 1957, Sidney Lumet
+Alien, 1979 , Ridley Scott
+"The Sequel to ""Dances With Wolves.""", 1982, Ridley Scott
+"Caine Mutiny, The", 1954, "Dymtryk ""the King"", Edward"
+
diff --git a/includes/js/dojox/data/tests/stores/patterns.csv b/includes/js/dojox/data/tests/stores/patterns.csv
new file mode 100644
index 0000000..a9bee64
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/patterns.csv
@@ -0,0 +1,11 @@
+uniqueId, value
+9, jfq4@#!$!@Rf14r14i5u
+6, BaBaMaSaRa***Foo
+2, bar*foo
+8, 123abc
+4, bit$Bite
+3, 123abc
+10, 123abcdefg
+1, foo*bar
+7,
+5, 123abc
diff --git a/includes/js/dojox/data/tests/stores/properties.js b/includes/js/dojox/data/tests/stores/properties.js
new file mode 100644
index 0000000..bbdd38d
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/properties.js
@@ -0,0 +1,10 @@
+/*[
+ // Properties of December 1, 2007
+ { "year": "2007" },
+ { "nmonth": "12" },
+ { "month": "December" },
+ { "nday": "1" },
+ { "day": "Saturday" },
+ { "dayOfYear": "335" },
+ { "weekOfYear": "48" }
+]*/
diff --git a/includes/js/dojox/data/tests/stores/snap_pipeline.php b/includes/js/dojox/data/tests/stores/snap_pipeline.php
new file mode 100644
index 0000000..a7e6033
--- /dev/null
+++ b/includes/js/dojox/data/tests/stores/snap_pipeline.php
@@ -0,0 +1,72 @@
+<?php
+
+$field_names = array('"empno"', '"ename"', '"job"', '"hiredate"', '"sal"', '"comm"', '"deptno"');
+
+$rows = array(array("7369", '"SMITH,CLERK"', "7902", '"1993-06-13"', "800.00", "0.00", "20"),
+ array("7499", '"ALLEN,SALESMAN"', "7698", '"1998-08-15"', "1600.00", "300.00", "30"),
+ array("7521", '"WARD,SALESMAN"', "7698", '"1996-03-26"', "1250.00", "500.00", "30"),
+ array("7566", '"JONES,MANAGER"', "7839", '"1995-10-31"', "2975.00", '""', "20"),
+ array("7698", '"BLAKE,MANAGER"', "7839", '"1992-06-11"', "2850.00", '""', "30"),
+ array("7782", '"CLARK,MANAGER"', "7839", '"1993-05-14"', "2450.00", '""', "10"),
+ array("7788", '"SCOTT,ANALYST"', "7566", '"1996-03-05"', "3000.00", '""', "20"),
+ array("7839", '"KING,PRESIDENT"', '"1990-06-09"', "5000", "1100.0", '""', "0.00", "10"),
+ array("7844", '"TURNER,SALESMAN"', "7698", '"1995-06-04"', "1500.00", '""', "0.00", "30"),
+ array("7876", '"ADAMS,CLERK"', "7788", '"1999-06-04"', "1100.00", '""', "20"),
+ array("7900", '"JAMES,CLERK"', "7698", '"2000-06-23"', "950.00", '""', "30"),
+ array("7934", '"MILLER,CLERK"', "7782", '"2000-01-21"', "1300.00", '""', "10"),
+ array("7902", '"FORD,ANALYST"', "7566", '"1997-12-05"', "3000.00", '""', "20"),
+ array("7654", '"MARTIN,SALESMAN"', "7698", '"1998-12-05"', "1250.00", "1400.00", "30"));
+
+$prefix = $_GET["sn_stream_header"];
+
+if($_GET["sn_count"]) {
+ if($_GET["sn_count"] == "records"){
+ echo $prefix . "([[" . count($rows) . "]])";
+ } else {
+ header("HTTP/1.1 400 Bad Request");
+ echo "sn.count parameter, if present, must be set to 'records'.";
+ exit(0);
+ }
+} else {
+ if($_GET["sn_start"]) {
+ $start = $_GET["sn_start"];
+ } else {
+ $start = 1;
+ }
+
+ if($_GET["sn_limit"]) {
+ $limit = $_GET["sn_limit"];
+ } else {
+ $limit = count($rows);
+ }
+
+ if(!is_numeric($start) || !is_numeric($limit)) {
+ header("HTTP/1.1 400 Bad Request");
+ echo "sn.start or sn.limit specified a non-integer value";
+ exit(0);
+ }
+
+ $start -= 1;
+
+ if($start < 0 || $start >= count($rows) || $limit < 0) {
+ header("HTTP/1.1 400 Bad Request");
+ echo "sn.start and/or sn.limit out of range";
+ exit(0);
+ }
+
+ $slice = array_slice($rows, $start, $limit);
+
+ header("Content-type: application/javascript");
+ echo $prefix . "([";
+
+ $out_rows = array("[" . join(", ", $field_names) . "]");
+ foreach($slice as $r) {
+ $out_rows[] = "[" . join(", ", $r) . "]";
+ }
+
+ echo join(", ", $out_rows);
+ echo "])";
+ }
+
+?>
+