Skip to content

Commit

Permalink
SAK-11654: Accessibility: Missing form field labels (User Membership)
Browse files Browse the repository at this point in the history
git-svn-id: https://source.sakaiproject.org/svn/usermembership/trunk@80981 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
nfgrilo committed Aug 9, 2010
1 parent a6e37a5 commit 9c36bd7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
3 changes: 2 additions & 1 deletion usermembership/.settings/org.maven.ide.eclipse.prefs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#Thu Sep 11 15:07:27 BST 2008
#Mon Aug 09 08:42:56 BST 2010
activeProfiles=
eclipse.preferences.version=1
fullBuildGoals=process-test-resources
includeModules=true
resolveWorkspaceProjects=true
resourceFilterGoals=process-resources resources\:testResources
skipCompilerPlugin=true
version=1
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ refresh=refresh
help=help
bar_input_search=Keyword:
bar_input_search_inst=User name, ID or email
bar_input_search_title=Enter User Name, ID or Email Address to Search For.
bar_search=Search
bar_clear_search=Clear search
instructions_userlist=Select a user from the search results to get site and group membership.
Expand Down Expand Up @@ -44,4 +45,6 @@ back_button=Back to user list
export_csv_button=Export CSV
export_filename_date_format=yyyyMMdd
combo_user_type=User Type:
combo_user_ext=User Authority:
combo_user_type_title=Select user type to filter by.
combo_user_ext=User Authority:
combo_user_ext_title=Select user authority to filter by.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ back_button=Voltar
bar_clear_search=Limpar
bar_input_search=Palavra-chave\:
bar_input_search_inst=Nome, ID ou email
bar_input_search_title=Introduza um Nome, ID ou Endere\u00e7o de email para pesquisar.
bar_search=Pesquisar
combo_user_ext=Origem do utilizador\:
combo_user_type_title=Seleccione a origem do utilizador para filtrar.
combo_user_type=Tipo de utilizador\:
combo_user_ext_title=Seleccione o tipo de utilizador para filtrar
export_csv_button=Exportar CSV
export_filename_date_format=yyyyMMdd
groups=Grupos
Expand Down
4 changes: 3 additions & 1 deletion usermembership/tool/src/webapp/usermembership/userlist.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
id="selectType"
immediate="true"
value="#{UserListBean.selectedUserType}"
title="#{msgs.combo_user_type_title}"
style="width: 160px;">
<f:selectItems value="#{UserListBean.userTypes}"/>
</t:selectOneMenu>
Expand All @@ -48,6 +49,7 @@
id="selectAuthority"
immediate="true"
value="#{UserListBean.selectedAuthority}"
title="#{msgs.combo_user_ext_title}"
style="width: 160px;">
<f:selectItems value="#{UserListBean.userAuthorities}"/>
</t:selectOneMenu>
Expand All @@ -56,7 +58,7 @@
<t:div styleClass="act" style="padding: 0em;">
<h:inputText id="inputSearchBox" value="#{UserListBean.searchKeyword}"
onclick="this.value=''" valueChangeListener="#{UserListBean.processActionSearchChangeListener}"
size="20"
size="20" title="#{msgs.bar_input_search_title}"
onfocus="if(this.value == '#{msgs.bar_input_search_inst}') this.value = '';"/>
<h:commandButton id="searchButton" action="#{UserListBean.processActionSearch}"
onkeypress="document.forms[0].submit;" value="#{msgs.bar_search}"
Expand Down

0 comments on commit 9c36bd7

Please sign in to comment.