add instructions to each form entry in forms

darcs-hash:20080612165201-84dde-1abc45a0b2fd24002bc6f3449e9fc521d4f02eac.gz
This commit is contained in:
Evan Prodromou 2008-06-12 12:52:01 -04:00
parent f4be93d285
commit 2354faf7ac
7 changed files with 45 additions and 26 deletions

View File

@ -40,7 +40,7 @@ class AvatarAction extends SettingsAction {
$user = common_current_user(); $user = common_current_user();
$profile = $user->getProfile(); $profile = $user->getProfile();
$original = $profile->getOriginal(); $original = $profile->getOriginalAvatar();
if ($original) { if ($original) {
common_element('img', array('src' => $original->url, common_element('img', array('src' => $original->url,

View File

@ -66,8 +66,7 @@ class LoginAction extends Action {
} else { } else {
common_element('div', 'instructions', common_element('div', 'instructions',
_t('Login with your username and password. ' . _t('Login with your username and password. ' .
'Don\'t have a username yet? Choose register above. ' . 'Don\'t have a username yet? Choose register above. '));
'(Forgot your password? No way to get it back... yet. It\'s on the TODO list!)'));
} }
common_element_start('form', array('method' => 'POST', common_element_start('form', array('method' => 'POST',
'id' => 'login', 'id' => 'login',

View File

@ -36,8 +36,10 @@ class PasswordAction extends SettingsAction {
'action' => 'action' =>
common_local_url('password'))); common_local_url('password')));
common_password('oldpassword', _t('Old password')); common_password('oldpassword', _t('Old password'));
common_password('newpassword', _t('New password')); common_password('newpassword', _t('New password'),
common_password('confirm', _t('Confirm')); _t('6 or more characters'));
common_password('confirm', _t('Confirm'),
_t('same as password above'));
common_submit('submit', _t('Change')); common_submit('submit', _t('Change'));
common_element_end('form'); common_element_end('form');
common_show_footer(); common_show_footer();

View File

@ -31,10 +31,9 @@ class ProfilesettingsAction extends SettingsAction {
if ($msg) { if ($msg) {
$this->message($msg, $success); $this->message($msg, $success);
} else { } else {
common_element('div', 'instructions', common_element('div', 'instructions',
_t('You can update your personal profile info here so people know more about you. ' . _t('You can update your personal profile info here '.
'Nickname must be 1-64 lowercase letters or numbers -- no punctuation or spaces. ' . 'so people know more about you. '));
'Full name, bio, and location can be whatever you want. Email address should be valid.'));
} }
common_element_start('form', array('method' => 'POST', common_element_start('form', array('method' => 'POST',
'id' => 'profilesettings', 'id' => 'profilesettings',
@ -42,17 +41,22 @@ class ProfilesettingsAction extends SettingsAction {
common_local_url('profilesettings'))); common_local_url('profilesettings')));
# too much common patterns here... abstractable? # too much common patterns here... abstractable?
common_input('nickname', _t('Nickname'), common_input('nickname', _t('Nickname'),
($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname); ($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname,
_t('1-64 lowercase letters or numbers, no punctuation or spaces'));
common_input('fullname', _t('Full name'), common_input('fullname', _t('Full name'),
($this->arg('fullname')) ? $this->arg('fullname') : $profile->fullname); ($this->arg('fullname')) ? $this->arg('fullname') : $profile->fullname);
common_input('email', _t('Email address'), common_input('email', _t('Email address'),
($this->arg('email')) ? $this->arg('email') : $user->email); ($this->arg('email')) ? $this->arg('email') : $user->email,
_t('Used only for updates, announcements, and password recovery'));
common_input('homepage', _t('Homepage'), common_input('homepage', _t('Homepage'),
($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage); ($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage,
_t('URL of your homepage, blog, or profile on another site'));
common_textarea('bio', _t('Bio'), common_textarea('bio', _t('Bio'),
($this->arg('bio')) ? $this->arg('bio') : $profile->bio); ($this->arg('bio')) ? $this->arg('bio') : $profile->bio,
_t('Describe yourself and your interests in 140 chars'));
common_input('location', _t('Location'), common_input('location', _t('Location'),
($this->arg('location')) ? $this->arg('location') : $profile->location); ($this->arg('location')) ? $this->arg('location') : $profile->location,
_t('Where you are, like "City, State (or Region), Country"'));
common_submit('submit', _t('Save')); common_submit('submit', _t('Save'));
common_element_end('form'); common_element_end('form');
common_show_footer(); common_show_footer();

View File

@ -123,17 +123,19 @@ class RegisterAction extends Action {
common_element('div', 'error', $error); common_element('div', 'error', $error);
} else { } else {
common_element('div', 'instructions', common_element('div', 'instructions',
_t('You can create a new account with the following form. ' . _t('You can create a new account to start posting notices. '));
'Your user name must be 1-64 characters, only lowercase letters or numbers. ' .
'Passwords have to match, and your email address should be valid.'));
} }
common_element_start('form', array('method' => 'POST', common_element_start('form', array('method' => 'POST',
'id' => 'login', 'id' => 'login',
'action' => common_local_url('register'))); 'action' => common_local_url('register')));
common_input('nickname', _t('Nickname')); common_input('nickname', _t('Nickname'), NULL,
common_password('password', _t('Password')); _t('1-64 lowercase letters or numbers, no punctuation or spaces'));
common_password('confirm', _t('Confirm')); common_password('password', _t('Password'),
common_input('email', _t('Email')); _t('6 or more characters'));
common_password('confirm', _t('Confirm'),
_t('Same as password above'));
common_input('email', _t('Email'), NULL,
_t('Used only for updates, announcements, and password recovery'));
common_element_start('p'); common_element_start('p');
common_element('input', array('type' => 'checkbox', common_element('input', array('type' => 'checkbox',
'id' => 'license', 'id' => 'license',

View File

@ -41,14 +41,17 @@ class RemotesubscribeAction extends Action {
function show_form($err=NULL) { function show_form($err=NULL) {
$nickname = $this->trimmed('nickname'); $nickname = $this->trimmed('nickname');
$profile = $this->trimmed('profile');
common_show_header(_t('Remote subscribe')); common_show_header(_t('Remote subscribe'));
if ($err) { if ($err) {
common_element('div', 'error', $err); common_element('div', 'error', $err);
} }
common_element_start('form', array('id' => 'remotesubscribe', 'method' => 'POST', common_element_start('form', array('id' => 'remotesubscribe', 'method' => 'POST',
'action' => common_local_url('remotesubscribe'))); 'action' => common_local_url('remotesubscribe')));
common_input('nickname', _t('User nickname'), $nickname); common_input('nickname', _t('User nickname'), $nickname,
common_input('profile', _t('Profile URL')); _t('Nickname of the user you want to follow'));
common_input('profile', _t('Profile URL'), $profile,
_t('URL of your profile on another compatible microblogging service'));
common_submit('submit', _t('Subscribe')); common_submit('submit', _t('Subscribe'));
common_element_end('form'); common_element_end('form');
common_show_footer(); common_show_footer();

View File

@ -261,7 +261,7 @@ function common_menu_item($url, $text, $title=NULL, $is_selected=false) {
common_element_end('li'); common_element_end('li');
} }
function common_input($id, $label, $value=NULL) { function common_input($id, $label, $value=NULL,$instructions=NULL) {
common_element_start('p'); common_element_start('p');
common_element('label', array('for' => $id), $label); common_element('label', array('for' => $id), $label);
$attrs = array('name' => $id, $attrs = array('name' => $id,
@ -271,6 +271,9 @@ function common_input($id, $label, $value=NULL) {
$attrs['value'] = htmlspecialchars($value); $attrs['value'] = htmlspecialchars($value);
} }
common_element('input', $attrs); common_element('input', $attrs);
if ($instructions) {
common_element('span', 'input_instructions', $instructions);
}
common_element_end('p'); common_element_end('p');
} }
@ -281,13 +284,16 @@ function common_hidden($id, $value) {
'value' => $value)); 'value' => $value));
} }
function common_password($id, $label) { function common_password($id, $label, $instructions=NULL) {
common_element_start('p'); common_element_start('p');
common_element('label', array('for' => $id), $label); common_element('label', array('for' => $id), $label);
$attrs = array('name' => $id, $attrs = array('name' => $id,
'type' => 'password', 'type' => 'password',
'id' => $id); 'id' => $id);
common_element('input', $attrs); common_element('input', $attrs);
if ($instructions) {
common_element('span', 'input_instructions', $instructions);
}
common_element_end('p'); common_element_end('p');
} }
@ -301,7 +307,7 @@ function common_submit($id, $label) {
common_element_end('p'); common_element_end('p');
} }
function common_textarea($id, $label, $content=NULL) { function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
common_element_start('p'); common_element_start('p');
common_element('label', array('for' => $id), $label); common_element('label', array('for' => $id), $label);
common_element('textarea', array('rows' => 3, common_element('textarea', array('rows' => 3,
@ -309,6 +315,9 @@ function common_textarea($id, $label, $content=NULL) {
'name' => $id, 'name' => $id,
'id' => $id), 'id' => $id),
($content) ? $content : ' '); ($content) ? $content : ' ');
if ($instructions) {
common_element('span', 'input_instructions', $instructions);
}
common_element_end('p'); common_element_end('p');
} }