Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/models/bibtex_entry.rb @ 1114:212b72b966ff bibplugin_bibtex
development commit - changing association validations. not working correctly
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 14 Dec 2012 19:50:00 +0000 |
parents | 70849df4eae1 |
children |
line wrap: on
line source
class BibtexEntry < ActiveRecord::Base unloadable belongs_to :publication validates_presence_of :entry_type, :publication attr_accessible :entry_type, :address, :annote, :booktitle, :chapter, :crossref, :edition, :editor, :eprint, :howpublished, :journal, :key, :month, :note, :number, :organization, :pages, :publisher, :school, :series, :type, :url, :volume, :year def entry_type_name entry_type = self.entry_type BibtexEntryType.find(entry_type).name end def entry_type_label entry_type = self.entry_type BibtexEntryType.find(entry_type).label end end