Re: How to change Solr UI

2012-12-14 Thread Upayavira
t; >>>> http://localhost:8983/solr <- admin UI > >>>> http://localhost:8983/browse <- separate browse webapp > >>>> > >>>> It would be a separate app that runs as another wepapp, accessing Solr > >>>> via HTTP just as

Re: How to change Solr UI

2012-12-14 Thread Erik Hatcher
our app with Solr. A minimal dependency app for demonstration >>>> purposes only. >>>> >>>> Upayavira >>>> >>>> On Tue, Dec 4, 2012, at 02:37 PM, Jack Krupansky wrote: >>>>> Or, maybe integrate /browse with the Solr Admin UI and

Re: How to change Solr UI

2012-12-07 Thread Upayavira
t; treatment that screams that it is a development tool and not designed to > > >> be > > >> a model for an app UI. > > >> > > >> And, I still think it would be good to include SOME example of a > > >> prototype >

Re: How to change Solr UI

2012-12-04 Thread Upayavira
> >> a model for an app UI. > >> > >> And, I still think it would be good to include SOME example of a > >> prototype > >> app UI with Solr, to drive home the point of "here is [an example of] how > >> you need to separate UI from Solr." > >

Re: How to change Solr UI

2012-12-04 Thread Erik Hatcher
signed to >> be >> a model for an app UI. >> >> And, I still think it would be good to include SOME example of a >> prototype >> app UI with Solr, to drive home the point of "here is [an example of] how >> you need to separate UI from Solr." >

Re: How to change Solr UI

2012-12-04 Thread Upayavira
k Hatcher > Sent: Tuesday, December 04, 2012 9:29 AM > To: solr-user@lucene.apache.org > Subject: Re: How to change Solr UI > > > On Dec 4, 2012, at 08:21 , Jack Krupansky wrote: > > > "let's also be clear always that Solr is meant to be behind the firewall" &g

Re: How to change Solr UI

2012-12-04 Thread Jack Krupansky
"here is [an example of] how you need to separate UI from Solr." -- Jack Krupansky -Original Message- From: Erik Hatcher Sent: Tuesday, December 04, 2012 9:29 AM To: solr-user@lucene.apache.org Subject: Re: How to change Solr UI On Dec 4, 2012, at 08:21 , Jack Krupa

Re: How to change Solr UI

2012-12-04 Thread Upayavira
--Original Message----- > From: Erik Hatcher > Sent: Tuesday, December 04, 2012 5:23 AM > To: solr-user@lucene.apache.org > Subject: Re: How to change Solr UI > > It's a shame wt=velocity gets a bad rap because /update isn't out of the > box > strict with the HTTP/RE

Re: How to change Solr UI

2012-12-04 Thread Erik Hatcher
On Dec 4, 2012, at 08:21 , Jack Krupansky wrote: > "let's also be clear always that Solr is meant to be behind the firewall" > > Absolutely, but we are NOT doing that when we provide the Velocity-based > /browse UI. > Erik, your email example sounds reasonable, so if you want to substitute > s

Re: How to change Solr UI

2012-12-04 Thread Jack Krupansky
-- From: Iwan Hanjoyo Sent: Monday, December 03, 2012 8:28 PM To: solr-user@lucene.apache.org Subject: Re: How to change Solr UI Note that Velocity _can_ be used for user-facing code, but be very sure you secure your Solr. If you allow direct access, a user can easily enter something like http:// /u

Re: How to change Solr UI

2012-12-04 Thread Erik Hatcher
Message- From: Iwan Hanjoyo > Sent: Monday, December 03, 2012 8:28 PM > To: solr-user@lucene.apache.org > Subject: Re: How to change Solr UI > >> >> >> Note that Velocity _can_ be used for user-facing code, but be very sure you >> secure your Solr. If you

Re: How to change Solr UI

2012-12-03 Thread Erick Erickson
That's only one example, there are others, stream.body=blah. or id:* Jack's comment is well taken, consider a real middleware application. Best Erick On Mon, Dec 3, 2012 at 5:28 PM, Iwan Hanjoyo wrote: > > > > > > Note that Velocity _can_ be used for user-facing code, but be very sure > you

Re: How to change Solr UI

2012-12-03 Thread Jack Krupansky
: Iwan Hanjoyo Sent: Monday, December 03, 2012 8:28 PM To: solr-user@lucene.apache.org Subject: Re: How to change Solr UI Note that Velocity _can_ be used for user-facing code, but be very sure you secure your Solr. If you allow direct access, a user can easily enter something like http:// /update

Re: How to change Solr UI

2012-12-03 Thread Iwan Hanjoyo
> > > Note that Velocity _can_ be used for user-facing code, but be very sure you > secure your Solr. If you allow direct access, a user can easily enter > something like http:// > /update?commit=true&stream.body=*:*. > And all your documents will be gone. > > Hi Erickson, Thank you for the input.

Re: How to change Solr UI

2012-12-03 Thread Erick Erickson
Adding to what Iwan said, I want to be sure you're not confusing prototyping with a full-fledged application. The Velocity code included is mostly intended as a rapid-prototyping vehicle. There are significant security issues if you try to use it as your user-facing application, be sure you trust y

Re: How to change Solr UI

2012-12-03 Thread Iwan Hanjoyo
Hi Romita, In my opinion, if you are new to Solr, you can start learning from Solritas. Solritas uses Apache Velocity, a templating language, CSS and JQuery to manage it looks and behavior. Besides that you can write a custom SearchComponent inside the /browse SearchHandler to add more functionali