2010-07-25 08:20:20 +02:00
|
|
|
|
2010-08-03 04:06:36 +02:00
|
|
|
<script language="javascript" type="text/javascript" src="$baseurl/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
|
|
|
<script language="javascript" type="text/javascript">
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2011-01-31 23:21:23 +01:00
|
|
|
var editor;
|
2011-05-02 04:50:00 +02:00
|
|
|
var textlen = 0;
|
2011-01-31 23:21:23 +01:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
tinyMCE.init({
|
|
|
|
theme : "advanced",
|
2010-07-06 14:07:28 +02:00
|
|
|
mode : "specific_textareas",
|
2010-07-30 15:09:20 +02:00
|
|
|
editor_selector: /(profile-jot-text|prvmail-text)/,
|
2011-01-31 23:21:23 +01:00
|
|
|
plugins : "bbcode,paste",
|
2011-02-01 08:06:45 +01:00
|
|
|
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
2010-07-02 01:48:07 +02:00
|
|
|
theme_advanced_buttons2 : "",
|
|
|
|
theme_advanced_buttons3 : "",
|
|
|
|
theme_advanced_toolbar_location : "top",
|
|
|
|
theme_advanced_toolbar_align : "center",
|
2010-08-12 10:47:08 +02:00
|
|
|
theme_advanced_blockformats : "blockquote,code",
|
2011-01-31 23:21:23 +01:00
|
|
|
paste_text_sticky : true,
|
2010-07-02 01:48:07 +02:00
|
|
|
entity_encoding : "raw",
|
|
|
|
add_unload_trigger : false,
|
|
|
|
remove_linebreaks : false,
|
2010-11-22 03:16:59 +01:00
|
|
|
force_p_newlines : false,
|
|
|
|
force_br_newlines : true,
|
|
|
|
forced_root_block : '',
|
2010-08-03 04:06:36 +02:00
|
|
|
convert_urls: false,
|
2010-08-07 11:53:59 +02:00
|
|
|
content_css: "$baseurl/view/custom_tinymce.css",
|
|
|
|
theme_advanced_path : false,
|
|
|
|
setup : function(ed) {
|
2011-03-21 08:21:35 +01:00
|
|
|
//Character count
|
2010-08-07 11:53:59 +02:00
|
|
|
ed.onKeyUp.add(function(ed, e) {
|
|
|
|
var txt = tinyMCE.activeEditor.getContent();
|
2011-05-20 05:41:40 +02:00
|
|
|
textlen = txt.length;
|
2011-05-02 04:50:00 +02:00
|
|
|
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
|
|
|
|
$('#profile-jot-desc').html(ispublic);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#profile-jot-desc').html(' ');
|
|
|
|
}
|
2011-05-20 05:11:09 +02:00
|
|
|
|
2011-05-02 04:50:00 +02:00
|
|
|
if(textlen <= 140) {
|
2010-08-07 11:53:59 +02:00
|
|
|
$('#character-counter').removeClass('red');
|
|
|
|
$('#character-counter').removeClass('orange');
|
|
|
|
$('#character-counter').addClass('grey');
|
|
|
|
}
|
2011-05-02 04:50:00 +02:00
|
|
|
if((textlen > 140) && (textlen <= 420)) {
|
2010-08-07 11:53:59 +02:00
|
|
|
$('#character-counter').removeClass('grey');
|
|
|
|
$('#character-counter').removeClass('red');
|
|
|
|
$('#character-counter').addClass('orange');
|
|
|
|
}
|
2011-05-02 04:50:00 +02:00
|
|
|
if(textlen > 420) {
|
2010-08-07 11:53:59 +02:00
|
|
|
$('#character-counter').removeClass('grey');
|
|
|
|
$('#character-counter').removeClass('orange');
|
|
|
|
$('#character-counter').addClass('red');
|
|
|
|
}
|
2011-05-02 04:50:00 +02:00
|
|
|
$('#character-counter').text(textlen);
|
2011-01-31 23:21:23 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
ed.onInit.add(function(ed) {
|
|
|
|
ed.pasteAsPlainText = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
});
|
2010-07-06 06:39:55 +02:00
|
|
|
|
2010-07-23 05:22:03 +02:00
|
|
|
</script>
|
|
|
|
<script type="text/javascript" src="include/ajaxupload.js" ></script>
|
|
|
|
<script>
|
2011-05-02 04:50:00 +02:00
|
|
|
var ispublic = '$ispublic';
|
2010-07-23 05:22:03 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
var uploader = new window.AjaxUpload(
|
|
|
|
'wall-image-upload',
|
2010-12-06 03:08:36 +01:00
|
|
|
{ action: 'wall_upload/$nickname',
|
2010-07-23 07:41:45 +02:00
|
|
|
name: 'userfile',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
|
|
|
onComplete: function(file,response) {
|
2010-08-05 05:03:38 +02:00
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,response);
|
2010-07-23 07:41:45 +02:00
|
|
|
$('#profile-rotator').hide();
|
|
|
|
}
|
2010-07-23 05:22:03 +02:00
|
|
|
}
|
|
|
|
);
|
2011-05-25 07:40:52 +02:00
|
|
|
var file_uploader = new window.AjaxUpload(
|
|
|
|
'wall-file-upload',
|
|
|
|
{ action: 'wall_attach/$nickname',
|
|
|
|
name: 'userfile',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
|
|
|
onComplete: function(file,response) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,response);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2010-09-18 10:52:44 +02:00
|
|
|
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
|
|
|
var selstr;
|
|
|
|
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
|
|
|
selstr = $(this).text();
|
2011-04-28 19:01:35 +02:00
|
|
|
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
|
2011-05-20 04:55:34 +02:00
|
|
|
$('#jot-public').hide();
|
2011-02-11 13:32:38 +01:00
|
|
|
$('.profile-jot-net input').attr('disabled', 'disabled');
|
2010-09-18 10:52:44 +02:00
|
|
|
});
|
2011-02-11 13:32:38 +01:00
|
|
|
if(selstr == null) {
|
2011-04-28 19:01:35 +02:00
|
|
|
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
|
2011-05-20 04:55:34 +02:00
|
|
|
$('#jot-public').show();
|
2011-02-11 13:32:38 +01:00
|
|
|
$('.profile-jot-net input').attr('disabled', false);
|
|
|
|
}
|
2010-09-18 10:52:44 +02:00
|
|
|
|
|
|
|
}).trigger('change');
|
2010-07-23 05:22:03 +02:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2010-07-23 07:41:45 +02:00
|
|
|
function jotGetLink() {
|
2011-03-21 08:21:35 +01:00
|
|
|
reply = prompt("$linkurl");
|
2010-07-23 08:21:40 +02:00
|
|
|
if(reply && reply.length) {
|
2011-04-10 12:36:12 +02:00
|
|
|
reply = bin2hex(reply);
|
2010-07-23 08:21:40 +02:00
|
|
|
$('#profile-rotator').show();
|
|
|
|
$.get('parse_url?url=' + reply, function(data) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
2010-07-23 07:41:45 +02:00
|
|
|
}
|
|
|
|
|
2010-08-20 05:52:49 +02:00
|
|
|
function jotGetVideo() {
|
2011-03-21 08:21:35 +01:00
|
|
|
reply = prompt("$utubeurl");
|
2010-08-20 05:52:49 +02:00
|
|
|
if(reply && reply.length) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-17 05:14:22 +01:00
|
|
|
function jotVideoURL() {
|
2011-03-21 08:21:35 +01:00
|
|
|
reply = prompt("$vidurl");
|
2011-03-17 05:14:22 +01:00
|
|
|
if(reply && reply.length) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,'[video]' + reply + '[/video]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotAudioURL() {
|
2011-03-21 08:21:35 +01:00
|
|
|
reply = prompt("$audurl");
|
2011-03-17 05:14:22 +01:00
|
|
|
if(reply && reply.length) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,'[audio]' + reply + '[/audio]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-20 23:33:15 +02:00
|
|
|
function jotGetLocation() {
|
2011-03-21 08:21:35 +01:00
|
|
|
reply = prompt("$whereareu", $('#jot-location').val());
|
2010-08-20 23:33:15 +02:00
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#jot-location').val(reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-30 03:57:26 +02:00
|
|
|
function jotTitle() {
|
|
|
|
reply = prompt("$title", $('#jot-title').val());
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#jot-title').val(reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-17 03:36:59 +01:00
|
|
|
function jotShare(id) {
|
|
|
|
$('#like-rotator-' + id).show();
|
|
|
|
$.get('share/' + id, function(data) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
|
|
|
$('#like-rotator-' + id).hide();
|
|
|
|
$(window).scrollTop(0);
|
|
|
|
});
|
|
|
|
}
|
2010-08-20 23:33:15 +02:00
|
|
|
|
2010-08-03 04:06:36 +02:00
|
|
|
function linkdropper(event) {
|
|
|
|
var linkFound = event.dataTransfer.types.contains("text/uri-list");
|
|
|
|
if(linkFound)
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2010-07-24 15:56:02 +02:00
|
|
|
|
2010-08-03 04:06:36 +02:00
|
|
|
function linkdrop(event) {
|
|
|
|
var reply = event.dataTransfer.getData("text/uri-list");
|
|
|
|
event.target.textContent = reply;
|
|
|
|
event.preventDefault();
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#profile-rotator').show();
|
|
|
|
$.get('parse_url?url=' + reply, function(data) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2010-07-23 07:41:45 +02:00
|
|
|
|
2010-10-20 09:33:17 +02:00
|
|
|
function jotClearLocation() {
|
|
|
|
$('#jot-coord').val('');
|
|
|
|
$('#profile-nolocation-wrapper').hide();
|
|
|
|
}
|
|
|
|
|
2010-10-20 05:52:05 +02:00
|
|
|
$geotag
|
2010-09-17 12:10:19 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
</script>
|
|
|
|
|