Re: Opinions wanted about a new Solr logo (SOLR-58)

2006-12-18 Thread Clay Webster

Nice stuff.  I like it.  I could see that the crescent could be a bit bulky
in
some circumstances where you might want one with less vertical size.

I did the initial logo and +1 this one.

--cw

On 12/15/06, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote:


On 12/15/06, Fuad Efendi <[EMAIL PROTECTED]> wrote:

> ...Can we play more with same base
> idea?...

You're welcome to create modified or different proposals of course!

The logo was created by our trainee Nicolas, who's finishing his time
at my office next week, and he won't have much time (if any) to play
more with it. So it would be better if people with ideas could
implement them, for a truly open source logo ;-)

-Bertrand



Re: Opinions wanted about a new Solr logo (SOLR-58)

2006-12-18 Thread Linda Tan

Just my 2 cents: I quickly erased the crescent in Paint, and I like it much
better.

-linda

On 12/18/06, Clay Webster <[EMAIL PROTECTED]> wrote:


Nice stuff.  I like it.  I could see that the crescent could be a bit
bulky
in
some circumstances where you might want one with less vertical size.

I did the initial logo and +1 this one.

--cw

On 12/15/06, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote:
>
> On 12/15/06, Fuad Efendi <[EMAIL PROTECTED]> wrote:
>
> > ...Can we play more with same base
> > idea?...
>
> You're welcome to create modified or different proposals of course!
>
> The logo was created by our trainee Nicolas, who's finishing his time
> at my office next week, and he won't have much time (if any) to play
> more with it. So it would be better if people with ideas could
> implement them, for a truly open source logo ;-)
>
> -Bertrand
>




RE: Opinions wanted about a new Solr logo (SOLR-58)

2006-12-18 Thread Linda Tan
I just learned no attachments are allowed on this list. I've put the
image in the jira
 
http://issues.apache.org/jira/browse/SOLR-84
 
-linda




From: Linda Tan [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 18, 2006 11:22 AM
To: solr-user@lucene.apache.org
Subject: Re: Opinions wanted about a new Solr logo (SOLR-58)


Just my 2 cents: I quickly erased the crescent in Paint, and I
like it much better. 

-linda


On 12/18/06, Clay Webster < [EMAIL PROTECTED]
 > wrote: 

Nice stuff.  I like it.  I could see that the crescent
could be a bit bulky 
in
some circumstances where you might want one with less
vertical size.

I did the initial logo and +1 this one.

--cw

On 12/15/06, Bertrand Delacretaz <
[EMAIL PROTECTED]  > wrote:
>
> On 12/15/06, Fuad Efendi <[EMAIL PROTECTED]> wrote:
>
> > ...Can we play more with same base
> > idea?... 
>
> You're welcome to create modified or different
proposals of course!
>
> The logo was created by our trainee Nicolas, who's
finishing his time
> at my office next week, and he won't have much time
(if any) to play 
> more with it. So it would be better if people with
ideas could
> implement them, for a truly open source logo ;-)
>
> -Bertrand
>






Re: Opinions wanted about a new Solr logo (SOLR-58)

2006-12-18 Thread Bertrand Delacretaz

On 12/18/06, Linda Tan <[EMAIL PROTECTED]> wrote:

I just learned no attachments are allowed on this list. I've put the
image in the jira..


Thanks, it looks good indeed!
-Bertrand


Re: Opinions wanted about a new Solr logo (SOLR-58)

2006-12-18 Thread sangraal aiken

I like the version without the 'swoosh'. Simplicity is king in by book.

-S

On 12/18/06, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote:


On 12/18/06, Linda Tan <[EMAIL PROTECTED]> wrote:
> I just learned no attachments are allowed on this list. I've put the
> image in the jira..

Thanks, it looks good indeed!
-Bertrand



Newbie Question acts_as_solr

2006-12-18 Thread Mike Beccaria
Hi all,

Forgive me for the newbie questions (the questions rolling in here seem to
be way over my current level of competence). I'm learning ruby on rails to
implement a searchable catalog of items and want to use the acts_as_solr
plugin to eventually create a faceted search design.

I feel awkward even asking this as it may seem so basic that I may be
missing something obvious, but no online tutorials seem to walk through the
process from start to finish.

I watched the movie on http://acts-as-solr.rubyforge.org/ and I can get the
application to work from the console (switching the schema.xml file,
starting the java server thingy and all that) but I am having trouble
implementing it in a rails web application. How does the Java server
interact with rails? To use acts_as_solr in a web based application (search
box->results list) should I start the java server like in the tutorial?

Anyway, I'm trying to make the simplest search box and results list
possible. I'm getting and "undefined method `find_by_solr' for
#" error with the files below. I know it's got to be
something dumb and obvious. Can someone point me in the right direction? It
would be much appreciated.

Thanks,
Mike Beccaria
Systems Librarian
Paul Smith's College


Here is my rails outline:
Search_controller.rb:
class SearchController < ApplicationController
 def index
 end
  def searchdb
movie=Movie.new
@query= movie.find_by_solr(params[:squery])
  end
end

/models/movie.rb:
class Movie < ActiveRecord::Base
  acts_as_solr
end

/views/search/index.rhtml:


 Test!!!


<%= start_form_tag :controller=>'search', :action=>'searchdb' %>
  Enter Search Term:
  <%= text_field_tag :squery%>

  
  <%= submit_tag( "Search") %>
  
<%= end_form_tag %>



/views/search/searchdb.rhtml:


 Hello!!!test


<%= @query %>



The information contained in this electronic message and any attachments 
to this message are intended for the exclusive use of the addressee(s) and 
may contain confidential or privileged Information.  If you are not the
intended recipient, please notify the sender immediately or reply via e-mail
and destroy all copies of the message and any attachments.  Thank you.
<<<>>>


Re: Newbie Question acts_as_solr

2006-12-18 Thread Erik Hatcher

Mike,

Yes, Solr needs to be running within a Java web application server to  
operate.  Like a database server, for example.


Try Movie.find_by_solr, not lowercase "movie".  find_by_solr is a  
class-level method, not an instance method.


Erik


On Dec 18, 2006, at 4:01 PM, Mike Beccaria wrote:


Hi all,

Forgive me for the newbie questions (the questions rolling in here  
seem to
be way over my current level of competence). I'm learning ruby on  
rails to
implement a searchable catalog of items and want to use the  
acts_as_solr

plugin to eventually create a faceted search design.

I feel awkward even asking this as it may seem so basic that I may be
missing something obvious, but no online tutorials seem to walk  
through the

process from start to finish.

I watched the movie on http://acts-as-solr.rubyforge.org/ and I can  
get the

application to work from the console (switching the schema.xml file,
starting the java server thingy and all that) but I am having trouble
implementing it in a rails web application. How does the Java server
interact with rails? To use acts_as_solr in a web based application  
(search
box->results list) should I start the java server like in the  
tutorial?


Anyway, I'm trying to make the simplest search box and results list
possible. I'm getting and "undefined method `find_by_solr' for
#" error with the files below. I know it's got to be
something dumb and obvious. Can someone point me in the right  
direction? It

would be much appreciated.

Thanks,
Mike Beccaria
Systems Librarian
Paul Smith's College


Here is my rails outline:
Search_controller.rb:
class SearchController < ApplicationController
 def index
 end
  def searchdb
movie=Movie.new
@query= movie.find_by_solr(params[:squery])
  end
end

/models/movie.rb:
class Movie < ActiveRecord::Base
  acts_as_solr
end

/views/search/index.rhtml:


 Test!!!


<%= start_form_tag :controller=>'search', :action=>'searchdb' %>
  Enter Search Term:
  <%= text_field_tag :squery%>

  
  <%= submit_tag( "Search") %>
  
<%= end_form_tag %>



/views/search/searchdb.rhtml:


 Hello!!!test


<%= @query %>



The information contained in this electronic message and any  
attachments
to this message are intended for the exclusive use of the addressee 
(s) and
may contain confidential or privileged Information.  If you are not  
the
intended recipient, please notify the sender immediately or reply  
via e-mail

and destroy all copies of the message and any attachments.  Thank you.
<<<>>>




RE: Newbie Question acts_as_solr

2006-12-18 Thread Mike Beccaria
Erik,

You're a genius. That did the trick for getting "something" back. I'll be at
the code4lib conference (and pre-conference) in Atlanta and I'll be looking
forward to talking with you. 

Another question...
The controller:
@query= Movie.find_by_solr(params[:squery])
Then in the view:
<%= @query %>

Produces 2 hits (as per count_by_solr) that look like this : "##"

Why does it return a "#" and how do you return the result attributes (like
title or synopsis etc.) in the array? Do you have to run a find on the
database at that point?

Thanks,
Mike

-Original Message-
From: Erik Hatcher [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 18, 2006 4:06 PM
To: solr-user@lucene.apache.org
Subject: Re: Newbie Question acts_as_solr

Mike,

Yes, Solr needs to be running within a Java web application server to  
operate.  Like a database server, for example.

Try Movie.find_by_solr, not lowercase "movie".  find_by_solr is a  
class-level method, not an instance method.

Erik


On Dec 18, 2006, at 4:01 PM, Mike Beccaria wrote:

> Hi all,
>
> Forgive me for the newbie questions (the questions rolling in here  
> seem to
> be way over my current level of competence). I'm learning ruby on  
> rails to
> implement a searchable catalog of items and want to use the  
> acts_as_solr
> plugin to eventually create a faceted search design.
>
> I feel awkward even asking this as it may seem so basic that I may be
> missing something obvious, but no online tutorials seem to walk  
> through the
> process from start to finish.
>
> I watched the movie on http://acts-as-solr.rubyforge.org/ and I can  
> get the
> application to work from the console (switching the schema.xml file,
> starting the java server thingy and all that) but I am having trouble
> implementing it in a rails web application. How does the Java server
> interact with rails? To use acts_as_solr in a web based application  
> (search
> box->results list) should I start the java server like in the  
> tutorial?
>
> Anyway, I'm trying to make the simplest search box and results list
> possible. I'm getting and "undefined method `find_by_solr' for
> #" error with the files below. I know it's got to be
> something dumb and obvious. Can someone point me in the right  
> direction? It
> would be much appreciated.
>
> Thanks,
> Mike Beccaria
> Systems Librarian
> Paul Smith's College
>
>
> Here is my rails outline:
> Search_controller.rb:
> class SearchController < ApplicationController
>  def index
>  end
>   def searchdb
> movie=Movie.new
> @query= movie.find_by_solr(params[:squery])
>   end
> end
>
> /models/movie.rb:
> class Movie < ActiveRecord::Base
>   acts_as_solr
> end
>
> /views/search/index.rhtml:
> 
> 
>  Test!!!
> 
> 
> <%= start_form_tag :controller=>'search', :action=>'searchdb' %>
>   Enter Search Term:
>   <%= text_field_tag :squery%>
> 
>   
>   <%= submit_tag( "Search") %>
>   
> <%= end_form_tag %>
> 
> 
>
> /views/search/searchdb.rhtml:
> 
> 
>Hello!!!test
> 
> 
>   <%= @query %>
> 
> 
>
> The information contained in this electronic message and any  
> attachments
> to this message are intended for the exclusive use of the addressee 
> (s) and
> may contain confidential or privileged Information.  If you are not  
> the
> intended recipient, please notify the sender immediately or reply  
> via e-mail
> and destroy all copies of the message and any attachments.  Thank you.
> <<<>>>