I've got a pretty good idea of how to bootstrap, parse and render Comanche now. This does not mean it's close to being presentable - far from it.

This commit is contained in:
friendica
2013-08-29 20:54:42 -07:00
parent 85e291f535
commit 7458263017
3 changed files with 44 additions and 15 deletions

View File

@@ -9,15 +9,11 @@ function page_init(&$a) {
$which = argv(1);
$profile = 0;
$channel = $a->get_channel();
if((local_user()) && (argc() > 2) && (argv(2) === 'view')) {
$which = $channel['channel_address'];
$profile = argv(1);
}
profile_load($a,$which,$profile);
if($a->profile['profile_uid'])
head_set_icon($a->profile['thumb']);
}
@@ -65,7 +61,8 @@ function page_content(&$a) {
return;
}
// Use of widgets should be determined by Comanchie, but we don't have it yet, so...
// Use of widgets should be determined by Comanche, but we don't have it yet, so...
if ($perms['write_pages']) {
$chan = $a->channel['channel_id'];
$who = $channel_address;
@@ -75,7 +72,7 @@ function page_content(&$a) {
xchan_query($r);
$r = fetch_post_tags($r,true);
$a->profile = array('profile_uid' => $u[0]['channel_id']);
$o .= prepare_page($r[0]);
return $o;