Revision 1361:7c0909052511 plugins
| plugins/redmine_bibliography/app/views/projects/_bibliography_box.html.erb | ||
|---|---|---|
| 18 | 18 |
<%= link_to(l("more_details_link"), {:controller => :publications, :action => :show, :id => publication.id, :project_id => @project.id}) -%>
|
| 19 | 19 |
|
| 20 | 20 |
<%= link_to l(:bibtex_link).html_safe, "javascript:void(0)", :class => "bibtex-link"-%> |
| 21 |
|
|
| 22 |
<%- unless publication.external_url.blank? -%> |
|
| 23 |
<%= link_to l(:external_url_link), publication.external_url, {:target => "_blank"} -%>
|
|
| 24 |
<%- end -%> |
|
| 25 |
|
|
| 26 |
|
|
| 21 | 27 |
</dd> |
| 22 | 28 |
<dd class="bibtex-textarea collapsed" style="display: none;"> |
| 23 | 29 |
<textarea readonly> <%= print_bibtex_format(publication) -%> </textarea> |
| plugins/redmine_bibliography/config/locales/en.yml | ||
|---|---|---|
| 150 | 150 |
|
| 151 | 151 |
bibtex_link: "[B<small>IB</small>T<sub>E</sub>X]" |
| 152 | 152 |
more_details_link: "[More Details]" |
| 153 |
external_url_link: "[URL (ext.)]" |
|
| 153 | 154 |
|
| plugins/redmine_tags/assets/stylesheets/redmine_tags.css | ||
|---|---|---|
| 22 | 22 |
ul.tags li { margin: .25em 0px; }
|
| 23 | 23 |
|
| 24 | 24 |
div.tags { text-align: center; }
|
| 25 |
div.tags h3 { text-align: left; }
|
|
| 25 | 26 |
div.tags .tag-label { margin: .25em; }
|
| 26 | 27 |
div.tags .tag-nube-1 { font-size: .8em; }
|
| 27 | 28 |
div.tags .tag-nube-2 { font-size: .9em; }
|
| plugins/redmine_tags/lib/redmine_tags/hooks/views_issues_hook.rb | ||
|---|---|---|
| 19 | 19 |
module RedmineTags |
| 20 | 20 |
module Hooks |
| 21 | 21 |
class ViewsIssuesHook < Redmine::Hook::ViewListener |
| 22 |
render_on :view_issues_show_details_bottom, :partial => 'issues/tags' |
|
| 23 |
render_on :view_issues_form_details_bottom, :partial => 'issues/tags_form' |
|
| 24 |
render_on :view_issues_sidebar_planning_bottom, :partial => 'issues/tags_sidebar' |
|
| 25 |
render_on :view_issues_bulk_edit_details_bottom, :partial => 'issues/tags_form' |
|
| 22 |
|
|
| 23 |
# TODO: temporary hack to disable tags on issues |
|
| 24 |
## BEGIN ~lf 20130712 |
|
| 25 |
|
|
| 26 |
# render_on :view_issues_show_details_bottom, :partial => '# issues/tags' |
|
| 27 |
# render_on :view_issues_form_details_bottom, :partial => '# issues/tags_form' |
|
| 28 |
# render_on :view_issues_sidebar_planning_bottom, :partial => '# issues/tags_sidebar' |
|
| 29 |
# render_on :view_issues_bulk_edit_details_bottom, :partial => 'issues/tags_form' |
|
| 30 |
|
|
| 31 |
## END ~lf 20130712 |
|
| 32 |
|
|
| 33 |
|
|
| 26 | 34 |
end |
| 27 | 35 |
end |
| 28 | 36 |
end |
Also available in: Unified diff