Revision 1314:033fecbc3438

View differences:

plugins/redmine_checkout/app/views/redmine_checkout_hooks/_view_repositories_show_contextual.html.erb
16 16
    <p>
17 17
    <% if User.current.logged? %>
18 18
      <% if repository.is_external? %>
19
      <%=l :label_access_type_all, :type => l(:label_access_read_only) %>
19
      <%= (l :label_access_type_all, :type => l(:label_access_read_only)).html_safe %>
20 20
      <% else %>
21
      <% if default_protocol %><%=l :label_access_type, :type => l(default_protocol.access_label(User.current)) %><% end %>
21
      <% if default_protocol %><%= (l :label_access_type, :type => l(default_protocol.access_label(User.current))).html_safe %><% end %>
22 22
      <% end %>
23 23
    <% else %>
24 24
      &nbsp;
......
35 35
  <% if repository.is_external? %>
36 36
    <div style="clear: left">
37 37
    </div>
38
    <p class="topline" style="padding-top: 1em"><%= l(:text_repository_external, :location => repository.external_url) %></p>
38
    <p class="topline" style="padding-top: 1em"><%= (l(:text_repository_external, :location => repository.external_url)).html_safe %></p>
39 39
  <% end %>
40 40
</div>
41 41
<div style="clear: left"></div>
plugins/redmine_checkout/config/locales/en.yml
16 16
  label_protocol_plural: "Protocols"
17 17
  button_add_protocol: "Add Protocol"
18 18

  
19
  label_access_type: 'You have <span id="checkout_access">{{type}}</span> access to this URL.'
20
  label_access_type_all: 'All access to this URL is <span id="checkout_access">{{type}}</span>.'
19
  label_access_type: 'You have <span id="checkout_access">%{type}</span> access to this URL.'
20
  label_access_type_all: 'All access to this URL is <span id="checkout_access">%{type}</span>.'
21 21
  label_access_read_only: 'Read Only'
22 22
  label_access_read_write: "Read and Write"
23 23
  label_access_permission: "Depending on user's permissions"
......
36 36
    supports back-references to braced expressions using the \1 notation.
37 37
  help_repository_checkout_protocols: |
38 38
    Leave the Checkout URL field empty to use the defined repository URL.
39
  help_moved_settings: "The settings page has been moved to {{link}}."
39
  help_moved_settings: "The settings page has been moved to %{link}."
40 40
  label_settings_location: "Administration -> Settings -> Checkout"
41 41

  
42
  text_repository_external: "The primary repository for this project is hosted at <code>{{location}}</code> .<br>This repository is a read-only copy which is updated automatically every hour."
42
  text_repository_external: "The primary repository for this project is hosted at <code>%{location}</code> .<br>This repository is a read-only copy which is updated automatically every hour."
43 43

  
plugins/redmine_tags/app/helpers/tags_helper.rb
91 91

  
92 92
      content = content.html_safe
93 93
      tag_cloud tags, (1..8).to_a do |tag, weight|
94
        content << " ".html_safe + content_tag(item_el, render_tag_link(tag, options), :class => "tag-nube-#{weight}") + " ".html_safe
94
        content << " ".html_safe + content_tag(item_el, render_project_tag_link(tag, options), :class => "tag-nube-#{weight}") + " ".html_safe
95 95
      end
96 96

  
97 97
      content_tag(list_el, content, :class => 'tags')
public/stylesheets/scm.css
35 35
#changes-legend li { float: left; background-position: 5px 0; }
36 36

  
37 37
table.filecontent { border: 1px solid #e2e2e2;  border-collapse: collapse; width:98%; background-color: #fafafa; }
38
table.filecontent tbody {font-family:"Liberation Mono", Courier, monospace; font-size:12px;}
38
table.filecontent tbody {font-family:"SourceCodePro-Regular","Liberation Mono", Courier, monospace; font-size:12px;}
39 39
table.filecontent th { border: 1px solid #e2e2e2; background-color: #eee; }
40 40
table.filecontent th.filename { background-color: #e4e4d4; text-align: left; padding:5px;}
41 41
table.filecontent tr.spacing th { text-align:center; }
......
61 61
table.filecontent td.line-code pre {
62 62
    margin: 0px;
63 63
    white-space: pre-wrap;
64
    font-family:"Liberation Mono", Courier, monospace; font-size:12px;
64
    font-family:"SourceCodePro-Regular","Liberation Mono", Courier, monospace; font-size:12px;
65 65
}
66 66

  
67 67
/* 12 different colors for the annonate view */
public/themes/soundsoftware/stylesheets/fonts-generic.css
1
@import url(fonts.css?2);
1
@import url(fonts.css?3);
2 2

  
3 3
h1, #project-ancestors-title, #top-menu a {
4 4
  font-family: Insider, 'Gill Sans', Tahoma, sans-serif;
......
22 22
  line-height: 1.34;
23 23
}
24 24

  
25
code,pre,.code,.line-code,.embedded a.el {
26
  font-family: 'SourceCodePro-Regular', monospace;
27
  font-weight: normal;
28
  font-size: 0.9em;
29
}
30

  
31

  
public/themes/soundsoftware/stylesheets/fonts-mac.css
1
@import url(fonts.css?2);
1
@import url(fonts.css?3);
2 2

  
3 3
h1, #project-ancestors-title, #top-menu a {
4 4
  font-family: Insider, "Lucida Grande", sans-serif;
......
22 22
  line-height: 1.34;
23 23
}
24 24

  
25
code,pre,.code,.line-code,.embedded a.el {
26
  font-family: 'SourceCodePro-Regular', monospace;
27
  font-weight: normal;
28
  font-size: 0.9em;
29
}
30

  
public/themes/soundsoftware/stylesheets/fonts-ms.css
1
@import url(fonts.css?2);
1
@import url(fonts.css?3);
2 2

  
3 3
/* IE likes us to separate out normal & bold into different fonts
4 4
   rather than use the selectors on the same font */
......
24 24
  font-weight: normal;
25 25
  line-height: 1.34;
26 26
}
27

  
28
code,pre,.code,.line-code,.embedded a.el {
29
  font-family: 'SourceCodePro-Regular', monospace;
30
  font-weight: normal;
31
  font-size: 0.9em;
32
}
33

  
public/themes/soundsoftware/stylesheets/fonts.css
30 30
    src: url('fonts/24BC35_0_0.eot');
31 31
    src: url('fonts/24BC35_0_0.eot?#iefix') format('embedded-opentype'), url('fonts/24BC35_0_0.woff') format('woff'), url('fonts/24BC35_0_0.ttf') format('truetype');
32 32
}
33

  
34
@font-face {
35
    font-family: 'SourceCodePro-Regular';
36
    font-weight: normal;
37
    font-style: normal;
38
    src: url('fonts/SourceCodePro-Regular-webfont.eot');
39
    src: url('fonts/SourceCodePro-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/SourceCodePro-Regular-webfont.woff') format('woff'), url('fonts/SourceCodePro-Regular-webfont.ttf') format('truetype');
40
}

Also available in: Unified diff