Searched refs:Ontology (Results 1 - 25 of 72) sorted by relevance

123

/ontohub/app/models/
H A Ddistributed_ontology.rb1 class DistributedOntology < Ontology
9 Ontology.model_name
H A Dsingle_ontology.rb1 class SingleOntology < Ontology
6 Ontology.model_name
H A Dsimple_ontology.rb1 class SimpleOntology < Ontology
H A Dontology.rb1 class Ontology < LocIdBaseModel class
6 # Ontology Model Includes
9 include Ontology::AssociationsAndAttributes
10 include Ontology::Categories
11 include Ontology::ClassMethodsAndScopes
12 include Ontology::Distributed
13 include Ontology::FileExtensions
14 include Ontology::HetsOptions
15 include Ontology::Import
16 include Ontology
31 class Ontology::DeleteError < StandardError; end class in class:Ontology
[all...]
H A Dcategory.rb13 ontologies = Ontology.joins(:categories).where(categories: {id: categories})
/ontohub/app/viewhelpers/
H A Dstatus_overview_viewhelper.rb5 states_map(0).merge!(Ontology.group(:state).count)
15 Ontology::States::STATES.each do |state|
H A Dlogic_viewhelper.rb18 Ontology.distributed_in(@resource).size],
21 Ontology.also_distributed_in(@resource).size],
H A Dstatus_ontology_error_viewhelper.rb14 Ontology.where(state: STATE)
/ontohub/app/models/ontology/
H A Dvalidations.rb1 module Ontology::Validations module
12 validates :state, inclusion: {in: Ontology::States::STATES}
H A Dassociations_and_attributes.rb1 module Ontology::AssociationsAndAttributes module
7 Ontology.reflect_on_association(:children).
9 has_many :all_children, class_name: Ontology.to_s, foreign_key: 'parent_id'
28 extend: Ontology::Symbols::Methods,
33 extend: Ontology::Sentences::Methods,
38 extend: Ontology::Sentences::Methods,
43 extend: Ontology::Sentences::Methods,
H A Doops.rb1 module Ontology::Oops module
H A Dimport_mappings.rb1 class Ontology class
20 Ontology.where(id: ontology_ids)
H A Dsearching.rb1 module Ontology::Searching module
H A Dfile_extensions.rb1 module Ontology::FileExtensions module
H A Dhets_options.rb1 module Ontology::HetsOptions module
H A Dstates.rb1 module Ontology::States module
/ontohub/app/controllers/
H A Dtools_controller.rb4 @ontology = Ontology.find(params[:ontology_id])
H A Dontology_version_member.rb10 @ontology ||= Ontology.find(params[:ontology_id])
H A Dtheorems_controller.rb13 @ontology ||= Ontology.find(params[:ontology_id])
/ontohub/db/data/
H A D20160310132620_move_loc_id_to_own_model_data.rb30 if klass == Ontology || Ontology.subclasses.include?(klass)
31 ontology = Ontology.find(duplicate[:id])
32 if ontology.parent.is_a?(Ontology)
/ontohub/spec/controllers/
H A Dontology_search_controller_spec.rb12 expect(assigns (:search_response)).to eq(Ontology.scoped)
/ontohub/db/seeds/
H A D060-comments.rb3 c = Ontology.first.comments.build \
/ontohub/lib/hets/
H A Dprovers_options.rb12 if ontology.is_a?(Ontology)
/ontohub/db/migrate/
H A D20160310132619_create_missing_locids.rb6 onto_locid = Ontology.where(id: ontology_id).pluck(:locid).first
15 onto_locid = Ontology.where(id: ontology_id).pluck(:locid).first
/ontohub/app/helpers/
H A Dstate_helper.rb13 if resource.is_a?(Ontology)
30 resource = resource.is_a?(Ontology) ? resource.current_version : resource
54 if resource.state == 'failed' && resource.is_a?(Ontology)

Completed in 107 milliseconds

123