From: Evan Prodromou Date: Wed, 14 Sep 2011 16:20:37 +0000 (-0400) Subject: Merge branch '1.0.x' into nummedout X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=11f2a3d551d39732d44495751eaf4643c9fd8c90;hp=40924842f4fde6f832f7284a30177f72864f86f8;p=quix0rs-gnu-social.git Merge branch '1.0.x' into nummedout --- diff --git a/actions/showstream.php b/actions/showstream.php index ca7af0f2ed..ee8bc18e72 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -92,9 +92,6 @@ class ShowstreamAction extends ProfileAction // For YADIS discovery, we also have a tag - header('X-XRDS-Location: '. common_local_url('xrds', array('nickname' => - $this->user->nickname))); - $this->showPage(); } @@ -171,11 +168,6 @@ class ShowstreamAction extends ProfileAction function extraHead() { - // for remote subscriptions etc. - $this->element('meta', array('http-equiv' => 'X-XRDS-Location', - 'content' => common_local_url('xrds', array('nickname' => - $this->user->nickname)))); - if ($this->profile->bio) { $this->element('meta', array('name' => 'description', 'content' => $this->profile->bio)); diff --git a/lib/util.php b/lib/util.php index 3658e3ceea..49764f86a5 100644 --- a/lib/util.php +++ b/lib/util.php @@ -2312,3 +2312,31 @@ function common_is_email($str) { return (strpos($str, '@') !== false); } + +function common_init_stats() +{ + global $_mem, $_ts; + + $_mem = memory_get_usage(true); + $_ts = microtime(true); +} + +function common_log_delta($comment=null) +{ + global $_mem, $_ts; + + $mold = $_mem; + $told = $_ts; + + $_mem = memory_get_usage(true); + $_ts = microtime(true); + + $mtotal = $_mem - $mold; + $ttotal = $_ts - $told; + + if (empty($comment)) { + $comment = 'Delta'; + } + + common_debug(sprintf("%s: %d %d", $comment, $mtotal, round($ttotal * 1000000))); +} diff --git a/plugins/Directory/DirectoryPlugin.php b/plugins/Directory/DirectoryPlugin.php index ad7fc82049..06cfca02ef 100644 --- a/plugins/Directory/DirectoryPlugin.php +++ b/plugins/Directory/DirectoryPlugin.php @@ -132,6 +132,11 @@ class DirectoryPlugin extends Plugin array('filter' => '([0-9a-zA-Z_]{1,64}|0-9)') ); + $m->connect( + 'groups', + array('action' => 'groupdirectory') + ); + return true; }