To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / plugins / redmine_bibliography / app / helpers / publications_helper.rb @ 1317:2805873c0147
History | View | Annotate | Download (4.54 KB)
| 1 | 615:c4ddb9531f4c | chris | # -*- coding: utf-8 -*-
|
|---|---|---|---|
| 2 | 407:96910efbd45e | luis | require 'bibtex'
|
| 3 | |||
| 4 | 328:aed18b463206 | luis | module PublicationsHelper |
| 5 | 702:3eb64cb3c7ac | chris | include AuthorshipsHelper
|
| 6 | 616:156bd1153f47 | luis | |
| 7 | def link_to_publication(publication, options={}, html_options = nil) |
||
| 8 | url = {:controller => 'publications', :action => 'show', :id => publication}.merge(options)
|
||
| 9 | link_to(h(publication.title), url, html_options) |
||
| 10 | end
|
||
| 11 | |||
| 12 | 462:b02b2eb2a312 | luis | def projects_check_box_tags(name, projects) |
| 13 | s = ''
|
||
| 14 | projects.sort.each do |project|
|
||
| 15 | 1068:e11d8d13ebc5 | luis | if User.current.allowed_to?(:edit_publication, project) |
| 16 | 713:ebca856bd627 | luis | s << "<label>#{ check_box_tag name, project.id, false } #{link_to_project project}</label>\n"
|
| 17 | s << '<br />'
|
||
| 18 | end
|
||
| 19 | 462:b02b2eb2a312 | luis | end
|
| 20 | 712:a1e0728d1e02 | luis | |
| 21 | 1068:e11d8d13ebc5 | luis | s |
| 22 | 462:b02b2eb2a312 | luis | end
|
| 23 | 1068:e11d8d13ebc5 | luis | |
| 24 | |||
| 25 | |||
| 26 | 478:7097dc91e58e | luis | |
| 27 | 469:ae87ae455cfb | luis | def link_to_remove_fields(name, f) |
| 28 | 573:aed210f6095b | chris | f.hidden_field(:_destroy) + link_to_function(name, "remove_fields(this)", :class => 'icon icon-del') |
| 29 | 469:ae87ae455cfb | luis | end
|
| 30 | 1068:e11d8d13ebc5 | luis | |
| 31 | 705:b6f9f005c0b6 | luis | def link_to_add_author_fields(name, f, association, action) |
| 32 | 468:0bb9c7baed07 | luis | new_object = f.object.class.reflect_on_association(association).klass.new |
| 33 | fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder| |
||
| 34 | render(association.to_s.singularize + "_fields", :f => builder) |
||
| 35 | 1068:e11d8d13ebc5 | luis | end
|
| 36 | 1278:f8bb7ccc6fac | luis | link_to_function(name, "add_author_fields(this, '#{association}', '#{escape_javascript(fields)}', '#{action}')", { :class => 'icon icon-add', :id => "add_another_author" }) |
| 37 | 1068:e11d8d13ebc5 | luis | end
|
| 38 | 481:dd242ea99fd3 | luis | |
| 39 | def sanitized_object_name(object_name) |
||
| 40 | object_name.gsub(/\]\[|[^-a-zA-Z0-9:.]/,"_").sub(/_$/,"") |
||
| 41 | end
|
||
| 42 | |||
| 43 | def sanitized_method_name(method_name) |
||
| 44 | method_name.sub(/\?$/, "") |
||
| 45 | end
|
||
| 46 | 1068:e11d8d13ebc5 | luis | |
| 47 | 595:84e8d34d024c | luis | def form_tag_name(object_name, method_name) |
| 48 | str = "#{object_name.to_s}[#{sanitized_method_name(method_name.to_s)}]"
|
||
| 49 | 1068:e11d8d13ebc5 | luis | str.to_sym |
| 50 | 595:84e8d34d024c | luis | end
|
| 51 | 1068:e11d8d13ebc5 | luis | |
| 52 | def form_tag_id(object_name, method_name) |
||
| 53 | 481:dd242ea99fd3 | luis | str = "#{sanitized_object_name(object_name.to_s)}_#{sanitized_method_name(method_name.to_s)}"
|
| 54 | str.to_sym |
||
| 55 | end
|
||
| 56 | 1068:e11d8d13ebc5 | luis | |
| 57 | 596:fcff84e1c1ce | luis | def form_object_id(object_name) |
| 58 | str = object_name.split("\[").last().gsub("\]","") |
||
| 59 | str.to_sym |
||
| 60 | end
|
||
| 61 | 693:5163e3ec00b8 | luis | |
| 62 | 1284:3ce07a57ce68 | luis | #######
|
| 63 | ### DELETE ME
|
||
| 64 | |||
| 65 | def choose_author_link(object_name, items) |
||
| 66 | # called by autocomplete_for_author (publications' action/view)
|
||
| 67 | # creates the select list based on the results array
|
||
| 68 | # results is an array with both Users and Authorships objects
|
||
| 69 | |||
| 70 | @author_options = []
|
||
| 71 | @results.each do |result| |
||
| 72 | email_bit = result.mail.partition('@')[2] |
||
| 73 | if email_bit != "" |
||
| 74 | email_bit = "(@#{email_bit})"
|
||
| 75 | end
|
||
| 76 | @author_options << ["#{result.name} #{email_bit}", "#{result.class.to_s}_#{result.id.to_s}"] |
||
| 77 | end
|
||
| 78 | |||
| 79 | if @results.size > 0 |
||
| 80 | s = select_tag( form_tag_name(object_name, :author_search_results), options_for_select(@author_options), { :id => form_tag_id(object_name, :author_search_results), :size => 3} ) |
||
| 81 | else
|
||
| 82 | s = "<em>No Authors found that match your search… sorry!</em>"
|
||
| 83 | end
|
||
| 84 | end
|
||
| 85 | |||
| 86 | |||
| 87 | |||
| 88 | 1068:e11d8d13ebc5 | luis | def render_authorships_list(publication) |
| 89 | 693:5163e3ec00b8 | luis | s = '<p>'
|
| 90 | 1068:e11d8d13ebc5 | luis | |
| 91 | 693:5163e3ec00b8 | luis | publication.authorships.each do |authorship|
|
| 92 | 702:3eb64cb3c7ac | chris | s << link_to_authorship(authorship) |
| 93 | 693:5163e3ec00b8 | luis | s << "<br /><em>#{authorship.institution}</em></p>"
|
| 94 | 1068:e11d8d13ebc5 | luis | end
|
| 95 | 693:5163e3ec00b8 | luis | |
| 96 | 1307:06de38acb6b4 | luis | s.html_safe |
| 97 | 693:5163e3ec00b8 | luis | end
|
| 98 | 1068:e11d8d13ebc5 | luis | |
| 99 | def render_projects_list(publication, show_delete_icon) |
||
| 100 | 691:f8d7e85ccd4e | luis | s= ""
|
| 101 | 1068:e11d8d13ebc5 | luis | |
| 102 | 691:f8d7e85ccd4e | luis | publication.projects.visible.each do |proj|
|
| 103 | 629:f9470a59e5da | luis | s << link_to_project(proj, {}, :class => 'publication_project')
|
| 104 | 1068:e11d8d13ebc5 | luis | |
| 105 | if show_delete_icon
|
||
| 106 | 691:f8d7e85ccd4e | luis | if User.current.allowed_to?(:edit_publication, @project) |
| 107 | if @project == proj |
||
| 108 | 945:75351d69e2ba | luis | # todo: move this message to yml file
|
| 109 | 691:f8d7e85ccd4e | luis | confirm_msg = 'Are you sure you want to remove the current project from this publication\'s projects list?'
|
| 110 | else
|
||
| 111 | confirm_msg = false
|
||
| 112 | 1068:e11d8d13ebc5 | luis | end
|
| 113 | |||
| 114 | 1317:2805873c0147 | luis | s << link_to(l(:button_delete), { :url => { :controller => 'publications', :action => 'remove_project', :id => publication, :remove_project_id => proj, :project_id => @project }, :method => :post, :confirm => confirm_msg }, :class => 'icon icon-del', :remote => :true) |
| 115 | 691:f8d7e85ccd4e | luis | end
|
| 116 | 629:f9470a59e5da | luis | end
|
| 117 | 691:f8d7e85ccd4e | luis | |
| 118 | 1068:e11d8d13ebc5 | luis | s << "<br />"
|
| 119 | end
|
||
| 120 | |||
| 121 | 1307:06de38acb6b4 | luis | s.html_safe |
| 122 | 541:c3abeb11bc2e | luis | end
|
| 123 | 1068:e11d8d13ebc5 | luis | |
| 124 | def print_ieee_format(publication) |
||
| 125 | Rails.cache.fetch("publication-#{publication.id}-ieee") do |
||
| 126 | 1312:2abc48cc545e | luis | publication.print_entry(:ieee).html_safe
|
| 127 | 1068:e11d8d13ebc5 | luis | end
|
| 128 | 946:a0c9cc95bcf3 | luis | end
|
| 129 | 1068:e11d8d13ebc5 | luis | |
| 130 | def print_bibtex_format(publication) |
||
| 131 | Rails.cache.fetch("publication-#{publication.id}-bibtex") do |
||
| 132 | publication.print_entry(:bibtex)
|
||
| 133 | end
|
||
| 134 | 945:75351d69e2ba | luis | end
|
| 135 | 1068:e11d8d13ebc5 | luis | |
| 136 | |||
| 137 | 544:f05f3a9ef569 | luis | def show_bibtex_fields(bibtex_entry) |
| 138 | s = ""
|
||
| 139 | 615:c4ddb9531f4c | chris | bibtex_entry.attributes.keys.sort.each do |key|
|
| 140 | value = bibtex_entry.attributes[key].to_s |
||
| 141 | next if key == 'id' or key == 'publication_id' or value == "" |
||
| 142 | 1068:e11d8d13ebc5 | luis | s << "<h4>" + l("field_#{key}") + "</h4>" |
| 143 | 615:c4ddb9531f4c | chris | s << "<p>"
|
| 144 | if key == "entry_type" |
||
| 145 | s << bibtex_entry.entry_type_label |
||
| 146 | else
|
||
| 147 | s << value |
||
| 148 | 544:f05f3a9ef569 | luis | end
|
| 149 | 615:c4ddb9531f4c | chris | s << "</p>"
|
| 150 | 544:f05f3a9ef569 | luis | end
|
| 151 | s |
||
| 152 | 1068:e11d8d13ebc5 | luis | end
|
| 153 | 328:aed18b463206 | luis | end
|