diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/gfx/demos/beautify.html | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
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
Diffstat (limited to 'includes/js/dojox/gfx/demos/beautify.html')
-rw-r--r-- | includes/js/dojox/gfx/demos/beautify.html | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/includes/js/dojox/gfx/demos/beautify.html b/includes/js/dojox/gfx/demos/beautify.html deleted file mode 100644 index d1f02f5..0000000 --- a/includes/js/dojox/gfx/demos/beautify.html +++ /dev/null @@ -1,48 +0,0 @@ -<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" > -<head> -<title>Beautify JSON</title> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<style type="text/css"> - @import "../../../dojo/resources/dojo.css"; - @import "../../../dijit/tests/css/dijitTests.css"; -</style> -<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script> -<script type="text/javascript"> - -trimPath = function(o){ - if(o instanceof Array){ - for(var i = 0; i < o.length; ++i){ - trimPath(o[i]); - } - return; - } - if(("shape" in o) && ("path" in o.shape)){ - o.shape.path = dojo.trim(o.shape.path.replace(/\s\s+/g, " ")); - } - if("children" in o){ - trimPath(o.children); - } -}; - -beautify = function(){ - var t = dojo.byId("io"); - var v = dojo.fromJson(t.value); - if(dojo.byId("path").checked){ - trimPath(v); - } - t.value = dojo.toJson(v, dojo.byId("pprint").checked); -}; - -</script> -</head> -<body> - <h1>Beautify JSON</h1> - <p>Paste valid JSON in this textarea and receive a pretty-printed version of it. Use Firefox, if you want to be able to read comma-ended sequences (Python style). - Additionally it knows how to remove extra spaces from path elements.</p> - <p><textarea id="io" cols="80" rows="10" wrap="off"></textarea></p> - <p><button onclick="beautify()">Beautify!</button> - <input type="checkbox" id="path" checked="checked" /> Process "path" elements - <input type="checkbox" id="pprint" checked="checked" /> Pretty-print JSON</p> - <p><em>This program is a companion for inspector.html.</em></p> -</body> -</html> |