view app/views/queries/index.api.rsb @ 946:a0c9cc95bcf3 bibplugin_bibtex

Now parses a publication using the BibTex-ruby parser and displays both the "text" format and the bibtex format.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 12 Jul 2012 17:47:15 +0100
parents cbb26bc654de
children 261b3d9a4903
line wrap: on
line source
api.array :queries, api_meta(:total_count => @query_count, :offset => @offset, :limit => @limit) do
  @queries.each do |query|
    api.query do
      api.id          query.id
      api.name        query.name
      api.is_public   query.is_public
      api.project_id  query.project_id
    end
  end
end