diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-04-17 18:07:20 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-04-17 18:07:20 +0200 |
commit | dbff4252d4ac7ccc1cda6b378a53c6761ea4c49d (patch) | |
tree | 23e17c4ceb420292d2dff3137ad4723f3d94fb4f /view/theme/diabook-aerith/theme.php | |
parent | 757e3429ac6928c45ffebf0b64288e63efbc6322 (diff) | |
parent | b30c761aae7e01e6fe727232e48b14303484a228 (diff) | |
download | volse-hubzilla-dbff4252d4ac7ccc1cda6b378a53c6761ea4c49d.tar.gz volse-hubzilla-dbff4252d4ac7ccc1cda6b378a53c6761ea4c49d.tar.bz2 volse-hubzilla-dbff4252d4ac7ccc1cda6b378a53c6761ea4c49d.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'view/theme/diabook-aerith/theme.php')
-rw-r--r-- | view/theme/diabook-aerith/theme.php | 38 |
1 files changed, 8 insertions, 30 deletions
diff --git a/view/theme/diabook-aerith/theme.php b/view/theme/diabook-aerith/theme.php index c798643b5..358d28498 100644 --- a/view/theme/diabook-aerith/theme.php +++ b/view/theme/diabook-aerith/theme.php @@ -3,13 +3,13 @@ /* * Name: Diabook-aerith * Description: Diabook-aerith : report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu - * Version: (Version: 1.019) + * Version: (Version: 1.020) * Author: */ //print diabook-version for debugging -$diabook_version = "Diabook-aerith (Version: 1.019)"; +$diabook_version = "Diabook-aerith (Version: 1.020)"; $a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version); @@ -131,14 +131,7 @@ function diabook_aerith_community_info(){ } } - $fostitJS = "javascript: (function() { - the_url = '".$a->get_baseurl($ssl_state)."/view/theme/diabook-aerith/fpostit/fpostit.php?url=' + encodeURIComponent(window.location.href) + '&title=' + encodeURIComponent(document.title) + '&text=' + encodeURIComponent(''+(window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text)); - a_funct = function() { - if (!window.open(the_url, 'fpostit', 'location=yes,links=no,scrollbars=no,toolbar=no,width=600,height=300')) location.href = the_url}; - if (/Firefox/.test(navigator.userAgent)) {setTimeout(a_funct, 0)} - else {a_funct()}})()" ; - - $aside['$fostitJS'] = $fostitJS; + //nav FIND FRIENDS if(local_user()) { @@ -206,13 +199,7 @@ function diabook_aerith_community_info(){ $aside['$con_services'] = $con_services; //end connectable services - //postit - $postit = array(); - $postit['title'] = Array("", t('PostIt to Friendica'), t('Post to Friendica'), ""); - $postit['text'] = Array("", t(' from anywhere by bookmarking this Link.'), "", ""); - - $aside['$postit'] = $postit; - //end postit + //get_baseurl $url = $a->get_baseurl($ssl_state); @@ -255,9 +242,9 @@ if ($a->argv[0] === "network" && local_user()){ } - $ccCookie = $_COOKIE['close_pages'] + $_COOKIE['close_helpers'] + $_COOKIE['close_services'] + $_COOKIE['close_friends'] + $_COOKIE['close_postit'] + $_COOKIE['close_lastusers'] + $_COOKIE['close_lastphotos'] + $_COOKIE['close_lastlikes']; + $ccCookie = $_COOKIE['close_pages'] + $_COOKIE['close_helpers'] + $_COOKIE['close_services'] + $_COOKIE['close_friends'] + $_COOKIE['close_lastusers'] + $_COOKIE['close_lastphotos'] + $_COOKIE['close_lastlikes']; - if($ccCookie != "8") { + if($ccCookie != "7") { // COMMUNITY diabook_aerith_community_info(); @@ -270,7 +257,7 @@ if ($a->argv[0] === "network" && local_user()){ //right_aside at profile pages if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){ - if($ccCookie != "8") { + if($ccCookie != "7") { // COMMUNITY diabook_aerith_community_info(); @@ -369,7 +356,7 @@ $a->page['htmlhead'] .= ' </script>'; - if($ccCookie != "8") { + if($ccCookie != "7") { $a->page['htmlhead'] .= ' <script> $("right_aside").ready(function(){ @@ -394,10 +381,6 @@ $("right_aside").ready(function(){ document.getElementById( "close_friends" ).style.display = "none"; }; - if($.cookie("close_postit") == "1") - { - document.getElementById( "close_postit" ).style.display = "none"; - }; if($.cookie("close_lastusers") == "1") { @@ -436,10 +419,6 @@ function close_friends(){ $.cookie("close_friends","1", { expires: 365, path: "/" }); }; -function close_postit(){ - document.getElementById( "close_postit" ).style.display = "none"; - $.cookie("close_postit","1", { expires: 365, path: "/" }); - }; function close_lastusers(){ document.getElementById( "close_lastusers" ).style.display = "none"; @@ -464,7 +443,6 @@ function restore_boxes(){ $.cookie("close_helpers","2", { expires: 365, path: "/" }); $.cookie("close_services","2", { expires: 365, path: "/" }); $.cookie("close_friends","2", { expires: 365, path: "/" }); - $.cookie("close_postit","2", { expires: 365, path: "/" }); $.cookie("close_lastusers","2", { expires: 365, path: "/" }); $.cookie("close_lastphotos","2", { expires: 365, path: "/" }); $.cookie("close_lastlikes","2", { expires: 365, path: "/" }); |