Re: [xwiki-users] Lucene Search does not correctly filter by space

2013-01-15 Thread sanjib
Hi,

I have checked that the lucene index folder has proper write permission and
I have emptied that folder before restart the server, but still the lucene
indexing stucked once again. I am using xwiki 4.3 stable and enable the
lucene search from admin section search configuration and configured the
lucene index directory from xwiki.cfg file as 

xwiki.plugins.lucene.indexdir=/opt/apache-tomcat-6.0.26/luceneindex/xwiki/lucene

Any help would be greatly appreciated.

Thanks  Regards,
Sanjib Pal



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Lucene-Search-does-not-correctly-filter-by-space-tp7581190p7583291.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search does not correctly filter by space

2012-12-08 Thread lisalisa
lisalisa wrote
 Hi Sergiu,
 
 Do you have any time (or XWIKI version) estimate for XWIKI-8192 on the
 roadmap? We started testing XWIKI 4.3 on a development server, but did not
 deploy it to our users. For our next deployment at our company, we would
 ideally like to wait for the Lucene Search fix. We understand that most
 developers are donating their time to XWIKI, but we just wondered if there
 was any proposed time frame for this particular issue.
 
 Thanks, Lisa

Oh, I was watching XWIKI-8192 in JIRA and see that it will be resolved for
XWIKI 4.4.1 ... awesome!!

Lisa



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Lucene-Search-does-not-correctly-filter-by-space-tp7581190p7582803.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search does not correctly filter by space

2012-12-08 Thread Sergiu Dumitriu
On 12/08/2012 06:58 AM, lisalisa wrote:
 lisalisa wrote
 Hi Sergiu,

 Do you have any time (or XWIKI version) estimate for XWIKI-8192 on the
 roadmap? We started testing XWIKI 4.3 on a development server, but did not
 deploy it to our users. For our next deployment at our company, we would
 ideally like to wait for the Lucene Search fix. We understand that most
 developers are donating their time to XWIKI, but we just wondered if there
 was any proposed time frame for this particular issue.

 Thanks, Lisa
 
 Oh, I was watching XWIKI-8192 in JIRA and see that it will be resolved for
 XWIKI 4.4.1 ... awesome!!
 
 Lisa
 

Sorry for the delay, I started working on it a while ago but ran into
some problems.

-- 
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search does not correctly filter by space

2012-11-21 Thread lisalisa
Sergiu Dumitriu-2 wrote
 Well, there are two bugs involved here.
 
 One is that when there are spaces (as in white space) in the space name, 
 the part of the query that is supposed to filter only results from that 
 space is broken: instead of searching for documents in the space a 
 space with whitespace, it searches for documents in the space a and 
 also containing space with whitespace as words in the text. I just 
 fixed this issue for the upcoming 4.3 release: 
 http://jira.xwiki.org/browse/XWIKI-8191
 
 The second one is that the space name is not stored as it is, but it's 
 tokenized and analyzed so that it supports non-exact matches. But this 
 means that if we have two spaces, Main and The Main Space, trying to 
 get results from the Main space will also include results from the 
 The Main Space space. Fixing this would be a bit harder, since it 
 means indexing not just the space field, but also an exactspace 
 field that would allow exact matches on the space name. I've created 
 https://jira.xwiki.org/browse/XWIKI-8192 to track this issue.
 -- 
 Sergiu Dumitriu

Hi Sergiu,

Do you have any time (or XWIKI version) estimate for XWIKI-8192 on the
roadmap? We started testing XWIKI 4.3 on a development server, but did not
deploy it to our users. For our next deployment at our company, we would
ideally like to wait for the Lucene Search fix. We understand that most
developers are donating their time to XWIKI, but we just wondered if there
was any proposed time frame for this particular issue.

Thanks, Lisa



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Lucene-Search-does-not-correctly-filter-by-space-tp7581190p7582483.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search does not correctly filter by space

2012-09-09 Thread Sergiu Dumitriu

On 09/06/2012 05:48 PM, iceicelady wrote:

Hello all, we've recently launched a new wiki and have been forced to switch
to Database Search because of an odd problem with Lucene. We have multiple
spaces, and when using Lucene, selecting a space from the drop-down list
does NOT return the expected (filtered) results. We still get results from
multiple spaces. Lucene seems to be prioritizing 'weight' over our selection
of a specific space.

We do not have this same problem with Database Search, which filters
correctly every time. Of course, we'd prefer to use Lucene because of the
strong query syntax and weighting.

I have searched forums for days and cannot seem to find someone who has had
the same issue. I feel like it's something simple ... will someone PLEASE
help?

Thank you much!




Well, there are two bugs involved here.

One is that when there are spaces (as in white space) in the space name, 
the part of the query that is supposed to filter only results from that 
space is broken: instead of searching for documents in the space a 
space with whitespace, it searches for documents in the space a and 
also containing space with whitespace as words in the text. I just 
fixed this issue for the upcoming 4.3 release: 
http://jira.xwiki.org/browse/XWIKI-8191


The second one is that the space name is not stored as it is, but it's 
tokenized and analyzed so that it supports non-exact matches. But this 
means that if we have two spaces, Main and The Main Space, trying to 
get results from the Main space will also include results from the 
The Main Space space. Fixing this would be a bit harder, since it 
means indexing not just the space field, but also an exactspace 
field that would allow exact matches on the space name. I've created 
https://jira.xwiki.org/browse/XWIKI-8192 to track this issue.


--
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search does not correctly filter by space

2012-09-09 Thread iceicelady

Sergiu Dumitriu-2 wrote
 
 Well, there are two bugs involved here.
 
 One is that when there are spaces (as in white space) in the space name, 
 the part of the query that is supposed to filter only results from that 
 space is broken: instead of searching for documents in the space a 
 space with whitespace, it searches for documents in the space a and 
 also containing space with whitespace as words in the text. I just 
 fixed this issue for the upcoming 4.3 release: 
 http://jira.xwiki.org/browse/XWIKI-8191
 
 The second one is that the space name is not stored as it is, but it's 
 tokenized and analyzed so that it supports non-exact matches. But this 
 means that if we have two spaces, Main and The Main Space, trying to 
 get results from the Main space will also include results from the 
 The Main Space space. Fixing this would be a bit harder, since it 
 means indexing not just the space field, but also an exactspace 
 field that would allow exact matches on the space name. I've created 
 https://jira.xwiki.org/browse/XWIKI-8192 to track this issue.
 

Thank you very much for your response, Sergiu.  That really helps to explain
things.  Our two main spaces have white spaces in their names AND have
some similar letters in their names.

Less than a month ago, wupgraded from XWIKI 2.4 to 4.2 milestone 1. I read
the JIRAs you mentioned, and it's good to know that if we upgrade to 4.3 (or
higher) sometime in the future, those issues have been captured and are
being worked. 



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Lucene-Search-does-not-correctly-filter-by-space-tp7581190p7581215.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene Search does not correctly filter by space

2012-09-06 Thread iceicelady
Hello all, we've recently launched a new wiki and have been forced to switch
to Database Search because of an odd problem with Lucene. We have multiple
spaces, and when using Lucene, selecting a space from the drop-down list
does NOT return the expected (filtered) results. We still get results from
multiple spaces. Lucene seems to be prioritizing 'weight' over our selection
of a specific space.

We do not have this same problem with Database Search, which filters
correctly every time. Of course, we'd prefer to use Lucene because of the
strong query syntax and weighting.

I have searched forums for days and cannot seem to find someone who has had
the same issue. I feel like it's something simple ... will someone PLEASE
help?

Thank you much!



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Lucene-Search-does-not-correctly-filter-by-space-tp7581190.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search Problem with Wiki Farm Member it

2011-02-15 Thread Ludovic Dubost


We have found some issues with the analyzer code that analyzes the wiki 
name.

Though with the english analyzer this should not be a problem.
We are fixing this for the next versions of XWiki.

Now if you are sure the problem is the name of the wiki, rename it and 
use a wiki alias.


The result for the user will be the same URL, but the wiki will have 
internally another name


Ludovic

Le 04/02/11 11:15, Tronicek a écrit :

Hi,
we've updatet XWiki 1.7 XE to 2.7.33656 and are using the Wiki Manager to
have a Wiki Farm.

There is a strange behaviour we have not realized immediately related to
search requests.
It seams that the name of the virtual wiki is causing the problem. Its name
is it and is used as solution base for IT problems.

We can reproduce the problem by:
- create a new virtual wiki with name it (without quotation marks).
- import xwiki-enterprise-wiki-2.7.xar
- search with lucene (no results):
.../view/Main/LuceneSearch?text=sandboxspace=
- search with old engine (see pages):
.../view/Main/WebSearch?text=sandboxspace=

We tried to change the analyzer in xwiki.cfg:
xwiki.plugins.lucene.analyzer=org.apache.lucene.analysis.de.GermanAnalyzer
-  no success

Our virtual wikis are mapped via virtual path (xwiki.cfg:
xwiki.virtual.usepath=1).

It would be nice to keep the virtual wiki name. Is there a workaround to
handle this problem?

Regards,
Rudolf




--
Ludovic Dubost
Blog: http://blog.ludovic.org/
XWiki: http://www.xwiki.com
Skype: ldubost GTalk: ldubost

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search Problem with Wiki Farm Member it

2011-02-09 Thread Thomas Mortagne
Hi Rudolf,

Sorry for the delay.

It definitely looks like a bug and probably an escaping bug.

Could you create an issue on jira.xwiki.org with all the details to
reproduce it ?

On Fri, Feb 4, 2011 at 11:15, Tronicek troni...@web.de wrote:

 Hi,
 we've updatet XWiki 1.7 XE to 2.7.33656 and are using the Wiki Manager to
 have a Wiki Farm.

 There is a strange behaviour we have not realized immediately related to
 search requests.
 It seams that the name of the virtual wiki is causing the problem. Its name
 is it and is used as solution base for IT problems.

 We can reproduce the problem by:
 - create a new virtual wiki with name it (without quotation marks).
 - import xwiki-enterprise-wiki-2.7.xar
 - search with lucene (no results):
 .../view/Main/LuceneSearch?text=sandboxspace=
 - search with old engine (see pages):
 .../view/Main/WebSearch?text=sandboxspace=

 We tried to change the analyzer in xwiki.cfg:
 xwiki.plugins.lucene.analyzer=org.apache.lucene.analysis.de.GermanAnalyzer
 - no success

 Our virtual wikis are mapped via virtual path (xwiki.cfg:
 xwiki.virtual.usepath=1).

 It would be nice to keep the virtual wiki name. Is there a workaround to
 handle this problem?

 Regards,
 Rudolf

 --
 View this message in context: 
 http://xwiki.475771.n2.nabble.com/Lucene-search-Problem-with-Wiki-Farm-Member-it-tp5992070p5992070.html
 Sent from the XWiki- Users mailing list archive at Nabble.com.
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene search Problem with Wiki Farm Member it

2011-02-04 Thread Tronicek

Hi,
we've updatet XWiki 1.7 XE to 2.7.33656 and are using the Wiki Manager to
have a Wiki Farm.

There is a strange behaviour we have not realized immediately related to
search requests.
It seams that the name of the virtual wiki is causing the problem. Its name
is it and is used as solution base for IT problems.

We can reproduce the problem by:
- create a new virtual wiki with name it (without quotation marks).
- import xwiki-enterprise-wiki-2.7.xar
- search with lucene (no results):
.../view/Main/LuceneSearch?text=sandboxspace=
- search with old engine (see pages):
.../view/Main/WebSearch?text=sandboxspace=

We tried to change the analyzer in xwiki.cfg:
xwiki.plugins.lucene.analyzer=org.apache.lucene.analysis.de.GermanAnalyzer
- no success

Our virtual wikis are mapped via virtual path (xwiki.cfg:
xwiki.virtual.usepath=1).

It would be nice to keep the virtual wiki name. Is there a workaround to
handle this problem?

Regards,
Rudolf

-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/Lucene-search-Problem-with-Wiki-Farm-Member-it-tp5992070p5992070.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene Search engine failure

2010-06-22 Thread Ramon Gomes Brandão - SERINT
Hi Friends, 

 

In my fresh installed Xwiki (ver. 2.3.28602), I've configured the Lucene search 
plugin accordingly to the described in

 

http://code.xwiki.org/xwiki/bin/view/Plugins/LucenePlugin

 

But when I try to search any keyword, it returns only the following result:

 

Failed to execute macro: HTML

 

And no information appears on the log. How can I fix this? 

 

Regards, 

 

 

Ramon Gomes Brandão

 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search engine failure

2010-06-22 Thread Marius Dumitru Florea
On 06/23/2010 12:11 AM, Ramon Gomes Brandão - SERINT wrote:
 Hi Friends,



 In my fresh installed Xwiki (ver. 2.3.28602), I've configured the Lucene 
 search plugin accordingly to the described in



 http://code.xwiki.org/xwiki/bin/view/Plugins/LucenePlugin



 But when I try to search any keyword, it returns only the following result:



 Failed to execute macro: HTML




 And no information appears on the log. How can I fix this?

http://jira.xwiki.org/jira/browse/XE-636 seems to be fixed in 2.3. Can 
you check the source code of the Main.LuceneSearch page to see if there 
are empty lines before {{html}} and {{include}} macros?

Hope this helps,
Marius




 Regards,





 Ramon Gomes Brandão



 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene Search engine failure

2010-06-22 Thread Thomas Mortagne
2010/6/22 Ramon Gomes Brandão - SERINT ramon.bran...@tjdft.jus.br:
 Hi Friends,



 In my fresh installed Xwiki (ver. 2.3.28602), I've configured the Lucene 
 search plugin accordingly to the described in



 http://code.xwiki.org/xwiki/bin/view/Plugins/LucenePlugin



 But when I try to search any keyword, it returns only the following result:



 Failed to execute macro: HTML



 And no information appears on the log. How can I fix this?

That should be fixed in 2.3.1. See
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise231#HMigrationNotes




 Regards,





 Ramon Gomes Brandão



 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search object: not working ?

2010-01-15 Thread Jeremie BOUSQUET
It works now ! At least for XWiki.XWikiUsers. I believe it was a reindexing
problem. I had migrated and restarted the instance a while ago, but the
index maybe was not up to date still.

Anyway, thanks !
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene search object: not working ?

2010-01-14 Thread Jeremie BOUSQUET
Hi,

Following this 
pagehttp://code.xwiki.org/xwiki/bin/view/Applications/SearchApplicationLuceneSearchQueryHelp,
I was interested in using lucene to search for pages containing specific
objects using, for example, syntax like object:XWiki.XWikiUsers AND
jbousque.

I did not manage to have any results, with different classes. I also tested
using only object:XWiki.XWikiUsers, expecting to retrieve the list of
users, but again no result at all.

Am I missing something ?

Thanks,
Jeremie
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search object: not working ?

2010-01-14 Thread Thomas Mortagne
On Thu, Jan 14, 2010 at 16:49, Jeremie BOUSQUET
jeremie.bousq...@gmail.com wrote:
 Hi,

 Following this 
 pagehttp://code.xwiki.org/xwiki/bin/view/Applications/SearchApplicationLuceneSearchQueryHelp,
 I was interested in using lucene to search for pages containing specific
 objects using, for example, syntax like object:XWiki.XWikiUsers AND
 jbousque.

 I did not manage to have any results, with different classes. I also tested
 using only object:XWiki.XWikiUsers, expecting to retrieve the list of
 users, but again no result at all.

 Am I missing something ?

Which version of XWiki are you using ?

I just tested on a fresh XE 2.1.1 and it's working well (i get only
Admin obviously but already better than nothing ;)). Maybe you have a
lucene index issue, You could try to rebuild it.

Dumb question: are you sue you test on Lucene search page
(http://127.0.0.1:8080/xwiki/bin/view/Main/LuceneSearch) ? The default
search page is not Lucene based search page but SQL based search page,
there is a link to each other at the end of the page.


 Thanks,
 Jeremie
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene Search Problem

2009-11-06 Thread hel-o

Hi,

I just notized, that i get an error, when i open the Lucene Search Page. (XE
2.0.2)

Error number 4001 in 4: Error while parsing velocity page Main.LuceneSearch
Wrapped Exception: Failed to evaluate content with id Lucene Search

Error number 4001 in 4: Error while parsing velocity page Main.LuceneSearch
Wrapped Exception: Failed to evaluate content with id Lucene Search
com.xpn.xwiki.XWikiException: Error number 4001 in 4: Error while parsing
velocity page Main.LuceneSearch
Wrapped Exception: Failed to evaluate content with id Lucene Search
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:114)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.render(XWikiVelocityRenderer.java:85)
at
com.xpn.xwiki.render.DefaultXWikiRenderingEngine.renderText(DefaultXWikiRenderingEngine.java:272)
at
com.xpn.xwiki.render.DefaultXWikiRenderingEngine.renderText(DefaultXWikiRenderingEngine.java:202)
at
com.xpn.xwiki.render.DefaultXWikiRenderingEngine.renderText(DefaultXWikiRenderingEngine.java:170)
at
com.xpn.xwiki.render.DefaultXWikiRenderingEngine.renderDocument(DefaultXWikiRenderingEngine.java:159)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:554)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:571)
at com.xpn.xwiki.api.Document.getRenderedContent(Document.java:475)
at sun.reflect.GeneratedMethodAccessor623.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:493)
at
org.apache.velocity.runtime.parser.node.ASTExpression.value(ASTExpression.java:71)
at
org.apache.velocity.runtime.parser.node.ASTSetDirective.render(ASTSetDirective.java:142)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:191)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:156)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:108)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1642)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:657)
at sun.reflect.GeneratedMethodAccessor153.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:332)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:212)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:247)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:175)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:191)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:156)
at

Re: [xwiki-users] Lucene Search Problem

2009-11-06 Thread Marius Dumitru Florea
Hi,

hel-o wrote:
 Hi,
 
 I just notized, that i get an error, when i open the Lucene Search Page. (XE
 2.0.2)

I don't get it on a fresh XE 2.0.2.24645 jetty+hsqldb install.

[snip]

 at java.lang.Thread.run(Thread.java:636) Caused by:
 java.lang.NullPointerException at
 com.xpn.xwiki.plugin.lucene.LucenePlugin.getQueueSize(LucenePlugin.java:609)

That line is:

return indexUpdater.getQueueSize();

Maybe the lucene plugin hasn't been fully initialized, otherwise I don't 
see why indexUpdater would be null.

Hope this helps,
Marius
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search in classes

2009-01-29 Thread Vincent Massol

On Jan 28, 2009, at 9:00 PM, Jean-Vincent Drean wrote:

 It is not possible to search at the property level.

I guess JV is saying it's not implemented yet but it's a good idea IMO.

Juergen, you could create a jira issue for it?
(http://jira.xwiki.org/jira/browse/XPLUCENE)

Thanks
-Vincent

 JV.

 On Mon, Jan 26, 2009 at 7:09 PM, xw...@mauhs.eu xw...@mauhs.eu  
 wrote:
 Thank you for your fast response!
 I want to search at the TodoClass only in the field Description.
 Is this also possible?

 thanks

 juergen

 Jean-Vincent Drean schrieb:
 Hi,

 our lucene search provide this feature.
 Example1: object:Toto.TodoClass AND foobar
 Example2:
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=object%3AXWiki.XWikiUsers+AND+dreanx=12y=8

 I'll have to delete the 2 useless profiles :)

 JV.

 On Mon, Jan 26, 2009 at 6:27 PM, xw...@mauhs.eu xw...@mauhs.eu  
 wrote:

 Dear all,

 is it possible to search with the lucene search only in a  
 selected class?
 e.g. I want to search in the TodoClass for Todo OR Read only in  
 the
 Description class.
 Or is there another possibility?


 thanks

 juergen
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search in classes

2009-01-29 Thread xw...@mauhs.eu
Thank you for your answers!
Here is the new issue: http://jira.xwiki.org/jira/browse/XPLUCENE-36
juergen


Vincent Massol schrieb:
 On Jan 28, 2009, at 9:00 PM, Jean-Vincent Drean wrote:

   
 It is not possible to search at the property level.
 

 I guess JV is saying it's not implemented yet but it's a good idea IMO.

 Juergen, you could create a jira issue for it?
 (http://jira.xwiki.org/jira/browse/XPLUCENE)

 Thanks
 -Vincent

   
 JV.

 On Mon, Jan 26, 2009 at 7:09 PM, xw...@mauhs.eu xw...@mauhs.eu  
 wrote:
 
 Thank you for your fast response!
 I want to search at the TodoClass only in the field Description.
 Is this also possible?

 thanks

 juergen

 Jean-Vincent Drean schrieb:
   
 Hi,

 our lucene search provide this feature.
 Example1: object:Toto.TodoClass AND foobar
 Example2:
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=object%3AXWiki.XWikiUsers+AND+dreanx=12y=8

 I'll have to delete the 2 useless profiles :)

 JV.

 On Mon, Jan 26, 2009 at 6:27 PM, xw...@mauhs.eu xw...@mauhs.eu  
 wrote:

 
 Dear all,

 is it possible to search with the lucene search only in a  
 selected class?
 e.g. I want to search in the TodoClass for Todo OR Read only in  
 the
 Description class.
 Or is there another possibility?


 thanks

 juergen
   
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
   

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search in classes

2009-01-28 Thread Jean-Vincent Drean
It is not possible to search at the property level.

JV.

On Mon, Jan 26, 2009 at 7:09 PM, xw...@mauhs.eu xw...@mauhs.eu wrote:
 Thank you for your fast response!
 I want to search at the TodoClass only in the field Description.
 Is this also possible?

 thanks

 juergen

 Jean-Vincent Drean schrieb:
 Hi,

 our lucene search provide this feature.
 Example1: object:Toto.TodoClass AND foobar
 Example2:
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=object%3AXWiki.XWikiUsers+AND+dreanx=12y=8

 I'll have to delete the 2 useless profiles :)

 JV.

 On Mon, Jan 26, 2009 at 6:27 PM, xw...@mauhs.eu xw...@mauhs.eu wrote:

 Dear all,

 is it possible to search with the lucene search only in a selected class?
 e.g. I want to search in the TodoClass for Todo OR Read only in the
 Description class.
 Or is there another possibility?


 thanks

 juergen
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene search in classes

2009-01-26 Thread xw...@mauhs.eu
Dear all,

is it possible to search with the lucene search only in a selected class?
e.g. I want to search in the TodoClass for Todo OR Read only in the 
Description class.
Or is there another possibility?


thanks

juergen
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search in classes

2009-01-26 Thread Jean-Vincent Drean
Hi,

our lucene search provide this feature.
Example1: object:Toto.TodoClass AND foobar
Example2:
http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=object%3AXWiki.XWikiUsers+AND+dreanx=12y=8

I'll have to delete the 2 useless profiles :)

JV.

On Mon, Jan 26, 2009 at 6:27 PM, xw...@mauhs.eu xw...@mauhs.eu wrote:
 Dear all,

 is it possible to search with the lucene search only in a selected class?
 e.g. I want to search in the TodoClass for Todo OR Read only in the
 Description class.
 Or is there another possibility?


 thanks

 juergen
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search in classes

2009-01-26 Thread xw...@mauhs.eu
Thank you for your fast response!
I want to search at the TodoClass only in the field Description.
Is this also possible?

thanks

juergen

Jean-Vincent Drean schrieb:
 Hi,

 our lucene search provide this feature.
 Example1: object:Toto.TodoClass AND foobar
 Example2:
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=object%3AXWiki.XWikiUsers+AND+dreanx=12y=8

 I'll have to delete the 2 useless profiles :)

 JV.

 On Mon, Jan 26, 2009 at 6:27 PM, xw...@mauhs.eu xw...@mauhs.eu wrote:
   
 Dear all,

 is it possible to search with the lucene search only in a selected class?
 e.g. I want to search in the TodoClass for Todo OR Read only in the
 Description class.
 Or is there another possibility?


 thanks

 juergen
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
   

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene search integration

2008-07-24 Thread Hosam Hassan
Sorry for resending my message just I forgot to put a subject

Hello Guys,

Can I get the code for that page?

http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=testx=0y=0

I want to do the same in my xwiki but I cant manage to find the code for that.

Is it possible also to customize that table I just want to show the pages and 
the scores.

Many thanks,

Cheers,

Hosam
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search integration

2008-07-24 Thread Mihails Agafonovs
LuceneSearch is already in the .xar package, maybe you forgot to
import it.
 Quoting Hosam Hassan : Sorry for resending my message just I forgot
to put a subject
 Hello Guys,
 Can I get the code for that page?

http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=testamp;x=0amp;y=0
 I want to do the same in my xwiki but I cant manage to find the code
for that.
 Is it possible also to customize that table I just want to show the
pages and the scores.
 Many thanks,
 Cheers,
 Hosam
 Ar cieņu, Mihails

Links:
--
[1] mailto:[EMAIL PROTECTED]
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search integration

2008-07-24 Thread Hosam Hassan
Yeah I managed to find it.

Problem now that its not working. I search and nothing happens.

I checked the configuration of the lucene and that the plugin is there and 
everything seems fine

Original Message:

LuceneSearch is already in the .xar package, maybe you forgot tobr /import 
it.br / Quoting Hosam Hassan : Sorry for resending my message just I 
forgotbr /to put a subjectbr / Hello Guys,br / Can I get the code for 
that page?br /br 
/http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=testamp;x=0amp;y=0br
 / I want to do the same in my xwiki but I cant manage to find the codebr 
/for that.br / Is it possible also to customize that table I just want to 
show thebr /pages and the scores.br / Many thanks,br / Cheers,br / 
Hosambr / Ar cieņu, Mihailsbr /br /Links:br /--br /[1] 
mailto:[EMAIL PROTECTED]br 
/___br /users mailing listbr 
/users@xwiki.orgbr /http://lists.xwiki.org/mailman/listinfo/usersbr /

-- 
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene search stopped working

2008-07-09 Thread Graeme West
Hi all,
The search service in my XWiki Enterprise 1.5M1 installation has stopped 
working - when you use the search box, the following error is given:

A problem occured while trying to service your request. Please contact the 
support if this happens again.

My Xwiki is installed in Tomcat 5.5 on CentOS 5.

I just restarted Tomcat, and the following errors have appeared in the 
catalina.out:

INFO: Stopping Coyote HTTP/1.1 on http-8080
Jul 9, 2008 3:30:38 PM org.apache.catalina.core.AprLifecycleListener 
lifecycleEvent
INFO: Failed shutdown of Apache Portable Runtime
Exception in thread Lucene Index Updater java.lang.NullPointerException
at 
com.xpn.xwiki.plugin.lucene.AbstractXWikiRunnable.cleanupXWikiContainer(AbstractXWikiRunnable.java:63)
at com.xpn.xwiki.plugin.lucene.IndexUpdater.run(IndexUpdater.java:120)
at java.lang.Thread.run(Thread.java:619)
Using CATALINA_BASE:   /usr/share/tomcat5
Using CATALINA_HOME:   /usr/share/tomcat5
Using CATALINA_TMPDIR: /usr/share/tomcat5/temp
Using JRE_HOME:
Jul 9, 2008 3:31:13 PM org.apache.catalina.core.AprLifecycleListener 
lifecycleEvent
INFO: The Apache Tomcat Native library which allows optimal performance in 
production environments was not found on the java.library.path: 
/usr/java/jdk1.6.0_06/jre/lib/i386/client:/usr/java/jdk1.6.0_06/jre/lib/i386:/usr/java/jdk1.6.0_06/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
Jul 9, 2008 3:31:13 PM org.apache.coyote.http11.Http11BaseProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Jul 9, 2008 3:31:13 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1312 ms
Jul 9, 2008 3:31:13 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Jul 9, 2008 3:31:13 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.20
Jul 9, 2008 3:31:13 PM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Jul 9, 2008 3:31:13 PM org.apache.catalina.util.ExtensionValidator addFolderList
SEVERE: Failure loading extension /usr/share/tomcat5/common/lib/[jndi].jar
java.io.FileNotFoundException: /usr/share/tomcat5/common/lib/[jndi].jar (No 
such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:106)
at 
org.apache.catalina.util.ExtensionValidator.addSystemResource(ExtensionValidator.java:209)
at 
org.apache.catalina.util.ExtensionValidator.addFolderList(ExtensionValidator.java:410)
at 
org.apache.catalina.util.ExtensionValidator.clinit(ExtensionValidator.java:105)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4064)
at 
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:740)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626)
at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
at 
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
at org.apache.catalina.core.StandardService.start(StandardService.java:448)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
Jul 9, 2008 3:31:13 PM org.apache.catalina.util.ExtensionValidator addFolderList
SEVERE: Failure loading extension 
/usr/share/tomcat5/common/lib/[jdbc-stdext].jar
java.io.FileNotFoundException: /usr/share/tomcat5/common/lib/[jdbc-stdext].jar 
(No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:106)
at 
org.apache.catalina.util.ExtensionValidator.addSystemResource(ExtensionValidator.java:209)
at 
org.apache.catalina.util.ExtensionValidator.addFolderList(ExtensionValidator.java:410)
at 
org.apache.catalina.util.ExtensionValidator.clinit(ExtensionValidator.java:105)
at 

[xwiki-users] Lucene search

2008-06-16 Thread Mihails Agafonovs
Hi!

Trying to subscribe to something, using RSS button in Lucene search
page, always results with an 

XML Parsing Error: not well-formed
Location:
http://192.168.220.128/xwiki/bin/view/Main/LuceneSearch?xpage=rdftext=Mihails
Line Number 105, Column 42: 
{pre}
^
 Ar cieņu, Mihails
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search

2008-06-16 Thread Vincent Massol
Hi Mihail,

Could you create a jira issue for this please?

Thanks
-Vincent

On Jun 16, 2008, at 8:53 AM, Mihails Agafonovs wrote:

 Hi!

 Trying to subscribe to something, using RSS button in Lucene search
 page, always results with an

 XML Parsing Error: not well-formed
 Location:
 http://192.168.220.128/xwiki/bin/view/Main/LuceneSearch?xpage=rdftext=Mihails
 Line Number 105, Column 42:
 {pre}
 ^
 Ar cieņu, Mihails
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search

2008-06-16 Thread Mihails Agafonovs
Created.
 Quoting Vincent Massol : Hi Mihail,
 Could you create a jira issue for this please?
 Thanks
 -Vincent
 On Jun 16, 2008, at 8:53 AM, Mihails Agafonovs wrote:
  Hi!
 
  Trying to subscribe to something, using RSS button in Lucene
search
  page, always results with an
 
  XML Parsing Error: not well-formed
  Location:
 
http://192.168.220.128/xwiki/bin/view/Main/LuceneSearch?xpage=rdftext=Mihails
  Line Number 105, Column 42:
  {pre}
  ^
  Ar cieņu, Mihails
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 Ar cieņu, Mihails

Links:
--
[1] mailto:[EMAIL PROTECTED]
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search

2008-06-12 Thread Jean-Vincent Drean
2008/6/11 Mihails Agafonovs [EMAIL PROTECTED]:
 Hi!

 1) I've been expecting problems with Lucene search in XWiki 1.4. To
 be more precise, it doesn't work at all :(. Seems that searching or
 either returning results function is broken.

Have you tried to rebuild the index ? Are the indexes correctly
created on the filesystem ?

 2) In version 1.3 it worked, but somehow strange. For example, Lucene
 returned results, when search criteria was Mihails, and nothing, if
 search criteria was Mihail.

I think the problem here is the lucene query syntax itself, to tell
lucene that your query term is only a part of a word you have to use :
Mihail*

-- 
Jean-Vincent Drean
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene search

2008-06-12 Thread Mihails Agafonovs
Yes, I've tried many times to rebuild the index, also checked how many
documents tries to rebuild, and the result was -2. Definetely, it's
the main problem.
 Quoting Jean-Vincent Drean : 2008/6/11 Mihails Agafonovs
lt;[EMAIL PROTECTED]gt;:
 gt; Hi!
 gt;
 gt; 1) I've been expecting problems with Lucene search in XWiki
1.4. To
 gt; be more precise, it doesn't work at all :(. Seems that
searching or
 gt; either returning results function is broken.
 Have you tried to rebuild the index ? Are the indexes correctly
 created on the filesystem ?
 gt; 2) In version 1.3 it worked, but somehow strange. For example,
Lucene
 gt; returned results, when search criteria was Mihails, and
nothing, if
 gt; search criteria was Mihail.
 I think the quot;problemquot; here is the lucene query syntax
itself, to tell
 lucene that your query term is only a part of a word you have to use
:
 quot;Mihail*quot;
 -- 
 Jean-Vincent Drean
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 Ar cieņu, Mihails

Links:
--
[1] mailto:[EMAIL PROTECTED]
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene search

2008-06-11 Thread Mihails Agafonovs
Hi!

1) I've been expecting problems with Lucene search in XWiki 1.4. To
be more precise, it doesn't work at all :(. Seems that searching or
either returning results function is broken. 
2) In version 1.3 it worked, but somehow strange. For example, Lucene
returned results, when search criteria was Mihails, and nothing, if
search criteria was Mihail. 
 Ar cieņu, Mihails
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-25 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
Hi,

Squirrel wrote:
 Guys,

 I just tried it again and now I don't get any result. You can try it with
 Performances or Gzip compression which you can find here:
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances

 Tell me if I shouldn't bother you with such infos...

 Cheers,
 Squirrel

I am getting the same result: nothing. There area at least four or five 
days that I am seeing this.

I don't know, Vicent, but it could be perhaps advisable to use WebSearch 
until Lucene is not working fine :-(

Or perhaps could the issue be browser-side related?

Thanks!

Ricardo

-- 
Ricardo Rodríguez
Your EPEC Network ICT Team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-17 Thread Vincent Massol

On Apr 16, 2008, at 11:32 PM, squirrely_wrath wrote:



 squirrely_wrath wrote:

 Hi all,

 Please compare:

 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances


 Hi all,

 I searched again and now I got the result, but I got it twice and with
 different score value. The score value did even change by searching  
 again
 (changed 1% each). See for yourself (I hope you get the same result):
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=

 Just to let you know...

That's normal...

See http://jira.xwiki.org/jira/browse/XPLUCENE-5 and 
http://jira.xwiki.org/jira/browse/XPLUCENE-8

Thanks
-Vincent
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-17 Thread Vincent Massol

On Apr 16, 2008, at 11:36 PM, Guillaume Lerouge wrote:

 Hi Squirrel,
 thanks for your feedback  patience.

 We're aware the Lucene Search currently sucks on XWiki.org.

It seems to be working, no?

 It might be
 because the Lucene Index got corrupted at one point (we're doing a  
 lot of
 live testing on the xwiki.org platform and it sometimes leads to ...  
 well,
 this :-) )

 In the meantime you can replace /view/Main/LuceneSearch with
 view/Main/WebSearch in the search page URL to get basic HQL results.  
 Not as
 nice, but it works.

Yes this solution will only search within a single wiki and not across  
all xwiki.org wikis.

-Vincent

 On Wed, Apr 16, 2008 at 11:32 PM, squirrely_wrath [EMAIL PROTECTED] 
 
 wrote:



 squirrely_wrath wrote:

 Hi all,

 Please compare:


 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances


 Hi all,

 I searched again and now I got the result, but I got it twice and  
 with
 different score value. The score value did even change by searching  
 again
 (changed 1% each). See for yourself (I hope you get the same result):

 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=

 Just to let you know...

 Cheers,
 Squirrel


 --
 View this message in context:
 http://www.nabble.com/Lucene-Search-on-xwiki.org-tp16563493p16734014.html
 Sent from the XWiki- Users mailing list archive at Nabble.com.

 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




 -- 
 http://wikibc.blogspot.com/
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-17 Thread Vincent Massol

On Apr 17, 2008, at 12:14 AM, [Ricardo Rodriguez] Your EPEC Network  
ICT Team wrote:

 Hi Guillaume,

 Guillaume Lerouge wrote:
 Hi Squirrel,
 thanks for your feedback  patience.

 We're aware the Lucene Search currently sucks on XWiki.org. It  
 might be
 because the Lucene Index got corrupted at one point (we're doing a  
 lot of
 live testing on the xwiki.org platform and it sometimes leads  
 to ... well,
 this :-) )

 In the meantime you can replace /view/Main/LuceneSearch with
 view/Main/WebSearch in the search page URL to get basic HQL  
 results. Not as
 nice, but it works.

 Thanks again,

 Guillaume


 Don't you thing that it could be advisable to add some kind of warning
 in Main.LuceneSearch of put back the Go... pointing to  
 Main.WebSearch in
 the meantime? I'm afraid many people lost patience easily! :-)

What's not working?

Thanks
-Vincent



 I see the #warning in Main.LuceneSearch code, but it is within an  
 #if. I
 don't know why.

 Cheers,

 Ricardo

 -- 
 Ricardo Rodríguez
 Your EPEC Network ICT Team
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-17 Thread Guillaume Lerouge
Hi,


 What's not working?

 Thanks
 -Vincent


For instance a few days ago a search on the term API didn't yield any
results. It now returns a bunch of pages though, so I guess something
started working better in the meantime.

I'll take screenshots of the page the next time something like this happens
;-)

Guillaume
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-17 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
Hei guys, it is working fine now! Great! :-)

Thanks!

Ricardo

Vincent Massol wrote:
 On Apr 17, 2008, at 10:42 AM, Guillaume Lerouge wrote:

   
 Hi,


 
 What's not working?

 Thanks
 -Vincent


-- 
Ricardo Rodríguez
Your EPEC Network ICT Team

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-16 Thread squirrely_wrath


squirrely_wrath wrote:
 
 Hi all,
 
 Please compare:
 
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances
 

Hi all,

I searched again and now I got the result, but I got it twice and with
different score value. The score value did even change by searching again
(changed 1% each). See for yourself (I hope you get the same result):
http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=

Just to let you know...

Cheers,
Squirrel


-- 
View this message in context: 
http://www.nabble.com/Lucene-Search-on-xwiki.org-tp16563493p16734014.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-16 Thread Guillaume Lerouge
Hi Squirrel,
thanks for your feedback  patience.

We're aware the Lucene Search currently sucks on XWiki.org. It might be
because the Lucene Index got corrupted at one point (we're doing a lot of
live testing on the xwiki.org platform and it sometimes leads to ... well,
this :-) )

In the meantime you can replace /view/Main/LuceneSearch with
view/Main/WebSearch in the search page URL to get basic HQL results. Not as
nice, but it works.

Thanks again,

Guillaume

On Wed, Apr 16, 2008 at 11:32 PM, squirrely_wrath [EMAIL PROTECTED]
wrote:



 squirrely_wrath wrote:
 
  Hi all,
 
  Please compare:
 
 
 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=
  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances
 

 Hi all,

 I searched again and now I got the result, but I got it twice and with
 different score value. The score value did even change by searching again
 (changed 1% each). See for yourself (I hope you get the same result):

 http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=

 Just to let you know...

 Cheers,
 Squirrel


 --
 View this message in context:
 http://www.nabble.com/Lucene-Search-on-xwiki.org-tp16563493p16734014.html
 Sent from the XWiki- Users mailing list archive at Nabble.com.

 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
http://wikibc.blogspot.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene-Search on xwiki.org

2008-04-16 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
Hi Guillaume,

Guillaume Lerouge wrote:
 Hi Squirrel,
 thanks for your feedback  patience.

 We're aware the Lucene Search currently sucks on XWiki.org. It might be
 because the Lucene Index got corrupted at one point (we're doing a lot of
 live testing on the xwiki.org platform and it sometimes leads to ... well,
 this :-) )

 In the meantime you can replace /view/Main/LuceneSearch with
 view/Main/WebSearch in the search page URL to get basic HQL results. Not as
 nice, but it works.

 Thanks again,

 Guillaume
   

Don't you thing that it could be advisable to add some kind of warning 
in Main.LuceneSearch of put back the Go... pointing to Main.WebSearch in 
the meantime? I'm afraid many people lost patience easily! :-)

I see the #warning in Main.LuceneSearch code, but it is within an #if. I 
don't know why.

Cheers,

Ricardo

-- 
Ricardo Rodríguez
Your EPEC Network ICT Team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Lucene-Search on xwiki.org

2008-04-08 Thread Squirrel
Hi all,

Please compare:

http://www.xwiki.org/xwiki/bin/view/Main/LuceneSearch?text=Performancesspace=wikinames=
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances

Is that a setting issue or a plugin issue?

Cheers,
Squirrel
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users