Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SURPRISED
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
华国豪
SURPRISED
Commits
08fb4053
Commit
08fb4053
authored
Nov 13, 2019
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
获取OPENID
parent
efb8a782
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
384 additions
and
262 deletions
+384
-262
GT_activities.html
html/GT_activities.html
+288
-262
yql.js
js/yql.js
+96
-0
No files found.
html/GT_activities.html
View file @
08fb4053
This diff is collapsed.
Click to expand it.
js/yql.js
0 → 100644
View file @
08fb4053
var
JSON
;
if
(
!
JSON
)
{
JSON
=
{};
}
(
function
()
{
"use strict"
;
function
f
(
n
)
{
return
n
<
10
?
'0'
+
n
:
n
;
}
if
(
typeof
Date
.
prototype
.
toJSON
!==
'function'
)
{
Date
.
prototype
.
toJSON
=
function
(
key
)
{
return
isFinite
(
this
.
valueOf
())
?
this
.
getUTCFullYear
()
+
'-'
+
f
(
this
.
getUTCMonth
()
+
1
)
+
'-'
+
f
(
this
.
getUTCDate
())
+
'T'
+
f
(
this
.
getUTCHours
())
+
':'
+
f
(
this
.
getUTCMinutes
())
+
':'
+
f
(
this
.
getUTCSeconds
())
+
'Z'
:
null
;
};
String
.
prototype
.
toJSON
=
Number
.
prototype
.
toJSON
=
Boolean
.
prototype
.
toJSON
=
function
(
key
)
{
return
this
.
valueOf
();
};
}
var
cx
=
/
[\u
0000
\u
00ad
\u
0600-
\u
0604
\u
070f
\u
17b4
\u
17b5
\u
200c-
\u
200f
\u
2028-
\u
202f
\u
2060-
\u
206f
\u
feff
\u
fff0-
\u
ffff
]
/g
,
escapable
=
/
[\\\"\x
00-
\x
1f
\x
7f-
\x
9f
\u
00ad
\u
0600-
\u
0604
\u
070f
\u
17b4
\u
17b5
\u
200c-
\u
200f
\u
2028-
\u
202f
\u
2060-
\u
206f
\u
feff
\u
fff0-
\u
ffff
]
/g
,
gap
,
indent
,
meta
=
{
'
\
b'
:
'
\\
b'
,
'
\
t'
:
'
\\
t'
,
'
\
n'
:
'
\\
n'
,
'
\
f'
:
'
\\
f'
,
'
\
r'
:
'
\\
r'
,
'"'
:
'
\\
"'
,
'
\
\'
: '
\\\\
' },
rep;
function quote(string) { escapable.lastIndex = 0; return escapable.test(string) ? '
"' + string.replace(escapable, function(a) { var c = meta[a]; return typeof c === 'string' ? c : '
\\
u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); }) + '"
' : '
"' + string + '"
'; }
function str(key, holder) {
var i, k, v, length, mind = gap,
partial, value = holder[key];
if (value && typeof value === '
object
' && typeof value.toJSON === '
function
') { value = value.toJSON(key); }
if (typeof rep === '
function
') { value = rep.call(holder, key, value); }
switch (typeof value) {
case '
string
':
return quote(value);
case '
number
':
return isFinite(value) ? String(value) : '
null
';
case '
boolean
':
case '
null
':
return String(value);
case '
object
':
if (!value) { return '
null
'; }
gap += indent;
partial = [];
if (Object.prototype.toString.apply(value) === '
[
object
Array
]
') {
length = value.length;
for (i = 0; i < length; i += 1) { partial[i] = str(i, value) || '
null
'; }
v = partial.length === 0 ? '
[]
' : gap ? '
[
\
n
' + gap + partial.join('
,
\
n
' + gap) + '
\
n
' + mind + '
]
' : '
[
' + partial.join('
,
') + '
]
';
gap = mind;
return v;
}
if (rep && typeof rep === '
object
') {
length = rep.length;
for (i = 0; i < length; i += 1) {
if (typeof rep[i] === '
string
') {
k = rep[i];
v = str(k, value);
if (v) { partial.push(quote(k) + (gap ? '
:
' : '
:
') + v); }
}
}
} else { for (k in value) { if (Object.prototype.hasOwnProperty.call(value, k)) { v = str(k, value); if (v) { partial.push(quote(k) + (gap ? '
:
' : '
:
') + v); } } } }
v = partial.length === 0 ? '
{}
' : gap ? '
{
\
n
' + gap + partial.join('
,
\
n
' + gap) + '
\
n
' + mind + '
}
' : '
{
' + partial.join('
,
') + '
}
';
gap = mind;
return v;
}
}
if (typeof JSON.stringify !== '
function
') {
JSON.stringify = function(value, replacer, space) {
var i;
gap = '';
indent = '';
if (typeof space === '
number
') { for (i = 0; i < space; i += 1) { indent += '
'; } } else if (typeof space === '
string
') { indent = space; }
rep = replacer;
if (replacer && typeof replacer !== '
function
' && (typeof replacer !== '
object
' || typeof replacer.length !== '
number
')) { throw new Error('
JSON
.
stringify
'); }
return str('', { '': value });
};
}
if (typeof JSON.parse !== '
function
') {
JSON.parse = function(text, reviver) {
var j;
function walk(holder, key) {
var k, v, value = holder[key];
if (value && typeof value === '
object
') { for (k in value) { if (Object.prototype.hasOwnProperty.call(value, k)) { v = walk(value, k); if (v !== undefined) { value[k] = v; } else { delete value[k]; } } } }
return reviver.call(holder, key, value);
}
text = String(text);
cx.lastIndex = 0;
if (cx.test(text)) {
text = text.replace(cx, function(a) {
return '
\\
u
' +
('
0000
' + a.charCodeAt(0).toString(16)).slice(-4);
});
}
if (/^[
\
],:{}
\
s]*$/.test(text.replace(/
\\
(?:["
\\\
/bfnrt]|u[0-9a-fA-F]{4})/g, '
@
').replace(/"[^"
\\\
n
\
r]*"|true|false|null|-?
\
d+(?:
\
.
\
d*)?(?:[eE][+
\
-]?
\
d+)?/g, '
]
').replace(/(?:^|:|,)(?:
\
s*
\
[)+/g, ''))) { j = eval('
(
' + text + '
)
'); return typeof reviver === '
function
' ? walk({ '': j }, '') : j; }
throw new SyntaxError('
JSON
.
parse
');
};
}
}());
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment