From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojo/tests/io/iframe.html | 124 --------------------- includes/js/dojo/tests/io/iframe.js | 8 -- includes/js/dojo/tests/io/iframeResponse.html | 8 -- includes/js/dojo/tests/io/iframeResponse.js.html | 7 -- includes/js/dojo/tests/io/iframeResponse.json.html | 7 -- includes/js/dojo/tests/io/iframeResponse.text.html | 7 -- includes/js/dojo/tests/io/iframeUploadTest.html | 50 --------- includes/js/dojo/tests/io/script.html | 101 ----------------- includes/js/dojo/tests/io/script.js | 8 -- includes/js/dojo/tests/io/scriptJsonp.js | 57 ---------- includes/js/dojo/tests/io/scriptSimple.js | 5 - includes/js/dojo/tests/io/scriptTimeout.html | 67 ----------- includes/js/dojo/tests/io/upload.cgi | 60 ---------- 13 files changed, 509 deletions(-) delete mode 100644 includes/js/dojo/tests/io/iframe.html delete mode 100644 includes/js/dojo/tests/io/iframe.js delete mode 100644 includes/js/dojo/tests/io/iframeResponse.html delete mode 100644 includes/js/dojo/tests/io/iframeResponse.js.html delete mode 100644 includes/js/dojo/tests/io/iframeResponse.json.html delete mode 100644 includes/js/dojo/tests/io/iframeResponse.text.html delete mode 100644 includes/js/dojo/tests/io/iframeUploadTest.html delete mode 100644 includes/js/dojo/tests/io/script.html delete mode 100644 includes/js/dojo/tests/io/script.js delete mode 100644 includes/js/dojo/tests/io/scriptJsonp.js delete mode 100644 includes/js/dojo/tests/io/scriptSimple.js delete mode 100644 includes/js/dojo/tests/io/scriptTimeout.html delete mode 100644 includes/js/dojo/tests/io/upload.cgi (limited to 'includes/js/dojo/tests/io') diff --git a/includes/js/dojo/tests/io/iframe.html b/includes/js/dojo/tests/io/iframe.html deleted file mode 100644 index c37bcb1..0000000 --- a/includes/js/dojo/tests/io/iframe.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - Testing dojo.io.iframe - - - - - - - - diff --git a/includes/js/dojo/tests/io/iframe.js b/includes/js/dojo/tests/io/iframe.js deleted file mode 100644 index 6e20af5..0000000 --- a/includes/js/dojo/tests/io/iframe.js +++ /dev/null @@ -1,8 +0,0 @@ -if(!dojo._hasResource["tests.io.iframe"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["tests.io.iframe"] = true; -dojo.provide("tests.io.iframe"); -if(dojo.isBrowser){ - doh.registerUrl("tests.io.iframe", dojo.moduleUrl("tests.io", "iframe.html")); -} - -} diff --git a/includes/js/dojo/tests/io/iframeResponse.html b/includes/js/dojo/tests/io/iframeResponse.html deleted file mode 100644 index cd26e21..0000000 --- a/includes/js/dojo/tests/io/iframeResponse.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - -

SUCCESSFUL HTML response

- - - diff --git a/includes/js/dojo/tests/io/iframeResponse.js.html b/includes/js/dojo/tests/io/iframeResponse.js.html deleted file mode 100644 index 50c1855..0000000 --- a/includes/js/dojo/tests/io/iframeResponse.js.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/includes/js/dojo/tests/io/iframeResponse.json.html b/includes/js/dojo/tests/io/iframeResponse.json.html deleted file mode 100644 index cb04ed7..0000000 --- a/includes/js/dojo/tests/io/iframeResponse.json.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/includes/js/dojo/tests/io/iframeResponse.text.html b/includes/js/dojo/tests/io/iframeResponse.text.html deleted file mode 100644 index 2a05b83..0000000 --- a/includes/js/dojo/tests/io/iframeResponse.text.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/includes/js/dojo/tests/io/iframeUploadTest.html b/includes/js/dojo/tests/io/iframeUploadTest.html deleted file mode 100644 index 6f6db6f..0000000 --- a/includes/js/dojo/tests/io/iframeUploadTest.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - -

This file tests dojo.io.iframe upload using a form POST with a file upload button.

- -

- Note: This test makes a form POST to upload.cgi. This cgi needs to be made executable for this test to work, and it won't work from local disk. -

-
- - - -
- - - diff --git a/includes/js/dojo/tests/io/script.html b/includes/js/dojo/tests/io/script.html deleted file mode 100644 index db24ac9..0000000 --- a/includes/js/dojo/tests/io/script.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - Testing dojo.io.script - - - - - - - - diff --git a/includes/js/dojo/tests/io/script.js b/includes/js/dojo/tests/io/script.js deleted file mode 100644 index 722a805..0000000 --- a/includes/js/dojo/tests/io/script.js +++ /dev/null @@ -1,8 +0,0 @@ -if(!dojo._hasResource["tests.io.script"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["tests.io.script"] = true; -dojo.provide("tests.io.script"); -if(dojo.isBrowser){ - doh.registerUrl("tests.io.script", dojo.moduleUrl("tests.io", "script.html")); -} - -} diff --git a/includes/js/dojo/tests/io/scriptJsonp.js b/includes/js/dojo/tests/io/scriptJsonp.js deleted file mode 100644 index ad1a196..0000000 --- a/includes/js/dojo/tests/io/scriptJsonp.js +++ /dev/null @@ -1,57 +0,0 @@ -function getJsonpCallback(url){ - var result = null; - var idMatch = url.match(/jsonp=(.*?)(&|$)/); - if(idMatch){ - result = idMatch[1]; - }else{ - //jsonp didn't match, so maybe it is the jsonCallback thing. - idMatch = url.match(/callback=(.*?)(&|$)/); - if(idMatch){ - result = idMatch[1]; - } - } - - if(result){ - result = decodeURIComponent(result); - } - return result; -} - -function findJsonpDone(){ - var result = false; - var scriptUrls = getScriptUrls(); - - for(var i = 0; i < scriptUrls.length; i++){ - var jsonp = getJsonpCallback(scriptUrls[i]); - if(jsonp){ - eval(jsonp + "({animalType: 'mammal'});"); - result = true; - break; - } - } - return result; -} - -function getScriptUrls(){ - //Get the script tags in the page to figure what state we are in. - var scripts = document.getElementsByTagName('script'); - var scriptUrls = new Array(); - for(var i = 0; scripts && i < scripts.length; i++){ - var scriptTag = scripts[i]; - if(scriptTag.id.indexOf("dojoIoScript") == 0){ - scriptUrls.push(scriptTag.src); - } - } - - return scriptUrls; -} - -function doJsonpCallback(){ - if(!findJsonpDone()){ - alert('ERROR: Could not jsonp callback!'); - } -} - -//Set a timeout to do the callback check, since MSIE won't see the SCRIPT tag until -//we complete processing of this page. -setTimeout(function(){doJsonpCallback();}, 300); diff --git a/includes/js/dojo/tests/io/scriptSimple.js b/includes/js/dojo/tests/io/scriptSimple.js deleted file mode 100644 index 8ca316c..0000000 --- a/includes/js/dojo/tests/io/scriptSimple.js +++ /dev/null @@ -1,5 +0,0 @@ -myTasks = new Array(); -myTasks[0] = 'Take out trash.'; -myTasks[1] = 'Do dishes.'; -myTasks[2] = 'Brush teeth.'; - diff --git a/includes/js/dojo/tests/io/scriptTimeout.html b/includes/js/dojo/tests/io/scriptTimeout.html deleted file mode 100644 index 563e37c..0000000 --- a/includes/js/dojo/tests/io/scriptTimeout.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - Testing dojo.io.script - - - - - -

Timeout test

- -

- This test page tests the timeout functionality of dojo.io.script, and to make - sure that requests that time out get removed quickly. If the server response - is received after the script has been timed out, there should not be weird - errors as the browser tries to evaluate the responses after the desired time - period. -

- -

This test requires a server running PHP to work.

- -

-

Firefox Oddity: Firefox - will print an error after the script response is received from the server:
- dojo.io.script.jsonp_dojoIoScript1 has no properties - This is bad because Firefox goes ahead and evaluates the script contents in the page's - JavaScript space (this happens even when I turn off Firefox Add-Ons). All other browsers - do not evaluate the script (given the weird Opera 9.22 behavior below). You can test this - by clicking the Test for SuperXFooBarVariable button after receiving the response - for timeout.php (check Firebug Net tab to see when request is received). All other browsers - show an error or show the "undefined" value for SuperXFooBarVariable, but Firefox will show its - value as being: "Oh no! SuperXFooBarVariable is defined (should not be for timeout case)". - -

Opera Oddity: Opera 9.22 does not seem to trigger the timeout case, - but rather it waits for the server to send a response to the script before continuing past the - point where the script is added to the DOM? That seems wrong. Dynamic script tags are no longer - an async operation? -

- - - - - diff --git a/includes/js/dojo/tests/io/upload.cgi b/includes/js/dojo/tests/io/upload.cgi deleted file mode 100644 index a13656f..0000000 --- a/includes/js/dojo/tests/io/upload.cgi +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/python - -# FROM: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/273844 - -import cgi -import cgitb; cgitb.enable() -import os, sys -import string - -UPLOAD_DIR = "/tmp/upload/" -form = cgi.FieldStorage() - -dbg = [] - -def debug(dbgstr): - dbg.append(str(dbgstr)) - -def save_uploaded_file(form_field, upload_dir): - global form - if not form.has_key(form_field): - debug("didn't find it! (1)") - return - fileitem = form[form_field] - if not fileitem.file: - debug(form.getvalue(form_field, "")) - debug(fileitem.__dict__) - debug("didn't find it! (2)") - return - fout = file(os.path.join(upload_dir, fileitem.filename), 'wb') - while 1: - chunk = fileitem.file.read(100000) - if not chunk: break - fout.write (chunk) - fout.close() - -retval = "false"; -fileFields = "" - -if form.has_key("fileFields"): - fval = str(form.getvalue("fileFields", "")) - fileFields = fval.split(",") - debug("'fileCount': '" + str(len(fileFields)) + "',") - for field in fileFields: - debug("'fileField' : '"+field + "',") - save_uploaded_file(str(field).strip(), UPLOAD_DIR) - retval = "true"; - -debug("'retval': " + retval) - -print """Content-Type: text/html - - - - - - - - - -""" % (string.join(dbg, "\n")) -- cgit v1.2.3-54-g00ecf