Re: First version of solr javascript client to review

2008-07-11 Thread Matthias Epheser
a small improvement: I just managed to get relative paths for the test jetty working, so to you just have to: cd testsolr java -jar start.jar open http://localhost:8983/solrjs/test/testServerside.html regards, matthias Matthias Epheser schrieb: Hi, I just made a commit to http://solrstuff.

Re: First version of solr javascript client to review

2008-07-10 Thread Matthias Epheser
Hi, I just made a commit to http://solrstuff.org/svn/solrjs, containing the following changes: A) Build system The single javascript file became a bit long, so I decided to create a new directory structure and a small build file: src/ -> single javascript files for every "class" lib/ ->

Re: First version of solr javascript client to review

2008-07-08 Thread Matthias Epheser
Erik Hatcher schrieb: Mattias, Nice start! One comment In test.html: new $sj.solrjs.Manager({solrUrl:"http://localhost:8983/solr/select"}); It would be better to omit the "/select" from the base URL. Consider Solr rooted at a particular URL without the request handler mapping attac

Re: First version of solr javascript client to review

2008-07-07 Thread Erik Hatcher
Mattias, Nice start! One comment In test.html: new $sj.solrjs.Manager({solrUrl:"http://localhost:8983/solr/ select"}); It would be better to omit the "/select" from the base URL. Consider Solr rooted at a particular URL without the request handler mapping attached to it, and all

Re: First version of solr javascript client to review

2008-07-03 Thread Ryan McKinley
Any thoughts / ideas on how to make formatting and laying out custom results less obtuse? $sj('').html(item.id).appendTo(this.target); seems ok for simple things -- like a list -- but not very designer friendly. ryan On Jul 1, 2008, at 3:00 AM, Matthias Epheser wrote: Hi community, a

First version of solr javascript client to review

2008-07-01 Thread Matthias Epheser
Hi community, as described here http://www.nabble.com/Announcement-of-Solr-Javascript-Client-to17462581.html I started to work on a javascript widget library for solr. I've now finished the basic framework work: - creating a jquery environment - creating helpers for jquery inheritance - test