Skip to content

Commit

Permalink
added beard smileys
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas committed Mar 6, 2012
1 parent 7e10401 commit a265afe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 35 deletions.
Binary file added images/beard.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/whitebeard.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 8 additions & 35 deletions include/text.php 100755 → 100644
Expand Up @@ -14,13 +14,7 @@
function replace_macros($s,$r) {
global $t;

//$ts = microtime();
$r = $t->replace($s,$r);
//$tt = microtime() - $ts;

//$a = get_app();
//$a->page['debug'] .= "$tt <br>\n";
return $r;
return $t->replace($s,$r);

}}

Expand Down Expand Up @@ -737,7 +731,9 @@ function smilies($s, $sample = false) {
':headdesk',
'~friendika',
'~friendica',
// 'Diaspora*'
'Diaspora*',
':beard',
':whitebeard'
);

$icons = array(
Expand Down Expand Up @@ -778,7 +774,9 @@ function smilies($s, $sample = false) {
'<img src="' . $a->get_baseurl() . '/images/smiley-bangheaddesk.gif" alt=":headdesk" />',
'<a href="http://project.friendika.com">~friendika <img src="' . $a->get_baseurl() . '/images/friendika-16.png" alt="~friendika" /></a>',
'<a href="http://friendica.com">~friendica <img src="' . $a->get_baseurl() . '/images/friendica-16.png" alt="~friendica" /></a>',
// '<a href="http://diasporafoundation.org">Diaspora<img src="' . $a->get_baseurl() . '/images/diaspora.png" alt="Diaspora*" /></a>',
'<a href="http://diasporafoundation.org">Diaspora<img src="' . $a->get_baseurl() . '/images/diaspora.png" alt="Diaspora*" /></a>',
'<img src="' . $a->get_baseurl() . '/images/beard.jpg" alt=":beard" />',
'<img src="' . $a->get_baseurl() . '/images/whitebeard.jpg" alt=":whitebeard" />'

);

Expand All @@ -792,7 +790,6 @@ function smilies($s, $sample = false) {
}
}
else {
$params['string'] = preg_replace_callback('/&lt;(3+)/','preg_heart',$params['string']);
$s = str_replace($params['texts'],$params['icons'],$params['string']);
}

Expand All @@ -811,18 +808,7 @@ function smile_decode($m) {
return(str_replace($m[1],base64url_decode($m[1]),$m[0]));
}

// expand <3333 to the correct number of hearts

function preg_heart($x) {
$a = get_app();
if(strlen($x[1]) == 1)
return $x[0];
$t = '';
for($cnt = 0; $cnt < strlen($x[1]); $cnt ++)
$t .= '<img src="' . $a->get_baseurl() . '/images/smiley-heart.gif" alt="<3" />';
$r = str_replace($x[0],$t,$x[0]);
return $r;
}


if(! function_exists('day_translate')) {
Expand Down Expand Up @@ -1014,7 +1000,7 @@ function lang_selector() {
}
$ll = substr($l,5);
$ll = substr($ll,0,strrpos($ll,'/'));
$selected = (($ll === $lang && (x($_SESSION, 'language'))) ? ' selected="selected" ' : '');
$selected = (($ll === $lang && (x($_SESSION['language']))) ? ' selected="selected" ' : '');
$o .= '<option value="' . $ll . '"' . $selected . '>' . $ll . '</option>';
}
}
Expand Down Expand Up @@ -1219,16 +1205,3 @@ function reltoabs($text, $base)
return $text;
}

function item_post_type($item) {
if(intval($item['event-id']))
return t('event');
if(strlen($item['resource-id']))
return t('photo');
if(strlen($item['verb']) && $item['verb'] !== ACTIVITY_POST)
return t('activity');
if($item['id'] != $item['parent'])
return t('comment');
return t('post');
}


0 comments on commit a265afe

Please sign in to comment.