Updated frost(-mobile) themes
They got removed from the Friendica main repository with the 2018.05 release and should reflect that state in history with the update they got anyhow during the year of deprecation.
This commit is contained in:
parent
aa199e931f
commit
904562eadc
59 changed files with 715 additions and 1553 deletions
|
@ -47,21 +47,6 @@
|
||||||
$(function() {
|
$(function() {
|
||||||
$.ajaxSetup({cache: false});
|
$.ajaxSetup({cache: false});
|
||||||
|
|
||||||
//collapseHeight();
|
|
||||||
|
|
||||||
/* setup tooltips *//*
|
|
||||||
$("a,.tt").each(function(){
|
|
||||||
var e = $(this);
|
|
||||||
var pos="bottom";
|
|
||||||
if (e.hasClass("tttop")) pos="top";
|
|
||||||
if (e.hasClass("ttbottom")) pos="bottom";
|
|
||||||
if (e.hasClass("ttleft")) pos="left";
|
|
||||||
if (e.hasClass("ttright")) pos="right";
|
|
||||||
e.tipTip({defaultPosition: pos, edgeOffset: 8});
|
|
||||||
});*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* setup onoff widgets */
|
/* setup onoff widgets */
|
||||||
$(".onoff input").each(function(){
|
$(".onoff input").each(function(){
|
||||||
val = $(this).val();
|
val = $(this).val();
|
||||||
|
@ -77,12 +62,8 @@
|
||||||
$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
|
$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
|
||||||
$("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden");
|
$("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden");
|
||||||
input.val(val);
|
input.val(val);
|
||||||
//console.log(id);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/* setup field_richtext */
|
|
||||||
/*setupFieldRichtext();*/
|
|
||||||
|
|
||||||
/* popup menus */
|
/* popup menus */
|
||||||
function close_last_popup_menu(e) {
|
function close_last_popup_menu(e) {
|
||||||
|
|
||||||
|
@ -562,7 +543,6 @@
|
||||||
function preview_post() {
|
function preview_post() {
|
||||||
$("#jot-preview").val("1");
|
$("#jot-preview").val("1");
|
||||||
$("#jot-preview-content").show();
|
$("#jot-preview-content").show();
|
||||||
tinyMCE.triggerSave();
|
|
||||||
$.post(
|
$.post(
|
||||||
"item",
|
"item",
|
||||||
$("#profile-jot-form").serialize(),
|
$("#profile-jot-form").serialize(),
|
||||||
|
@ -650,58 +630,6 @@ function notifyMarkAll() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// code from http://www.tinymce.com/wiki.php/How-to_implement_a_custom_file_browser
|
|
||||||
function fcFileBrowser (field_name, url, type, win) {
|
|
||||||
/* TODO: If you work with sessions in PHP and your client doesn't accept cookies you might need to carry
|
|
||||||
the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5").
|
|
||||||
These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */
|
|
||||||
|
|
||||||
|
|
||||||
var cmsURL = baseurl+"/fbrowser/"+type+"/";
|
|
||||||
|
|
||||||
tinyMCE.activeEditor.windowManager.open({
|
|
||||||
file : cmsURL,
|
|
||||||
title : 'File Browser',
|
|
||||||
width : 420, // Your dimensions may differ - toy around with them!
|
|
||||||
height : 400,
|
|
||||||
resizable : "yes",
|
|
||||||
inline : "yes", // This parameter only has an effect if you use the inlinepopups plugin!
|
|
||||||
close_previous : "no"
|
|
||||||
}, {
|
|
||||||
window : win,
|
|
||||||
input : field_name
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function setupFieldRichtext(){
|
|
||||||
tinyMCE.init({
|
|
||||||
theme : "advanced",
|
|
||||||
mode : "specific_textareas",
|
|
||||||
editor_selector: "fieldRichtext",
|
|
||||||
plugins : "bbcode,paste, inlinepopups",
|
|
||||||
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
|
||||||
theme_advanced_buttons2 : "",
|
|
||||||
theme_advanced_buttons3 : "",
|
|
||||||
theme_advanced_toolbar_location : "top",
|
|
||||||
theme_advanced_toolbar_align : "center",
|
|
||||||
theme_advanced_blockformats : "blockquote,code",
|
|
||||||
paste_text_sticky : true,
|
|
||||||
entity_encoding : "raw",
|
|
||||||
add_unload_trigger : false,
|
|
||||||
remove_linebreaks : false,
|
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
|
||||||
convert_urls: false,
|
|
||||||
content_css: baseurl+"/view/custom_tinymce.css",
|
|
||||||
theme_advanced_path : false,
|
|
||||||
file_browser_callback : "fcFileBrowser",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sprintf in javascript
|
* sprintf in javascript
|
||||||
* "{0} and {1}".format('zero','uno');
|
* "{0} and {1}".format('zero','uno');
|
||||||
|
|
|
@ -1,49 +1,10 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
|
||||||
/* enable tinymce on focus and click */
|
/* enable editor on focus and click */
|
||||||
$("#profile-jot-text").focus(enableOnUser);
|
$("#profile-jot-text").focus(enableOnUser);
|
||||||
$("#profile-jot-text").click(enableOnUser);
|
$("#profile-jot-text").click(enableOnUser);
|
||||||
|
|
||||||
/*$('html').click(function() { $("#nav-notifications-menu" ).hide(); });*/
|
|
||||||
|
|
||||||
/*$('.group-edit-icon').hover(
|
|
||||||
function() {
|
|
||||||
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
|
||||||
function() {
|
|
||||||
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
|
|
||||||
);
|
|
||||||
|
|
||||||
$('.sidebar-group-element').hover(
|
|
||||||
function() {
|
|
||||||
id = $(this).attr('id');
|
|
||||||
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
|
|
||||||
|
|
||||||
function() {
|
|
||||||
id = $(this).attr('id');
|
|
||||||
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
$('.savedsearchdrop').hover(
|
|
||||||
function() {
|
|
||||||
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
|
||||||
function() {
|
|
||||||
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
|
|
||||||
);
|
|
||||||
|
|
||||||
$('.savedsearchterm').hover(
|
|
||||||
function() {
|
|
||||||
id = $(this).attr('id');
|
|
||||||
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
|
|
||||||
|
|
||||||
function() {
|
|
||||||
id = $(this).attr('id');
|
|
||||||
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
|
|
||||||
);*/
|
|
||||||
|
|
||||||
|
|
||||||
$('#event-share-checkbox').change(function() {
|
$('#event-share-checkbox').change(function() {
|
||||||
|
|
||||||
if ($('#event-share-checkbox').is(':checked')) {
|
if ($('#event-share-checkbox').is(':checked')) {
|
||||||
$('#acl-wrapper').show();
|
$('#acl-wrapper').show();
|
||||||
}
|
}
|
||||||
|
@ -52,7 +13,6 @@ $(document).ready(function() {
|
||||||
}
|
}
|
||||||
}).trigger('change');
|
}).trigger('change');
|
||||||
|
|
||||||
|
|
||||||
$(".popupbox").click(function () {
|
$(".popupbox").click(function () {
|
||||||
var parent = $( $(this).attr('href') ).parent();
|
var parent = $( $(this).attr('href') ).parent();
|
||||||
if (parent.css('display') == 'none') {
|
if (parent.css('display') == 'none') {
|
||||||
|
@ -68,7 +28,7 @@ $(document).ready(function() {
|
||||||
if (typeof window.AjaxUpload != "undefined") {
|
if (typeof window.AjaxUpload != "undefined") {
|
||||||
var uploader = new window.AjaxUpload(
|
var uploader = new window.AjaxUpload(
|
||||||
window.imageUploadButton,
|
window.imageUploadButton,
|
||||||
{ action: 'wall_upload/'+window.nickname+'?nomce=1',
|
{ action: 'wall_upload/' + window.nickname,
|
||||||
name: 'userfile',
|
name: 'userfile',
|
||||||
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
||||||
onComplete: function(file,response) {
|
onComplete: function(file,response) {
|
||||||
|
@ -81,7 +41,7 @@ $(document).ready(function() {
|
||||||
if ($('#wall-file-upload').length) {
|
if ($('#wall-file-upload').length) {
|
||||||
var file_uploader = new window.AjaxUpload(
|
var file_uploader = new window.AjaxUpload(
|
||||||
'wall-file-upload',
|
'wall-file-upload',
|
||||||
{ action: 'wall_attach/'+window.nickname+'?nomce=1',
|
{ action: 'wall_attach/' + window.nickname,
|
||||||
name: 'userfile',
|
name: 'userfile',
|
||||||
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
||||||
onComplete: function(file,response) {
|
onComplete: function(file,response) {
|
||||||
|
@ -129,15 +89,6 @@ $(document).ready(function() {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* if(window.autoCompleteType == "display-head") {
|
|
||||||
//$(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
||||||
// make auto-complete work in more places
|
|
||||||
//$(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
||||||
$(".comment-wwedit-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
if (window.aclType == "settings-head" || window.aclType == "photos_head" || window.aclType == "event_head") {
|
if (window.aclType == "settings-head" || window.aclType == "photos_head" || window.aclType == "event_head") {
|
||||||
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
||||||
var selstr;
|
var selstr;
|
||||||
|
@ -172,7 +123,7 @@ $(document).ready(function() {
|
||||||
if (event.item['author-name']==null) return;
|
if (event.item['author-name']==null) return;
|
||||||
switch(view.name) {
|
switch(view.name) {
|
||||||
case "month":
|
case "month":
|
||||||
element.find(".fc-event-title").html(
|
element.find(".fc-title").html(
|
||||||
"<img src='{0}' style='height:10px;width:10px'>{1} : {2}".format(
|
"<img src='{0}' style='height:10px;width:10px'>{1} : {2}".format(
|
||||||
event.item['author-avatar'],
|
event.item['author-avatar'],
|
||||||
event.item['author-name'],
|
event.item['author-name'],
|
||||||
|
@ -180,7 +131,7 @@ $(document).ready(function() {
|
||||||
));
|
));
|
||||||
break;
|
break;
|
||||||
case "agendaWeek":
|
case "agendaWeek":
|
||||||
element.find(".fc-event-title").html(
|
element.find(".fc-title").html(
|
||||||
"<img src='{0}' style='height:12px; width:12px'>{1}<p>{2}</p><p>{3}</p>".format(
|
"<img src='{0}' style='height:12px; width:12px'>{1}<p>{2}</p><p>{3}</p>".format(
|
||||||
event.item['author-avatar'],
|
event.item['author-avatar'],
|
||||||
event.item['author-name'],
|
event.item['author-name'],
|
||||||
|
@ -189,7 +140,7 @@ $(document).ready(function() {
|
||||||
));
|
));
|
||||||
break;
|
break;
|
||||||
case "agendaDay":
|
case "agendaDay":
|
||||||
element.find(".fc-event-title").html(
|
element.find(".fc-title").html(
|
||||||
"<img src='{0}' style='height:24px;width:24px'>{1}<p>{2}</p><p>{3}</p>".format(
|
"<img src='{0}' style='height:24px;width:24px'>{1}<p>{2}</p><p>{3}</p>".format(
|
||||||
event.item['author-avatar'],
|
event.item['author-avatar'],
|
||||||
event.item['author-name'],
|
event.item['author-name'],
|
||||||
|
@ -265,37 +216,18 @@ function initCrop() {
|
||||||
|
|
||||||
|
|
||||||
function showEvent(eventid) {
|
function showEvent(eventid) {
|
||||||
/* $.get(
|
|
||||||
baseurl + window.eventModuleUrl + '/?id=' + eventid,
|
|
||||||
function(data){
|
|
||||||
$.colorbox({html:data});
|
|
||||||
}
|
}
|
||||||
);*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* TinyMCE/Editor
|
* Editor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var editor = false;
|
var editor = false;
|
||||||
var textlen = 0;
|
var textlen = 0;
|
||||||
var plaintext = 'none';//window.editSelect;
|
|
||||||
//var ispublic = window.isPublic;
|
|
||||||
|
|
||||||
function initEditor(cb){
|
function initEditor(callback){
|
||||||
if (editor == false) {
|
if (editor == false) {
|
||||||
// $("#profile-jot-text-loading").show();
|
|
||||||
if(plaintext == 'none') {
|
|
||||||
// $("#profile-jot-text-loading").hide();
|
|
||||||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||||
$("#profile-jot-text").editor_autocomplete(baseurl+"/acl");
|
$("#profile-jot-text").editor_autocomplete(baseurl+"/acl");
|
||||||
editor = true;
|
|
||||||
/* $("a#jot-perms-icon").colorbox({
|
|
||||||
'inline' : true,
|
|
||||||
'transition' : 'elastic'
|
|
||||||
});*/
|
|
||||||
$("a#jot-perms-icon, a#settings-default-perms-menu").click(function () {
|
$("a#jot-perms-icon, a#settings-default-perms-menu").click(function () {
|
||||||
var parent = $("#profile-jot-acl-wrapper").parent();
|
var parent = $("#profile-jot-acl-wrapper").parent();
|
||||||
if (parent.css('display') == 'none') {
|
if (parent.css('display') == 'none') {
|
||||||
|
@ -303,170 +235,33 @@ function initEditor(cb){
|
||||||
} else {
|
} else {
|
||||||
parent.hide();
|
parent.hide();
|
||||||
}
|
}
|
||||||
// $("#profile-jot-acl-wrapper").parent().toggle();
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
$(".jothidden").show();
|
$(".jothidden").show();
|
||||||
if (typeof cb!="undefined") cb();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* tinyMCE.init({
|
|
||||||
theme : "advanced",
|
|
||||||
mode : "specific_textareas",
|
|
||||||
editor_selector: window.editSelect,
|
|
||||||
auto_focus: "profile-jot-text",
|
|
||||||
plugins : "bbcode,paste,autoresize, inlinepopups",
|
|
||||||
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
|
||||||
theme_advanced_buttons2 : "",
|
|
||||||
theme_advanced_buttons3 : "",
|
|
||||||
theme_advanced_toolbar_location : "top",
|
|
||||||
theme_advanced_toolbar_align : "center",
|
|
||||||
theme_advanced_blockformats : "blockquote,code",
|
|
||||||
gecko_spellcheck : true,
|
|
||||||
paste_text_sticky : true,
|
|
||||||
entity_encoding : "raw",
|
|
||||||
add_unload_trigger : false,
|
|
||||||
remove_linebreaks : false,
|
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
|
||||||
convert_urls: false,
|
|
||||||
content_css: "$baseurl/view/custom_tinymce.css",
|
|
||||||
theme_advanced_path : false,
|
|
||||||
file_browser_callback : "fcFileBrowser",
|
|
||||||
setup : function(ed) {
|
|
||||||
cPopup = null;
|
|
||||||
ed.onKeyDown.add(function(ed,e) {
|
|
||||||
if(cPopup !== null)
|
|
||||||
cPopup.onkey(e);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onKeyUp.add(function(ed, e) {
|
|
||||||
var txt = tinyMCE.activeEditor.getContent();
|
|
||||||
match = txt.match(/@([^ \n]+)$/);
|
|
||||||
if(match!==null) {
|
|
||||||
if(cPopup === null) {
|
|
||||||
cPopup = new ACPopup(this,baseurl+"/acl");
|
|
||||||
}
|
|
||||||
if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]);
|
|
||||||
if(! cPopup.ready) cPopup = null;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(cPopup !== null) { cPopup.close(); cPopup = null; }
|
|
||||||
}
|
|
||||||
|
|
||||||
textlen = txt.length;
|
|
||||||
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
|
|
||||||
$('#profile-jot-desc').html(ispublic);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#profile-jot-desc').html(' ');
|
|
||||||
}
|
|
||||||
|
|
||||||
//Character count
|
|
||||||
|
|
||||||
if(textlen <= 140) {
|
|
||||||
$('#character-counter').removeClass('red');
|
|
||||||
$('#character-counter').removeClass('orange');
|
|
||||||
$('#character-counter').addClass('grey');
|
|
||||||
}
|
|
||||||
if((textlen > 140) && (textlen <= 420)) {
|
|
||||||
$('#character-counter').removeClass('grey');
|
|
||||||
$('#character-counter').removeClass('red');
|
|
||||||
$('#character-counter').addClass('orange');
|
|
||||||
}
|
|
||||||
if(textlen > 420) {
|
|
||||||
$('#character-counter').removeClass('grey');
|
|
||||||
$('#character-counter').removeClass('orange');
|
|
||||||
$('#character-counter').addClass('red');
|
|
||||||
}
|
|
||||||
$('#character-counter').text(textlen);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onInit.add(function(ed) {
|
|
||||||
ed.pasteAsPlainText = true;
|
|
||||||
$("#profile-jot-text-loading").hide();
|
|
||||||
$(".jothidden").show();
|
|
||||||
if (typeof cb!="undefined") cb();
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
editor = true;
|
editor = true;
|
||||||
// setup acl popup
|
}
|
||||||
$("a#jot-perms-icon").colorbox({
|
if (typeof callback != "undefined") {
|
||||||
'inline' : true,
|
callback();
|
||||||
'transition' : 'elastic'
|
|
||||||
}); */
|
|
||||||
} else {
|
|
||||||
if (typeof cb!="undefined") cb();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function enableOnUser(){
|
function enableOnUser(){
|
||||||
if (editor) return;
|
if (editor) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
$(this).val("");
|
$(this).val("");
|
||||||
initEditor();
|
initEditor();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*function wallInitEditor() {
|
|
||||||
var plaintext = window.editSelect;
|
|
||||||
|
|
||||||
if(plaintext != 'none') {
|
|
||||||
tinyMCE.init({
|
|
||||||
theme : "advanced",
|
|
||||||
mode : "specific_textareas",
|
|
||||||
editor_selector: /(profile-jot-text|prvmail-text)/,
|
|
||||||
plugins : "bbcode,paste",
|
|
||||||
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor",
|
|
||||||
theme_advanced_buttons2 : "",
|
|
||||||
theme_advanced_buttons3 : "",
|
|
||||||
theme_advanced_toolbar_location : "top",
|
|
||||||
theme_advanced_toolbar_align : "center",
|
|
||||||
theme_advanced_blockformats : "blockquote,code",
|
|
||||||
gecko_spellcheck : true,
|
|
||||||
paste_text_sticky : true,
|
|
||||||
entity_encoding : "raw",
|
|
||||||
add_unload_trigger : false,
|
|
||||||
remove_linebreaks : false,
|
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
|
||||||
convert_urls: false,
|
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
|
||||||
//Character count
|
|
||||||
theme_advanced_path : false,
|
|
||||||
setup : function(ed) {
|
|
||||||
ed.onInit.add(function(ed) {
|
|
||||||
ed.pasteAsPlainText = true;
|
|
||||||
var editorId = ed.editorId;
|
|
||||||
var textarea = $('#'+editorId);
|
|
||||||
if (typeof(textarea.attr('tabindex')) != "undefined") {
|
|
||||||
$('#'+editorId+'_ifr').attr('tabindex', textarea.attr('tabindex'));
|
|
||||||
textarea.attr('tabindex', null);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else
|
|
||||||
$("#prvmail-text").contact_autocomplete(baseurl+"/acl");
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Jot
|
* Jot
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function addeditortext(textElem, data) {
|
function addeditortext(textElem, data) {
|
||||||
if(window.editSelect == 'none') {
|
|
||||||
var currentText = $(textElem).val();
|
var currentText = $(textElem).val();
|
||||||
$(textElem).val(currentText + data);
|
$(textElem).val(currentText + data);
|
||||||
}
|
}
|
||||||
/* else
|
|
||||||
tinyMCE.execCommand('mceInsertRawHTML',false,data);*/
|
|
||||||
}
|
|
||||||
|
|
||||||
function jotVideoURL() {
|
function jotVideoURL() {
|
||||||
reply = prompt(window.vidURL);
|
reply = prompt(window.vidURL);
|
||||||
|
@ -517,29 +312,6 @@ function jotGetLink() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*function linkdropper(event) {
|
|
||||||
var linkFound = event.dataTransfer.types.contains("text/uri-list");
|
|
||||||
if(linkFound)
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
function linkdrop(event) {
|
|
||||||
var reply = event.dataTransfer.getData("text/uri-list");
|
|
||||||
event.target.textContent = reply;
|
|
||||||
event.preventDefault();
|
|
||||||
if(reply && reply.length) {
|
|
||||||
reply = bin2hex(reply);
|
|
||||||
$('#profile-rotator').show();
|
|
||||||
$.get('parse_url?binurl=' + reply, function(data) {
|
|
||||||
//if (!editor) $("#profile-jot-text").val("");
|
|
||||||
//initEditor(function(){
|
|
||||||
addeditortext(window.jotId, data);
|
|
||||||
$('#profile-rotator').hide();
|
|
||||||
//});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
function jotClearLocation() {
|
function jotClearLocation() {
|
||||||
$('#jot-coord').val('');
|
$('#jot-coord').val('');
|
||||||
$('#profile-nolocation-wrapper').hide();
|
$('#profile-nolocation-wrapper').hide();
|
||||||
|
@ -555,24 +327,6 @@ if(typeof window.geoTag === 'function') window.geoTag();
|
||||||
|
|
||||||
function confirmDelete() { return confirm(window.delItem); }
|
function confirmDelete() { return confirm(window.delItem); }
|
||||||
|
|
||||||
/*function deleteCheckedItems() {
|
|
||||||
var checkedstr = '';
|
|
||||||
|
|
||||||
$('.item-select').each( function() {
|
|
||||||
if($(this).is(':checked')) {
|
|
||||||
if(checkedstr.length != 0) {
|
|
||||||
checkedstr = checkedstr + ',' + $(this).val();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
checkedstr = $(this).val();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
$.post('item', { dropitems: checkedstr }, function(data) {
|
|
||||||
window.location.reload();
|
|
||||||
});
|
|
||||||
}*/
|
|
||||||
|
|
||||||
function itemTag(id) {
|
function itemTag(id) {
|
||||||
reply = prompt(window.term);
|
reply = prompt(window.term);
|
||||||
if (reply && reply.length) {
|
if (reply && reply.length) {
|
||||||
|
@ -591,7 +345,6 @@ function itemTag(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function itemFiler(id) {
|
function itemFiler(id) {
|
||||||
|
|
||||||
$.get('filer/', function(data) {
|
$.get('filer/', function(data) {
|
||||||
|
|
||||||
var promptText = $('#id_term_label', data).text();
|
var promptText = $('#id_term_label', data).text();
|
||||||
|
@ -601,54 +354,16 @@ function itemFiler(id) {
|
||||||
commentBusy = true;
|
commentBusy = true;
|
||||||
$('body').css('cursor', 'wait');
|
$('body').css('cursor', 'wait');
|
||||||
$.get('filer/' + id + '?term=' + reply, NavUpdate);
|
$.get('filer/' + id + '?term=' + reply, NavUpdate);
|
||||||
/* if(timer) clearTimeout(timer);
|
|
||||||
timer = setTimeout(NavUpdate,3000);*/
|
|
||||||
liking = 1;
|
liking = 1;
|
||||||
/* $.colorbox.close();*/
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/* var bordercolor = $("input").css("border-color");
|
|
||||||
|
|
||||||
$.get('filer/', function(data){
|
|
||||||
$.colorbox({html:data});
|
|
||||||
$("#id_term").keypress(function(){
|
|
||||||
$(this).css("border-color",bordercolor);
|
|
||||||
})
|
|
||||||
$("#select_term").change(function(){
|
|
||||||
$("#id_term").css("border-color",bordercolor);
|
|
||||||
})
|
|
||||||
|
|
||||||
$("#filer_save").click(function(e){
|
|
||||||
e.preventDefault();
|
|
||||||
reply = $("#id_term").val();
|
|
||||||
if(reply && reply.length) {
|
|
||||||
commentBusy = true;
|
|
||||||
$('body').css('cursor', 'wait');
|
|
||||||
$.get('filer/' + id + '?term=' + reply);
|
|
||||||
if(timer) clearTimeout(timer);
|
|
||||||
timer = setTimeout(NavUpdate,3000);
|
|
||||||
liking = 1;
|
|
||||||
$.colorbox.close();
|
|
||||||
} else {
|
|
||||||
$("#id_term").css("border-color","#FF0000");
|
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Comments
|
* Comments
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
function commentOpen(obj,id) {
|
function commentOpen(obj,id) {
|
||||||
if(obj.value == window.commentEmptyText) {
|
if (obj.value == "") {
|
||||||
obj.value = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
$("#mod-cmnt-wrap-" + id).show();
|
$("#mod-cmnt-wrap-" + id).show();
|
||||||
|
@ -657,7 +372,6 @@ function commentOpen(obj,id) {
|
||||||
}
|
}
|
||||||
function commentClose(obj,id) {
|
function commentClose(obj,id) {
|
||||||
if (obj.value == "") {
|
if (obj.value == "") {
|
||||||
obj.value = window.commentEmptyText;
|
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
||||||
$("#mod-cmnt-wrap-" + id).hide();
|
$("#mod-cmnt-wrap-" + id).hide();
|
||||||
|
@ -668,8 +382,7 @@ function commentClose(obj,id) {
|
||||||
|
|
||||||
function commentInsert(obj,id) {
|
function commentInsert(obj,id) {
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == window.commentEmptyText) {
|
if (tmpStr == "") {
|
||||||
tmpStr = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
openMenu("comment-edit-submit-wrapper-" + id);
|
openMenu("comment-edit-submit-wrapper-" + id);
|
||||||
|
@ -684,8 +397,7 @@ function commentInsert(obj,id) {
|
||||||
|
|
||||||
function qCommentInsert(obj,id) {
|
function qCommentInsert(obj,id) {
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == window.commentEmptyText) {
|
if (tmpStr == "") {
|
||||||
tmpStr = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
openMenu("comment-edit-submit-wrapper-" + id);
|
openMenu("comment-edit-submit-wrapper-" + id);
|
||||||
|
@ -699,43 +411,25 @@ function qCommentInsert(obj,id) {
|
||||||
$(obj).val("");
|
$(obj).val("");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*function showHideCommentBox(id) {
|
function insertFormatting(BBcode, id) {
|
||||||
if( $('#comment-edit-form-' + id).is(':visible')) {
|
|
||||||
$('#comment-edit-form-' + id).hide();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#comment-edit-form-' + id).show();
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
function insertFormatting(comment,BBcode,id) {
|
|
||||||
|
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == comment) {
|
if (tmpStr == "") {
|
||||||
tmpStr = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
openMenu("comment-edit-submit-wrapper-" + id);
|
openMenu("comment-edit-submit-wrapper-" + id);
|
||||||
$("#comment-edit-text-" + id).val(tmpStr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea = document.getElementById("comment-edit-text-" +id);
|
textarea = document.getElementById("comment-edit-text-" +id);
|
||||||
if (document.selection) {
|
if (document.selection) {
|
||||||
textarea.focus();
|
textarea.focus();
|
||||||
selected = document.selection.createRange();
|
selected = document.selection.createRange();
|
||||||
if (BBcode == "url"){
|
|
||||||
selected.text = "["+BBcode+"=http://]" + selected.text + "[/"+BBcode+"]";
|
|
||||||
} else
|
|
||||||
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
|
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
|
||||||
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
|
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
|
||||||
var start = textarea.selectionStart;
|
var start = textarea.selectionStart;
|
||||||
var end = textarea.selectionEnd;
|
var end = textarea.selectionEnd;
|
||||||
if (BBcode == "url"){
|
|
||||||
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"=http://]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
|
||||||
} else
|
|
||||||
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -745,5 +439,3 @@ function cmtBbOpen(id) {
|
||||||
function cmtBbClose(id) {
|
function cmtBbClose(id) {
|
||||||
$(".comment-edit-bb-" + id).hide();
|
$(".comment-edit-bb-" + id).hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<html lang="<?php echo $lang; ?>">
|
<html lang="<?php echo $lang; ?>">
|
||||||
<head>
|
<head>
|
||||||
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
||||||
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
|
<script>var baseurl="<?php echo Friendica\Core\System::baseUrl() ?>";</script>
|
||||||
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
||||||
</head>
|
</head>
|
||||||
<body <?php if($a->module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>>
|
<body <?php if($a->module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>>
|
||||||
|
|
|
@ -1385,7 +1385,7 @@ input#dfrn-url {
|
||||||
/* add ellipsis on text overflow */
|
/* add ellipsis on text overflow */
|
||||||
/* this work on safari, opera, ie, chrome. */
|
/* this work on safari, opera, ie, chrome. */
|
||||||
/* firefox users have to wait support or we */
|
/* firefox users have to wait support or we */
|
||||||
/* can use a jquery plugin http://bit.ly/zJskg */
|
/* can use a jquery addon http://bit.ly/zJskg */
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
-o-text-overflow: ellipsis;
|
-o-text-overflow: ellipsis;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -1549,8 +1549,16 @@ input#dfrn-url {
|
||||||
background-repeat: repeat-x;*/
|
background-repeat: repeat-x;*/
|
||||||
padding: 5px 5px 0px;
|
padding: 5px 5px 0px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.wall-item-tools a {
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 2px;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.wall-item-tools a.active {
|
||||||
|
background-color: rgba(59, 101, 164, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
.wall-item-author {
|
.wall-item-author {
|
||||||
/* margin-top: 10px;*/
|
/* margin-top: 10px;*/
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
|
@ -1901,6 +1909,9 @@ input#profile-jot-email {
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pager .disabled {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.pager_first,
|
.pager_first,
|
||||||
.pager_last,
|
.pager_last,
|
||||||
|
@ -3151,7 +3162,7 @@ aside input[type='text'] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#plugin-settings-link, #account-settings-link {
|
#addon-settings-link, #account-settings-link {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3765,10 +3776,10 @@ aside input[type='text'] {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminpage #pluginslist {
|
#adminpage #addonslist {
|
||||||
margin: 0px; padding: 0px;
|
margin: 0px; padding: 0px;
|
||||||
}
|
}
|
||||||
#adminpage .plugin {
|
#adminpage .addon {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: block;
|
display: block;
|
||||||
border: 1px solid #888888;
|
border: 1px solid #888888;
|
||||||
|
@ -3776,8 +3787,8 @@ aside input[type='text'] {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
#adminpage .plugin .desc { margin-left: 2.5em;}
|
#adminpage .addon .desc { margin-left: 2.5em;}
|
||||||
#adminpage .toggleplugin {
|
#adminpage .toggleaddon {
|
||||||
float:left;
|
float:left;
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
@ -3896,7 +3907,7 @@ aside input[type='text'] {
|
||||||
.icon.like {
|
.icon.like {
|
||||||
display: block; width: 26px; height: 28px;/*31 33*/
|
display: block; width: 26px; height: 28px;/*31 33*/
|
||||||
margin-right: 7px;
|
margin-right: 7px;
|
||||||
background-size: 100% 100%;
|
background-size: 26px 28px;
|
||||||
background-image: url('images/approve.png');
|
background-image: url('images/approve.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
@ -3904,7 +3915,7 @@ aside input[type='text'] {
|
||||||
|
|
||||||
.icon.link {
|
.icon.link {
|
||||||
display: block; width: 22px; height: 24px;
|
display: block; width: 22px; height: 24px;
|
||||||
background-size: 100% 100%;
|
background-size: 22px 24px;
|
||||||
background-image: url('images/link.png');
|
background-image: url('images/link.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
|
||||||
|
@ -3913,14 +3924,14 @@ aside input[type='text'] {
|
||||||
/*.globe { background-position: 0px -16px;}*/
|
/*.globe { background-position: 0px -16px;}*/
|
||||||
.icon.globe {
|
.icon.globe {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/globe.png');
|
background-image: url('images/globe.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
/*.noglobe { background-position: -16px -16px;}*/
|
/*.noglobe { background-position: -16px -16px;}*/
|
||||||
.icon.noglobe {
|
.icon.noglobe {
|
||||||
display: block; width: 24px; height: 24px;
|
display: block; width: 24px; height: 24px;
|
||||||
background-size: 100% 100%;
|
background-size: 24px 24px;
|
||||||
background-image: url('images/noglobe.png');
|
background-image: url('images/noglobe.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
@ -3931,14 +3942,14 @@ aside input[type='text'] {
|
||||||
.small-pencil { background-position: -96px -16px;}*/
|
.small-pencil { background-position: -96px -16px;}*/
|
||||||
.icon.pencil {
|
.icon.pencil {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/pencil.png');
|
background-image: url('images/pencil.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
.icon.small-pencil {
|
.icon.small-pencil {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/pencil.png');
|
background-image: url('images/pencil.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
@ -3947,7 +3958,7 @@ aside input[type='text'] {
|
||||||
.icon.recycle {
|
.icon.recycle {
|
||||||
display: block;
|
display: block;
|
||||||
width: 28px; height: 27px;/*33 32*/
|
width: 28px; height: 27px;/*33 32*/
|
||||||
background-size: 100% 100%;
|
background-size: 28px 27px;
|
||||||
background-image: url('images/recycle.png');
|
background-image: url('images/recycle.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
@ -3957,7 +3968,7 @@ aside input[type='text'] {
|
||||||
/* display: block;*/
|
/* display: block;*/
|
||||||
display: none;
|
display: none;
|
||||||
width: 28px; height: 28px;
|
width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/remote-link.png');
|
background-image: url('images/remote-link.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
@ -3969,7 +3980,7 @@ aside input[type='text'] {
|
||||||
.icon.lock {
|
.icon.lock {
|
||||||
display: block; width: 17px; height: 25px;
|
display: block; width: 17px; height: 25px;
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
background-size: 100% 100%;
|
background-size: 17px 25px;
|
||||||
background-image: url('images/lock.png');
|
background-image: url('images/lock.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
@ -3977,7 +3988,7 @@ aside input[type='text'] {
|
||||||
.icon.unlock {
|
.icon.unlock {
|
||||||
display: block; width: 17px; height: 28px;
|
display: block; width: 17px; height: 28px;
|
||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
background-size: 100% 100%;
|
background-size: 17px 28px;
|
||||||
background-image: url('images/unlock.png');
|
background-image: url('images/unlock.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
@ -3987,7 +3998,7 @@ aside input[type='text'] {
|
||||||
/*.attach { background-position: -80px -32px; }*/
|
/*.attach { background-position: -80px -32px; }*/
|
||||||
.icon.attach {
|
.icon.attach {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/paperclip.png');
|
background-image: url('images/paperclip.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
@ -4000,14 +4011,14 @@ aside input[type='text'] {
|
||||||
/*.starred { background-position: -16px -48px; }*/
|
/*.starred { background-position: -16px -48px; }*/
|
||||||
.icon.starred {
|
.icon.starred {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/star-yellow.png');
|
background-image: url('images/star-yellow.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
/*.unstarred { background-position: -32px -48px; }*/
|
/*.unstarred { background-position: -32px -48px; }*/
|
||||||
.icon.unstarred {
|
.icon.unstarred {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/star.png');
|
background-image: url('images/star.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
|
||||||
|
@ -4016,7 +4027,7 @@ aside input[type='text'] {
|
||||||
/*.tagged { background-position: -48px -48px; }*/
|
/*.tagged { background-position: -48px -48px; }*/
|
||||||
.icon.tagged {
|
.icon.tagged {
|
||||||
display: block; width: 28px; height: 28px;
|
display: block; width: 28px; height: 28px;
|
||||||
background-size: 100% 100%;
|
background-size: 28px 28px;
|
||||||
background-image: url('images/tag.png');
|
background-image: url('images/tag.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
@ -4026,7 +4037,7 @@ aside input[type='text'] {
|
||||||
|
|
||||||
.filer-icon {
|
.filer-icon {
|
||||||
display: block; width: 24px; height: 24px;
|
display: block; width: 24px; height: 24px;
|
||||||
background-size: 100% 100%;
|
background-size: 24px 24px;
|
||||||
background-image: url('images/folder.png');
|
background-image: url('images/folder.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
@ -4034,7 +4045,7 @@ aside input[type='text'] {
|
||||||
|
|
||||||
.event-icon {
|
.event-icon {
|
||||||
display: block; width: 33px; height: 33px;
|
display: block; width: 33px; height: 33px;
|
||||||
background-size: 100% 100%;
|
background-size: 33px 33px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,62 +1,32 @@
|
||||||
|
|
||||||
{{*<!-- <script>
|
|
||||||
$(document).ready( function () {
|
|
||||||
$(document).mouseup(function(e) {
|
|
||||||
var container = $("#comment-edit-wrapper-{{$id}}");
|
|
||||||
if( container.has(e.target).length === 0) {
|
|
||||||
commentClose(document.getElementById('comment-edit-text-{{$id}}'),{{$id}});
|
|
||||||
cmtBbClose({{$id}});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>-->*}}
|
|
||||||
|
|
||||||
<div class="comment-wwedit-wrapper {{$indent}}" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
<div class="comment-wwedit-wrapper {{$indent}}" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
||||||
<form class="comment-edit-form {{$indent}}" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
<form class="comment-edit-form {{$indent}}" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
||||||
{{*<!-- <span id="hide-commentbox-{{$id}}" class="hide-commentbox fakelink" onclick="showHideCommentBox({{$id}});">{{$comment}}</span>
|
|
||||||
<form class="comment-edit-form" style="display: none;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">-->*}}
|
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
<input type="hidden" name="type" value="{{$type}}" />
|
||||||
<input type="hidden" name="source" value="{{$sourceapp}}" />
|
<input type="hidden" name="source" value="{{$sourceapp}}" />
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
|
||||||
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
||||||
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
||||||
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
||||||
|
|
||||||
{{*<!--<div class="comment-edit-photo" id="comment-edit-photo-{{$id}}" >-->*}}
|
|
||||||
<a class="comment-edit-photo comment-edit-photo-link" id="comment-edit-photo-{{$id}}" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
|
<a class="comment-edit-photo comment-edit-photo-link" id="comment-edit-photo-{{$id}}" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
|
||||||
{{*<!--</div>-->*}}
|
|
||||||
{{*<!--<div class="comment-edit-photo-end"></div>-->*}}
|
|
||||||
<ul class="comment-edit-bb-{{$id}}">
|
<ul class="comment-edit-bb-{{$id}}">
|
||||||
<li><a class="editicon boldbb shadow"
|
<li><a class="editicon boldbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edbold}}"
|
style="cursor: pointer;" title="{{$edbold}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="b" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="b" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon italicbb shadow"
|
<li><a class="editicon italicbb shadow"
|
||||||
style="cursor: pointer;" title="{{$editalic}}"
|
style="cursor: pointer;" title="{{$editalic}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="i" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="i" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon underlinebb shadow"
|
<li><a class="editicon underlinebb shadow"
|
||||||
style="cursor: pointer;" title="{{$eduline}}"
|
style="cursor: pointer;" title="{{$eduline}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="u" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="u" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon quotebb shadow"
|
<li><a class="editicon quotebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edquote}}"
|
style="cursor: pointer;" title="{{$edquote}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="quote" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="quote" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon codebb shadow"
|
<li><a class="editicon codebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edcode}}"
|
style="cursor: pointer;" title="{{$edcode}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="code" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="code" data-id="{{$id}}"></a></li>
|
||||||
{{*<!-- <li><a class="editicon imagebb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edimg}}"
|
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="img" data-id="{{$id}}"></a></li>
|
|
||||||
<li><a class="editicon urlbb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edurl}}"
|
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="url" data-id="{{$id}}"></a></li>
|
|
||||||
<li><a class="editicon videobb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edvideo}}"
|
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="video" data-id="{{$id}}"></a></li>-->*}}
|
|
||||||
</ul>
|
</ul>
|
||||||
{{*<!--<div class="comment-edit-bb-end"></div>-->*}}
|
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" placeholder="{{$comment}}" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});"></textarea>
|
||||||
{{*<!-- <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});cmtBbClose({{$id}});" >{{$comment}}</textarea>-->*}}
|
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" >{{$comment}}</textarea>
|
|
||||||
{{if $qcomment}}
|
{{if $qcomment}}
|
||||||
<select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});">
|
<select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});">
|
||||||
<option value=""></option>
|
<option value=""></option>
|
||||||
|
@ -69,11 +39,6 @@
|
||||||
<div class="comment-edit-text-end"></div>
|
<div class="comment-edit-text-end"></div>
|
||||||
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
||||||
<input type="submit" onclick="post_comment({{$id}}); return false;" id="comment-edit-submit-{{$id}}" class="comment-edit-submit" name="submit" value="{{$submit}}" />
|
<input type="submit" onclick="post_comment({{$id}}); return false;" id="comment-edit-submit-{{$id}}" class="comment-edit-submit" name="submit" value="{{$submit}}" />
|
||||||
{{*<!--<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="preview-link fakelink">{{$preview}}</span>
|
|
||||||
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>-->*}}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{*<!--<div class="comment-edit-end"></div>-->*}}
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -81,6 +81,15 @@
|
||||||
<h4>{{$lbl_vis1}}</h4>
|
<h4>{{$lbl_vis1}}</h4>
|
||||||
<p>{{$lbl_vis2}}</p>
|
<p>{{$lbl_vis2}}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{if $reason}}
|
||||||
|
<div id="contact-info-wrapper">
|
||||||
|
<h4>{{$lbl_info2}}</h4>
|
||||||
|
<p>{{$reason}}</p>
|
||||||
|
</div>
|
||||||
|
<div id="contact-info-end"></div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{$profile_select}}
|
{{$profile_select}}
|
||||||
<div id="contact-edit-profile-select-end"></div>
|
<div id="contact-edit-profile-select-end"></div>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<script type="text/javascript" src="library/cropper/lib/prototype.js" language="javascript"></script>
|
<script type="text/javascript" src="view/js/cropper/lib/prototype.js" language="javascript"></script>
|
||||||
<script type="text/javascript" src="library/cropper/lib/scriptaculous.js?load=effects,builder,dragdrop" language="javascript"></script>
|
<script type="text/javascript" src="view/js/cropper/lib/scriptaculous.js?load=effects,builder,dragdrop" language="javascript"></script>
|
||||||
<script type="text/javascript" src="library/cropper/cropper.js" language="javascript"></script>
|
<script type="text/javascript" src="view/js/cropper/cropper.js" language="javascript"></script>
|
||||||
<script type="text/javascript" language="javascript">initCrop();</script>
|
<script type="text/javascript" language="javascript">initCrop();</script>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<link rel="stylesheet" href="library/cropper/cropper.css" type="text/css" />
|
<link rel="stylesheet" href="view/js/cropper/cropper.css" type="text/css" />
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery/dist/jquery.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/readmore.min.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/readmore.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/jquery.textinputs.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jgrowl/jquery.jgrowl.min.js"></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery-datetimepicker/build/jquery.datetimepicker.full.min.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/jquery-textcomplete/jquery.textcomplete.min.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/jquery-textcomplete/jquery.textcomplete.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/autocomplete.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/autocomplete.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/acl.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/acl.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/webtoolkit.base64.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/base64/base64.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/main.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/main.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/theme.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/theme.js"></script>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript"
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/moment/min/moment-with-locales.min.js"></script>
|
||||||
src="{{$baseurl}}/library/fullcalendar/fullcalendar.min.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/fullcalendar/dist/fullcalendar.min.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
|
|
||||||
<link rel='stylesheet' type='text/css' href='{{$baseurl}}/library/fullcalendar/fullcalendar.css' />
|
<link rel="stylesheet" type="text/css" href="{{$baseurl}}/view/asset/fullcalendar/dist/fullcalendar.min.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{$baseurl}}/view/asset/fullcalendar/dist/fullcalendar.print.min.css" media="print" />
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
window.aclType = 'event_head';
|
window.aclType = 'event_head';
|
||||||
window.eventModuleUrl = "{{$module_url}}";
|
window.eventModuleUrl = '{{$module_url}}';
|
||||||
window.eventModeParams = "{{$modparams}}" ;
|
window.eventModeParams = '{{$modparams}}';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
|
|
||||||
<div class='field checkbox' id='div_id_{{$field.0}}'>
|
<div class="field checkbox" id="div_id_{{$field.0}}">
|
||||||
<label id='label_id_{{$field.0}}' for='id_{{$field.0}}'>{{$field.1}}</label>
|
<label id="label_id_{{$field.0}}" for="id_{{$field.0}}">{{$field.1}}</label>
|
||||||
<input type="checkbox" name='{{$field.0}}' id='id_{{$field.0}}' value="1" {{if $field.2}}checked="checked"{{/if}}><br />
|
<input type="hidden" name="{{$field.0}}" value="0">
|
||||||
<span class='field_help' id='help_id_{{$field.0}}'>{{$field.3}}</span>
|
<input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="1" {{if $field.2}}checked="checked"{{/if}}><br />
|
||||||
|
<span class="field_help" id="help_id_{{$field.0}}">{{$field.3}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
<div class='field input openid' id='wrapper_{{$field.0}}'>
|
<div class='field input openid' id='wrapper_{{$field.0}}'>
|
||||||
<label for='id_{{$field.0}}'>{{$field.1}}</label><br />
|
<label for='id_{{$field.0}}'>{{$field.1}}</label><br />
|
||||||
<input name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2}}">
|
<input name='{{$field.0}}' id='id_{{$field.0}}' type="text" value="{{$field.2}}">
|
||||||
<span class='field_help'>{{$field.3}}</span>
|
<span class='field_help'>{{$field.3}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
|
|
||||||
<base href="{{$baseurl}}/" />
|
<base href="{{$baseurl}}/" />
|
||||||
<meta name="generator" content="{{$generator}}" />
|
<meta name="generator" content="{{$generator}}" />
|
||||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
<link rel="stylesheet" href="{{$baseurl}}/view/asset/jgrowl/jquery.jgrowl.min.css" type="text/css" media="screen" />
|
||||||
<link rel="stylesheet" href="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.css" type="text/css" media="screen" />
|
<link rel="stylesheet" href="{{$baseurl}}/view/asset/jquery-datetimepicker/build/jquery.datetimepicker.min.css" type="text/css" media="screen" />
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery/dist/jquery.min.js"></script>
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.delItem = "{{$delitem}}";
|
window.delItem = "{{$delitem}}";
|
||||||
window.commentEmptyText = "{{$comment}}";
|
|
||||||
window.showMore = "{{$showmore}}";
|
window.showMore = "{{$showmore}}";
|
||||||
window.showFewer = "{{$showfewer}}";
|
window.showFewer = "{{$showfewer}}";
|
||||||
var updateInterval = {{$update_interval}};
|
var updateInterval = {{$update_interval}};
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
|
<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
|
||||||
|
|
||||||
|
<script language="javascript" type="text/javascript">if (typeof window.jotInit != 'undefined') initEditor();</script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
|
||||||
|
|
||||||
<script>if(typeof window.jotInit != 'undefined') initEditor();</script>
|
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var none = "none"; // ugly hack: {{$editselect}} shouldn't be a string if TinyMCE is enabled, but should if it isn't
|
|
||||||
window.editSelect = {{$editselect}};
|
|
||||||
window.isPublic = "{{$ispublic}}";
|
window.isPublic = "{{$ispublic}}";
|
||||||
window.nickname = "{{$nickname}}";
|
window.nickname = "{{$nickname}}";
|
||||||
window.linkURL = "{{$linkurl}}";
|
window.linkURL = "{{$linkurl}}";
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div id="jot-text-wrap">
|
<div id="jot-text-wrap">
|
||||||
{{*<!--<img id="profile-jot-text-loading" src="images/rotator.gif" alt="{{$wait}}" title="{{$wait}}" style="display: none;" />-->*}}
|
{{*<!--<img id="profile-jot-text-loading" src="images/rotator.gif" alt="{{$wait}}" title="{{$wait}}" style="display: none;" />-->*}}
|
||||||
<textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" >{{if $content}}{{$content}}{{else}}{{$share}}{{/if}}</textarea>
|
<textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" placeholder="{{$share}}">{{if $content}}{{$content}}{{/if}}</textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="profile-jot-submit-wrapper" class="jothidden">
|
<div id="profile-jot-submit-wrapper" class="jothidden">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div class="mail-conv-outside-wrapper">
|
<div class="mail-conv-outside-wrapper">
|
||||||
<div class="mail-conv-sender" >
|
<div class="mail-conv-sender" >
|
||||||
<a href="{{$mail.from_url}}" class="mail-conv-sender-url" ><img class="mframe mail-conv-sender-photo{{$mail.sparkle}}" src="{{$mail.from_photo}}" heigth="80" width="80" alt="{{$mail.from_name}}" /></a>
|
<a href="{{$mail.from_url}}" title="{{$mail.from_addr}}" class="mail-conv-sender-url" ><img class="mframe mail-conv-sender-photo{{$mail.sparkle}}" src="{{$mail.from_photo}}" heigth="80" width="80" alt="{{$mail.from_name}}" title="{{$mail.from_addr}}" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="mail-conv-detail" >
|
<div class="mail-conv-detail" >
|
||||||
<div class="mail-conv-sender-name" >{{$mail.from_name}}</div>
|
<div class="mail-conv-sender-name" >{{$mail.from_name}}</div>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div class="mail-list-outside-wrapper">
|
<div class="mail-list-outside-wrapper">
|
||||||
<div class="mail-list-sender" >
|
<div class="mail-list-sender" >
|
||||||
<a href="{{$from_url}}" class="mail-list-sender-url" ><img class="mail-list-sender-photo{{$sparkle}}" src="{{$from_photo}}" height="80" width="80" alt="{{$from_name}}" /></a>
|
<a href="{{$from_url}}" title="{{$from_addr}}" class="mail-list-sender-url" ><img class="mail-list-sender-photo{{$sparkle}}" src="{{$from_photo}}" height="80" width="80" alt="{{$from_name}}" title="{{$from_addr}}" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="mail-list-detail">
|
<div class="mail-list-detail">
|
||||||
<div class="mail-list-sender-name" >{{$from_name}}</div>
|
<div class="mail-list-sender-name" >{{$from_name}}</div>
|
||||||
|
|
|
@ -23,31 +23,31 @@
|
||||||
<ul class="comment-edit-bb-{{$id}}">
|
<ul class="comment-edit-bb-{{$id}}">
|
||||||
<li><a class="editicon boldbb shadow"
|
<li><a class="editicon boldbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edbold}}"
|
style="cursor: pointer;" title="{{$edbold}}"
|
||||||
onclick="insertFormatting('{{$comment}}','b', {{$id}});"></a></li>
|
onclick="insertFormatting('b', {{$id}});"></a></li>
|
||||||
<li><a class="editicon italicbb shadow"
|
<li><a class="editicon italicbb shadow"
|
||||||
style="cursor: pointer;" title="{{$editalic}}"
|
style="cursor: pointer;" title="{{$editalic}}"
|
||||||
onclick="insertFormatting('{{$comment}}','i', {{$id}});"></a></li>
|
onclick="insertFormatting('i', {{$id}});"></a></li>
|
||||||
<li><a class="editicon underlinebb shadow"
|
<li><a class="editicon underlinebb shadow"
|
||||||
style="cursor: pointer;" title="{{$eduline}}"
|
style="cursor: pointer;" title="{{$eduline}}"
|
||||||
onclick="insertFormatting('{{$comment}}','u', {{$id}});"></a></li>
|
onclick="insertFormatting('u', {{$id}});"></a></li>
|
||||||
<li><a class="editicon quotebb shadow"
|
<li><a class="editicon quotebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edquote}}"
|
style="cursor: pointer;" title="{{$edquote}}"
|
||||||
onclick="insertFormatting('{{$comment}}','quote', {{$id}});"></a></li>
|
onclick="insertFormatting('quote', {{$id}});"></a></li>
|
||||||
<li><a class="editicon codebb shadow"
|
<li><a class="editicon codebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edcode}}"
|
style="cursor: pointer;" title="{{$edcode}}"
|
||||||
onclick="insertFormatting('{{$comment}}','code', {{$id}});"></a></li>
|
onclick="insertFormatting('code', {{$id}});"></a></li>
|
||||||
<li><a class="editicon imagebb shadow"
|
<li><a class="editicon imagebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edimg}}"
|
style="cursor: pointer;" title="{{$edimg}}"
|
||||||
onclick="insertFormatting('{{$comment}}','img', {{$id}});"></a></li>
|
onclick="insertFormatting('img', {{$id}});"></a></li>
|
||||||
<li><a class="editicon urlbb shadow"
|
<li><a class="editicon urlbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edurl}}"
|
style="cursor: pointer;" title="{{$edurl}}"
|
||||||
onclick="insertFormatting('{{$comment}}','url', {{$id}});"></a></li>
|
onclick="insertFormatting('url', {{$id}});"></a></li>
|
||||||
<li><a class="editicon videobb shadow"
|
<li><a class="editicon videobb shadow"
|
||||||
style="cursor: pointer;" title="{{$edvideo}}"
|
style="cursor: pointer;" title="{{$edvideo}}"
|
||||||
onclick="insertFormatting('{{$comment}}','video', {{$id}});"></a></li>
|
onclick="insertFormatting('video', {{$id}});"></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="comment-edit-bb-end"></div>
|
<div class="comment-edit-bb-end"></div>
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});" >{{$comment}}</textarea>
|
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" placeholder="{{$comment}}" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});"></textarea>
|
||||||
|
|
||||||
<div class="comment-edit-text-end"></div>
|
<div class="comment-edit-text-end"></div>
|
||||||
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
window.nickname = "{{$nickname}}";
|
window.nickname = "{{$nickname}}";
|
||||||
window.linkURL = "{{$linkurl}}";
|
window.linkURL = "{{$linkurl}}";
|
||||||
var plaintext = "none";
|
|
||||||
window.jotId = "#prvmail-text";
|
window.jotId = "#prvmail-text";
|
||||||
window.imageUploadButton = 'prvmail-upload';
|
window.imageUploadButton = 'prvmail-upload';
|
||||||
window.autocompleteType = 'msg-header';
|
window.autocompleteType = 'msg-header';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="js/country.js" ></script>
|
<script type="text/javascript" src="view/js/country.js" ></script>
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
Fill_Country('{{$country_name}}');
|
Fill_Country('{{$country_name}}');
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
|
||||||
window.editSelect = "none";
|
|
||||||
</script>
|
|
||||||
|
|
|
@ -53,9 +53,11 @@
|
||||||
{{*<!--<div class="wall-item-title-end"></div>-->*}}
|
{{*<!--<div class="wall-item-title-end"></div>-->*}}
|
||||||
<div class="wall-item-body" id="wall-item-body-{{$item.id}}" ><span class="e-content">{{$item.body}}</span>
|
<div class="wall-item-body" id="wall-item-body-{{$item.id}}" ><span class="e-content">{{$item.body}}</span>
|
||||||
{{*<!--<div class="body-tag">-->*}}
|
{{*<!--<div class="body-tag">-->*}}
|
||||||
|
{{if !$item.suppress_tags}}
|
||||||
{{foreach $item.tags as $tag}}
|
{{foreach $item.tags as $tag}}
|
||||||
<span class='body-tag tag'>{{$tag}}</span>
|
<span class="body-tag tag">{{$tag}}</span>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
{{/if}}
|
||||||
{{*<!--</div>-->*}}
|
{{*<!--</div>-->*}}
|
||||||
{{if $item.has_cats}}
|
{{if $item.has_cats}}
|
||||||
<div class="categorytags">{{$item.txt_cats}} {{foreach $item.categories as $cat}}<span class="p-category">{{$cat.name}}</span> <a href="{{$cat.removeurl}}" title="{{$remove}}">[{{$remove}}]</a> {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
|
<div class="categorytags">{{$item.txt_cats}} {{foreach $item.categories as $cat}}<span class="p-category">{{$cat.name}}</span> <a href="{{$cat.removeurl}}" title="{{$remove}}">[{{$remove}}]</a> {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
|
||||||
|
@ -71,9 +73,9 @@
|
||||||
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
|
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
|
||||||
{{if $item.vote}}
|
{{if $item.vote}}
|
||||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$item.id}}">
|
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$item.id}}">
|
||||||
<a href="#" class="icon like" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></a>
|
<a href="#" class="icon like{{if $item.responses.like.self}} active{{/if}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></a>
|
||||||
{{if $item.vote.dislike}}
|
{{if $item.vote.dislike}}
|
||||||
<a href="#" class="icon dislike" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>
|
<a href="#" class="icon dislike{{if $item.responses.dislike.self}} active{{/if}}" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $item.vote.share}}<a href="#" class="icon recycle wall-item-share-buttons" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"></a>{{/if}}
|
{{if $item.vote.share}}<a href="#" class="icon recycle wall-item-share-buttons" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"></a>{{/if}}
|
||||||
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
||||||
|
@ -97,9 +99,9 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if $item.isevent}}
|
{{if $item.isevent}}
|
||||||
<a href="#" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="dolike({{$item.id}},'attendyes'); return false;" class="event-item event-icon event-attend-icon"></a>
|
<a href="#" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="dolike({{$item.id}},'attendyes'); return false;" class="event-item event-icon event-attend-icon{{if $item.responses.attendyes.self}} active{{/if}}"></a>
|
||||||
<a href="#" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="dolike({{$item.id}},'attendno'); return false;" class="event-item event-icon event-dontattend-icon"></a>
|
<a href="#" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="dolike({{$item.id}},'attendno'); return false;" class="event-item event-icon event-dontattend-icon{{if $item.responses.attendno.self}} active{{/if}}"></a>
|
||||||
<a href="#" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="dolike({{$item.id}},'attendmaybe'); return false;" class="event-item event-icon event-maybeattend-icon"></a>
|
<a href="#" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="dolike({{$item.id}},'attendmaybe'); return false;" class="event-item event-icon event-maybeattend-icon{{if $item.responses.attendmaybe.self}} active{{/if}}"></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{*<!--<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >-->*}}
|
{{*<!--<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >-->*}}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
window.editSelect = "none";
|
|
||||||
window.jotId = "#prvmail-text";
|
window.jotId = "#prvmail-text";
|
||||||
window.imageUploadButton = 'prvmail-upload';
|
window.imageUploadButton = 'prvmail-upload';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -9,24 +9,28 @@
|
||||||
* Maintainer: Zach P <techcity@f.shmuz.in>
|
* Maintainer: Zach P <techcity@f.shmuz.in>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function frost_mobile_init(&$a) {
|
use Friendica\App;
|
||||||
|
use Friendica\Core\System;
|
||||||
|
|
||||||
|
function frost_mobile_init(App $a) {
|
||||||
$a->sourcename = 'Friendica mobile web';
|
$a->sourcename = 'Friendica mobile web';
|
||||||
$a->videowidth = 250;
|
$a->videowidth = 250;
|
||||||
$a->videoheight = 200;
|
$a->videoheight = 200;
|
||||||
$a->theme_thread_allow = false;
|
|
||||||
$a->force_max_items = 10;
|
$a->force_max_items = 10;
|
||||||
set_template_engine($a, 'smarty3');
|
$a->set_template_engine('smarty3');
|
||||||
}
|
}
|
||||||
|
|
||||||
function frost_mobile_content_loaded(&$a) {
|
function frost_mobile_content_loaded(App $a) {
|
||||||
|
|
||||||
// I could do this in style.php, but by having the CSS in a file the browser will cache it,
|
// I could do this in style.php, but by having the CSS in a file the browser will cache it,
|
||||||
// making pages load faster
|
// making pages load faster
|
||||||
if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
|
if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
|
||||||
// $a->page['htmlhead'] = str_replace('$stylesheet', $a->get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
|
// $a->page['htmlhead'] = str_replace('$stylesheet', System::baseUrl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
|
||||||
$a->theme['stylesheet'] = $a->get_baseurl() . '/view/theme/frost-mobile/login-style.css';
|
$a->theme['stylesheet'] = System::baseUrl() . '/view/theme/frost-mobile/login-style.css';
|
||||||
}
|
}
|
||||||
if( $a->module === 'login' )
|
|
||||||
|
if ( $a->module === 'login' ) {
|
||||||
$a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
|
$a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@ Home page edit pencil
|
||||||
Preview spacing
|
Preview spacing
|
||||||
Photo album display
|
Photo album display
|
||||||
|
|
||||||
Check TinyMCE optimization
|
|
||||||
"Profiles" page is wonky
|
"Profiles" page is wonky
|
||||||
Settings, admin, photos upload don't look beautiful
|
Settings, admin, photos upload don't look beautiful
|
||||||
|
|
||||||
|
|
|
@ -49,19 +49,6 @@
|
||||||
|
|
||||||
collapseHeight();
|
collapseHeight();
|
||||||
|
|
||||||
/* setup tooltips *//*
|
|
||||||
$("a,.tt").each(function(){
|
|
||||||
var e = $(this);
|
|
||||||
var pos="bottom";
|
|
||||||
if (e.hasClass("tttop")) pos="top";
|
|
||||||
if (e.hasClass("ttbottom")) pos="bottom";
|
|
||||||
if (e.hasClass("ttleft")) pos="left";
|
|
||||||
if (e.hasClass("ttright")) pos="right";
|
|
||||||
e.tipTip({defaultPosition: pos, edgeOffset: 8});
|
|
||||||
});*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* setup onoff widgets */
|
/* setup onoff widgets */
|
||||||
$(".onoff input").each(function(){
|
$(".onoff input").each(function(){
|
||||||
val = $(this).val();
|
val = $(this).val();
|
||||||
|
@ -80,9 +67,6 @@
|
||||||
//console.log(id);
|
//console.log(id);
|
||||||
});
|
});
|
||||||
|
|
||||||
/* setup field_richtext */
|
|
||||||
//setupFieldRichtext();
|
|
||||||
|
|
||||||
/* popup menus */
|
/* popup menus */
|
||||||
function close_last_popup_menu(e) {
|
function close_last_popup_menu(e) {
|
||||||
|
|
||||||
|
@ -578,7 +562,6 @@
|
||||||
function preview_post() {
|
function preview_post() {
|
||||||
$("#jot-preview").val("1");
|
$("#jot-preview").val("1");
|
||||||
$("#jot-preview-content").show();
|
$("#jot-preview-content").show();
|
||||||
tinyMCE.triggerSave();
|
|
||||||
$.post(
|
$.post(
|
||||||
"item",
|
"item",
|
||||||
$("#profile-jot-form").serialize(),
|
$("#profile-jot-form").serialize(),
|
||||||
|
@ -666,58 +649,6 @@ function notifyMarkAll() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// code from http://www.tinymce.com/wiki.php/How-to_implement_a_custom_file_browser
|
|
||||||
function fcFileBrowser (field_name, url, type, win) {
|
|
||||||
/* TODO: If you work with sessions in PHP and your client doesn't accept cookies you might need to carry
|
|
||||||
the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5").
|
|
||||||
These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */
|
|
||||||
|
|
||||||
|
|
||||||
var cmsURL = baseurl+"/fbrowser/"+type+"/";
|
|
||||||
|
|
||||||
tinyMCE.activeEditor.windowManager.open({
|
|
||||||
file : cmsURL,
|
|
||||||
title : 'File Browser',
|
|
||||||
width : 420, // Your dimensions may differ - toy around with them!
|
|
||||||
height : 400,
|
|
||||||
resizable : "yes",
|
|
||||||
inline : "yes", // This parameter only has an effect if you use the inlinepopups plugin!
|
|
||||||
close_previous : "no"
|
|
||||||
}, {
|
|
||||||
window : win,
|
|
||||||
input : field_name
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*function setupFieldRichtext(){
|
|
||||||
tinyMCE.init({
|
|
||||||
theme : "advanced",
|
|
||||||
mode : "specific_textareas",
|
|
||||||
editor_selector: "fieldRichtext",
|
|
||||||
plugins : "bbcode,paste, inlinepopups",
|
|
||||||
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
|
||||||
theme_advanced_buttons2 : "",
|
|
||||||
theme_advanced_buttons3 : "",
|
|
||||||
theme_advanced_toolbar_location : "top",
|
|
||||||
theme_advanced_toolbar_align : "center",
|
|
||||||
theme_advanced_blockformats : "blockquote,code",
|
|
||||||
paste_text_sticky : true,
|
|
||||||
entity_encoding : "raw",
|
|
||||||
add_unload_trigger : false,
|
|
||||||
remove_linebreaks : false,
|
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
|
||||||
convert_urls: false,
|
|
||||||
content_css: baseurl+"/view/custom_tinymce.css",
|
|
||||||
theme_advanced_path : false,
|
|
||||||
file_browser_callback : "fcFileBrowser",
|
|
||||||
});
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sprintf in javascript
|
* sprintf in javascript
|
||||||
* "{0} and {1}".format('zero','uno');
|
* "{0} and {1}".format('zero','uno');
|
||||||
|
|
|
@ -12,12 +12,7 @@ $(document).ready(function() {
|
||||||
'#system-menu-list-closing': false
|
'#system-menu-list-closing': false
|
||||||
};
|
};
|
||||||
|
|
||||||
/* $.ajaxSetup({
|
/* enable editor on focus and click */
|
||||||
cache: false
|
|
||||||
});*/
|
|
||||||
|
|
||||||
|
|
||||||
/* enable tinymce on focus and click */
|
|
||||||
$("#profile-jot-text").focus(enableOnUser);
|
$("#profile-jot-text").focus(enableOnUser);
|
||||||
$("#profile-jot-text").click(enableOnUser);
|
$("#profile-jot-text").click(enableOnUser);
|
||||||
|
|
||||||
|
@ -27,8 +22,6 @@ $(document).ready(function() {
|
||||||
hideNavMenu($(this).attr('point'));
|
hideNavMenu($(this).attr('point'));
|
||||||
});
|
});
|
||||||
|
|
||||||
/* $('html').click(function() { $("#nav-notifications-menu" ).hide(); });*/
|
|
||||||
|
|
||||||
$('.group-edit-icon').hover(
|
$('.group-edit-icon').hover(
|
||||||
function() {
|
function() {
|
||||||
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
||||||
|
@ -64,36 +57,15 @@ $(document).ready(function() {
|
||||||
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
|
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
|
||||||
);
|
);
|
||||||
|
|
||||||
/* $('.nav-load-page-link').click(function() {
|
|
||||||
getPageContent( $(this).attr('href') );
|
|
||||||
hideNavMenu( '#' + $(this).closest('ul').attr('id') );
|
|
||||||
return false;
|
|
||||||
});*/
|
|
||||||
|
|
||||||
$('#id_share').change(function() {
|
$('#id_share').change(function() {
|
||||||
|
|
||||||
if ($('#id_share').is(':checked')) {
|
if ($('#id_share').is(':checked')) {
|
||||||
$('#acl-wrapper').show();
|
$('#acl-wrapper').show();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$('#acl-wrapper').hide();
|
$('#acl-wrapper').hide();
|
||||||
}
|
}
|
||||||
}).trigger('change');
|
}).trigger('change');
|
||||||
|
|
||||||
// For event_end.tpl
|
|
||||||
/* $('#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();
|
|
||||||
$('#jot-public').hide();
|
|
||||||
});
|
|
||||||
if(selstr == null) {
|
|
||||||
$('#jot-public').show();
|
|
||||||
}
|
|
||||||
|
|
||||||
}).trigger('change');*/
|
|
||||||
|
|
||||||
|
|
||||||
if (typeof window.AjaxUpload != "undefined") {
|
if (typeof window.AjaxUpload != "undefined") {
|
||||||
var uploader = new window.AjaxUpload(
|
var uploader = new window.AjaxUpload(
|
||||||
window.imageUploadButton,
|
window.imageUploadButton,
|
||||||
|
@ -170,7 +142,7 @@ $(document).ready(function() {
|
||||||
if (event.item['author-name']==null) return;
|
if (event.item['author-name']==null) return;
|
||||||
switch(view.name) {
|
switch(view.name) {
|
||||||
case "month":
|
case "month":
|
||||||
element.find(".fc-event-title").html(
|
element.find(".fc-title").html(
|
||||||
"<img src='{0}' style='height:10px;width:10px'>{1} : {2}".format(
|
"<img src='{0}' style='height:10px;width:10px'>{1} : {2}".format(
|
||||||
event.item['author-avatar'],
|
event.item['author-avatar'],
|
||||||
event.item['author-name'],
|
event.item['author-name'],
|
||||||
|
@ -178,7 +150,7 @@ $(document).ready(function() {
|
||||||
));
|
));
|
||||||
break;
|
break;
|
||||||
case "agendaWeek":
|
case "agendaWeek":
|
||||||
element.find(".fc-event-title").html(
|
element.find(".fc-title").html(
|
||||||
"<img src='{0}' style='height:12px; width:12px'>{1}<p>{2}</p><p>{3}</p>".format(
|
"<img src='{0}' style='height:12px; width:12px'>{1}<p>{2}</p><p>{3}</p>".format(
|
||||||
event.item['author-avatar'],
|
event.item['author-avatar'],
|
||||||
event.item['author-name'],
|
event.item['author-name'],
|
||||||
|
@ -187,7 +159,7 @@ $(document).ready(function() {
|
||||||
));
|
));
|
||||||
break;
|
break;
|
||||||
case "agendaDay":
|
case "agendaDay":
|
||||||
element.find(".fc-event-title").html(
|
element.find(".fc-title").html(
|
||||||
"<img src='{0}' style='height:24px;width:24px'>{1}<p>{2}</p><p>{3}</p>".format(
|
"<img src='{0}' style='height:24px;width:24px'>{1}<p>{2}</p><p>{3}</p>".format(
|
||||||
event.item['author-avatar'],
|
event.item['author-avatar'],
|
||||||
event.item['author-name'],
|
event.item['author-name'],
|
||||||
|
@ -242,13 +214,6 @@ $(document).ready(function() {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if(window.autoCompleteType == "display-head") {
|
|
||||||
//$(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
||||||
// make auto-complete work in more places
|
|
||||||
//$(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
||||||
$(".comment-wwedit-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
||||||
}*/
|
|
||||||
|
|
||||||
// Add Colorbox for viewing Network page images
|
// Add Colorbox for viewing Network page images
|
||||||
//var cBoxClasses = new Array();
|
//var cBoxClasses = new Array();
|
||||||
$(".wall-item-body a img").each(function() {
|
$(".wall-item-body a img").each(function() {
|
||||||
|
@ -265,10 +230,6 @@ $(document).ready(function() {
|
||||||
var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox";
|
var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox";
|
||||||
$(this).addClass(cBoxClass);
|
$(this).addClass(cBoxClass);
|
||||||
|
|
||||||
// if( $.inArray(cBoxClass, cBoxClasses) < 0 ) {
|
|
||||||
// cBoxClasses.push(cBoxClass);
|
|
||||||
// }
|
|
||||||
|
|
||||||
aElem.colorbox({
|
aElem.colorbox({
|
||||||
maxHeight: '90%',
|
maxHeight: '90%',
|
||||||
photo: true, // Colorbox doesn't recognize a URL that don't end in .jpg, etc. as a photo
|
photo: true, // Colorbox doesn't recognize a URL that don't end in .jpg, etc. as a photo
|
||||||
|
@ -276,14 +237,6 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
/*$.each(cBoxClasses, function(){
|
|
||||||
$('.'+this).colorbox({
|
|
||||||
maxHeight: '90%',
|
|
||||||
photo: true,
|
|
||||||
rel: this
|
|
||||||
});
|
|
||||||
});*/
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -320,7 +273,9 @@ $(function(){
|
||||||
console.log(":)", url, data);
|
console.log(":)", url, data);
|
||||||
|
|
||||||
$.post(url, data, function(data) {
|
$.post(url, data, function(data) {
|
||||||
if(timer) clearTimeout(timer);
|
if (timer) {
|
||||||
|
clearTimeout(timer);
|
||||||
|
}
|
||||||
NavUpdate();
|
NavUpdate();
|
||||||
$.colorbox.close();
|
$.colorbox.close();
|
||||||
})
|
})
|
||||||
|
@ -396,58 +351,12 @@ function initCrop() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
$(document).mouseup(function (clickPos) {
|
|
||||||
|
|
||||||
var sysMenu = $("#system-menu-list");
|
|
||||||
var sysMenuLink = $(".system-menu-link");
|
|
||||||
var contactsMenu = $("#contacts-menu-list");
|
|
||||||
var contactsMenuLink = $(".contacts-menu-link");
|
|
||||||
var networkMenu = $("#network-menu-list");
|
|
||||||
var networkMenuLink = $(".network-menu-link");
|
|
||||||
|
|
||||||
if( !sysMenu.is(clickPos.target) && !sysMenuLink.is(clickPos.target) && sysMenu.has(clickPos.target).length === 0) {
|
|
||||||
hideNavMenu("#system-menu-list");
|
|
||||||
}
|
|
||||||
if( !contactsMenu.is(clickPos.target) && !contactsMenuLink.is(clickPos.target) && contactsMenu.has(clickPos.target).length === 0) {
|
|
||||||
hideNavMenu("#contacts-menu-list");
|
|
||||||
}
|
|
||||||
if( !networkMenu.is(clickPos.target) && !networkMenuLink.is(clickPos.target) && networkMenu.has(clickPos.target).length === 0) {
|
|
||||||
hideNavMenu("#network-menu-list");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
function getPageContent(url) {
|
|
||||||
|
|
||||||
var pos = $('.main-container').position();
|
|
||||||
|
|
||||||
$('.main-container').css('margin-left', pos.left);
|
|
||||||
$('.main-content-container').hide(0, function () {
|
|
||||||
$('.main-content-loading').show(0);
|
|
||||||
});
|
|
||||||
|
|
||||||
$.get(url, function(html) {
|
|
||||||
console.log($('.main-content-container').html());
|
|
||||||
$('.main-content-container').html( $('.main-content-container', html).html() );
|
|
||||||
console.log($('.main-content-container').html());
|
|
||||||
$('.main-content-loading').hide(function() {
|
|
||||||
$('.main-content-container').fadeIn(800,function() {
|
|
||||||
$('.main-container').css('margin-left', 'auto'); // This sucks -- if the CSS specification changes, this will be wrong
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
function showNavMenu(menuID) {
|
function showNavMenu(menuID) {
|
||||||
|
|
||||||
if (window.navMenuTimeout[menuID + '-closing']) {
|
if (window.navMenuTimeout[menuID + '-closing']) {
|
||||||
window.navMenuTimeout[menuID + '-closing'] = false;
|
window.navMenuTimeout[menuID + '-closing'] = false;
|
||||||
clearTimeout(window.navMenuTimeout[menuID + '-timeout']);
|
clearTimeout(window.navMenuTimeout[menuID + '-timeout']);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
window.navMenuTimeout[menuID + '-opening'] = true;
|
window.navMenuTimeout[menuID + '-opening'] = true;
|
||||||
|
|
||||||
window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () {
|
window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () {
|
||||||
|
@ -462,8 +371,7 @@ function hideNavMenu(menuID) {
|
||||||
if (window.navMenuTimeout[menuID + '-opening']) {
|
if (window.navMenuTimeout[menuID + '-opening']) {
|
||||||
window.navMenuTimeout[menuID + '-opening'] = false;
|
window.navMenuTimeout[menuID + '-opening'] = false;
|
||||||
clearTimeout(window.navMenuTimeout[menuID + '-timeout']);
|
clearTimeout(window.navMenuTimeout[menuID + '-timeout']);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
window.navMenuTimeout[menuID + '-closing'] = true;
|
window.navMenuTimeout[menuID + '-closing'] = true;
|
||||||
|
|
||||||
window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () {
|
window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () {
|
||||||
|
@ -476,255 +384,53 @@ function hideNavMenu(menuID) {
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* TinyMCE/Editor
|
* Editor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function InitMCEEditor(editorData) {
|
|
||||||
var tinyMCEInitConfig = {
|
|
||||||
theme : "advanced",
|
|
||||||
//mode : // SPECIFIC
|
|
||||||
//editor_selector: // SPECIFIC
|
|
||||||
//elements: // SPECIFIC
|
|
||||||
plugins : "bbcode,paste,autoresize,inlinepopups",
|
|
||||||
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
|
||||||
theme_advanced_buttons2 : "",
|
|
||||||
theme_advanced_buttons3 : "",
|
|
||||||
theme_advanced_toolbar_location : "top",
|
|
||||||
theme_advanced_toolbar_align : "center",
|
|
||||||
theme_advanced_blockformats : "blockquote,code",
|
|
||||||
gecko_spellcheck : true,
|
|
||||||
paste_text_sticky : true, // COUPLED WITH paste PLUGIN
|
|
||||||
entity_encoding : "raw",
|
|
||||||
add_unload_trigger : false,
|
|
||||||
remove_linebreaks : false,
|
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
|
||||||
//convert_urls: false, //SPECIFIC?
|
|
||||||
content_css: baseurl + "/view/custom_tinymce.css",
|
|
||||||
theme_advanced_path : false,
|
|
||||||
file_browser_callback : "fcFileBrowser",
|
|
||||||
//setup : // SPECIFIC
|
|
||||||
};
|
|
||||||
|
|
||||||
if(window.editSelect != 'none') {
|
|
||||||
$.extend(tinyMCEInitConfig, editorData);
|
|
||||||
tinyMCE.init(tinyMCEInitConfig);
|
|
||||||
}
|
|
||||||
else if(typeof editorData.plaintextFn == 'function') {
|
|
||||||
(editorData.plaintextFn)();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var editor = false;
|
var editor = false;
|
||||||
var textlen = 0;
|
var textlen = 0;
|
||||||
|
|
||||||
function initEditor(cb){
|
function initEditor(callback) {
|
||||||
if(editor == false) {
|
if(editor == false) {
|
||||||
editor = true;
|
|
||||||
$("#profile-jot-text-loading").show();
|
$("#profile-jot-text-loading").show();
|
||||||
|
|
||||||
var editorData = {
|
|
||||||
mode : "specific_textareas",
|
|
||||||
editor_selector : "profile-jot-text",
|
|
||||||
auto_focus : "profile-jot-text",
|
|
||||||
//plugins : "bbcode,paste,autoresize,inlinepopups",
|
|
||||||
//paste_text_sticky : true,
|
|
||||||
convert_urls : false,
|
|
||||||
setup : function(ed) {
|
|
||||||
cPopup = null;
|
|
||||||
ed.onKeyDown.add(function(ed,e) {
|
|
||||||
if(cPopup !== null)
|
|
||||||
cPopup.onkey(e);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onKeyUp.add(function(ed, e) {
|
|
||||||
var txt = tinyMCE.activeEditor.getContent();
|
|
||||||
match = txt.match(/@([^ \n]+)$/);
|
|
||||||
if(match!==null) {
|
|
||||||
if(cPopup === null) {
|
|
||||||
cPopup = new ACPopup(this,baseurl+"/acl");
|
|
||||||
}
|
|
||||||
if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]);
|
|
||||||
if(! cPopup.ready) cPopup = null;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(cPopup !== null) { cPopup.close(); cPopup = null; }
|
|
||||||
}
|
|
||||||
|
|
||||||
textlen = txt.length;
|
|
||||||
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
|
|
||||||
$('#profile-jot-desc').html(window.isPublic);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#profile-jot-desc').html(' ');
|
|
||||||
}
|
|
||||||
|
|
||||||
//Character count
|
|
||||||
|
|
||||||
if(textlen <= 140) {
|
|
||||||
$('#character-counter').removeClass('red');
|
|
||||||
$('#character-counter').removeClass('orange');
|
|
||||||
$('#character-counter').addClass('grey');
|
|
||||||
}
|
|
||||||
if((textlen > 140) && (textlen <= 420)) {
|
|
||||||
$('#character-counter').removeClass('grey');
|
|
||||||
$('#character-counter').removeClass('red');
|
|
||||||
$('#character-counter').addClass('orange');
|
|
||||||
}
|
|
||||||
if(textlen > 420) {
|
|
||||||
$('#character-counter').removeClass('grey');
|
|
||||||
$('#character-counter').removeClass('orange');
|
|
||||||
$('#character-counter').addClass('red');
|
|
||||||
}
|
|
||||||
$('#character-counter').text(textlen);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onInit.add(function(ed) {
|
|
||||||
ed.pasteAsPlainText = true;
|
|
||||||
$("#profile-jot-text-loading").hide();
|
|
||||||
$(".jothidden").show();
|
|
||||||
if (typeof cb!="undefined") cb();
|
|
||||||
});
|
|
||||||
|
|
||||||
},
|
|
||||||
plaintextFn : function() {
|
|
||||||
$("#profile-jot-text-loading").hide();
|
$("#profile-jot-text-loading").hide();
|
||||||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||||
$("#profile-jot-text").editor_autocomplete(baseurl+"/acl");
|
$("#profile-jot-text").editor_autocomplete(baseurl+"/acl");
|
||||||
$(".jothidden").show();
|
$(".jothidden").show();
|
||||||
if (typeof cb!="undefined") cb();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
InitMCEEditor(editorData);
|
|
||||||
|
|
||||||
// setup acl popup
|
// setup acl popup
|
||||||
$("a#jot-perms-icon").colorbox({
|
$("a#jot-perms-icon").colorbox({
|
||||||
'inline' : true,
|
'inline' : true,
|
||||||
'transition' : 'elastic'
|
'transition' : 'elastic'
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
if (typeof cb!="undefined") cb();
|
editor = true;
|
||||||
|
}
|
||||||
|
if (typeof callback != "undefined") {
|
||||||
|
callback();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function enableOnUser() {
|
function enableOnUser() {
|
||||||
if (editor) return;
|
if (editor) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
$(this).val("");
|
$(this).val("");
|
||||||
initEditor();
|
initEditor();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function msgInitEditor() {
|
function msgInitEditor() {
|
||||||
var editorData = {
|
|
||||||
mode : "specific_textareas",
|
|
||||||
editor_selector : "prvmail-text",
|
|
||||||
//plugins : "bbcode,paste",
|
|
||||||
//paste_text_sticky : true,
|
|
||||||
convert_urls : false,
|
|
||||||
//theme_advanced_path : false,
|
|
||||||
setup : function(ed) {
|
|
||||||
cPopup = null;
|
|
||||||
ed.onKeyDown.add(function(ed,e) {
|
|
||||||
if(cPopup !== null)
|
|
||||||
cPopup.onkey(e);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onKeyUp.add(function(ed, e) {
|
|
||||||
var txt = tinyMCE.activeEditor.getContent();
|
|
||||||
match = txt.match(/@([^ \n]+)$/);
|
|
||||||
if(match!==null) {
|
|
||||||
if(cPopup === null) {
|
|
||||||
cPopup = new ACPopup(this,baseurl+"/acl");
|
|
||||||
}
|
|
||||||
if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]);
|
|
||||||
if(! cPopup.ready) cPopup = null;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(cPopup !== null) { cPopup.close(); cPopup = null; }
|
|
||||||
}
|
|
||||||
|
|
||||||
textlen = txt.length;
|
|
||||||
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
|
|
||||||
$('#profile-jot-desc').html(window.isPublic);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#profile-jot-desc').html(' ');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onInit.add(function(ed) {
|
|
||||||
ed.pasteAsPlainText = true;
|
|
||||||
var editorId = ed.editorId;
|
|
||||||
var textarea = $('#'+editorId);
|
|
||||||
if (typeof(textarea.attr('tabindex')) != "undefined") {
|
|
||||||
$('#'+editorId+'_ifr').attr('tabindex', textarea.attr('tabindex'));
|
|
||||||
textarea.attr('tabindex', null);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
plaintextFn : function() {
|
|
||||||
$("#prvmail-text").editor_autocomplete(baseurl+"/acl");
|
$("#prvmail-text").editor_autocomplete(baseurl+"/acl");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
InitMCEEditor(editorData);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function contactInitEditor() {
|
|
||||||
var editorData = {
|
|
||||||
mode : "exact",
|
|
||||||
elements : "contact-edit-info",
|
|
||||||
//plugins : "bbcode"
|
|
||||||
}
|
|
||||||
InitMCEEditor(editorData);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function eventInitEditor() {
|
|
||||||
var editorData = {
|
|
||||||
mode : "textareas",
|
|
||||||
//plugins : "bbcode,paste",
|
|
||||||
//paste_text_sticky : true,
|
|
||||||
//theme_advanced_path : false,
|
|
||||||
setup : function(ed) {
|
|
||||||
ed.onInit.add(function(ed) {
|
|
||||||
ed.pasteAsPlainText = true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
InitMCEEditor(editorData);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function profInitEditor() {
|
|
||||||
var editorData = {
|
|
||||||
mode : "textareas",
|
|
||||||
//plugins : "bbcode,paste",
|
|
||||||
//paste_text_sticky : true,
|
|
||||||
//theme_advanced_path : false,
|
|
||||||
setup : function(ed) {
|
|
||||||
ed.onInit.add(function(ed) {
|
|
||||||
ed.pasteAsPlainText = true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
InitMCEEditor(editorData);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Jot
|
* Jot
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function addeditortext(textElem, data) {
|
function addeditortext(textElem, data) {
|
||||||
if(window.editSelect == 'none') {
|
|
||||||
var currentText = $(textElem).val();
|
var currentText = $(textElem).val();
|
||||||
$(textElem).val(currentText + data);
|
$(textElem).val(currentText + data);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
|
||||||
}
|
|
||||||
|
|
||||||
function jotVideoURL() {
|
function jotVideoURL() {
|
||||||
reply = prompt(window.vidURL);
|
reply = prompt(window.vidURL);
|
||||||
|
@ -742,37 +448,6 @@ function jotAudioURL() {
|
||||||
|
|
||||||
|
|
||||||
function jotGetLocation() {
|
function jotGetLocation() {
|
||||||
|
|
||||||
/* if(navigator.geolocation) {
|
|
||||||
|
|
||||||
navigator.geolocation.getCurrentPosition(function(position) {
|
|
||||||
var lat = position.coords.latitude;
|
|
||||||
var lng = position.coords.longitude;
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
type: 'GET',
|
|
||||||
url: 'http://nominatim.openstreetmap.org/reverse?format=json&lat='+lat+'&lon='+lng,
|
|
||||||
jsonp: 'json_callback',
|
|
||||||
contentType: 'application/json',
|
|
||||||
dataType: 'jsonp',
|
|
||||||
success: function(json) {
|
|
||||||
console.log(json);
|
|
||||||
var locationDisplay = json.address.building+', '+json.address.city+', '+json.address.state;
|
|
||||||
$('#jot-location').val(locationDisplay);
|
|
||||||
$('#jot-display-location').html('Location: '+locationDisplay);
|
|
||||||
$('#jot-display-location').show();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
reply = prompt(window.whereAreU, $('#jot-location').val());
|
|
||||||
if(reply && reply.length) {
|
|
||||||
$('#jot-location').val(reply);
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
reply = prompt(window.whereAreU, $('#jot-location').val());
|
reply = prompt(window.whereAreU, $('#jot-location').val());
|
||||||
if (reply && reply.length) {
|
if (reply && reply.length) {
|
||||||
$('#jot-location').val(reply);
|
$('#jot-location').val(reply);
|
||||||
|
@ -822,25 +497,15 @@ function linkdropper(event) {
|
||||||
|
|
||||||
function linkdrop(event) {
|
function linkdrop(event) {
|
||||||
var reply = event.dataTransfer.getData("text/uri-list");
|
var reply = event.dataTransfer.getData("text/uri-list");
|
||||||
//event.target.textContent = reply;
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if (reply && reply.length) {
|
if (reply && reply.length) {
|
||||||
reply = bin2hex(reply);
|
reply = bin2hex(reply);
|
||||||
$('#profile-rotator').show();
|
$('#profile-rotator').show();
|
||||||
$.get('parse_url?binurl=' + reply, function(data) {
|
$.get('parse_url?binurl=' + reply, function(data) {
|
||||||
/* if(window.jotId == "#profile-jot-text") {
|
|
||||||
if (!editor) $("#profile-jot-text").val("");
|
|
||||||
initEditor(function(){
|
|
||||||
addeditortext(window.jotId, data);
|
addeditortext(window.jotId, data);
|
||||||
$('#profile-rotator').hide();
|
$('#profile-rotator').hide();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else {*/
|
|
||||||
addeditortext(window.jotId, data);
|
|
||||||
$('#profile-rotator').hide();
|
|
||||||
// }
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -863,8 +528,7 @@ function deleteCheckedItems(delID) {
|
||||||
if ($(this).is(':checked')) {
|
if ($(this).is(':checked')) {
|
||||||
if (checkedstr.length != 0) {
|
if (checkedstr.length != 0) {
|
||||||
checkedstr = checkedstr + ',' + $(this).val();
|
checkedstr = checkedstr + ',' + $(this).val();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
checkedstr = $(this).val();
|
checkedstr = $(this).val();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -885,8 +549,6 @@ function itemTag(id) {
|
||||||
$('body').css('cursor', 'wait');
|
$('body').css('cursor', 'wait');
|
||||||
|
|
||||||
$.get('tagger/' + id + '?term=' + reply, NavUpdate);
|
$.get('tagger/' + id + '?term=' + reply, NavUpdate);
|
||||||
/*if(timer) clearTimeout(timer);
|
|
||||||
timer = setTimeout(NavUpdate,3000);*/
|
|
||||||
liking = 1;
|
liking = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -913,8 +575,6 @@ function itemFiler(id) {
|
||||||
commentBusy = true;
|
commentBusy = true;
|
||||||
$('body').css('cursor', 'wait');
|
$('body').css('cursor', 'wait');
|
||||||
$.get('filer/' + id + '?term=' + reply, NavUpdate);
|
$.get('filer/' + id + '?term=' + reply, NavUpdate);
|
||||||
/* if(timer) clearTimeout(timer);
|
|
||||||
timer = setTimeout(NavUpdate,3000);*/
|
|
||||||
liking = 1;
|
liking = 1;
|
||||||
$.colorbox.close();
|
$.colorbox.close();
|
||||||
} else {
|
} else {
|
||||||
|
@ -931,33 +591,25 @@ function itemFiler(id) {
|
||||||
* Comments
|
* Comments
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function insertFormatting(comment,BBcode,id) {
|
function insertFormatting(BBcode, id) {
|
||||||
|
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == comment) {
|
if (tmpStr == "") {
|
||||||
tmpStr = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
openMenu("comment-edit-submit-wrapper-" + id);
|
openMenu("comment-edit-submit-wrapper-" + id);
|
||||||
$("#comment-edit-text-" + id).val(tmpStr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea = document.getElementById("comment-edit-text-" +id);
|
textarea = document.getElementById("comment-edit-text-" +id);
|
||||||
if (document.selection) {
|
if (document.selection) {
|
||||||
textarea.focus();
|
textarea.focus();
|
||||||
selected = document.selection.createRange();
|
selected = document.selection.createRange();
|
||||||
if (BBcode == "url"){
|
|
||||||
selected.text = "["+BBcode+"=http://]" + selected.text + "[/"+BBcode+"]";
|
|
||||||
} else
|
|
||||||
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
|
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
|
||||||
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
|
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
|
||||||
var start = textarea.selectionStart;
|
var start = textarea.selectionStart;
|
||||||
var end = textarea.selectionEnd;
|
var end = textarea.selectionEnd;
|
||||||
if (BBcode == "url"){
|
|
||||||
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"=http://]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
|
||||||
} else
|
|
||||||
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -969,8 +621,7 @@ function cmtBbClose(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function commentOpen(obj,id) {
|
function commentOpen(obj,id) {
|
||||||
if(obj.value == window.commentEmptyText) {
|
if (obj.value == "") {
|
||||||
obj.value = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
$("#mod-cmnt-wrap-" + id).show();
|
$("#mod-cmnt-wrap-" + id).show();
|
||||||
|
@ -979,7 +630,6 @@ function commentOpen(obj,id) {
|
||||||
}
|
}
|
||||||
function commentClose(obj,id) {
|
function commentClose(obj,id) {
|
||||||
if (obj.value == "") {
|
if (obj.value == "") {
|
||||||
obj.value = window.commentEmptyText;
|
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
||||||
$("#mod-cmnt-wrap-" + id).hide();
|
$("#mod-cmnt-wrap-" + id).hide();
|
||||||
|
@ -990,8 +640,7 @@ function commentClose(obj,id) {
|
||||||
|
|
||||||
function commentInsert(obj,id) {
|
function commentInsert(obj,id) {
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == window.commentEmptyText) {
|
if (tmpStr == "") {
|
||||||
tmpStr = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
openMenu("comment-edit-submit-wrapper-" + id);
|
openMenu("comment-edit-submit-wrapper-" + id);
|
||||||
|
@ -1006,8 +655,7 @@ function commentInsert(obj,id) {
|
||||||
|
|
||||||
function qCommentInsert(obj,id) {
|
function qCommentInsert(obj,id) {
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == window.commentEmptyText) {
|
if (tmpStr == "") {
|
||||||
tmpStr = "";
|
|
||||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||||
openMenu("comment-edit-submit-wrapper-" + id);
|
openMenu("comment-edit-submit-wrapper-" + id);
|
||||||
|
@ -1020,13 +668,3 @@ function qCommentInsert(obj,id) {
|
||||||
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
||||||
$(obj).val("");
|
$(obj).val("");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*function showHideCommentBox(id) {
|
|
||||||
if( $('#comment-edit-form-' + id).is(':visible')) {
|
|
||||||
$('#comment-edit-form-' + id).hide();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#comment-edit-form-' + id).show();
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<html lang="<?php echo $lang; ?>">
|
<html lang="<?php echo $lang; ?>">
|
||||||
<head>
|
<head>
|
||||||
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
||||||
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
|
<script>var baseurl="<?php echo Friendica\Core\System::baseUrl() ?>";</script>
|
||||||
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
||||||
</head>
|
</head>
|
||||||
<body <?php if($a->module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>>
|
<body <?php if($a->module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>>
|
||||||
|
|
|
@ -918,6 +918,7 @@ input#dfrn-url {
|
||||||
#profile-edit-religion-label,
|
#profile-edit-religion-label,
|
||||||
#profile-edit-pubkeywords-label,
|
#profile-edit-pubkeywords-label,
|
||||||
#profile-edit-prvkeywords-label,
|
#profile-edit-prvkeywords-label,
|
||||||
|
#profile-edit-xmpp-label,
|
||||||
#profile-edit-homepage-label,
|
#profile-edit-homepage-label,
|
||||||
#profile-edit-hometown-label {
|
#profile-edit-hometown-label {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
@ -939,6 +940,7 @@ input#dfrn-url {
|
||||||
#sexual-select,
|
#sexual-select,
|
||||||
#profile-edit-politic,
|
#profile-edit-politic,
|
||||||
#profile-edit-religion,
|
#profile-edit-religion,
|
||||||
|
#profile-edit-xmpp,
|
||||||
#profile-edit-pubkeywords,
|
#profile-edit-pubkeywords,
|
||||||
#profile-edit-prvkeywords,
|
#profile-edit-prvkeywords,
|
||||||
#profile-in-dir-yes,
|
#profile-in-dir-yes,
|
||||||
|
@ -952,6 +954,7 @@ input#dfrn-url {
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
#profile-edit-xmpp,
|
||||||
#profile-edit-pubkeywords,
|
#profile-edit-pubkeywords,
|
||||||
#profile-edit-prvkeywords {
|
#profile-edit-prvkeywords {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
@ -1024,6 +1027,7 @@ input#dfrn-url {
|
||||||
|
|
||||||
|
|
||||||
#profile-edit-pdesc-desc,
|
#profile-edit-pdesc-desc,
|
||||||
|
#profile-edit-xmpp-desc,
|
||||||
#profile-edit-pubkeywords-desc,
|
#profile-edit-pubkeywords-desc,
|
||||||
#profile-edit-prvkeywords-desc {
|
#profile-edit-prvkeywords-desc {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1039,7 +1043,8 @@ input#dfrn-url {
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 35px;
|
margin-bottom: 35px;
|
||||||
}*/
|
}*/
|
||||||
#profile-edit-homepage, #profile-edit-hometown {
|
#profile-edit-homepage,
|
||||||
|
#profile-edit-hometown {
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
|
@ -1082,6 +1087,7 @@ input#dfrn-url {
|
||||||
#profile-edit-pubkeywords-end,
|
#profile-edit-pubkeywords-end,
|
||||||
#profile-edit-prvkeywords-end,
|
#profile-edit-prvkeywords-end,
|
||||||
#profile-edit-homepage-end,
|
#profile-edit-homepage-end,
|
||||||
|
#profile-edit-xmpp-end,
|
||||||
#profile-edit-hometown-end,
|
#profile-edit-hometown-end,
|
||||||
#profile-in-dir-break,
|
#profile-in-dir-break,
|
||||||
#profile-in-dir-end,
|
#profile-in-dir-end,
|
||||||
|
@ -1359,7 +1365,7 @@ input#dfrn-url {
|
||||||
/* add ellipsis on text overflow */
|
/* add ellipsis on text overflow */
|
||||||
/* this work on safari, opera, ie, chrome. */
|
/* this work on safari, opera, ie, chrome. */
|
||||||
/* firefox users have to wait support or we */
|
/* firefox users have to wait support or we */
|
||||||
/* can use a jquery plugin http://bit.ly/zJskg */
|
/* can use a jquery addon http://bit.ly/zJskg */
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
-o-text-overflow: ellipsis;
|
-o-text-overflow: ellipsis;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -1385,6 +1391,17 @@ input#dfrn-url {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wall-item-tools a {
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 2px;
|
||||||
|
background-position: center;
|
||||||
|
background-size: initial !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wall-item-tools a.active {
|
||||||
|
background-color: rgba(59, 101, 164, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
.wall-item-share-buttons {
|
.wall-item-share-buttons {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
@ -1849,6 +1866,9 @@ input#dfrn-url {
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pager .disabled {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.pager_first,
|
.pager_first,
|
||||||
.pager_last,
|
.pager_last,
|
||||||
|
@ -1897,6 +1917,7 @@ input#dfrn-url {
|
||||||
#advanced-profile-marital-wrapper,
|
#advanced-profile-marital-wrapper,
|
||||||
#advanced-profile-sexual-wrapper,
|
#advanced-profile-sexual-wrapper,
|
||||||
#advanced-profile-homepage-wrapper,
|
#advanced-profile-homepage-wrapper,
|
||||||
|
#advanced-profile-xmpp-wrapper,
|
||||||
#advanced-profile-politic-wrapper,
|
#advanced-profile-politic-wrapper,
|
||||||
#advanced-profile-religion-wrapper,
|
#advanced-profile-religion-wrapper,
|
||||||
#advanced-profile-about-wrapper,
|
#advanced-profile-about-wrapper,
|
||||||
|
@ -1919,6 +1940,7 @@ input#dfrn-url {
|
||||||
#advanced-profile-marital-text,
|
#advanced-profile-marital-text,
|
||||||
#advanced-profile-sexual-text,
|
#advanced-profile-sexual-text,
|
||||||
#advanced-profile-homepage-text,
|
#advanced-profile-homepage-text,
|
||||||
|
#advanced-profile-xmpp-text,
|
||||||
#advanced-profile-politic-text,
|
#advanced-profile-politic-text,
|
||||||
#advanced-profile-religion-text,
|
#advanced-profile-religion-text,
|
||||||
#advanced-profile-about-text,
|
#advanced-profile-about-text,
|
||||||
|
@ -1942,6 +1964,7 @@ input#dfrn-url {
|
||||||
#advanced-profile-marital-end,
|
#advanced-profile-marital-end,
|
||||||
#advanced-profile-sexual-end,
|
#advanced-profile-sexual-end,
|
||||||
#advanced-profile-homepage-end,
|
#advanced-profile-homepage-end,
|
||||||
|
#advanced-profile-xmpp-end,
|
||||||
#advanced-profile-politic-end,
|
#advanced-profile-politic-end,
|
||||||
#advanced-profile-religion-end {
|
#advanced-profile-religion-end {
|
||||||
height: 10px;
|
height: 10px;
|
||||||
|
@ -1968,6 +1991,7 @@ input#dfrn-url {
|
||||||
#advanced-profile-marital,
|
#advanced-profile-marital,
|
||||||
#advanced-profile-sexual,
|
#advanced-profile-sexual,
|
||||||
#advanced-profile-homepage,
|
#advanced-profile-homepage,
|
||||||
|
#advanced-profile-xmpp,
|
||||||
#advanced-profile-politic,
|
#advanced-profile-politic,
|
||||||
#advanced-profile-religion {
|
#advanced-profile-religion {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -2912,14 +2936,14 @@ aside input[type='text'] {
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.location-label, .gender-label, .marital-label, .homepage-label, .network-label {
|
.location-label, .gender-label, .marital-label, .homepage-label, .ympp-label, .network-label, .xmpp-label {
|
||||||
float: left;
|
float: left;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
display: block;
|
display: block;
|
||||||
width: 65px;
|
width: 65px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adr, .x-gender, .marital-text, .homepage-url, .x-network {
|
.adr, .x-gender, .marital-text, .homepage-url, .x-network, .xmpp-data {
|
||||||
float: left;
|
float: left;
|
||||||
display: block;
|
display: block;
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
|
@ -2940,7 +2964,7 @@ aside input[type='text'] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#plugin-settings-link, #account-settings-link {
|
#addon-settings-link, #account-settings-link {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3560,10 +3584,10 @@ aside input[type='text'] {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminpage #pluginslist {
|
#adminpage #addonslist {
|
||||||
margin: 0px; padding: 0px;
|
margin: 0px; padding: 0px;
|
||||||
}
|
}
|
||||||
#adminpage .plugin {
|
#adminpage .addon {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: block;
|
display: block;
|
||||||
border: 1px solid #888888;
|
border: 1px solid #888888;
|
||||||
|
@ -3571,8 +3595,8 @@ aside input[type='text'] {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
#adminpage .plugin .desc { margin-left: 2.5em;}
|
#adminpage .addon .desc { margin-left: 2.5em;}
|
||||||
#adminpage .toggleplugin {
|
#adminpage .toggleaddon {
|
||||||
float:left;
|
float:left;
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
@ -3886,7 +3910,7 @@ aside input[type='text'] {
|
||||||
.event-maybeattend-icon { background-image: url('images/event-maybeattend-16.png'); }
|
.event-maybeattend-icon { background-image: url('images/event-maybeattend-16.png'); }
|
||||||
.event-dontattend-icon { background-image: url('images/event-dontattend-16.png'); }
|
.event-dontattend-icon { background-image: url('images/event-dontattend-16.png'); }
|
||||||
|
|
||||||
.filer-icon:hover {
|
.event-icon:hover {
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,5 @@
|
||||||
|
|
||||||
{{*<!-- <script>
|
|
||||||
$(document).ready( function () {
|
|
||||||
$(document).mouseup(function(e) {
|
|
||||||
var container = $("#comment-edit-wrapper-{{$id}}");
|
|
||||||
if( container.has(e.target).length === 0) {
|
|
||||||
commentClose(document.getElementById('comment-edit-text-{{$id}}'),{{$id}});
|
|
||||||
cmtBbClose({{$id}});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>-->*}}
|
|
||||||
|
|
||||||
<div class="comment-wwedit-wrapper {{$indent}}" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
<div class="comment-wwedit-wrapper {{$indent}}" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
||||||
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
||||||
{{*<!-- <span id="hide-commentbox-{{$id}}" class="hide-commentbox fakelink" onclick="showHideCommentBox({{$id}});">{{$comment}}</span>
|
|
||||||
<form class="comment-edit-form" style="display: none;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">-->*}}
|
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
<input type="hidden" name="type" value="{{$type}}" />
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
|
@ -23,39 +8,34 @@
|
||||||
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
||||||
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
||||||
|
|
||||||
{{*<!-- <div class="comment-edit-photo" id="comment-edit-photo-{{$id}}" >-->*}}
|
|
||||||
<a class="comment-edit-photo comment-edit-photo-link" id="comment-edit-photo-{{$id}}" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
|
<a class="comment-edit-photo comment-edit-photo-link" id="comment-edit-photo-{{$id}}" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
|
||||||
{{*<!-- </div>-->*}}
|
|
||||||
{{*<!--<div class="comment-edit-photo-end"></div>-->*}}
|
|
||||||
<ul class="comment-edit-bb" id="comment-edit-bb-{{$id}}">
|
<ul class="comment-edit-bb" id="comment-edit-bb-{{$id}}">
|
||||||
<li><a class="editicon boldbb shadow"
|
<li><a class="editicon boldbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edbold}}"
|
style="cursor: pointer;" title="{{$edbold}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="b" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="b" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon italicbb shadow"
|
<li><a class="editicon italicbb shadow"
|
||||||
style="cursor: pointer;" title="{{$editalic}}"
|
style="cursor: pointer;" title="{{$editalic}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="i" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="i" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon underlinebb shadow"
|
<li><a class="editicon underlinebb shadow"
|
||||||
style="cursor: pointer;" title="{{$eduline}}"
|
style="cursor: pointer;" title="{{$eduline}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="u" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="u" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon quotebb shadow"
|
<li><a class="editicon quotebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edquote}}"
|
style="cursor: pointer;" title="{{$edquote}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="quote" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="quote" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon codebb shadow"
|
<li><a class="editicon codebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edcode}}"
|
style="cursor: pointer;" title="{{$edcode}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="code" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="code" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon imagebb shadow"
|
<li><a class="editicon imagebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edimg}}"
|
style="cursor: pointer;" title="{{$edimg}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="img" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="img" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon urlbb shadow"
|
<li><a class="editicon urlbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edurl}}"
|
style="cursor: pointer;" title="{{$edurl}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="url" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="url" data-id="{{$id}}"></a></li>
|
||||||
<li><a class="editicon videobb shadow"
|
<li><a class="editicon videobb shadow"
|
||||||
style="cursor: pointer;" title="{{$edvideo}}"
|
style="cursor: pointer;" title="{{$edvideo}}"
|
||||||
data-role="insert-formatting" data-comment="{{$comment}}" data-bbcode="video" data-id="{{$id}}"></a></li>
|
data-role="insert-formatting" data-bbcode="video" data-id="{{$id}}"></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
{{*<!-- <div class="comment-edit-bb-end"></div>-->*}}
|
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" placeholder="{{$comment}}" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});"></textarea>
|
||||||
{{*<!-- <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});cmtBbClose({{$id}});" >{{$comment}}</textarea>-->*}}
|
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" >{{$comment}}</textarea>
|
|
||||||
{{if $qcomment}}
|
{{if $qcomment}}
|
||||||
<select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});">
|
<select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});">
|
||||||
<option value=""></option>
|
<option value=""></option>
|
||||||
|
@ -71,8 +51,5 @@
|
||||||
<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="fakelink">{{$preview}}</span>
|
<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="fakelink">{{$preview}}</span>
|
||||||
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
|
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{*<!--<div class="comment-edit-end"></div>-->*}}
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -75,6 +75,15 @@
|
||||||
<h4>{{$lbl_vis1}}</h4>
|
<h4>{{$lbl_vis1}}</h4>
|
||||||
<p>{{$lbl_vis2}}</p>
|
<p>{{$lbl_vis2}}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{if $reason}}
|
||||||
|
<div id="contact-info-wrapper">
|
||||||
|
<h4>{{$lbl_info2}}</h4>
|
||||||
|
<p>{{$reason}}</p>
|
||||||
|
</div>
|
||||||
|
<div id="contact-info-end"></div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{$profile_select}}
|
{{$profile_select}}
|
||||||
<div id="contact-edit-profile-select-end"></div>
|
<div id="contact-edit-profile-select-end"></div>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">contactInitEditor();</script>
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
|
||||||
window.editSelect = "{{$editselect}}";
|
|
||||||
</script>
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<script type="text/javascript" src="library/cropper/lib/prototype.js" language="javascript"></script>
|
<script type="text/javascript" src="view/js/cropper/lib/prototype.js" language="javascript"></script>
|
||||||
<script type="text/javascript" src="library/cropper/lib/scriptaculous.js?load=effects,builder,dragdrop" language="javascript"></script>
|
<script type="text/javascript" src="view/js/cropper/lib/scriptaculous.js?load=effects,builder,dragdrop" language="javascript"></script>
|
||||||
<script type="text/javascript" src="library/cropper/cropper.js" language="javascript"></script>
|
<script type="text/javascript" src="view/js/cropper/cropper.js" language="javascript"></script>
|
||||||
<script type="text/javascript" language="javascript">initCrop();</script>
|
<script type="text/javascript" language="javascript">initCrop();</script>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<link rel="stylesheet" href="library/cropper/cropper.css" type="text/css" />
|
<link rel="stylesheet" href="view/js/cropper/cropper.css" type="text/css" />
|
||||||
|
|
|
@ -2,25 +2,18 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script>-->*}}
|
|
||||||
{{*<!--<script type="text/javascript">
|
|
||||||
tinyMCE.init({ mode : "none"});
|
|
||||||
</script>-->*}}
|
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery/dist/jquery.min.js" ></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js" ></script>
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/jquery.divgrow-1.3.1.f1.min.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/jquery.divgrow-1.3.1.f1.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/jquery.textinputs.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/colorbox/jquery.colorbox-min.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery-colorbox/jquery.colorbox-min.js"></script>
|
||||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/tiptip/jquery.tipTip.minified.js"></script>-->*}}
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jgrowl/jquery.jgrowl.min.js"></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery-datetimepicker/build/jquery.datetimepicker.full.min.js"></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.js"></script>
|
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/acl.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/acl.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/webtoolkit.base64.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/base64/base64.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/jquery-textcomplete/jquery.textcomplete.min.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/jquery-textcomplete/jquery.textcomplete.min.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/autocomplete.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/autocomplete.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/main.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/main.js" ></script>
|
||||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/theme.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/theme.js"></script>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript"
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/moment/min/moment-with-locales.min.js"></script>
|
||||||
src="{{$baseurl}}/library/fullcalendar/fullcalendar.min.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/fullcalendar/dist/fullcalendar.min.js"></script>
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">eventInitEditor();</script>
|
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
|
||||||
<link rel='stylesheet' type='text/css' href='{{$baseurl}}/library/fullcalendar/fullcalendar.css' />
|
<link rel="stylesheet" type="text/css" href="{{$baseurl}}/view/asset/fullcalendar/dist/fullcalendar.min.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{$baseurl}}/view/asset/fullcalendar/dist/fullcalendar.print.min.css" media="print" />
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
window.aclType = 'event_head';
|
window.aclType = 'event_head';
|
||||||
window.editSelect = "{{$editselect}}";
|
window.eventModuleUrl = '{{$module_url}}';
|
||||||
window.eventModuleUrl = "{{$module_url}}";
|
window.eventModeParams = '{{$modparams}}';
|
||||||
window.eventModeParams = "{{$modparams}}" ;
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,13 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
<base href="{{$baseurl}}/" />
|
<base href="{{$baseurl}}/" />
|
||||||
<meta name="generator" content="{{$generator}}" />
|
<meta name="generator" content="{{$generator}}" />
|
||||||
<link rel="stylesheet" href="{{$baseurl}}/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
<link rel="stylesheet" href="{{$baseurl}}/view/asset/jquery-colorbox/example5/colorbox.css" type="text/css" media="screen" />
|
||||||
{{*<!--<link rel="stylesheet" href="{{$baseurl}}/library/tiptip/tipTip.css" type="text/css" media="screen" />-->*}}
|
<link rel="stylesheet" href="{{$baseurl}}/view/asset/jgrowl/jquery.jgrowl.min.css" type="text/css" media="screen" />
|
||||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
<link rel="stylesheet" href="{{$baseurl}}/view/asset/jquery-datetimepicker/build/jquery.datetimepicker.min.css" type="text/css" media="screen" />
|
||||||
<link rel="stylesheet" href="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.css" type="text/css" media="screen" />
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/asset/jquery/dist/jquery.min.js" ></script>
|
||||||
|
|
||||||
<link rel="shortcut icon" href="{{$baseurl}}/images/friendica-32.png" />
|
<link rel="shortcut icon" href="{{$baseurl}}/images/friendica-32.png" />
|
||||||
<link rel="search"
|
<link rel="search"
|
||||||
|
@ -19,7 +18,6 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.delItem = "{{$delitem}}";
|
window.delItem = "{{$delitem}}";
|
||||||
window.commentEmptyText = "{{$comment}}";
|
|
||||||
window.showMore = "{{$showmore}}";
|
window.showMore = "{{$showmore}}";
|
||||||
window.showFewer = "{{$showfewer}}";
|
window.showFewer = "{{$showfewer}}";
|
||||||
var updateInterval = {{$update_interval}};
|
var updateInterval = {{$update_interval}};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">if(typeof window.jotInit != 'undefined') initEditor();</script>
|
<script language="javascript" type="text/javascript">if(typeof window.jotInit != 'undefined') initEditor();</script>
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.editSelect = "{{$editselect}}";
|
|
||||||
window.isPublic = "{{$ispublic}}";
|
window.isPublic = "{{$ispublic}}";
|
||||||
window.nickname = "{{$nickname}}";
|
window.nickname = "{{$nickname}}";
|
||||||
window.linkURL = "{{$linkurl}}";
|
window.linkURL = "{{$linkurl}}";
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div id="jot-text-wrap">
|
<div id="jot-text-wrap">
|
||||||
<img id="profile-jot-text-loading" src="images/rotator.gif" alt="{{$wait}}" title="{{$wait}}" style="display: none;" />
|
<img id="profile-jot-text-loading" src="images/rotator.gif" alt="{{$wait}}" title="{{$wait}}" style="display: none;" />
|
||||||
<textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" >{{if $content}}{{$content}}{{else}}{{$share}}{{/if}}</textarea>
|
<textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" placeholder="{{$share}}">{{if $content}}{{$content}}{{/if}}</textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="profile-jot-submit-wrapper" class="jothidden">
|
<div id="profile-jot-submit-wrapper" class="jothidden">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div class="mail-conv-outside-wrapper">
|
<div class="mail-conv-outside-wrapper">
|
||||||
<div class="mail-conv-sender" >
|
<div class="mail-conv-sender" >
|
||||||
<a href="{{$mail.from_url}}" class="mail-conv-sender-url" ><img class="mframe mail-conv-sender-photo{{$mail.sparkle}}" src="{{$mail.from_photo}}" heigth="80" width="80" alt="{{$mail.from_name}}" /></a>
|
<a href="{{$mail.from_url}}" title="{{$mail.from_addr}}" class="mail-conv-sender-url" ><img class="mframe mail-conv-sender-photo{{$mail.sparkle}}" src="{{$mail.from_photo}}" heigth="80" width="80" alt="{{$mail.from_name}}" title="{{$mail.from_addr}}" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="mail-conv-detail" >
|
<div class="mail-conv-detail" >
|
||||||
<div class="mail-conv-sender-name" >{{$mail.from_name}}</div>
|
<div class="mail-conv-sender-name" >{{$mail.from_name}}</div>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div class="mail-list-outside-wrapper">
|
<div class="mail-list-outside-wrapper">
|
||||||
<div class="mail-list-sender" >
|
<div class="mail-list-sender" >
|
||||||
<a href="{{$from_url}}" class="mail-list-sender-url" ><img class="mail-list-sender-photo{{$sparkle}}" src="{{$from_photo}}" height="80" width="80" alt="{{$from_name}}" /></a>
|
<a href="{{$from_url}}" title="{{$from_addr}}" class="mail-list-sender-url" ><img class="mail-list-sender-photo{{$sparkle}}" src="{{$from_photo}}" height="80" width="80" alt="{{$from_name}}" title="{{$from_addr}}" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="mail-list-detail">
|
<div class="mail-list-detail">
|
||||||
<div class="mail-list-sender-name" >{{$from_name}}</div>
|
<div class="mail-list-sender-name" >{{$from_name}}</div>
|
||||||
|
|
|
@ -23,31 +23,31 @@
|
||||||
<ul class="comment-edit-bb-{{$id}}">
|
<ul class="comment-edit-bb-{{$id}}">
|
||||||
<li><a class="editicon boldbb shadow"
|
<li><a class="editicon boldbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edbold}}"
|
style="cursor: pointer;" title="{{$edbold}}"
|
||||||
onclick="insertFormatting('{{$comment}}','b', {{$id}});"></a></li>
|
onclick="insertFormatting('b', {{$id}});"></a></li>
|
||||||
<li><a class="editicon italicbb shadow"
|
<li><a class="editicon italicbb shadow"
|
||||||
style="cursor: pointer;" title="{{$editalic}}"
|
style="cursor: pointer;" title="{{$editalic}}"
|
||||||
onclick="insertFormatting('{{$comment}}','i', {{$id}});"></a></li>
|
onclick="insertFormatting('i', {{$id}});"></a></li>
|
||||||
<li><a class="editicon underlinebb shadow"
|
<li><a class="editicon underlinebb shadow"
|
||||||
style="cursor: pointer;" title="{{$eduline}}"
|
style="cursor: pointer;" title="{{$eduline}}"
|
||||||
onclick="insertFormatting('{{$comment}}','u', {{$id}});"></a></li>
|
onclick="insertFormatting('u', {{$id}});"></a></li>
|
||||||
<li><a class="editicon quotebb shadow"
|
<li><a class="editicon quotebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edquote}}"
|
style="cursor: pointer;" title="{{$edquote}}"
|
||||||
onclick="insertFormatting('{{$comment}}','quote', {{$id}});"></a></li>
|
onclick="insertFormatting('quote', {{$id}});"></a></li>
|
||||||
<li><a class="editicon codebb shadow"
|
<li><a class="editicon codebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edcode}}"
|
style="cursor: pointer;" title="{{$edcode}}"
|
||||||
onclick="insertFormatting('{{$comment}}','code', {{$id}});"></a></li>
|
onclick="insertFormatting('code', {{$id}});"></a></li>
|
||||||
<li><a class="editicon imagebb shadow"
|
<li><a class="editicon imagebb shadow"
|
||||||
style="cursor: pointer;" title="{{$edimg}}"
|
style="cursor: pointer;" title="{{$edimg}}"
|
||||||
onclick="insertFormatting('{{$comment}}','img', {{$id}});"></a></li>
|
onclick="insertFormatting('img', {{$id}});"></a></li>
|
||||||
<li><a class="editicon urlbb shadow"
|
<li><a class="editicon urlbb shadow"
|
||||||
style="cursor: pointer;" title="{{$edurl}}"
|
style="cursor: pointer;" title="{{$edurl}}"
|
||||||
onclick="insertFormatting('{{$comment}}','url', {{$id}});"></a></li>
|
onclick="insertFormatting('url', {{$id}});"></a></li>
|
||||||
<li><a class="editicon videobb shadow"
|
<li><a class="editicon videobb shadow"
|
||||||
style="cursor: pointer;" title="{{$edvideo}}"
|
style="cursor: pointer;" title="{{$edvideo}}"
|
||||||
onclick="insertFormatting('{{$comment}}','video', {{$id}});"></a></li>
|
onclick="insertFormatting('video', {{$id}});"></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="comment-edit-bb-end"></div>
|
<div class="comment-edit-bb-end"></div>
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});" >{{$comment}}</textarea>
|
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" placeholder="{{$comment}}" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});"></textarea>
|
||||||
|
|
||||||
<div class="comment-edit-text-end"></div>
|
<div class="comment-edit-text-end"></div>
|
||||||
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">msgInitEditor();</script>
|
<script language="javascript" type="text/javascript">msgInitEditor();</script>
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
window.nickname = "{{$nickname}}";
|
window.nickname = "{{$nickname}}";
|
||||||
window.linkURL = "{{$linkurl}}";
|
window.linkURL = "{{$linkurl}}";
|
||||||
window.editSelect = "{{$editselect}}";
|
|
||||||
window.jotId = "#prvmail-text";
|
window.jotId = "#prvmail-text";
|
||||||
window.imageUploadButton = 'prvmail-upload';
|
window.imageUploadButton = 'prvmail-upload';
|
||||||
window.autocompleteType = 'msg-header';
|
window.autocompleteType = 'msg-header';
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
|
|
||||||
<script type="text/javascript" src="js/country.js" ></script>
|
<script type="text/javascript" src="view/js/country.js" ></script>
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
profInitEditor();
|
|
||||||
Fill_Country('{{$country_name}}');
|
Fill_Country('{{$country_name}}');
|
||||||
Fill_States('{{$region}}');
|
Fill_States('{{$region}}');
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
|
||||||
window.editSelect = "{{$editselect}}";
|
|
||||||
</script>
|
|
||||||
|
|
|
@ -131,6 +131,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="profile-edit-homepage-end"></div>
|
<div id="profile-edit-homepage-end"></div>
|
||||||
|
|
||||||
|
<div id="profile-edit-xmpp-wrapper" >
|
||||||
|
<label id="profile-edit-xmpp-label" for="profile-edit-xmpp" >{{$xmpp.1}} </label>
|
||||||
|
<input type="text" size="28" name="xmpp" id="profile-edit-xmpp" title="{{$lbl_ex2}}" value="{{$xmpp.2}}" />
|
||||||
|
</div><div id="profile-edit-xmpp-desc">{{$xmpp.3}}</div>
|
||||||
|
<div id="profile-edit-xmpp-end"></div>
|
||||||
|
|
||||||
<div id="profile-edit-politic-wrapper" >
|
<div id="profile-edit-politic-wrapper" >
|
||||||
<label id="profile-edit-politic-label" for="profile-edit-politic" >{{$politic.1}} </label>
|
<label id="profile-edit-politic-label" for="profile-edit-politic" >{{$politic.1}} </label>
|
||||||
<input type="text" size="28" name="politic" id="profile-edit-politic" value="{{$politic.2}}" />
|
<input type="text" size="28" name="politic" id="profile-edit-politic" value="{{$politic.2}}" />
|
||||||
|
|
|
@ -26,6 +26,13 @@
|
||||||
</dl>
|
</dl>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
{{if $profile.xmpp}}
|
||||||
|
<dl class="xmpp">
|
||||||
|
<dt class="xmpp-label">{{$xmpp}}</dt>
|
||||||
|
<dd class="xmpp-data">{{$profile.xmpp}}</dd>
|
||||||
|
</dl>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{if $gender}}<dl class="mf"><dt class="gender-label">{{$gender}}</dt> <dd class="p-gender">{{$profile.gender}}</dd></dl>{{/if}}
|
{{if $gender}}<dl class="mf"><dt class="gender-label">{{$gender}}</dt> <dd class="p-gender">{{$profile.gender}}</dd></dl>{{/if}}
|
||||||
|
|
||||||
{{if $profile.pubkey}}<div class="key" style="display:none;">{{$profile.pubkey}}</div>{{/if}}
|
{{if $profile.pubkey}}<div class="key" style="display:none;">{{$profile.pubkey}}</div>{{/if}}
|
||||||
|
|
|
@ -48,9 +48,11 @@
|
||||||
{{*<!--<div class="wall-item-title-end"></div>-->*}}
|
{{*<!--<div class="wall-item-title-end"></div>-->*}}
|
||||||
<div class="wall-item-body" id="wall-item-body-{{$item.id}}" ><span class="e-content">{{$item.body}}</span>
|
<div class="wall-item-body" id="wall-item-body-{{$item.id}}" ><span class="e-content">{{$item.body}}</span>
|
||||||
{{*<!--<div class="body-tag">-->*}}
|
{{*<!--<div class="body-tag">-->*}}
|
||||||
|
{{if !$item.suppress_tags}}
|
||||||
{{foreach $item.tags as $tag}}
|
{{foreach $item.tags as $tag}}
|
||||||
<span class='body-tag tag'>{{$tag}}</span>
|
<span class="body-tag tag">{{$tag}}</span>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
{{/if}}
|
||||||
{{*<!--</div>-->*}}
|
{{*<!--</div>-->*}}
|
||||||
{{if $item.has_cats}}
|
{{if $item.has_cats}}
|
||||||
<div class="categorytags">{{$item.txt_cats}} {{foreach $item.categories as $cat}}<span class="p-category">{{$cat.name}}</span> <a href="{{$cat.removeurl}}" title="{{$remove}}">[{{$remove}}]</a> {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
|
<div class="categorytags">{{$item.txt_cats}} {{foreach $item.categories as $cat}}<span class="p-category">{{$cat.name}}</span> <a href="{{$cat.removeurl}}" title="{{$remove}}">[{{$remove}}]</a> {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
|
||||||
|
@ -66,9 +68,9 @@
|
||||||
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
|
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
|
||||||
{{if $item.vote}}
|
{{if $item.vote}}
|
||||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$item.id}}">
|
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$item.id}}">
|
||||||
<a href="#" class="tool like" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></a>
|
<a href="#" class="tool like{{if $item.responses.like.self}} active{{/if}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></a>
|
||||||
{{if $item.vote.dislike}}
|
{{if $item.vote.dislike}}
|
||||||
<a href="#" class="tool dislike" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>
|
<a href="#" class="tool dislike{{if $item.responses.dislike.self}} active{{/if}}" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $item.vote.share}}<a href="#" class="tool recycle wall-item-share-buttons" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"></a>{{/if}}
|
{{if $item.vote.share}}<a href="#" class="tool recycle wall-item-share-buttons" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"></a>{{/if}}
|
||||||
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
||||||
|
@ -92,9 +94,9 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if $item.isevent}}
|
{{if $item.isevent}}
|
||||||
<a href="#" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="dolike({{$item.id}},'attendyes'); return false;" class="event-item event-icon event-attend-icon"></a>
|
<a href="#" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="dolike({{$item.id}},'attendyes'); return false;" class="event-item event-icon event-attend-icon{{if $item.responses.attendyes.self}} active{{/if}}"></a>
|
||||||
<a href="#" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="dolike({{$item.id}},'attendno'); return false;" class="event-item event-icon event-dontattend-icon"></a>
|
<a href="#" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="dolike({{$item.id}},'attendno'); return false;" class="event-item event-icon event-dontattend-icon{{if $item.responses.attendno.self}} active{{/if}}"></a>
|
||||||
<a href="#" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="dolike({{$item.id}},'attendmaybe'); return false;" class="event-item event-icon event-maybeattend-icon"></a>
|
<a href="#" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="dolike({{$item.id}},'attendmaybe'); return false;" class="event-item event-icon event-maybeattend-icon{{if $item.responses.attendmaybe.self}} active{{/if}}"></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">msgInitEditor();</script>
|
<script language="javascript" type="text/javascript">msgInitEditor();</script>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
window.editSelect = "{{$editselect}}";
|
|
||||||
window.jotId = "#prvmail-text";
|
window.jotId = "#prvmail-text";
|
||||||
window.imageUploadButton = 'prvmail-upload';
|
window.imageUploadButton = 'prvmail-upload';
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -9,48 +9,52 @@
|
||||||
* Maintainer: Zach P <techcity@f.shmuz.in>
|
* Maintainer: Zach P <techcity@f.shmuz.in>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function frost_init(&$a) {
|
use Friendica\App;
|
||||||
|
use Friendica\Content\Text\Plaintext;
|
||||||
|
use Friendica\Core\Addon;
|
||||||
|
use Friendica\Core\System;
|
||||||
|
|
||||||
|
function frost_init(App $a) {
|
||||||
$a->videowidth = 400;
|
$a->videowidth = 400;
|
||||||
$a->videoheight = 330;
|
$a->videoheight = 330;
|
||||||
$a->theme_thread_allow = false;
|
$a->set_template_engine('smarty3');
|
||||||
set_template_engine($a, 'smarty3');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function frost_content_loaded(&$a) {
|
function frost_content_loaded(App $a) {
|
||||||
|
|
||||||
// I could do this in style.php, but by having the CSS in a file the browser will cache it,
|
// I could do this in style.php, but by having the CSS in a file the browser will cache it,
|
||||||
// making pages load faster
|
// making pages load faster
|
||||||
if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
|
if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
|
||||||
//$a->page['htmlhead'] = str_replace('$stylesheet', $a->get_baseurl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
|
//$a->page['htmlhead'] = str_replace('$stylesheet', System::baseUrl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
|
||||||
$a->theme['stylesheet'] = $a->get_baseurl() . '/view/theme/frost/login-style.css';
|
$a->theme['stylesheet'] = System::baseUrl() . '/view/theme/frost/login-style.css';
|
||||||
}
|
}
|
||||||
if( $a->module === 'login' )
|
|
||||||
|
if ( $a->module === 'login' ) {
|
||||||
$a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
|
$a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function frost_install() {
|
function frost_install() {
|
||||||
register_hook('prepare_body_final', 'view/theme/frost/theme.php', 'frost_item_photo_links');
|
Addon::registerHook('prepare_body_final', 'view/theme/frost/theme.php', 'frost_item_photo_links');
|
||||||
|
|
||||||
logger("installed theme frost");
|
logger("installed theme frost");
|
||||||
}
|
}
|
||||||
|
|
||||||
function frost_uninstall() {
|
function frost_uninstall() {
|
||||||
unregister_hook('bbcode', 'view/theme/frost/theme.php', 'frost_bbcode');
|
Addon::unregisterHook('bbcode', 'view/theme/frost/theme.php', 'frost_bbcode');
|
||||||
|
|
||||||
logger("uninstalled theme frost");
|
logger("uninstalled theme frost");
|
||||||
}
|
}
|
||||||
|
|
||||||
function frost_item_photo_links(&$a, &$body_info) {
|
function frost_item_photo_links(App $a, &$body_info)
|
||||||
require_once('include/Photo.php');
|
{
|
||||||
$phototypes = Photo::supportedTypes();
|
$occurence = 0;
|
||||||
|
$p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>');
|
||||||
$occurence = 1;
|
|
||||||
$p = bb_find_open_close($body_info['html'], "<a", ">");
|
|
||||||
while($p !== false && ($occurence++ < 500)) {
|
while($p !== false && ($occurence++ < 500)) {
|
||||||
$link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
|
$link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
|
||||||
|
|
||||||
$matches = array();
|
$matches = [];
|
||||||
preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches);
|
preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches);
|
||||||
if($matches) {
|
if($matches) {
|
||||||
|
|
||||||
|
@ -67,7 +71,7 @@ function frost_item_photo_links(&$a, &$body_info) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$p = bb_find_open_close($body_info['html'], "<a", ">", $occurence);
|
$p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>', $occurence);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue