reformat showstream

darcs-hash:20080520201120-84dde-4b455d4e4854454cc78be8c636a3e0c7f730b93a.gz
This commit is contained in:
Evan Prodromou
2008-05-20 16:11:20 -04:00
parent 778fba1a24
commit 63758c59e1
6 changed files with 94 additions and 44 deletions

View File

@@ -377,6 +377,20 @@ function common_profile_url($nickname) {
return common_local_url('showstream', array('nickname' => $nickname));
}
function common_notice_form() {
common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
'action' => common_local_url('newnotice')));
common_element_start('p');
common_element('label', array('for' => 'content'), _t('What\'s up?'));
common_element('textarea', array('rows' => 3, 'cols' => 40,
'name' => 'content',
'id' => 'content',
'class' => 'width75'),
' ');
common_submit('submit', _t('Send'));
common_element_end('form');
}
// XXX: set up gettext
function _t($str) {