Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
711972a166
2
boot.php
2
boot.php
|
@ -2156,6 +2156,7 @@ function clear_cache($basepath = "", $path = "") {
|
|||
if ($cachetime == 0)
|
||||
$cachetime = 86400;
|
||||
|
||||
if (is_writable($path)){
|
||||
if ($dh = opendir($path)) {
|
||||
while (($file = readdir($dh)) !== false) {
|
||||
$fullpath = $path."/".$file;
|
||||
|
@ -2166,6 +2167,7 @@ function clear_cache($basepath = "", $path = "") {
|
|||
}
|
||||
closedir($dh);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function set_template_engine(&$a, $engine = 'internal') {
|
||||
|
|
|
@ -239,6 +239,7 @@ function admin_page_site_post(&$a){
|
|||
|
||||
$sitename = ((x($_POST,'sitename')) ? notags(trim($_POST['sitename'])) : '');
|
||||
$banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false);
|
||||
$info = ((x($_POST,'info')) ? trim($_POST['info']) : false);
|
||||
$language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : '');
|
||||
$theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
|
||||
$theme_mobile = ((x($_POST,'theme_mobile')) ? notags(trim($_POST['theme_mobile'])) : '');
|
||||
|
@ -284,6 +285,7 @@ function admin_page_site_post(&$a){
|
|||
$ssl_policy = ((x($_POST,'ssl_policy')) ? intval($_POST['ssl_policy']) : 0);
|
||||
$old_share = ((x($_POST,'old_share')) ? True : False);
|
||||
$hide_help = ((x($_POST,'hide_help')) ? True : False);
|
||||
$suppress_language = ((x($_POST,'suppress_language')) ? True : False);
|
||||
$use_fulltext_engine = ((x($_POST,'use_fulltext_engine')) ? True : False);
|
||||
$itemcache = ((x($_POST,'itemcache')) ? notags(trim($_POST['itemcache'])) : '');
|
||||
$itemcache_duration = ((x($_POST,'itemcache_duration')) ? intval($_POST['itemcache_duration']) : 0);
|
||||
|
@ -345,6 +347,11 @@ function admin_page_site_post(&$a){
|
|||
} else {
|
||||
set_config('system','banner', $banner);
|
||||
}
|
||||
if ($info=="") {
|
||||
del_config('config','info');
|
||||
} else {
|
||||
set_config('config','info',$info);
|
||||
}
|
||||
set_config('system','language', $language);
|
||||
set_config('system','theme', $theme);
|
||||
if ( $theme_mobile === '---' ) {
|
||||
|
@ -473,6 +480,8 @@ function admin_page_site(&$a) {
|
|||
if($banner == false)
|
||||
$banner = '<a href="http://friendica.com"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="http://friendica.com">Friendica</a></span>';
|
||||
$banner = htmlspecialchars($banner);
|
||||
$info = get_config('config','info');
|
||||
$info = htmlspecialchars($info);
|
||||
|
||||
//echo "<pre>"; var_dump($lang_choices); die("</pre>");
|
||||
|
||||
|
@ -504,6 +513,7 @@ function admin_page_site(&$a) {
|
|||
// name, label, value, help string, extra data...
|
||||
'$sitename' => array('sitename', t("Site name"), htmlentities($a->config['sitename'], ENT_QUOTES), 'UTF-8'),
|
||||
'$banner' => array('banner', t("Banner/Logo"), $banner, ""),
|
||||
'$info' => array('info',t('Additional Info'), $info, t('For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo.')),
|
||||
'$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
|
||||
'$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices),
|
||||
'$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
|
||||
|
@ -548,6 +558,7 @@ function admin_page_site(&$a) {
|
|||
'$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")),
|
||||
|
||||
'$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")),
|
||||
'$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")),
|
||||
'$itemcache' => array('itemcache', t("Path to item cache"), get_config('system','itemcache'), "The item caches buffers generated bbcode and external images."),
|
||||
'$itemcache_duration' => array('itemcache_duration', t("Cache duration in seconds"), get_config('system','itemcache_duration'), t("How long should the cache files be hold? Default value is 86400 seconds (One day).")),
|
||||
'$lockpath' => array('lockpath', t("Path for lock file"), get_config('system','lockpath'), "The lock file is used to avoid multiple pollers at one time. Only define a folder here."),
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
|
||||
{{include file="field_input.tpl" field=$sitename}}
|
||||
{{include file="field_textarea.tpl" field=$banner}}
|
||||
{{include file="field_textarea.tpl" field=$info}}
|
||||
{{include file="field_select.tpl" field=$language}}
|
||||
{{include file="field_select.tpl" field=$theme}}
|
||||
{{include file="field_select.tpl" field=$theme_mobile}}
|
||||
|
@ -108,6 +109,7 @@
|
|||
{{include file="field_input.tpl" field=$lockpath}}
|
||||
{{include file="field_input.tpl" field=$temppath}}
|
||||
{{include file="field_input.tpl" field=$basepath}}
|
||||
{{include file="field_checkbox.tpl" field=$suppress_language}}
|
||||
|
||||
<h3>{{$performance}}</h3>
|
||||
{{include file="field_checkbox.tpl" field=$use_fulltext_engine}}
|
||||
|
|
|
@ -19,6 +19,12 @@
|
|||
.icon.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
|
@ -83,6 +89,12 @@
|
|||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s10.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
|
@ -147,6 +159,12 @@
|
|||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s16.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
|
@ -211,6 +229,12 @@
|
|||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s22.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
|
@ -275,6 +299,12 @@
|
|||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s48.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
|
@ -589,6 +619,14 @@ nav #nav-notifications-linkmenu.on .icon.s22.notify,
|
|||
nav #nav-notifications-linkmenu.selected .icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_on.png");
|
||||
}
|
||||
nav #nav-introductions-link.on .icon.s22.intro,
|
||||
nav #nav-introductions-link.selected .icon.s22.intro {
|
||||
background-image: url("icons/contacts_on.png");
|
||||
}
|
||||
nav #nav-messages-link.on .icon.s22.mail,
|
||||
nav #nav-messages-link.selected .icon.s22.mail {
|
||||
background-image: url("icons/messages_on.png");
|
||||
}
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #364e59;
|
||||
}
|
||||
|
|
|
@ -19,6 +19,12 @@
|
|||
.icon.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
|
@ -83,6 +89,12 @@
|
|||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s10.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
|
@ -147,6 +159,12 @@
|
|||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s16.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
|
@ -211,6 +229,12 @@
|
|||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s22.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
|
@ -275,6 +299,12 @@
|
|||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s48.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
|
@ -589,6 +619,14 @@ nav #nav-notifications-linkmenu.on .icon.s22.notify,
|
|||
nav #nav-notifications-linkmenu.selected .icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_on.png");
|
||||
}
|
||||
nav #nav-introductions-link.on .icon.s22.intro,
|
||||
nav #nav-introductions-link.selected .icon.s22.intro {
|
||||
background-image: url("icons/contacts_on.png");
|
||||
}
|
||||
nav #nav-messages-link.on .icon.s22.mail,
|
||||
nav #nav-messages-link.selected .icon.s22.mail {
|
||||
background-image: url("icons/messages_on.png");
|
||||
}
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #364e59;
|
||||
}
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
.icons(@size: 22) {
|
||||
&.notify { background-image: url("../../../images/icons/@{size}/notify_off.png"); }
|
||||
&.intro { background-image: url("icons/contacts_off.png"); }
|
||||
&.mail { background-image: url("icons/messages_off.png"); }
|
||||
&.gear { background-image: url("../../../images/icons/@{size}/gear.png"); }
|
||||
|
||||
&.like { background-image: url("icons/like.png"); }
|
||||
|
|
BIN
view/theme/quattro/icons/contacts3.png
Normal file
BIN
view/theme/quattro/icons/contacts3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 559 B |
BIN
view/theme/quattro/icons/contacts_off.png
Normal file
BIN
view/theme/quattro/icons/contacts_off.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 424 B |
BIN
view/theme/quattro/icons/contacts_on.png
Normal file
BIN
view/theme/quattro/icons/contacts_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 383 B |
BIN
view/theme/quattro/icons/messages_off.png
Normal file
BIN
view/theme/quattro/icons/messages_off.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 452 B |
BIN
view/theme/quattro/icons/messages_on.png
Normal file
BIN
view/theme/quattro/icons/messages_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 376 B |
|
@ -19,6 +19,12 @@
|
|||
.icon.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
|
@ -83,6 +89,12 @@
|
|||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s10.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
|
@ -147,6 +159,12 @@
|
|||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s16.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
|
@ -211,6 +229,12 @@
|
|||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s22.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
|
@ -275,6 +299,12 @@
|
|||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.intro {
|
||||
background-image: url("icons/contacts_off.png");
|
||||
}
|
||||
.icon.s48.mail {
|
||||
background-image: url("icons/messages_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
|
@ -589,6 +619,14 @@ nav #nav-notifications-linkmenu.on .icon.s22.notify,
|
|||
nav #nav-notifications-linkmenu.selected .icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_on.png");
|
||||
}
|
||||
nav #nav-introductions-link.on .icon.s22.intro,
|
||||
nav #nav-introductions-link.selected .icon.s22.intro {
|
||||
background-image: url("icons/contacts_on.png");
|
||||
}
|
||||
nav #nav-messages-link.on .icon.s22.mail,
|
||||
nav #nav-messages-link.selected .icon.s22.mail {
|
||||
background-image: url("icons/messages_on.png");
|
||||
}
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #cbd38d;
|
||||
}
|
||||
|
|
|
@ -215,7 +215,11 @@ nav {
|
|||
}
|
||||
|
||||
#nav-notifications-linkmenu.on .icon.s22.notify,
|
||||
#nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") }
|
||||
#nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") }
|
||||
#nav-introductions-link.on .icon.s22.intro,
|
||||
#nav-introductions-link.selected .icon.s22.intro { background-image: url("icons/contacts_on.png") }
|
||||
#nav-messages-link.on .icon.s22.mail,
|
||||
#nav-messages-link.selected .icon.s22.mail { background-image: url("icons/messages_on.png") }
|
||||
#nav-apps-link.selected { background-color: @NavbarSelectedBg; }
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<header>
|
||||
{{* {{$langselector}} *}}
|
||||
|
||||
|
@ -44,6 +39,26 @@
|
|||
</li>
|
||||
{{/if}}
|
||||
|
||||
{{if $nav.introductions}}
|
||||
<li id="nav-introductions-link" class="nav-menu-icon {{$sel.introductions}}">
|
||||
<a class="{{$nav.introductions.2}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >
|
||||
<span class="icon s22 intro">{{$nav.introductions.1}}</a>
|
||||
</a>
|
||||
<span id="intro-update" class="nav-notify"></span>
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
{{if $nav.messages}}
|
||||
<li id="nav-messages-link" class="nav-menu-icon {{$sel.messages}}">
|
||||
<a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >
|
||||
<span class="icon s22 mail">{{$nav.messages.1}}</a>
|
||||
</a>
|
||||
<span id="mail-update" class="nav-notify"></span>
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
|
||||
|
||||
{{if $nav.notifications}}
|
||||
<li id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 notify">{{$nav.notifications.1}}</span></a>
|
||||
<span id="notify-update" class="nav-notify"></span>
|
||||
|
|
|
@ -11,14 +11,21 @@
|
|||
<div class="action">
|
||||
<a class="icon s16 edit ttright" href="#" rel="#profiles-menu" title="{{$profile.edit.3}}"><span>{{$profile.edit.1}}</span></a>
|
||||
<ul id="profiles-menu" class="menu-popup">
|
||||
{{foreach $profile.menu.entries as $e}}
|
||||
<li>
|
||||
<a href="profiles/{{$e.id}}"><img src='{{$e.photo}}'>{{$e.profile_name}}</a>
|
||||
</li>
|
||||
{{/foreach}}
|
||||
{{if $profile.menu.entries}}
|
||||
{{foreach $profile.menu.entries as $e}}
|
||||
<li>
|
||||
<a href="profiles/{{$e.id}}"><img src='{{$e.photo}}'>{{$e.profile_name}}</a>
|
||||
</li>
|
||||
{{/foreach}}
|
||||
{{else}}
|
||||
<li>
|
||||
<a href="{{$profile.edit.0}}">{{$profile.edit.1}}</a>
|
||||
</li>
|
||||
{{/if}}
|
||||
<li><a href="profile_photo" >{{$profile.menu.chg_photo}}</a></li>
|
||||
{{if $profile.menu.cr_new }}
|
||||
<li><a href="profiles/new" id="profile-listing-new-link">{{$profile.menu.cr_new}}</a></li>
|
||||
|
||||
{{/if}}
|
||||
</ul>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Quattro
|
||||
* Version: 0.5
|
||||
* Version: 0.6
|
||||
* Author: Fabio <http://kirgroup.com/profile/fabrixxm>
|
||||
* Maintainer: Fabio <http://kirgroup.com/profile/fabrixxm>
|
||||
* Maintainer: Tobias <https://diekershoff.homeunix.net/friendica/profile/tobias>
|
||||
|
@ -18,11 +18,29 @@ $a->page['htmlhead'] .= <<< EOT
|
|||
$(document).ready(function(){
|
||||
$('nav').bind('nav-update', function(e,data){
|
||||
var notifCount = $(data).find('notif').attr('count');
|
||||
var intro = $(data).find('intro').text();
|
||||
var mail = $(data).find('mail').text();
|
||||
|
||||
console.log(intro,mail);
|
||||
|
||||
if (notifCount > 0 ) {
|
||||
Tinycon.setBubble(notifCount);
|
||||
} else {
|
||||
Tinycon.setBubble('');
|
||||
}
|
||||
|
||||
if (intro>0){
|
||||
$("#nav-introductions-link").addClass("on");
|
||||
} else {
|
||||
$("#nav-introductions-link").removeClass("on");
|
||||
}
|
||||
|
||||
if (mail>0){
|
||||
$("#nav-messages-link").addClass("on");
|
||||
} else {
|
||||
$("#nav-messages-link").removeClass("on");
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue