@zzish/sdk-js 0.5.3 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,425 +0,0 @@
1
- /*******************************************************************************
2
- Slate Theme for GitHub Pages
3
- by Jason Costello, @jsncostello
4
- *******************************************************************************/
5
-
6
- @import url(pygment_trac.css);
7
-
8
- /*******************************************************************************
9
- MeyerWeb Reset
10
- *******************************************************************************/
11
-
12
- html, body, div, span, applet, object, iframe,
13
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
14
- a, abbr, acronym, address, big, cite, code,
15
- del, dfn, em, img, ins, kbd, q, s, samp,
16
- small, strike, strong, sub, sup, tt, var,
17
- b, u, i, center,
18
- dl, dt, dd, ol, ul, li,
19
- fieldset, form, label, legend,
20
- table, caption, tbody, tfoot, thead, tr, th, td,
21
- article, aside, canvas, details, embed,
22
- figure, figcaption, footer, header, hgroup,
23
- menu, nav, output, ruby, section, summary,
24
- time, mark, audio, video {
25
- margin: 0;
26
- padding: 0;
27
- border: 0;
28
- font: inherit;
29
- vertical-align: baseline;
30
- }
31
-
32
- /* HTML5 display-role reset for older browsers */
33
- article, aside, details, figcaption, figure,
34
- footer, header, hgroup, menu, nav, section {
35
- display: block;
36
- }
37
-
38
- ol, ul {
39
- list-style: none;
40
- }
41
-
42
- table {
43
- border-collapse: collapse;
44
- border-spacing: 0;
45
- }
46
-
47
- /*******************************************************************************
48
- Theme Styles
49
- *******************************************************************************/
50
-
51
- body {
52
- box-sizing: border-box;
53
- color:#373737;
54
- background: #212121;
55
- font-size: 16px;
56
- font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
57
- line-height: 1.5;
58
- -webkit-font-smoothing: antialiased;
59
- }
60
-
61
- h1, h2, h3, h4, h5, h6 {
62
- margin: 10px 0;
63
- font-weight: 700;
64
- color:#222222;
65
- font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
66
- letter-spacing: -1px;
67
- }
68
-
69
- h1 {
70
- font-size: 36px;
71
- font-weight: 700;
72
- }
73
-
74
- h2 {
75
- padding-bottom: 10px;
76
- font-size: 32px;
77
- background: url('../images/bg_hr.png') repeat-x bottom;
78
- }
79
-
80
- h3 {
81
- font-size: 24px;
82
- }
83
-
84
- h4 {
85
- font-size: 21px;
86
- }
87
-
88
- h5 {
89
- font-size: 18px;
90
- }
91
-
92
- h6 {
93
- font-size: 16px;
94
- }
95
-
96
- p {
97
- margin: 10px 0 15px 0;
98
- }
99
-
100
- footer p {
101
- color: #f2f2f2;
102
- }
103
-
104
- a {
105
- text-decoration: none;
106
- color: #007edf;
107
- text-shadow: none;
108
-
109
- transition: color 0.5s ease;
110
- transition: text-shadow 0.5s ease;
111
- -webkit-transition: color 0.5s ease;
112
- -webkit-transition: text-shadow 0.5s ease;
113
- -moz-transition: color 0.5s ease;
114
- -moz-transition: text-shadow 0.5s ease;
115
- -o-transition: color 0.5s ease;
116
- -o-transition: text-shadow 0.5s ease;
117
- -ms-transition: color 0.5s ease;
118
- -ms-transition: text-shadow 0.5s ease;
119
- }
120
-
121
- a:hover, a:focus {text-decoration: underline;}
122
-
123
- footer a {
124
- color: #F2F2F2;
125
- text-decoration: underline;
126
- }
127
-
128
- em {
129
- font-style: italic;
130
- }
131
-
132
- strong {
133
- font-weight: bold;
134
- }
135
-
136
- img {
137
- position: relative;
138
- margin: 0 auto;
139
- max-width: 739px;
140
- padding: 5px;
141
- margin: 10px 0 10px 0;
142
- border: 1px solid #ebebeb;
143
-
144
- box-shadow: 0 0 5px #ebebeb;
145
- -webkit-box-shadow: 0 0 5px #ebebeb;
146
- -moz-box-shadow: 0 0 5px #ebebeb;
147
- -o-box-shadow: 0 0 5px #ebebeb;
148
- -ms-box-shadow: 0 0 5px #ebebeb;
149
- }
150
-
151
- p img {
152
- display: inline;
153
- margin: 0;
154
- padding: 0;
155
- vertical-align: middle;
156
- text-align: center;
157
- border: none;
158
- }
159
-
160
- pre, code {
161
- width: 100%;
162
- color: #222;
163
- background-color: #fff;
164
-
165
- font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
166
- font-size: 14px;
167
-
168
- border-radius: 2px;
169
- -moz-border-radius: 2px;
170
- -webkit-border-radius: 2px;
171
- }
172
-
173
- pre {
174
- width: 100%;
175
- padding: 10px;
176
- box-shadow: 0 0 10px rgba(0,0,0,.1);
177
- overflow: auto;
178
- }
179
-
180
- code {
181
- padding: 3px;
182
- margin: 0 3px;
183
- box-shadow: 0 0 10px rgba(0,0,0,.1);
184
- }
185
-
186
- pre code {
187
- display: block;
188
- box-shadow: none;
189
- }
190
-
191
- blockquote {
192
- color: #666;
193
- margin-bottom: 20px;
194
- padding: 0 0 0 20px;
195
- border-left: 3px solid #bbb;
196
- }
197
-
198
-
199
- ul, ol, dl {
200
- margin-bottom: 15px
201
- }
202
-
203
- ul {
204
- list-style-position: inside;
205
- list-style: disc;
206
- padding-left: 20px;
207
- }
208
-
209
- ol {
210
- list-style-position: inside;
211
- list-style: decimal;
212
- padding-left: 20px;
213
- }
214
-
215
- dl dt {
216
- font-weight: bold;
217
- }
218
-
219
- dl dd {
220
- padding-left: 20px;
221
- font-style: italic;
222
- }
223
-
224
- dl p {
225
- padding-left: 20px;
226
- font-style: italic;
227
- }
228
-
229
- hr {
230
- height: 1px;
231
- margin-bottom: 5px;
232
- border: none;
233
- background: url('../images/bg_hr.png') repeat-x center;
234
- }
235
-
236
- table {
237
- border: 1px solid #373737;
238
- margin-bottom: 20px;
239
- text-align: left;
240
- }
241
-
242
- th {
243
- font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
244
- padding: 10px;
245
- background: #373737;
246
- color: #fff;
247
- }
248
-
249
- td {
250
- padding: 10px;
251
- border: 1px solid #373737;
252
- }
253
-
254
- form {
255
- background: #f2f2f2;
256
- padding: 20px;
257
- }
258
-
259
- /*******************************************************************************
260
- Full-Width Styles
261
- *******************************************************************************/
262
-
263
- .outer {
264
- width: 100%;
265
- }
266
-
267
- .inner {
268
- position: relative;
269
- max-width: 640px;
270
- padding: 20px 10px;
271
- margin: 0 auto;
272
- }
273
-
274
- #forkme_banner {
275
- display: block;
276
- position: absolute;
277
- top:0;
278
- right: 10px;
279
- z-index: 10;
280
- padding: 10px 50px 10px 10px;
281
- color: #fff;
282
- background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
283
- font-weight: 700;
284
- box-shadow: 0 0 10px rgba(0,0,0,.5);
285
- border-bottom-left-radius: 2px;
286
- border-bottom-right-radius: 2px;
287
- }
288
-
289
- #header_wrap {
290
- background: #212121;
291
- background: -moz-linear-gradient(top, #373737, #212121);
292
- background: -webkit-linear-gradient(top, #373737, #212121);
293
- background: -ms-linear-gradient(top, #373737, #212121);
294
- background: -o-linear-gradient(top, #373737, #212121);
295
- background: linear-gradient(top, #373737, #212121);
296
- }
297
-
298
- #header_wrap .inner {
299
- padding: 50px 10px 30px 10px;
300
- }
301
-
302
- #project_title {
303
- margin: 0;
304
- color: #fff;
305
- font-size: 42px;
306
- font-weight: 700;
307
- text-shadow: #111 0px 0px 10px;
308
- }
309
-
310
- #project_tagline {
311
- color: #fff;
312
- font-size: 24px;
313
- font-weight: 300;
314
- background: none;
315
- text-shadow: #111 0px 0px 10px;
316
- }
317
-
318
- #downloads {
319
- position: absolute;
320
- width: 210px;
321
- z-index: 10;
322
- bottom: -40px;
323
- right: 0;
324
- height: 70px;
325
- background: url('../images/icon_download.png') no-repeat 0% 90%;
326
- }
327
-
328
- .zip_download_link {
329
- display: block;
330
- float: right;
331
- width: 90px;
332
- height:70px;
333
- text-indent: -5000px;
334
- overflow: hidden;
335
- background: url(../images/sprite_download.png) no-repeat bottom left;
336
- }
337
-
338
- .tar_download_link {
339
- display: block;
340
- float: right;
341
- width: 90px;
342
- height:70px;
343
- text-indent: -5000px;
344
- overflow: hidden;
345
- background: url(../images/sprite_download.png) no-repeat bottom right;
346
- margin-left: 10px;
347
- }
348
-
349
- .zip_download_link:hover {
350
- background: url(../images/sprite_download.png) no-repeat top left;
351
- }
352
-
353
- .tar_download_link:hover {
354
- background: url(../images/sprite_download.png) no-repeat top right;
355
- }
356
-
357
- #main_content_wrap {
358
- background: #f2f2f2;
359
- border-top: 1px solid #111;
360
- border-bottom: 1px solid #111;
361
- }
362
-
363
- #main_content {
364
- padding-top: 40px;
365
- }
366
-
367
- #footer_wrap {
368
- background: #212121;
369
- }
370
-
371
-
372
-
373
- /*******************************************************************************
374
- Small Device Styles
375
- *******************************************************************************/
376
-
377
- @media screen and (max-width: 480px) {
378
- body {
379
- font-size:14px;
380
- }
381
-
382
- #downloads {
383
- display: none;
384
- }
385
-
386
- .inner {
387
- min-width: 320px;
388
- max-width: 480px;
389
- }
390
-
391
- #project_title {
392
- font-size: 32px;
393
- }
394
-
395
- h1 {
396
- font-size: 28px;
397
- }
398
-
399
- h2 {
400
- font-size: 24px;
401
- }
402
-
403
- h3 {
404
- font-size: 21px;
405
- }
406
-
407
- h4 {
408
- font-size: 18px;
409
- }
410
-
411
- h5 {
412
- font-size: 14px;
413
- }
414
-
415
- h6 {
416
- font-size: 12px;
417
- }
418
-
419
- code, pre {
420
- min-width: 320px;
421
- max-width: 480px;
422
- font-size: 11px;
423
- }
424
-
425
- }
package/success.html DELETED
@@ -1,11 +0,0 @@
1
- <!doctype html>
2
-
3
- <html lang="en">
4
- <head>
5
- <meta charset="utf-8">
6
- <title>Zzish Login Success</title>
7
- </head>
8
-
9
- <body>
10
- </body>
11
- </html>
package/user.html DELETED
@@ -1,139 +0,0 @@
1
- <!doctype html>
2
-
3
- <html lang="en">
4
- <head>
5
- <meta charset="utf-8">
6
-
7
- <title>Zzish Quick Javascript Client SDK</title>
8
-
9
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
10
- <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
11
-
12
- <script src="zzish.js"></script>
13
- <script>
14
- var profileId;
15
- var init = false;
16
- var token = null;
17
-
18
- $(document).ready(function() {
19
- logoutUser();
20
- });
21
-
22
- function logoutUser() {
23
- profileId = "";
24
- $("#profileIdSpan").html("You need to login");
25
- $("#profileNameSpan").html("You need to login");
26
- token = null;
27
- $("#loginButtons").show();
28
- $("#logoutButtons").hide();
29
- }
30
-
31
- function loginUser(data) {
32
- profileId = data.id;
33
- $("#profileIdSpan").html(profileId);
34
- $("#profileNameSpan").html(data.name);
35
- token = data.token;
36
- $("#loginButtons").hide();
37
- $("#logoutButtons").show();
38
- }
39
-
40
- function initApp() {
41
- if (!init) {
42
- if ($("#appId").val()!="") {
43
- Zzish.init({
44
- api: $("#appId").val(),
45
- protocol: "http",
46
- baseUrl: "localhost:8080/zzishapi/api/",
47
- webUrl: "http://localhost:3000/",
48
- header: "X-ApplicationId",
49
- headerprefix: "",
50
- logEnabled: true
51
- });
52
- init = true;
53
- console.log("App Initalized with id",$("#appId").val());
54
- Zzish.getCurrentUser(null,function(err,data) {
55
- if (data!=null) {
56
- //we have a token
57
- loginUser(data);
58
- }
59
- })
60
- }
61
- else {
62
- alert ("Please enter your API KEY from http://www.zzish.co.uk/developer/")
63
- }
64
- }
65
- return init;
66
- }
67
-
68
- function loginPop() {
69
- if (initApp()) {
70
- loginCommand("pop","success.html");
71
- }
72
- }
73
-
74
- function loginRedirect() {
75
- if (initApp()) {
76
- loginCommand("redirect","redirect.html")
77
- }
78
- }
79
-
80
- function loginCommand(type,redirectURL) {
81
- if (profileId=="") {
82
- Zzish.login(type,"http://zzish.github.io/zzishsdk-js/"+redirectURL,function(err,message) {
83
- console.log("Logged in with status and message",err,message);
84
- if (!err) {
85
- loginUser(message);
86
- }
87
- else {
88
- console.log("Error",err);
89
- }
90
- });
91
- }
92
- }
93
-
94
- function logout() {
95
- if (initApp()) {
96
- if (token!="" && token!="undefined" && profileId!="") {
97
- Zzish.logout(token,function(err,message) {
98
- console.log("Logged in with status and message",err,message);
99
- if (!err) {
100
- logoutUser();
101
- }
102
- });
103
- }
104
- }
105
- }
106
-
107
- function groups() {
108
- if (initApp()) {
109
- if (token!="" && token!="undefined" && profileId!="") {
110
- Zzish.listGroups(profileId,function(err,message) {
111
- console.log("Got groups",err,message);
112
- if (!err) {
113
- $("#groupOutput").html(JSON.stringify(message));
114
- }
115
- });
116
- }
117
- }
118
- }
119
-
120
-
121
- </script>
122
- </head>
123
-
124
- <body>
125
- <input type="text" id="appId" name="appId" placeholder="Your API Key" value="" size="40"/><br/>
126
- <h1>Login</h1>
127
- <div id="loginButtons">
128
- <input type="button" onclick="loginPop()" value="Login with Popup"/><br/>
129
- <input type="button" onclick="loginRedirect()" value="Login with Redirect"/><br/>
130
- </div>
131
- <div id="logoutButtons">
132
- <input type="button" onclick="groups()" value="List Groups"/><br/>
133
- <input type="button" onclick="logout()" value="Logout"/><br/>
134
- Group Output: <span id="groupOutput"></span>
135
- </div>
136
- Profile Id: <span id="profileIdSpan">You need to login to get a profile Id</span><br/>
137
- Profile Name: <span id="profileNameSpan">You need to login to get a profile Name</span><br/>
138
- </body>
139
- </html>