diff options
author | Zach Copley <zach@status.net> | 2010-02-25 18:13:34 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-02-25 18:13:34 -0800 |
commit | c49fbb63c56cc851153d0fecec81b4ca92b41bc6 (patch) | |
tree | ef84518fbdc879fceb6213aebb99228aec853f2a /lib | |
parent | 792f0942f761fe8b29363689eb7cbe4317f64b96 (diff) | |
parent | c8ddcbe0d32fb072456587fc554f6b78db672fa7 (diff) |
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
* 'testing' of gitorious.org:statusnet/mainline:
init_conversation.php script to copy old notice conversations into the conversation table
cache results of webfinger lookups
Parse an hcard for hints, if available
use new hcard method for webfinger
add hkit for hCard parsing
use new dedicated hcard method for Webfinger profile
Add an hcard action
Diffstat (limited to 'lib')
-rw-r--r-- | lib/router.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/router.php b/lib/router.php index 0e15d83b9..abbce041d 100644 --- a/lib/router.php +++ b/lib/router.php @@ -671,7 +671,7 @@ class Router foreach (array('subscriptions', 'subscribers', 'all', 'foaf', 'xrds', - 'replies', 'microsummary') as $a) { + 'replies', 'microsummary', 'hcard') as $a) { $m->connect($a, array('action' => $a, 'nickname' => $nickname)); @@ -737,7 +737,7 @@ class Router foreach (array('subscriptions', 'subscribers', 'nudge', 'all', 'foaf', 'xrds', - 'replies', 'inbox', 'outbox', 'microsummary') as $a) { + 'replies', 'inbox', 'outbox', 'microsummary', 'hcard') as $a) { $m->connect(':nickname/'.$a, array('action' => $a), array('nickname' => '[a-zA-Z0-9]{1,64}')); |