[jira] Commented: (SOLR-58) Change Admin components to return XML like the rest of the system

2006-12-14 Thread Yonik Seeley (JIRA)
[ 
http://issues.apache.org/jira/browse/SOLR-58?page=comments#action_12458631 ] 

Yonik Seeley commented on SOLR-58:
--

If this isn't an easy/quick fix, perhaps we could roll back just analysis.jsp 
so we can continue with release 1.1?

 Change Admin components to return XML like the rest of the system
 -

 Key: SOLR-58
 URL: http://issues.apache.org/jira/browse/SOLR-58
 Project: Solr
  Issue Type: New Feature
  Components: web gui
Reporter: Otis Gospodnetic
 Assigned To: Otis Gospodnetic
Priority: Minor
 Attachments: SOLR-58.patch


 I need to expose the admin functionality to an external application.  I think 
 returning admin data as XML may be a good and simple first step towards that.
 To do that I think I'll mostly need to modify JSPs (but I haven't had a good 
 look at Admin GUI yet).  From what I saw a few weeks ago when I briefly 
 looked at this, no Java code will need to be modified.  If you have concrete 
 ideas about how this should be done, please comment before I start next week 
 (week of October 23rd 2006).

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (SOLR-58) Change Admin components to return XML like the rest of the system

2006-12-07 Thread Otis Gospodnetic (JIRA)
[ 
http://issues.apache.org/jira/browse/SOLR-58?page=comments#action_12456638 ] 

Otis Gospodnetic commented on SOLR-58:
--

Yeah, I'll make sure to put those back, but that's the easy part, whereas this 
XSL was new for me, so I want to make sure everything else looks okay first.

 Change Admin components to return XML like the rest of the system
 -

 Key: SOLR-58
 URL: http://issues.apache.org/jira/browse/SOLR-58
 Project: Solr
  Issue Type: New Feature
  Components: web gui
Reporter: Otis Gospodnetic
 Assigned To: Otis Gospodnetic
Priority: Minor
 Attachments: analysis-xml-out.txt, analysis-xml.jsp, analysis.xsl, 
 logging-xml.jsp, logging.xsl, ping-xml-out.txt, ping-xml.jsp, ping.xsl, 
 SOLR-58.patch, threaddump-xml-out.txt, threaddump-xml.jsp, threaddump.xsl


 I need to expose the admin functionality to an external application.  I think 
 returning admin data as XML may be a good and simple first step towards that.
 To do that I think I'll mostly need to modify JSPs (but I haven't had a good 
 look at Admin GUI yet).  From what I saw a few weeks ago when I briefly 
 looked at this, no Java code will need to be modified.  If you have concrete 
 ideas about how this should be done, please comment before I start next week 
 (week of October 23rd 2006).

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




Re: [jira] Commented: (SOLR-58) Change Admin components to return XML like the rest of the system

2006-11-27 Thread Chris Hostetter

: Greg: schemaxsl stuff looks fancy, but it doesn't really belong to this
: issue.  I suggest you take it out and put it into a new JIRA issue,
: where it will get more visibility and attention than it's getting here.

yeah ... i somehow missed since that attachment when Greg made it, very
cool ... and very close to what i had in mind when we (some CNET folks)
were brainstorming the Schema Explorer described here...

http://wiki.apache.org/solr/MakeSolrMoreSelfService

Please do open a seperate Jira issue for this, and make sure to check the
radio button that allows for it to be inlcuded if that is your intent.




-Hoss



[jira] Commented: (SOLR-58) Change Admin components to return XML like the rest of the system

2006-10-31 Thread Bill Au (JIRA)
[ 
http://issues.apache.org/jira/browse/SOLR-58?page=comments#action_12445919 ] 

Bill Au commented on SOLR-58:
-

ping.jsp does not retrun any content.  It checks the solr server by sending the 
query  defined in SolrConfig.xml (pingQuery) and returns 200 if the query works 
without any exception.  Otherwise it returns 500.

action.jsp is a secondary JSP that performs action from the main page 
(enable/disable) and the logging page (set log level).  So I agree that there 
is probably no need to XMLized it.

 Change Admin components to return XML like the rest of the system
 -

 Key: SOLR-58
 URL: http://issues.apache.org/jira/browse/SOLR-58
 Project: Solr
  Issue Type: New Feature
  Components: web gui
Reporter: Otis Gospodnetic
 Assigned To: Otis Gospodnetic
Priority: Minor

 I need to expose the admin functionality to an external application.  I think 
 returning admin data as XML may be a good and simple first step towards that.
 To do that I think I'll mostly need to modify JSPs (but I haven't had a good 
 look at Admin GUI yet).  From what I saw a few weeks ago when I briefly 
 looked at this, no Java code will need to be modified.  If you have concrete 
 ideas about how this should be done, please comment before I start next week 
 (week of October 23rd 2006).

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (SOLR-58) Change Admin components to return XML like the rest of the system

2006-10-21 Thread Bertrand Delacretaz (JIRA)
[ 
http://issues.apache.org/jira/browse/SOLR-58?page=comments#action_12444015 ] 

Bertrand Delacretaz commented on SOLR-58:
-

Once the admin components emit XML, The XSLT transformation code written for 
SOLR-49 could be used to recreate an HTML user interface easily.

 Change Admin components to return XML like the rest of the system
 -

 Key: SOLR-58
 URL: http://issues.apache.org/jira/browse/SOLR-58
 Project: Solr
  Issue Type: New Feature
  Components: web gui
Reporter: Otis Gospodnetic
 Assigned To: Otis Gospodnetic
Priority: Minor

 I need to expose the admin functionality to an external application.  I think 
 returning admin data as XML may be a good and simple first step towards that.
 To do that I think I'll mostly need to modify JSPs (but I haven't had a good 
 look at Admin GUI yet).  From what I saw a few weeks ago when I briefly 
 looked at this, no Java code will need to be modified.  If you have concrete 
 ideas about how this should be done, please comment before I start next week 
 (week of October 23rd 2006).

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira