weitere classen durchsuchen
This commit is contained in:
@@ -32,7 +32,7 @@ class HomeController < ApplicationController
|
||||
def search
|
||||
|
||||
unless params['query'].nil? || params['query'].empty?
|
||||
@results = Sunspot.search Neuigkeit, Fetprofile do
|
||||
@results = Sunspot.search Neuigkeit,Rubrik, Fetprofile, Thema, Themengruppe, Lva, Studium, Modul, Modulgruppe do
|
||||
fulltext params['query']
|
||||
end
|
||||
@neuigkeiten=[];
|
||||
@@ -43,11 +43,12 @@ class HomeController < ApplicationController
|
||||
end
|
||||
# @fetprofiles = Fetprofile.search(params['query'])
|
||||
@fetprofiles=[]
|
||||
if can?(:showintern, Neuigkeit)
|
||||
@themen=Thema.search(params['query'])
|
||||
else
|
||||
@themen=Thema.search(params['query']).public
|
||||
end
|
||||
# if can?(:showintern, Neuigkeit)
|
||||
# @themen=Thema.search(params['query'])
|
||||
# else
|
||||
# @themen=Thema.search(params['query']).public
|
||||
# end
|
||||
@themen=[]
|
||||
|
||||
else
|
||||
@neuigkeiten=[]
|
||||
|
||||
@@ -198,6 +198,15 @@ class Lva < ActiveRecord::Base
|
||||
newlvas
|
||||
|
||||
end
|
||||
|
||||
searchable do
|
||||
text :desc
|
||||
text :pruefungsinformation
|
||||
text :lernaufwand
|
||||
text :typ
|
||||
text :name, :boost=>3.0
|
||||
end
|
||||
|
||||
def self.update_multiple_with_modul(hash,modul)
|
||||
newlvas=[]
|
||||
hash.each do |i,l|
|
||||
|
||||
@@ -53,4 +53,9 @@ class Modul < ActiveRecord::Base
|
||||
end
|
||||
m
|
||||
end
|
||||
|
||||
searchable do
|
||||
text :desc
|
||||
text :name, :boost=>3.0
|
||||
end
|
||||
end
|
||||
|
||||
@@ -32,4 +32,10 @@ class Modulgruppe < ActiveRecord::Base
|
||||
def studium_name
|
||||
self.studium.nil? ? "Kein Studium vorhanden" : self.studium.name
|
||||
end
|
||||
searchable do
|
||||
text :desc
|
||||
text :typ
|
||||
text :name, :boost=>3.0
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -84,7 +84,8 @@ class Neuigkeit < ActiveRecord::Base
|
||||
end
|
||||
end
|
||||
searchable do
|
||||
text :text, :datum
|
||||
text :text
|
||||
text :datum
|
||||
text :title, :boost=>3.0
|
||||
end
|
||||
end
|
||||
|
||||
@@ -35,4 +35,10 @@ end
|
||||
self.calendar.public=self.public
|
||||
self.calendar.save
|
||||
end
|
||||
|
||||
searchable do
|
||||
text :desc
|
||||
text :name, :boost=>4.0
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -84,5 +84,12 @@ validates :abkuerzung, :length=>{:maximum=>5}, :format=>{:with=>/^[a-zA-z]{0,5}$
|
||||
""
|
||||
end
|
||||
end
|
||||
searchable do
|
||||
text :desc
|
||||
text :zahl
|
||||
text :typ
|
||||
text :abkuerzung
|
||||
text :name, :boost=>3.0
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -23,8 +23,14 @@ include Rails.application.routes.url_helpers
|
||||
validates :text, :presence => true
|
||||
scope :public, where(:isdraft=>false).includes(:themengruppe).where("themengruppen.public"=>true)
|
||||
default_scope order("themen.priority").reverse_order
|
||||
scope :search, ->(query) {where("themen.text like ? or themen.title like ?", "%#{query}%", "%#{query}%")}
|
||||
scope :outdated, -> {includes(:translations).where("thema_translations.updated_at<?",2.month.ago).where("thema_translations.locale"=>I18n.t.locale)
|
||||
# scope :search, ->(query) {where("themen.text like ? or themen.title like ?", "%#{query}%", "%#{query}%")}
|
||||
searchable do
|
||||
text :text
|
||||
text :title, :boost=>4.0
|
||||
end
|
||||
|
||||
|
||||
scope :outdated, -> {includes(:translations).where("thema_translations.updated_at<?",2.month.ago).where("thema_translations.locale"=>I18n.t.locale)
|
||||
}
|
||||
translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true
|
||||
def is_outdated?
|
||||
|
||||
@@ -36,4 +36,9 @@ end
|
||||
self.save;
|
||||
end
|
||||
|
||||
searchable do
|
||||
text :text
|
||||
text :title, :boost=>4.0
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -1,8 +1,17 @@
|
||||
|
||||
<% unless @results.nil? %>
|
||||
<%= @results.results.each do |res| %>
|
||||
<%= render res %>
|
||||
<ul class="unstyled linkbox-list">
|
||||
<% @results.results.each do |res| %>
|
||||
<% if can?(:show, res) %>
|
||||
<li>
|
||||
<%= link_to res, :class=>:linkbox do %>
|
||||
<%= render :partial=>res.class.to_s.pluralize.downcase+"/nlink", :object=>res %>
|
||||
<% end %>
|
||||
|
||||
</li>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% end %>
|
||||
|
||||
<% unless @neuigkeiten.empty? %>
|
||||
|
||||
1
app/views/modulgruppen/_nlink.html.erb
Normal file
1
app/views/modulgruppen/_nlink.html.erb
Normal file
@@ -0,0 +1 @@
|
||||
<h2><%= nlink.name %></h2>
|
||||
@@ -1,9 +1,9 @@
|
||||
|
||||
<h1><%= @modul.name %></h1>
|
||||
<h1><%= modul.name %></h1>
|
||||
<div class="row-fluid">
|
||||
<div class="span8">
|
||||
<h2><%=I18n.t("modul.lvas")%></h2>
|
||||
<% @modul.lvas.each_slice(3) do |row| %>
|
||||
<% modul.lvas.each_slice(3) do |row| %>
|
||||
<ul>
|
||||
<% row.each do |lv| %>
|
||||
<li>
|
||||
@@ -14,14 +14,14 @@
|
||||
<% end %>
|
||||
<h2><%=I18n.t("modul.desc")%></h2>
|
||||
<p>
|
||||
<%= raw(@modul.desc) %>
|
||||
<%= raw(modul.desc) %>
|
||||
</p>
|
||||
</div>
|
||||
<div class="span4">
|
||||
<div class="lva-sidebar">
|
||||
<h2><%=I18n.t("modul.mgs")%></h2>
|
||||
<ul>
|
||||
<% @modul.modulgruppen.each do |mg| %>
|
||||
<% modul.modulgruppen.each do |mg| %>
|
||||
<li>
|
||||
<%= render 'modulgruppen/kurz', :modulgruppe=>mg %>
|
||||
</li>
|
||||
|
||||
2
app/views/moduls/_nlink.html.erb
Normal file
2
app/views/moduls/_nlink.html.erb
Normal file
@@ -0,0 +1,2 @@
|
||||
Modul:
|
||||
<%= nlink.name %>
|
||||
3
app/views/neuigkeiten/_nlink.html.erb
Normal file
3
app/views/neuigkeiten/_nlink.html.erb
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
<h2> <%= nlink.title %> </h2>
|
||||
|
||||
3
app/views/rubriken/_nlink.html.erb
Normal file
3
app/views/rubriken/_nlink.html.erb
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
<h2 ><%= nlink.name %></h2>
|
||||
|
||||
0
app/views/rubriken/_rubrik.html.erb
Normal file
0
app/views/rubriken/_rubrik.html.erb
Normal file
@@ -1,2 +1,17 @@
|
||||
<h2><%= nlink.name %></h2>
|
||||
<p><%= nlink.desc_first_words %></p>
|
||||
<% studium=nlink %>
|
||||
<div class="media">
|
||||
<% unless studium.picture.thumb.url.nil? %>
|
||||
<div class="pull-left">
|
||||
<%= image_tag studium.picture.thumb.url %>
|
||||
</div>
|
||||
<% end %>
|
||||
<div class="media-body">
|
||||
<h2>
|
||||
<%= studium.name + " " + studium.zahl.to_s %>
|
||||
</h2>
|
||||
<p>
|
||||
<b><%= studium.typ%> </b>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
1
app/views/themengruppen/_nlink.html.erb
Normal file
1
app/views/themengruppen/_nlink.html.erb
Normal file
@@ -0,0 +1 @@
|
||||
<h2><%= nlink.title %> </h2>
|
||||
Reference in New Issue
Block a user