11 changed files with 104 additions and 20 deletions
@ -0,0 +1,36 @@
|
||||
<?php |
||||
|
||||
|
||||
|
||||
function ping_init(&$a) { |
||||
|
||||
if(! local_user()) |
||||
xml_status(0); |
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `item` |
||||
WHERE `unseen` = 1 AND `uid` = %d", |
||||
intval($_SESSION['uid']) |
||||
); |
||||
$network = $r[0]['total']; |
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `item` |
||||
WHERE `unseen` = 1 AND `uid` = %d AND `type` != 'remote' ", |
||||
intval($_SESSION['uid']) |
||||
); |
||||
$home = $r[0]['total']; |
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `intro` |
||||
WHERE `uid` = %d AND `blocked` = 0 AND `ignore` = 0 ", |
||||
intval($_SESSION['uid']) |
||||
); |
||||
$intro = $r[0]['total']; |
||||
|
||||
// TODO |
||||
$mail = 0; |
||||
|
||||
header("Content-type: text/xml"); |
||||
echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\r\n<result><intro>$intro</intro><mail>$mail</mail><net>$network</net><home>$home</home></result>\r\n"; |
||||
|
||||
killme(); |
||||
} |
||||
|
@ -1,10 +1,10 @@
|
||||
|
||||
<div id="settings-nick-wrapper" > |
||||
<p id="settings-nickname-desc"> |
||||
Your nickname cannot be changed. It is set to <strong>$nickname</strong>.<br /> |
||||
Your profile is located at <strong>'$baseurl/profile/$nickname'</strong>,<br /> |
||||
and you may use this as your profile URL when communicating with other<br /> |
||||
sites or simply <strong>'$nickname@$basepath'</strong>. |
||||
Your site nickname is <strong>$nickname</strong> and cannot be changed.<br /> |
||||
Your profile locator is <strong>'$nickname@$basepath'</strong>. |
||||
</p> |
||||
$subdir |
||||
|
||||
</div> |
||||
<div id="settings-nick-end" ></div> |
||||
|
@ -0,0 +1,7 @@
|
||||
<p> |
||||
It appears that your website is located in a subdirectory of the<br /> |
||||
$hostname website and this setting may not work reliably.<br /> |
||||
</p> |
||||
<p>If you have any issues, you may have better results using the profile<br /> |
||||
locator '<strong>$baseurl/profile/$nickname</strong>'. |
||||
</p> |
Loading…
Reference in new issue