]> git.mxchange.org Git - friendica.git/commitdiff
show lockstate on messages, sparkle failure on profile page,
authorMike Macgirvin <mike@macgirvin.com>
Wed, 29 Sep 2010 05:12:27 +0000 (22:12 -0700)
committerMike Macgirvin <mike@macgirvin.com>
Wed, 29 Sep 2010 05:12:27 +0000 (22:12 -0700)
comments on typo checker

mod/display.php
mod/network.php
mod/profile.php
test/typo.php
view/theme/default/style.css
view/wall_item.tpl
view/wallwall_item.tpl

index 9c24d85b0511e71f07a897efbb875d495a18ed62..d0bbf54bf0d3ae846cf0ce53666f4393e0d7f9c0 100644 (file)
@@ -85,7 +85,7 @@ function display_content(&$a) {
        }
 
        $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
-               `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
+               `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
                `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
                `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
                FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
@@ -149,6 +149,12 @@ function display_content(&$a) {
                        if((($item['verb'] == ACTIVITY_LIKE) || ($item['verb'] == ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent'])) 
                                continue;
 
+                       $lock = (($item['uid'] == get_uid()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
+                               || strlen($item['deny_cid']) || strlen($item['deny_gid']))
+                               ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" alt="Private Message" /></div>'
+                               : '<div class="wall-item-lock"></div>');
+
+
                        if(can_write_wall($a,$a->profile['uid'])) {
                                if($item['last-child']) {
                                        $comment = replace_macros($cmnt_tpl,array(
@@ -239,6 +245,7 @@ function display_content(&$a) {
                                '$title' => $item['title'],
                                '$body' => bbcode($item['body']),
                                '$ago' => relative_date($item['created']),
+                               '$lock' => $lock,
                                '$location' => (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : ''),
                                '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
                                '$owner_url' => $owner_url,
index 1634a0f060bef81f4849fccea9f8b037df4eb28a..b0daecac43ba84f301baa8d39b58319b50312f12 100644 (file)
@@ -173,6 +173,13 @@ function network_content(&$a, $update = 0) {
                        if((($item['verb'] == ACTIVITY_LIKE) || ($item['verb'] == ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent'])) 
                                continue;
 
+
+                       $lock = (($item['uid'] == get_uid()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
+                               || strlen($item['deny_cid']) || strlen($item['deny_gid']))
+                               ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" alt="Private Message" /></div>'
+                               : '<div class="wall-item-lock"></div>');
+
+
                        // Top-level wall post not written by the wall owner (wall-to-wall)
                        // First figure out who owns it. 
 
@@ -279,6 +286,7 @@ function network_content(&$a, $update = 0) {
                                '$title' => $item['title'],
                                '$body' => bbcode($item['body']),
                                '$ago' => relative_date($item['created']),
+                               '$lock' => $lock,
                                '$location' => (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : ''),
                                '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
                                '$owner_url' => $owner_url,
index a0cdcfcc7838a71bc1ce6f6dceb2bd061a03c79b..bf9c0f758326989100182ecd04e5939a8e54ddda 100644 (file)
@@ -231,7 +231,7 @@ function profile_content(&$a, $update = 0) {
                $a->set_pager_total($r[0]['total']);
 
        $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
-               `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
+               `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, 
                `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
                `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
                FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
@@ -307,6 +307,14 @@ function profile_content(&$a, $update = 0) {
                        if((($item['verb'] == ACTIVITY_LIKE) || ($item['verb'] == ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent'])) 
                                continue;
 
+                       $lock = (($item['uid'] == get_uid()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
+                               || strlen($item['deny_cid']) || strlen($item['deny_gid']))
+                               ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" alt="Private Message" /></div>'
+                               : '<div class="wall-item-lock"></div>');
+
+
+
+
                        if(can_write_wall($a,$a->profile['profile_uid'])) {
                                if($item['id'] == $item['parent']) {
                                        $likebuttons = replace_macros($like_tpl,array('$id' => $item['id']));
@@ -370,6 +378,7 @@ function profile_content(&$a, $update = 0) {
                                '$title' => $item['title'],
                                '$body' => bbcode($item['body']),
                                '$ago' => relative_date($item['created']),
+                               '$lock' => $lock,
                                '$location' => (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : ''),
                                '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
                                '$drop' => $drop,
index c8b94be216aaca0699b70a4a491ef8e178d585f6..e3141a46e2f7715084ee3f313dda2605eb8c883d 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+       // Tired of chasing typos and finding them after a commit. 
+       // Run this from cmdline in basedir and quickly see if we've 
+       // got any parse errors in our application files.
+
        include 'boot.php';
 
        $a = new App();
index a7dee04b689dbe155ab8d2f87dbd325546ab20e3..90bd3f8c22408fb7230c15f1f8b230c6e7bb94e4 100644 (file)
@@ -702,9 +702,12 @@ input#dfrn-url {
        float: left;
 }
 .wall-item-wrapper {
-       margin-top: 30px;
        float: left;
 }
+.wall-item-lock {
+       height: 20px;
+       margin-top: 10px;
+}
 
 .wall-item-ago {
        color: #888888;
index 58a7727a8fa92201f8600157162e66222e2cada5..4d2404ce0b10f5919c777cb5e5aec0a9d3ea5072 100644 (file)
@@ -6,6 +6,7 @@
                </div>
 
                <div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
+                       $lock
                        <a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
                        <div class="wall-item-ago"  id="wall-item-ago-$id">$ago</div>
                        <div class="wall-item-location" id="wall-item-location-$id">$location</div>
index d98289901c51fb982a5a7beb9ffab3aa047e2164..f8affd1c56741e2f31d8aa5eb7535da45dc6518b 100644 (file)
@@ -11,6 +11,7 @@
                </div>
        
                <div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
+                       $lock
                        <a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
                        <div class="wall-item-ago"  id="wall-item-ago-$id">$ago</div>
                        <div class="wall-item-location" id="wall-item-location-$id">$location</div>