On Mar 11, 2008, at 7:35 PM, jvelociter (SVN) wrote:
> Author: jvelociter
> Date: 2008-03-11 19:35:40 +0100 (Tue, 11 Mar 2008)
> New Revision: 8409
>
> Modified:
> xwiki-products/xwiki-watch/trunk/distribution-test/selenium-tests/
> src/test/it/com/xpn/xwiki/watch/it/selenium/WatchGWTLoadingTest.java
> Log:
> XWATCH-118 Add an integration test that ensure Watch loads in the
> distribution
>
> - I modified the test so that it waits for GWT to load after the
> page loading. I don't really like the solution I came up with
> (Thread.sleep), but I could not find a way to wait without any
> condition. The Selenium waitForCondition() method with JS argument
> could be investigated, but I'm not sure it's easy to hook with GWT
> loading.
>
>
>
> Modified: xwiki-products/xwiki-watch/trunk/distribution-test/
> selenium-tests/src/test/it/com/xpn/xwiki/watch/it/selenium/
> WatchGWTLoadingTest.java
> ===================================================================
> --- xwiki-products/xwiki-watch/trunk/distribution-test/selenium-
> tests/src/test/it/com/xpn/xwiki/watch/it/selenium/
> WatchGWTLoadingTest.java 2008-03-11 17:21:49 UTC (rev 8408)
> +++ xwiki-products/xwiki-watch/trunk/distribution-test/selenium-
> tests/src/test/it/com/xpn/xwiki/watch/it/selenium/
> WatchGWTLoadingTest.java 2008-03-11 18:35:40 UTC (rev 8409)
> @@ -19,6 +19,8 @@
> */
> package com.xpn.xwiki.watch.it.selenium;
>
> +import java.lang.InterruptedException;
> +
> import com.xpn.xwiki.it.selenium.framework.AbstractXWikiTestCase;
> import com.xpn.xwiki.it.selenium.framework.AlbatrossSkinExecutor;
> import com.xpn.xwiki.it.selenium.framework.XWikiTestSuite;
> @@ -49,7 +51,20 @@
> public void testGWTLoading()
> {
> open("/xwiki/bin/view/Watch/Reader");
> - getSelenium().waitForPageToLoad("50000");
> + // Wait for the reader page to load
> + getSelenium().waitForPageToLoad("2000");
> + // Now wait for the GWT reader to load.
> + try
> + {
> + // this is a bit dirty, but I could not find an easy way
> + // to ask Selenium to just wait, without conditions.
> + // We could investigate the use of waitForCondition()
> with a JS function argument
> + // althought it seems it will be a bit heavy to setup
> for this use case.
> + Thread.sleep(500);
> + }
> + catch (InterruptedException e){
> + fail();
> + }
You could start by removing the try/catch and add a throw Exception to
the method.
How do we know the GWT reader page is loaded? Isn't there some DOM
element or something that will tell us and that we could wait on?
Thanks
-Vincent
On Mar 12, 2008, at 5:21 AM, sdumitriu (SVN) wrote:
> Author: sdumitriu
> Date: 2008-03-12 05:21:37 +0100 (Wed, 12 Mar 2008)
> New Revision: 8424
>
> Modified:
> xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/
> plugin/packaging/Package.java
> Log:
> XWIKI-2200: Import of "homemade" xar doesn't function
> Fixed.
>
>
> Modified: xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/
> xwiki/plugin/packaging/Package.java
> ===================================================================
> --- xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/
> plugin/packaging/Package.java 2008-03-12 03:55:35 UTC (rev 8423)
> +++ xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/
> plugin/packaging/Package.java 2008-03-12 04:21:37 UTC (rev 8424)
> @@ -385,8 +385,14 @@
> || (entry.getName().indexOf("META-INF") != -1)) {
> continue;
> } else {
> - XWikiDocument doc =
> -
> readFromXML(readByteArrayFromInputStream(zis, entry.getSize()));
> + XWikiDocument doc = null;
> + try {
> + doc =
> readFromXML(readByteArrayFromInputStream(zis, entry.getSize()));
> + } catch (Exception ex) {
> + log.warn("Failed to parse document [" +
> entry.getName() + "] from XML");
We need to also add ex.getMesage() to the log output in order to
better diagnose errors when they appear.
Also the message need to be more explicit. We need to say that we're
ignoring the doc and that it won't be imported.
Thanks
-Vincent
Thanks Guillaume for your response.
Also, is it possible to customize the quick links panel and other panels in
the Xwiki!
Thanks
On Tue, Mar 11, 2008 at 1:05 PM, <devs-request(a)xwiki.org> wrote:
> Send devs mailing list submissions to
> devs(a)xwiki.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xwiki.org/mailman/listinfo/devs
> or, via email, send a message with subject or body 'help' to
> devs-request(a)xwiki.org
>
> You can reach the person managing the list at
> devs-owner(a)xwiki.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of devs digest..."
>
>
> Today's Topics:
>
> 1. [ANN] XWiki Enterprise Manager 1.1 released (Thomas Mortagne)
> 2. Threaded discussion list? (Kamna Jain)
> 3. Re: Threaded discussion list? (Guillaume Lerouge)
> 4. Re: Roadmap for XE 1.4 (Jean-Vincent Drean)
> 5. Roadmap for XWiki Workspaces 1.0 (Jerome Velociter)
> 6. Re: Roadmap for XWiki Workspaces 1.0 (Jerome Velociter)
> 7. Re: Roadmap for XE 1.4 (Vincent Massol)
> 8. [VOTE] Release SpaceManager plugin v1.0 (Jerome Velociter)
> 9. Re: Roadmap for XE 1.4 (Sergiu Dumitriu)
> 10. Re: Roadmap for XE 1.4 (Sergiu Dumitriu)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 11 Mar 2008 15:31:36 +0100
> From: "Thomas Mortagne" <thomas.mortagne(a)xwiki.com>
> Subject: [xwiki-devs] [ANN] XWiki Enterprise Manager 1.1 released
> To: "XWiki Developers" <devs(a)xwiki.org>, "XWiki Users"
> <users(a)xwiki.org>
> Message-ID:
> <a8e97d9c0803110731n48b5c3eaq723fe4bc6b787873(a)mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> The XWiki development team is pleased to announce the release of XWiki
> Enterprise Manager 1.1.
>
> Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
>
> This is mainly a wiki management improvement (step by step wiki
> creation with documentation, wiki aliases management improvement).
> Also it now depends on XE 1.3.
>
> For more information see the Release notes at:
> http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM11
>
> Thanks
> -The XWiki dev team
>
>
> ------------------------------
>
> Message: 2
> Date: Tue, 11 Mar 2008 10:26:18 -0500
> From: "Kamna Jain" <kammy.scorpi(a)gmail.com>
> Subject: [xwiki-devs] Threaded discussion list?
> To: devs(a)xwiki.org
> Message-ID:
> <fb681d280803110826p3381406frfb748f2c7ac28701(a)mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello,
>
> Is it possible to have threaded discussions in XWiki?
> I am aware of the Comments that appear at the end of every page, but I am
> looking for something more organized in terms of tracking replies to a
> particular topic, etc.
>
> Thanks
>
Hello devs,
Here is a roadmap proposal towards XWiki Workspaces 1.0 release :
* First milestone (XWS 1.0 M1) on March 14th 2008, implementing the
initial feature set as described on
http://workspaces.xwiki.org/xwiki/bin/view/Features/.
* Second milestone two weeks later, on March 28th, including a search
feature inside workspaces, plus bug fixes.
* Release candidate 1 one week after, on April 4th.
* If needed, RC2 one week after (April 11th) then 1.0 final the week after
(April 18th), otherwise XWS 1.0 final on April 11th.
There is now a JIRA project for XWS, that you can find here :
http://jira.xwiki.org/jira/browse/XWS. You can find the fore-mentioned
agenda under the Roadmap tab, with more details on the specific issues to
be fixed for each version as they will be discovered.
Regards,
Jerome.
Hello,
Is it possible to have threaded discussions in XWiki?
I am aware of the Comments that appear at the end of every page, but I am
looking for something more organized in terms of tracking replies to a
particular topic, etc.
Thanks
The XWiki development team is pleased to announce the release of XWiki
Enterprise Manager 1.1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is mainly a wiki management improvement (step by step wiki
creation with documentation, wiki aliases management improvement).
Also it now depends on XE 1.3.
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM11
Thanks
-The XWiki dev team
Hello devs,
I would like to commit a first implementation of our new product "XWiki
Workspaces" inside our svn trunk.
The code mainly implement workspaces initial feature set as described at
http://workspaces.xwiki.org/xwiki/bin/view/Features/.
Here is my +1 for it,
Jerome.
Hi,
I would like to release XEM 1.1 release today.
This is mainly a wiki management improvement. Also it now depends on XE 1.3.
See http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM11 for more.
Here's my +1
Thanks
--
Thomas Mortagne
Hi everybody,
since I've mentioned it in a previous email almost as a joke, maybe it
could be interesting to propose it in a more serious way as a GSOC
project.
So the idea is to implement the infrastructure for exposing XWiki as a
fully RESTful WebService for example by using RestLet. This can have
some repercussions even on semantic features that Stèphane was
proposing on the chat.
It might be interesting to implement a separate module that leverages
the XWiki API and exposes it in a RESTful way and build on top of it
some semantic infrastructure. Since in this scenario everything will
have an URI, it should be easier to leverage RDF and other semantic
frameworks.
This is just an idea to be worked on, if we are interested of course :)
WDYT?
Cheers,
Fabio
Hello,
Last week, I checked out XWiki-platform trunk and tried to compile it with
maven-2.1-SNAPSHOT and all the needed memory.
If I remove xwiki-core/../plugin/lucene, it works but with it, it fails.
Before going deeper, I would like to know if anyone has already seen such
issues?
I get the following logs (lucene2.3 is in my MVN repository):
.......
[INFO] [aspectj:compile]
[INFO] [remote-resources:process]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 5 source files to
workspace/xwiki-platform-core/xwiki-core/target/classes
[INFO]
[INFO]
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
------------------------------------------------------------------------
[INFO] XWiki Platform - Core - Parent POM .................... SUCCESS [
1.239s]
[INFO] XWiki Platform - Core - Component ..................... SUCCESS [
0.842s]
[INFO] XWiki Platform - Core - Observation ................... SUCCESS [
0.315s]
[INFO] XWiki Platform - Core - Core .......................... FAILED [
8.168s]
[INFO] XWiki Platform - Core - URL ........................... NOT BUILT
[INFO] XWiki Platform - Core - Containers - Parent POM ....... NOT BUILT
[INFO] XWiki Platform - Core - Containers - API .............. NOT BUILT
[INFO] XWiki Platform - Core - Containers - Servlet .......... NOT BUILT
[INFO] XWiki Platform - Core - Actions ....................... NOT BUILT
[INFO] XWiki Platform - Core - Plexus ........................ NOT BUILT
[INFO] XWiki Platform - Core - Velocity ...................... NOT BUILT
[INFO]
------------------------------------------------------------------------
[ERROR]
Mojo:
org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
FAILED for project:
com.xpn.xwiki.platform:xwiki-core:jar:1.4-SNAPSHOT
Reason:
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[100,61]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[100,78]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[100,12]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[101,83]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[102,17]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[101,22]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[105,64]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[105,81]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[105,16]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[109,21]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[109,38]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[108,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[113,54]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[113,71]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[112,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[117,50]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[117,67]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[116,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[122,84]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[123,21]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[122,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[125,78]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[126,17]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[125,22]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[127,76]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[128,17]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[127,22]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[131,68]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[132,25]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[131,16]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[136,21]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[136,38]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[135,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[146,65]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[146,81]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexData.java:[146,24]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[169,64]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[169,81]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[169,30]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[188,60]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[188,77]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[188,20]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[192,63]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[192,80]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[192,20]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[194,81]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[195,29]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[194,34]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[199,63]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[199,80]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/ObjectData.java:[199,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[302,49]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[307,25]
cannot find symbol
symbol : class Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[307,59]
cannot find symbol
symbol : class Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[309,40]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[312,49]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[316,49]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[321,29]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[325,29]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/LucenePlugin.java:[343,33]
cannot find symbol
symbol : variable Occur
location: class org.apache.lucene.search.BooleanClause
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexUpdater.java:[209,26]
cannot find symbol
symbol : method flush()
location: class org.apache.lucene.index.IndexWriter
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexUpdater.java:[275,16]
cannot find symbol
symbol : method deleteDocument(int)
location: class org.apache.lucene.index.IndexReader
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexUpdater.java:[311,39]
cannot find symbol
symbol : method getDirectory(java.lang.String)
location: class org.apache.lucene.store.FSDirectory
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/IndexUpdater.java:[362,36]
getFields(java.lang.String) in org.apache.lucene.document.Document cannot be
applied to ()
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/AttachmentData.java:[86,21]
cannot find symbol
symbol : variable Store
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/AttachmentData.java:[87,21]
cannot find symbol
symbol : variable Index
location: class org.apache.lucene.document.Field
workspace/xwiki-platform-core/xwiki-core/src/main/java/com/xpn/xwiki/plugin/lucene/AttachmentData.java:[84,26]
internal error; cannot instantiate org.apache.lucene.document.Field.<init>
at org.apache.lucene.document.Field to ()
[INFO]
------------------------------------------------------------------------
[INFO] For more information, run with the -e flag
[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILED
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 20 seconds
[INFO] Finished at: Mon Mar 10 16:02:58 CET 2008
[INFO] Final Memory: 5M/23M
[INFO]
------------------------------------------------------------------------