mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
lotsoflittlestuff
This commit is contained in:
parent
ba8da761e6
commit
466267fbb5
14 changed files with 99 additions and 45 deletions
|
@ -6,10 +6,15 @@
|
|||
|
||||
<id>$feed_id</id>
|
||||
<title>$feed_title</title>
|
||||
<icon>$photo</icon>
|
||||
<dfrn:icon-updated>0000-00-00T00:00:00Z</dfrn:icon-updated>
|
||||
<updated>$feed_updated</updated>
|
||||
|
||||
<author>
|
||||
<name>$name</name>
|
||||
<dfrn:name-updated>0000-00-00T00:00:00Z</dfrn:name-updated>
|
||||
<uri>$profile_page</uri>
|
||||
<dfrn:avatar>$photo</dfrn:avatar>
|
||||
</author>
|
||||
<dfrn:uri-updated>0000-00-00T00:00:00Z</dfrn:uri-updated>
|
||||
<dfrn:avatar>$thumb</dfrn:avatar>
|
||||
<dfrn:avatar-updated>0000-00-00T00:00:00Z</dfrn:avatar-updated>
|
||||
</author>
|
||||
|
|
|
@ -30,7 +30,7 @@ $blocked
|
|||
|
||||
<div id="contact-edit-profile-select-text">
|
||||
<h4>Profile Visibility</h4>
|
||||
<p>Please choose the profile you would like to display to $name - when he/she connects securely to your profile page.
|
||||
<p>Please choose the profile you would like to display to $name when viewing your profile securely.
|
||||
</p>
|
||||
</div>
|
||||
$profile_select
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
<div class="directory-item" id="directory-item-$id" >
|
||||
<div class="directory-photo-wrapper" id="directory-photo-wrapper-$id" >
|
||||
<div class="directory-photo" id="directory-photo-$id" ><a href="$profile-link" class="directory-profile-link" id="directory-profile-link-$id" ><img src="$photo" alt="$alt-text" title="$alt-text" /></a>
|
||||
<div class="directory-photo" id="directory-photo-$id" ><a href="$profile-link" class="directory-profile-link" id="directory-profile-link-$id" ><img class="directory-photo-img" src="$photo" alt="$alt-text" title="$alt-text" /></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="directory-photo-end"></div>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<script type="text/javascript" src="$baseurl/include/main.js" ></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
// $(document).ready(function() { setTimeout(NavUpdate,10 * 1000); });
|
||||
$(document).ready(function() { NavUpdate(); });
|
||||
|
||||
function NavUpdate()
|
||||
{
|
||||
|
@ -17,10 +17,20 @@ function NavUpdate()
|
|||
{
|
||||
$(data).find('result').each(function() {
|
||||
var net = $(this).find('net').text();
|
||||
alert(net);
|
||||
if(net == 0) { net = ''; }
|
||||
$('#net-update').html(net);
|
||||
var home = $(this).find('home').text();
|
||||
if(home == 0) { home = ''; }
|
||||
$('#home-update').html(home);
|
||||
var mail = $(this).find('mail').text();
|
||||
if(mail == 0) { mail = ''; }
|
||||
$('#mail-update').html(mail);
|
||||
var intro = $(this).find('intro').text();
|
||||
if(intro == 0) { intro = ''; }
|
||||
$('#notify-update').html(intro);
|
||||
});
|
||||
}) ;
|
||||
setTimeout(NavUpdate,10 * 1000);
|
||||
setTimeout(NavUpdate,30000);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -77,6 +77,22 @@ footer {
|
|||
|
||||
}
|
||||
|
||||
.nav-ajax-left {
|
||||
margin-left: 1px;
|
||||
float: left;
|
||||
font-size: 0.6em;
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.nav-ajax-right {
|
||||
margin-left: 1px;
|
||||
float: right;
|
||||
font-size: 0.6em;
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.nav-commlink {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
|
@ -597,6 +613,11 @@ input#dfrn-url {
|
|||
#directory-search-end {
|
||||
}
|
||||
|
||||
.directory-photo-img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
|
@ -835,6 +856,9 @@ input#dfrn-url {
|
|||
overflow: auto;
|
||||
}
|
||||
|
||||
#group-new-submit-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#acl-allow-group-label,
|
||||
#acl-allow-contact-label,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue