-
Notifications
You must be signed in to change notification settings - Fork 1
/
42_style_javascript_upp.txt
947 lines (859 loc) · 26.7 KB
/
42_style_javascript_upp.txt
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
<mt:Ignore>
/* The following functions and variables are here to support legacy MT templates.
If you have refreshed your JavaScript template but still use older MT comment
templates, you may need to uncomment this block in order for those templates
to work properly. To use, simply remove the 'mt:Ignore' tags wrapping this
block of code.
*/
function hideDocumentElement(id) { return mtHide(id) }
function showDocumentElement(id) { return mtShow(id) }
function individualArchivesOnLoad() { return mtEntryOnLoad() }
function writeCommenterGreeting() { return mtShowGreeting() }
function rememberMe(f) { return mtRememberMe(f) }
function forgetMe(f) { return mtForgetMe(f) }
var commenter_name;
var commenter_id;
var commenter_url;
var commenter_blog_ids;
var mtcmtmail;
var mtcmtauth;
var mtcmthome;
var captcha_timer;
</mt:Ignore>
// The cookie name to use for storing the blog-side comment session cookie.
var mtCookieName = "<$mt:UserSessionCookieName$>";
var mtCookieDomain = "<$mt:UserSessionCookieDomain$>";
var mtCookiePath = "<$mt:UserSessionCookiePath$>";
var mtCookieTimeout = <$mt:UserSessionCookieTimeout$>;
<mt:Ignore>
/***
* Simple routine for showing a DOM element (applying a CSS display
* attribute of 'none').
*/
</mt:Ignore>
function mtHide(id) {
var el = (typeof id == "string") ? document.getElementById(id) : id;
if (el) el.style.display = 'none';
}
<mt:Ignore>
/***
* Simple routine for showing a DOM element (applying a CSS display
* attribute of 'block').
*/
</mt:Ignore>
function mtShow(id) {
var el = (typeof id == "string") ? document.getElementById(id) : id;
if (el) el.style.display = 'block';
}
<mt:Ignore>
/***
* A utility function for assigning/adding handlers to window events.
*/
</mt:Ignore>
function mtAttachEvent(eventName,func) {
var onEventName = 'on' + eventName;
var old = window[onEventName];
if( typeof old != 'function' )
window[onEventName] = func;
else {
window[onEventName] = function( evt ) {
old( evt );
return func( evt );
};
}
}
<mt:Ignore>
/***
* Calls the event named, if there are handlers for it.
*/
</mt:Ignore>
function mtFireEvent(eventName,param) {
var fn = window['on' + eventName];
if (typeof fn == 'function') return fn(param);
return;
}
<mt:Ignore>
/***
* Displays a relative date.
* 'ts' is a Date object, 'fds' is a string of the date which
* will be displayed if the given date is older than 1 week.
*/
</mt:Ignore>
function mtRelativeDate(ts, fds) {
var now = new Date();
var ref = ts;
var delta = Math.floor((now.getTime() - ref.getTime()) / 1000);
var str;
if (delta < 60) {
str = 'moments ago';
} else if (delta <= 86400) {
// less than 1 day
var hours = Math.floor(delta / 3600);
var min = Math.floor((delta % 3600) / 60);
if (hours == 1)
str = '1 hour ago';
else if (hours > 1)
str = '2 hours ago'.replace(/2/, hours);
else if (min == 1)
str = '1 minute ago';
else
str = '2 minutes ago'.replace(/2/, min);
} else if (delta <= 604800) {
// less than 1 week
var days = Math.floor(delta / 86400);
var hours = Math.floor((delta % 86400) / 3600);
if (days == 1)
str = '1 day ago';
else if (days > 1)
str = '2 days ago'.replace(/2/, days);
else if (hours == 1)
str = '1 hour ago';
else
str = '2 hours ago'.replace(/2/, hours);
}
return str ? str : fds;
}
<mt:Ignore>
/***
* Used to display an edit link for the given entry.
*/
</mt:Ignore>
function mtEditLink(entry_id, author_id) {
var u = mtGetUser();
if (! u) return;
if (! entry_id) return;
if (! author_id) return;
if (u.id != author_id) return;
var link = '<a href="<$mt:AdminScript$>?__mode=view&_type=entry&id=' + entry_id + '">Edit</a>';
document.write(link);
}
<mt:Ignore>
/***
* Called when an input field on the comment form receives focus.
*/
</mt:Ignore>
function mtCommentFormOnFocus() {
// if CAPTCHA is enabled, this causes the captcha image to be
// displayed if it hasn't been already.
mtShowCaptcha();
}
<mt:Ignore>
/***
* Displays a captcha field for anonymous commenters.
*/
</mt:Ignore>
var mtCaptchaVisible = false;
function mtShowCaptcha() {
var u = mtGetUser();
if ( u && u.is_authenticated ) return;
if (mtCaptchaVisible) return;
var div = document.getElementById('comments-open-captcha');
if (div) {
div.innerHTML = '<$mt:CaptchaFields$>';
mtCaptchaVisible = true;
}
}
<mt:Ignore>
/* user object
-- saved in user cookie --
u.name (display name)
u.url (link to home page)
u.email (for anonymous only)
u.userpic (url for commenter/author)
u.profile (link to profile)
u.is_trusted (boolean)
u.is_author (user has posting rights)
u.is_banned (banned status; neither post/comment perms)
u.can_post (has permission to post)
u.can_comment (has permission to comment)
-- status fields --
u.is_authenticated (boolean)
u.is_anonymous (user is anonymous)
*/
</mt:Ignore>
var is_preview;
var user;
<mt:Ignore>
/***
* Assigns a user object as the actively logged in user; also saves the
* user information in a browser cookie.
*/
</mt:Ignore>
function mtSetUser(u) {
if (u) {
// persist this
user = u;
mtSaveUser();
// sync up user greeting
mtFireEvent('usersignin');
}
}
<mt:Ignore>
/***
* Simple function that escapes single quote characters for storing
* in a cookie.
*/
</mt:Ignore>
function mtEscapeJS(s) {
s = s.replace(/'/g, "'");
return s;
}
<mt:Ignore>
/***
* Simple function that unescapes single quote characters that were
* stored in a cookie.
*/
</mt:Ignore>
function mtUnescapeJS(s) {
s = s.replace(/'/g, "'");
return s;
}
<mt:Ignore>
/***
* Serializes a user object into a string, suitable for storing as a cookie.
*/
</mt:Ignore>
function mtBakeUserCookie(u) {
var str = "";
if (u.name) str += "name:'" + mtEscapeJS(u.name) + "';";
if (u.url) str += "url:'" + mtEscapeJS(u.url) + "';";
if (u.email) str += "email:'" + mtEscapeJS(u.email) + "';";
if (u.auth_type) str += "auth_type:'" + u.auth_type + "';";
if (u.is_authenticated) str += "is_authenticated:'1';";
if (u.profile) str += "profile:'" + mtEscapeJS(u.profile) + "';";
if (u.userpic) str += "userpic:'" + mtEscapeJS(u.userpic) + "';";
if (u.sid) str += "sid:'" + mtEscapeJS(u.sid) + "';";
str += "is_trusted:'" + (u.is_trusted ? "1" : "0") + "';";
str += "is_author:'" + (u.is_author ? "1" : "0") + "';";
str += "is_banned:'" + (u.is_banned ? "1" : "0") + "';";
str += "can_post:'" + (u.can_post ? "1" : "0") + "';";
str += "can_comment:'" + (u.can_comment ? "1" : "0") + "';";
str = str.replace(/;$/, '');
return str;
}
<mt:Ignore>
/***
* Unserializes a user cookie and returns a user object with the restored
* state.
*/
</mt:Ignore>
function mtUnbakeUserCookie(s) {
if (!s) return;
var u = {};
var m;
while (m = s.match(/^((name|url|email|auth_type|is_authenticated|profile|userpic|sid|is_trusted|is_author|is_banned|can_post|can_comment):'([^']+?)';?)/)) {
s = s.substring(m[1].length);
if (m[2].match(/^(is|can)_/)) // boolean fields
u[m[2]] = m[3] == '1' ? true : false;
else
u[m[2]] = mtUnescapeJS(m[3]);
}
if (u.is_authenticated) {
u.is_anonymous = false;
} else {
u.is_anonymous = true;
u.can_post = false;
u.is_author = false;
u.is_banned = false;
u.is_trusted = false;
}
return u;
}
<mt:Ignore>
/***
* Retrieves an object of the currently logged in user's state.
* If no user is logged in or cookied, this will return null.
*/
</mt:Ignore>
function mtGetUser() {
if (!user) {
var cookie = mtGetCookie(mtCookieName);
if (!cookie) return;
user = mtUnbakeUserCookie(cookie);
if (! user) {
user = {};
user.is_anonymous = true;
user.can_post = false;
user.is_author = false;
user.is_banned = false;
user.is_trusted = false;
}
}
return user;
}
<mt:Ignore>
/***
* Issues a request to the MT comment script to retrieve the currently
* logged-in user (if any).
*/
</mt:Ignore>
var mtFetchedUser = false;
<mt:IfBlog>
function mtFetchUser(cb) {
if (!cb) cb = 'mtSetUser';
if ( ( cb == 'mtSetUser' ) && mtGetUser() ) {
var url = document.URL;
url = url.replace(/#.+$/, '');
url += '#comments-open';
location.href = url;
} else {
// we aren't using AJAX for this, since we may have to request
// from a different domain. JSONP to the rescue.
mtFetchedUser = true;
var script = document.createElement('script');
var ts = new Date().getTime();
script.src = '<$mt:CGIPath$><$mt:CommentScript$>?__mode=session_js&blog_id=<$mt:BlogID$>&jsonp=' + cb + '&ts=' + ts;
(document.getElementsByTagName('head'))[0].appendChild(script);
}
}
</mt:IfBlog>
<mt:Ignore>
/***
* Called when the 'Remember me' checkbox is changed. If the checkbox
* is cleared, the cached user cookie is immediately cleared.
*/
</mt:Ignore>
function mtRememberMeOnClick(b) {
if (!b.checked)
mtClearUser(b.form);
return true;
}
<mt:Ignore>
/***
* Called when comment form is sent.
* Required parameter: Form DOM object of comment form.
* If form has a 'bakecookie' member, it will be used to signal
* storing the anonymous commenter information to a cookie.
* If form has a 'armor' member, it will be used to store
* a token that is checked by the comment script.
*/
</mt:Ignore>
<mt:IfBlog>
var mtRequestSubmitted = false;
function mtCommentOnSubmit(f) {
if (!mtRequestSubmitted) {
mtRequestSubmitted = true;
if (f.armor)
f.armor.value = '<$mt:BlogSitePath encode_sha1="1"$>';
if (f.bakecookie && f.bakecookie.checked)
mtSaveUser(f);
// disable submit buttons
if (f.preview_button) f.preview_button.disabled = true;
if (f.post) f.post.disabled = true;
var u = mtGetUser();
if ( !is_preview && ( u && u.is_authenticated ) ) {
// validate session; then submit
mtFetchedUser = false;
mtFetchUser('mtCommentSessionVerify');
return false;
}
return true;
}
return false;
}
function mtCommentSessionVerify(app_user) {
var u = mtGetUser();
var f = document['comments_form'];
if ( u && app_user && app_user.sid && ( u.sid == app_user.sid ) ) {
f.submit();
} else {
alert('Your session has expired. Please sign in again to comment.');
mtClearUser();
mtFireEvent('usersignin');
<mt:IfRegistrationRequired>
mtShow('comments-form');
mtHide('comments-open-footer');
</mt:IfRegistrationRequired>
}
}
function mtUserOnLoad() {
var u = mtGetUser();
// if the user is authenticated, hide the 'anonymous' fields
// and any captcha input if already shown
if ( document.getElementById('comments-form')) {
if ( u && u.is_authenticated ) {
mtShow('comments-form');
mtHide('comments-open-data');
if (mtCaptchaVisible)
mtHide('comments-open-captcha');
} else {
<mt:IfRegistrationRequired>
mtHide('comments-form');
</mt:IfRegistrationRequired>
}
if ( u && u.is_banned )
mtHide('comments-form');
// if we're previewing a comment, make sure the captcha
// field is visible
if (is_preview)
mtShowCaptcha();
else
mtShowGreeting();
// populate anonymous comment fields if user is cookied as anonymous
var cf = document['comments_form'];
if (cf) {
if (u && u.is_anonymous) {
if (u.email) cf.email.value = u.email;
if (u.name) cf.author.value = u.name;
if (u.url) cf.url.value = u.url;
if (cf.bakecookie)
cf.bakecookie.checked = u.name || u.email;
} else {
if (u && u.sid && cf.sid)
cf.sid.value = u.sid;
}
if (cf.post.disabled)
cf.post.disabled = false;
if (cf.preview_button.disabled)
cf.preview_button.disabled = false;
mtRequestSubmitted = false;
}
}
}
</mt:IfBlog>
<mt:Ignore>
/***
* Called when an entry archive page is loaded.
* This routine controls which elements of the comment form are shown
* or hidden, depending on commenter type and blog configuration.
*/
</mt:Ignore>
<mt:IfBlog>
function mtEntryOnLoad() {
<mt:Unless tag="IfPingsAccepted">mtHide('trackbacks-info');</mt:Unless>
<mt:Unless tag="IfCommentsAccepted">mtHide('comments-open');</mt:Unless>
mtFireEvent('usersignin');
}
function mtEntryOnUnload() {
if (mtRequestSubmitted) {
var cf = document['comments_form'];
if (cf) {
if (cf.post && cf.post.disabled)
cf.post.disabled = false;
if (cf.preview_button && cf.preview_button.disabled)
cf.preview_button.disabled = false;
}
mtRequestSubmitted = false;
}
return true;
}
mtAttachEvent('usersignin', mtUserOnLoad);
</mt:IfBlog>
<mt:Ignore>
/***
* Handles the action of the "Sign in" link. First clears any existing
* user cookie, then directs to the MT comment script to sign the user in.
*/
</mt:Ignore>
function mtSignIn() {
var doc_url = document.URL;
doc_url = doc_url.replace(/#.+/, '');
var url = '<$mt:SignInLink$>';
if (is_preview) {
if ( document['comments_form'] ) {
var entry_id = document['comments_form'].entry_id.value;
url += '&entry_id=' + entry_id;
} else {
url += '&return_url=<$mt:BlogURL encode_url="1"$>';
}
} else {
url += '&return_url=' + encodeURIComponent(doc_url);
}
mtClearUser();
location.href = url;
}
function mtSignInOnClick(sign_in_element) {
var el;
if (sign_in_element) {
// display throbber
el = document.getElementById(sign_in_element);
if (!el) // legacy MT 4.x element id
el = document.getElementById('comment-form-external-auth');
}
if (el)
el.innerHTML = 'Signing in... <span class="status-indicator"> </span>';
mtClearUser(); // clear any 'anonymous' user cookie to allow sign in
mtFetchUser('mtSetUserOrLogin');
return false;
}
function mtSetUserOrLogin(u) {
if (u && u.is_authenticated) {
mtSetUser(u);
} else {
// user really isn't logged in; so let's do this!
mtSignIn();
}
}
<mt:Ignore>
/***
* Handles sign out from the web site.
* First clears any existing user cookie, then direts to the MT comment
* script to sign the user out.
*/
</mt:Ignore>
function mtSignOut(entry_id) {
mtClearUser();
var doc_url = document.URL;
doc_url = doc_url.replace(/#.+/, '');
var url = '<$mt:SignOutLink$>';
if (is_preview) {
if ( document['comments_form'] ) {
var entry_id = document['comments_form'].entry_id.value;
url += '&entry_id=' + entry_id;
} else {
url += '&return_url=<$mt:BlogURL encode_url="1"$>';
}
} else {
url += '&return_url=' + encodeURIComponent(doc_url);
}
location.href = url;
}
<mt:Ignore>
/***
* Handles the action of the "Sign out" link.
*/
</mt:Ignore>
function mtSignOutOnClick() {
mtSignOut();
return false;
}
<mt:Ignore>
/***
* Handles the display of the greeting message, depending on what kind of
* user is logged in and blog comment policy.
*/
</mt:Ignore>
<mt:IfBlog>
function mtShowGreeting() {
<mt:IfRegistrationAllowed>
var reg_reqd = <mt:IfRegistrationRequired>true<mt:Else>false</mt:IfRegistrationRequired>;
var cf = document['comments_form'];
if (!cf) return;
var el = document.getElementById('comment-greeting');
if (!el) // legacy MT 4.x element id
el = document.getElementById('comment-form-external-auth');
if (!el) return;
var eid = cf.entry_id;
var entry_id;
if (eid) entry_id = eid.value;
var phrase;
var u = mtGetUser();
if ( u && u.is_authenticated ) {
if ( u.is_banned ) {
phrase = 'You do not have permission to comment on this blog. (\<a href=\"javas\cript:void(0);\" onclick=\"return mtSignOutOnClick();\"\>sign out\<\/a\>)';
} else {
var user_link;
<mt:ignore>
if ( u.is_author ) {
user_link = '<a href="<$mt:CGIPath$><$mt:CommentScript$>?__mode=edit_profile&return_url=' + encodeURIComponent( location.href );
user_link += '">' + u.name + '</a>';
} else {
// registered user, but not a user with posting rights
if (u.url)
user_link = '<a href="' + u.url + '">' + u.name + '</a>';
else
user_link = u.name;
}
</mt:ignore>
var url;
url = '<$MTCGIPath$><$MTUserProfilesScript$>?__mode=edit_userprofile&blog_id=<mt:BlogID>';
if (entry_id) {
url += '&entry_id=' + entry_id;
} else {
url += '&static=1';
}
var content = '<span id="commenter-image"> </span> Welcome, ';
if (url) {
content += '<strong>' + u.name + '</strong> (<a href="' + url + '">Edit Profile</a>)';
} else {
content += u.name;
}
content += '. Now you can comment. (\<a href=\"javas\cript:void(0)\" onclick=\"return mtSignOutOnClick();\"\>sign out\<\/a\>)';
phrase = content;
<mt:ignore>
// TBD: supplement phrase with userpic if one is available.
phrase = 'Thanks for signing in, __NAME__. (\<a href=\"javas\cript:void(0)\" onclick=\"return mtSignOutOnClick();\"\>sign out\<\/a\>)';
phrase = phrase.replace(/__NAME__/, user_link);
</mt:ignore>
}
} else {
if (reg_reqd) {
phrase = '\<a href=\"javas\cript:void(0)\" onclick=\"return mtSignInOnClick(\'comment-greeting\')\"\>Sign in\<\/a\> to comment.';
} else {
phrase = '\<a href=\"javas\cript:void(0)\" onclick=\"return mtSignInOnClick(\'comment-greeting\')\"\>Sign in\<\/a\> to comment, or comment anonymously.';
}
}
el.innerHTML = phrase;
<MTIfUserProfilesPro>
getImage();
</MTIfUserProfilesPro>
<mt:Else>
mtShowCaptcha();
</mt:IfRegistrationAllowed>
}
</mt:IfBlog>
<mt:Ignore>
/***
* Handles the action of the 'Reply' links.
*/
</mt:Ignore>
function mtReplyCommentOnClick(parent_id, author) {
mtShow('comment-form-reply');
var checkbox = document.getElementById('comment-reply');
var label = document.getElementById('comment-reply-label');
var text = document.getElementById('comment-text');
// Populate label with new values
var reply_text = 'Replying to \<a href=\"#comment-__PARENT__\" onclick=\"location.href=this.href; return false\"\>comment from __AUTHOR__\<\/a\>';
reply_text = reply_text.replace(/__PARENT__/, parent_id);
reply_text = reply_text.replace(/__AUTHOR__/, author);
label.innerHTML = reply_text;
checkbox.value = parent_id;
checkbox.checked = true;
try {
// text field may be hidden
text.focus();
} catch(e) {
}
mtSetCommentParentID();
}
<mt:Ignore>
/***
* Sets the parent comment ID when replying to a comment.
*/
</mt:Ignore>
function mtSetCommentParentID() {
var checkbox = document.getElementById('comment-reply');
var parent_id_field = document.getElementById('comment-parent-id');
if (!checkbox || !parent_id_field) return;
var pid = 0;
if (checkbox.checked == true)
pid = checkbox.value;
parent_id_field.value = pid;
}
<mt:Ignore>
/***
* Persists a copy of the current user cookie into the browser cookie stash.
*/
</mt:Ignore>
function mtSaveUser(f) {
// We can't reliably store the user cookie during a preview.
if (is_preview) return;
var u = mtGetUser();
if (f && (!u || u.is_anonymous)) {
if ( !u ) {
u = {};
u.is_authenticated = false;
u.can_comment = true;
u.is_author = false;
u.is_banned = false;
u.is_anonymous = true;
u.is_trusted = false;
}
if (f.author != undefined) u.name = f.author.value;
if (f.email != undefined) u.email = f.email.value;
if (f.url != undefined) u.url = f.url.value;
}
if (!u) return;
var cache_period = mtCookieTimeout * 1000;
// cache anonymous user info for a long period if the
// user has requested to be remembered
if (u.is_anonymous && f && f.bakecookie && f.bakecookie.checked)
cache_period = 365 * 24 * 60 * 60 * 1000;
var now = new Date();
mtFixDate(now);
now.setTime(now.getTime() + cache_period);
var cmtcookie = mtBakeUserCookie(u);
mtSetCookie(mtCookieName, cmtcookie, now, mtCookiePath, mtCookieDomain,
location.protocol == 'https:');
}
<mt:Ignore>
/***
* Clears the blog-side user cookie.
*/
</mt:Ignore>
function mtClearUser() {
user = null;
mtDeleteCookie(mtCookieName, mtCookiePath, mtCookieDomain,
location.protocol == 'https:');
}
<mt:Ignore>
/***
* Sets a browser cookie.
*/
</mt:Ignore>
function mtSetCookie(name, value, expires, path, domain, secure) {
if (domain && domain.match(/^\.?localhost$/))
domain = null;
var curCookie = name + "=" + escape(value) +
(expires ? "; expires=" + expires.toGMTString() : "") +
(path ? "; path=" + path : "") +
(domain ? "; domain=" + domain : "") +
(secure ? "; secure" : "");
document.cookie = curCookie;
}
<mt:Ignore>
/***
* Retrieves a browser cookie.
*/
</mt:Ignore>
function mtGetCookie(name) {
var prefix = name + '=';
var c = document.cookie;
var cookieStartIndex = c.indexOf(prefix);
if (cookieStartIndex == -1)
return '';
var cookieEndIndex = c.indexOf(";", cookieStartIndex + prefix.length);
if (cookieEndIndex == -1)
cookieEndIndex = c.length;
return unescape(c.substring(cookieStartIndex + prefix.length, cookieEndIndex));
}
<mt:Ignore>
/***
* Deletes a browser cookie.
*/
</mt:Ignore>
function mtDeleteCookie(name, path, domain, secure) {
if (mtGetCookie(name)) {
if (domain && domain.match(/^\.?localhost$/))
domain = null;
document.cookie = name + "=" +
(path ? "; path=" + path : "") +
(domain ? "; domain=" + domain : "") +
(secure ? "; secure" : "") +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
function mtFixDate(date) {
var skew = (new Date(0)).getTime();
if (skew > 0)
date.setTime(date.getTime() - skew);
}
<mt:Ignore>
/***
* Returns a XMLHttpRequest object (for Ajax operations).
*/
</mt:Ignore>
function mtGetXmlHttp() {
if ( !window.XMLHttpRequest ) {
window.XMLHttpRequest = function() {
var types = [
"Microsoft.XMLHTTP",
"MSXML2.XMLHTTP.5.0",
"MSXML2.XMLHTTP.4.0",
"MSXML2.XMLHTTP.3.0",
"MSXML2.XMLHTTP"
];
for ( var i = 0; i < types.length; i++ ) {
try {
return new ActiveXObject( types[ i ] );
} catch( e ) {}
}
return undefined;
};
}
if ( window.XMLHttpRequest )
return new XMLHttpRequest();
}
// BEGIN: fast browser onload init
// Modifications by David Davis, DWD
// Dean Edwards/Matthias Miller/John Resig
// http://dean.edwards.name/weblog/2006/06/again/?full#comment5338
function mtInit() {
// quit if this function has already been called
if (arguments.callee.done) return;
// flag this function so we don't do the same thing twice
arguments.callee.done = true;
// kill the timer
// DWD - check against window
if ( window._timer ) clearInterval(window._timer);
// DWD - fire the window onload now, and replace it
if ( window.onload && ( window.onload !== window.mtInit ) ) {
window.onload();
window.onload = function() {};
}
}
/* for Mozilla/Opera9 */
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", mtInit, false);
}
/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>");
var script = document.getElementById("__ie_onload");
script.onreadystatechange = function() {
if (this.readyState == "complete") {
mtInit(); // call the onload handler
}
};
/*@end @*/
/* for Safari */
if (/WebKit/i.test(navigator.userAgent)) { // sniff
_timer = setInterval(function() {
if (/loaded|complete/.test(document.readyState)) {
mtInit(); // call the onload handler
}
}, 10);
}
/* for other browsers */
window.onload = mtInit;
// END: fast browser onload init
<mt:IfBlog>
<mt:IfRegistrationAllowed>
/***
* If request contains a '#_login' or '#_logout' hash, use this to
* also delete the blog-side user cookie, since we're coming back from
* a login, logout or edit profile operation.
*/
var clearCookie = ( window.location.hash && window.location.hash.match( /^#_log(in|out)/ ) ) ? true : false;
if (clearCookie) {
// clear any logged in state
mtClearUser();
if (RegExp.$1 == 'in')
mtFetchUser();
} else {
<mt:Ignore>
/***
* Uncondition this call to fetch the current user state (if available)
* from MT upon page load if no user cookie is already present.
* This is okay if you have a private install, such as an Intranet;
* not recommended for public web sites!
*/
</mt:Ignore>
if ( is_preview && !user )
mtFetchUser();
}
</mt:IfRegistrationAllowed>
</mt:IfBlog>
<MTIfUserProfilesPro>
function getImage(){
var commenter_img = mtGetCookie('commenter_img');
if (commenter_img == 'none') {
return false;
}
if (commenter_img) {
var img_div = document.getElementById('commenter-image');
if (img_div) {
img_div.innerHTML = '<img src="' + commenter_img + '" />';
}
return false;
}
var handleSuccess = function(o){
var div = document.getElementById('commenter-image');
if(o.responseText !== undefined && o.responseText !== 'none' && div ){
div.innerHTML = o.responseText;
}
};
var handleFailure = function(o){
};
var callback =
{
success:handleSuccess,
failure:handleFailure
};
var sUrl = "<MTCGIRelativeURL>" + "<MTUserProfilesScript>";
var postData = "__mode=get_image";
var request = YAHOO.util.Connect.asyncRequest('POST', sUrl, callback, postData);
return false;
}
</MTIfUserProfilesPro>