Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/helpers/my_helper.rb @ 595:84e8d34d024c feature_36
DEV Commit: now generating the seach "author select box" with the appropriate options and element names and id's, so that it gets correctly submitted with the form.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 16 Aug 2011 02:06:36 +0100 |
parents | dd9d9c0ff0f9 |
children | 999a6b3c4cd1 |
line wrap: on
line source
module MyHelper def get_my_publications() if not User.current.author.nil? @my_publications = Publication.all(:include => :authors, :conditions => "authors.id = #{User.current.author.id}") else @my_publications = [] end end def render_publications_projects(publication) s = "" projs = [] publication.projects.each do |proj| projs << link_to(proj.name, proj) end if projs.size < 3 s << '<nobr>' << projs.join(', ') << '</nobr>' else s << projs.join(', ') end s end def render_publications_authors(publication) s = "" auths = [] publication.authorships.each do |auth| auths << h(auth.name_on_paper) end if auths.size < 3 s << '<nobr>' << auths.join(', ') << '</nobr>' else s << auths.join(', ') end s end end