forked from vkiryukhin/vkBeautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
173 lines (151 loc) · 5.48 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
$(document).ready(function()
{
$('#leftpanel').hide();
$('#rightpanel').empty().load('html/overview.html');
});
function beautify() {
var ta = document.getElementById('ta'),
cp = document.getElementById('custom_pattern').value;
cp = cp.replace(/\'/g,'').replace(/\"/g,'');
if ( !isNaN(parseInt(cp)) ) { // argument is integer
cp = parseInt(cp);
} else {
cp = cp ? cp : 4;
}
if($('#mode').html() == 'XML') {
ta.value = vkbeautify.xml(ta.value,cp);
} else
if($('#mode').html() == 'JSON') {
ta.value = vkbeautify.json(ta.value,cp);
} else
if($('#mode').html() == 'CSS') {
ta.value = vkbeautify.css(ta.value,cp);
}
if($('#mode').html() == 'SQL') {
ta.value = vkbeautify.sql(ta.value,cp);
}
countChars();
}
function minify() {
var ta = document.getElementById('ta');
var preservecomm = document.getElementById('preservews').checked;
if($('#mode').html() == 'XML') {
ta.value = preservecomm ? vkbeautify.xmlmin(ta.value,true) : vkbeautify.xmlmin(ta.value);
} else
if($('#mode').html() == 'JSON') {
ta.value = preservecomm ? vkbeautify.jsonmin(ta.value) : vkbeautify.jsonmin(ta.value);
} else
if($('#mode').html() == 'CSS') {
ta.value = preservecomm ? vkbeautify.cssmin(ta.value,true) : vkbeautify.cssmin(ta.value);
} else
if($('#mode').html() == 'SQL') {
ta.value = vkbeautify.sqlmin(ta.value);
}
countChars();
}
function countChars(){
document.getElementById('count').value = document.getElementById('ta').value.length;
}
function getWebService(url) {
$.ajax( {
url: 'php/proxy.php?url='+url,
type: 'GET',
dataType: "text",
success: function(data) {
document.getElementById('ta').value = data;
countChars();
}
});
}
function loadTemplate(name)
{
var cntx = {};
cntx.country = 'USA';
switch(name) {
case 'overview':
//$('#leftpanel').empty().load('tmpl/overview.tmpl');
$('#leftpanel').hide();
$('#rightpanel').empty().load('html/overview.html');
break;
case 'doc':
$('#leftpanel').hide();
//document.getElementById('leftpanel')
$('#rightpanel').load('html/doc.html');
break;
case 'basic':
$('#ta').width(400);
$('#leftpanel').show();
document.getElementById('ta').value = '<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE foo SYSTEM "Foo.dtd"><a><b>bbb</b><c/><d><soapenv:Envelope xmlns:soapenv="http://xxx" xmlns:xsd="http://yyy" xmlns:xsi="http://zzz"></soapenv></d><e><![CDATA[ <z></z> ]]></e><f><g></g></f></a>';
$('#rightpanel').empty().load('html/basic.html');
$('#mode').html('XML');
countChars();
break;
case 'yahoorss':
$('#ta').width(800);
$('#leftpanel').show();
document.getElementById('ta').value = 'Loading Yahoo RSS . . . ';
getWebService('http://weather.yahooapis.com/forecastrss?w=2459115')
$('#rightpanel').empty();
$('#mode').html('XML');
break;
case 'googlenewsxml':
$('#ta').width(800);
$('#leftpanel').show();
document.getElementById('ta').value = 'Loading Google News . . . ';
getWebService('http://news.google.com/news?ned=us&topic=h&output=rss');
$('#rightpanel').empty();
$('#mode').html('XML');
countChars();
break;
case 'basicjson':
$('#ta').width(400);
$('#leftpanel').show();
document.getElementById('ta').value = '{"menu":{"id": "file","value": [1,2,3],"popup":{"menuitem":[{"value":["one","two"],'
+'"onclick":"CreateNewDoc()"},{"value":"Close","onclick":"CloseDoc()"}]}}}';
$('#rightpanel').empty().load('html/basic.html');
$('#mode').html('JSON');
countChars();
break;
case 'yahoojson':
$('#ta').width(800);
$('#leftpanel').show();
document.getElementById('ta').value = 'Loading Yahoo JSON . . . ';
getWebService('http://weather.yahooapis.com/forecastjson?w=2459115')
$('#rightpanel').empty();
$('#mode').html('JSON');
break;
case 'googlenewsjson':
$('#ta').width(800);
$('#leftpanel').show();
document.getElementById('ta').value = 'Loading Google News JSON. . . ';
getWebService('http://ajax.googleapis.com/ajax/services/search/news?v=1.0&q=obama');
$('#rightpanel').empty();
$('#mode').html('JSON');
break;
case 'basiccss':
$('#ta').width(400);
$('#leftpanel').show();
document.getElementById('ta').value = '.headbg{margin:0 8px /*display:none*/ } a:link,a:focus{ color:#00c } a:active{ color:red }';
$('#rightpanel').empty().load('html/basic.html');
$('#mode').html('CSS');
countChars();
break;
case 'yahoocss':
$('#ta').width(800);
$('#leftpanel').show();
document.getElementById('ta').value = 'Loading Google CSS . . . ';
getWebService('http://ssl.gstatic.com/codesite/ph/3604335043632762799/css/core.css');
$('#rightpanel').empty();
$('#mode').html('CSS');
break;
case 'basicsql':
$('#ta').width(500);
$('#leftpanel').show();
document.getElementById('ta').value = "SELECT ca.proj_id AS proj_id, ca.ca_name AS proj_name, ca.ca_date_start AS proj_start, ca.ca_date_end AS proj_end,(SELECT COUNT(*) FROM rotations r WHERE r.proj_id = proj_id AND r.r_status = 'R' GROUP BY r.proj_id) r_count, (SELECT count(*) FROM rotations r WHERE r.proj_id = proj_id AND r.channel_id = 24 ) r_rtb_count FROM projs ca, clients c, proj_auth caa WHERE ca.client_id = 12345 AND ca.client_id = c.client_id AND ca_type = 'zzz' AND c.agency_id = 0 AND ca.client_id = NVL( caa.client_id, ca.client_id ) AND proj_id = NVL( caa.proj_id, proj_id ) AND caa.contact_id = 7890";
$('#rightpanel').empty().load('html/basicsql.html');
$('#rightpanel').empty();
$('#mode').html('SQL');
countChars();
break;
}
}