view test/exemplars/project_exemplar.rb @ 1017:63f8c4f2cf67 bibplugin_bibtex_display

Shows the publication list as IEEE formatted entries; Adds 2 links, one for the publication details and another for to show the publication details as bibtex.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Mon, 12 Nov 2012 20:16:35 +0000
parents cbb26bc654de
children
line wrap: on
line source
class Project < ActiveRecord::Base
  generator_for :name, :start => 'Project 0'
  generator_for :identifier, :start => 'project-0000'
  generator_for :enabled_modules, :method => :all_modules
  generator_for :trackers, :method => :next_tracker

  def self.all_modules
    [].tap do |modules|
      Redmine::AccessControl.available_project_modules.each do |name|
        modules << EnabledModule.new(:name => name.to_s)
      end
    end
  end

  def self.next_tracker
    [Tracker.generate!]
  end
end