Changeset 135 for trunk/app

Show
Ignore:
Timestamp:
09/24/08 21:29:35 (4 months ago)
Author:
jweiss
Message:

titles

Location:
trunk/app/views
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/layouts/_hosts.html.erb

    r73 r135  
    22  <% if Host.count > 0 %> 
    33    <% for host in Host.find(:all, :order => "name ASC") %> 
    4       <a href="<%= host_path(host) %>" class="menu_link <%=h active_link_class(host) %>"> 
     4      <a href="<%= host_path(host) %>" class="menu_link <%=h active_link_class(host) %>" title="<%=h host.name %>"> 
    55            <div class="menu_link_title"> 
    66              <%=h host.name %> 
  • trunk/app/views/layouts/_projects.html.erb

    r73 r135  
    22  <% if Project.count > 0 %> 
    33    <% for project in Project.find(:all, :order => "name ASC") %> 
    4       <a href="<%= project_path(project) %>" class="menu_link <%=h active_link_class(project) %>"> 
     4      <a href="<%= project_path(project) %>" class="menu_link <%=h active_link_class(project) %>" title="<%=h project.name %>"> 
    55                    <div class="menu_icons"> 
    66                   
     
    1515            <% if project.stages.count > 0 %> 
    1616        <% for stage in project.stages %> 
    17           <a href="<%= project_stage_path(project, stage) %>" class="menu_link <%=h active_link_class(stage) %>"> 
     17          <a href="<%= project_stage_path(project, stage) %>" class="menu_link <%=h active_link_class(stage) %>" title="<%=h stage.name %>"> 
    1818                  <div class="menu_link_title" style="padding-left: 30px; *padding-left: 33px"><%=h stage.name %></div> 
    1919                            </a> 
  • trunk/app/views/layouts/_recipes.html.erb

    r73 r135  
    22  <% if Recipe.count > 0 %> 
    33    <% for recipe in Recipe.find(:all, :order => "name ASC") %> 
    4       <a href="<%= recipe_path(recipe) %>" class="menu_link <%=h active_link_class(recipe) %>"> 
     4      <a href="<%= recipe_path(recipe) %>" class="menu_link <%=h active_link_class(recipe) %>" title="<%=h recipe.name %>"> 
    55                    <div class="menu_link_title"> 
    66                      <%=h recipe.name %> 
  • trunk/app/views/layouts/_users.html.erb

    r73 r135  
    22  <% if User.count > 0 %> 
    33    <% for user in User.find(:all, :order => "login ASC") %> 
    4       <a href="<%= user_path(user) %>" class="menu_link <%=h active_link_class(user) %>"> 
     4      <a href="<%= user_path(user) %>" class="menu_link <%=h active_link_class(user) %>" title="<%=h user.login %>"> 
    55                    <div class="menu_link_title"> 
    66                      <%=h user.login %> 
  • trunk/app/views/projects/_configs.html.erb

    r73 r135  
    1414    <tr class="<%= cycle :even, :odd, :name => 'configs' %>"> 
    1515      <td><%=h config.name %></td> 
    16       <td><%=h hide_password_in_value(config) %></td> 
     16      <td title="<%=h config.value %>"><%=h hide_password_in_value(config) %></td> 
    1717      <td><%= config.prompt_status_in_html %></td> 
    1818      <td><%= link_to 'Edit', edit_project_project_configuration_path(@project, config) %></td>