implement what I hope will now be the server side of directory sync, add viewsrc to item_photo_menu, and log what changed in import_xchan update objects so we can find out why there are so many updates when nothing _obvious_ has changed that should trigger it.

This commit is contained in:
friendica
2013-09-15 03:48:43 -07:00
parent aefb0f8233
commit 129a119c84
4 changed files with 40 additions and 18 deletions

View File

@@ -876,6 +876,12 @@ function item_photo_menu($item){
$ssl_state = false;
$sub_link="";
$poke_link="";
$contact_url="";
$pm_url="";
$vsrc_link = "";
if(local_user()) {
$ssl_state = true;
if(! count($a->contacts))
@@ -884,14 +890,11 @@ function item_photo_menu($item){
$channel_hash = (($channel) ? $channel['channel_hash'] : '');
}
$sub_link="";
$poke_link="";
$contact_url="";
$pm_url="";
if((local_user()) && local_user() == $item['uid'] && $item['parent'] == $item['id']
&& $channel && ($channel_hash != $item['author_xchan'])) {
$sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;';
if((local_user()) && local_user() == $item['uid']) {
$vsrc_link = $a->get_baseurl() . '/viewsrc/' . $item['id'];
if($item['parent'] == $item['id'] && $channel && ($channel_hash != $item['author_xchan'])) {
$sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;';
}
}
$profile_link = z_root() . "/chanview/?f=&hash=" . $item['author_xchan'];
@@ -910,6 +913,7 @@ function item_photo_menu($item){
}
$menu = Array(
t("View Source") => $vsrc_link,
t("Follow Thread") => $sub_link,
t("View Status") => $status_link,
t("View Profile") => $profile_link,