Did you try to list pages using a small code block ? Maybe some pages are remaining.
To rename a space, I use that code (syntax 1.0) :
1 Rename Space
#if($request.space)
#if("doRename"==$request.op)
#set($space=$request.space)
#foreach($item in $xwiki.getSpaceDocsName($request.space))
$xwiki.getDocument("${space}.${item}").rename("${request.newname}.${item.replace('.','_')}")
#end
1.1 Renamed space $space to $request.newname
[Cancel>$doc.fullName]
#end
#if("listRename"==$request.op)
#set($space=$request.space)
1.1 Renaming space $space to $request.newname
#foreach($item in $xwiki.getSpaceDocsName($request.space))
* Renaming $space.$item to ${request.newname}.${item.replace('.','_')}
#end
[Confirm>$doc.fullName?space=$space&newname=$request.newname&op=doRename]
[Cancel>$doc.fullName]
#end
#if("getNewName"==$request.op)
Renaming $request.space
1.1 Renaming ${request.space}
<form method="post" action="$doc.getURL("view", "")" onsubmit="cancelCancelEdit()">
<div class="padded centered">
<input type="hidden" name="space" value="${request.space}" />
<input type="hidden" name="op" value="listRename" />
Enter new name for the space:
<input type="text" name="newname" value="${request.space}" class="panelinput" style="margin:auto;" onfocus="if(this.value=='Title') this.value=''" onblur="if(this.value=='') this.value='Title'"/>
</div>
<div class="padded centered" style="text-align:center;">
<input type="submit" class="button" style="margin:auto;" value="Rename"/>
</div>
</form>
[Cancel>$doc.fullName]
#end
#else
{table}
Space | Action
#foreach($space in $xwiki.spaces)
$space | [Rename>$doc.fullName?space=${space}&op=getNewName]
#end
{table}
#end
> -----Message d'origine-----
> De : users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]
> De la part de Xavier Bartholome
> Envoyé : lundi 11 janvier 2010 17:23
> À : users(a)xwiki.org
> Objet : [xwiki-users] Question re: Spaces
>
> Hi,
>
> I tried to delete a space by deleting all pages in it, but it
> still appears
> in the spaces lists (on the main page and in the panel)
> alltough with a
> question mark indicating that a page should be created ...
> how can I remove
> it from there?
>
> Also, How can I rename an existing space?
>
> Thanks in advance,
>
> Xavier
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1
Hi,
I tried to delete a space by deleting all pages in it, but it still appears
in the spaces lists (on the main page and in the panel) alltough with a
question mark indicating that a page should be created ... how can I remove
it from there?
Also, How can I rename an existing space?
Thanks in advance,
Xavier
I am out of the office until 01/12/2010.
Out sick
Note: This is an automated response to your message "users Digest, Vol 30,
Issue 35" sent on 1/11/10 3:05:32.
This is the only notification you will receive while this person is away.
Hello everyone,
I've been having problems with attachment
deletion. Basically, xwiki allows me to "delete" the attachment, but
the attachment link that displays the file name doesn't get deleted.
More
specifically, after I delete the attachment, the file disappears, so it
seems it gets deleted correctly. However, if I refresh the page, the
attachment link reappears. When I click on the attachment, it leads me
to another page that says "Error. This template does not exist". What I
assume is happening is that the attachment link, or pointer, points to
the already deleted file that doesn't exist anymore (like a dangling pointer).
I am the administrator and I am allowed to delete the attachment, so it isn't an access control problem.
Has anyone else been having this problem? Why does this problem happen?
Thanks,
Felix Wu
Hi Radek,
Glad I could help.
On 1/8/10 3:13 AM, Radek Rekas wrote:
> Thanks, using firebug to take a look at the reponse of the JSON page helped me to diagnose what the problem was.
>
> The following blog post helped me with figuring out how to access the JSON used by the livetable: http://www.softwareishard.com/blog/firebug/json-explorer-for-firebug/
>
> In case anyone else comes accross wondering how to do this it would appear that all of the class properties are stored in seperate tables and the query parameter in the gridresultwithfilter macro is used to filter on these tables. For my example I needed to use the StringProperty table as the title property was set to type string in my xwiki class. Integers appear to go in the IntegerProperty table and so on.
>
> My example was the below where "title" was the field name in the xwiki class that I was trying to filter on and "test6" was the field value.
>
> #gridresultwithfilter($request.classname $request.collist.split(",") ", StringProperty as stringtable", " and obj.id=stringtable.id.id and stringtable.id.name='title' and stringtable.value='test6'")
>
> Thanks again for pointing me in the right direction.
>
>
> Radek Rekas
>
>
>
> ----- Original Message -----
> From: oana.tabaranu<oana.tabaranu(a)xwiki.com>
> Sent: Thu, 7/1/2010 11:22pm
> To: XWiki Users<users(a)xwiki.org>
> Subject: Re: [xwiki-users] Livetable filtering format
>
> Hi Radek,
>
> When writing custom code for the live table, I suggest you copy the
> content from XWiki.LiveTableResultsMacros and paste it into your own
> wiki page. Create a small example for the livetable that uses your wiki
> page and debug the query and JSON generated by the macro using Firebug
> or the direct URL in your browser.
> This also might help:
> http://platform.xwiki.org/xwiki/bin/view/DevGuide/LiveTable
>
> Oana
>
> On 07.01.2010 06:04, Radek Rekas wrote:
>
>> Hi,
>>
>> I'm trying to get livetable filtering working however I'm having trouble figuring out what objects/properties are available in the $filterfrom and $filterwhere parameters of the gridresultwithmacro() macro contained in the XWiki.LiveTableResultsMacros document.
>>
>> I'm trying to filter the livetable to display only records where the "title" field is set to "test" but setting the $filterwhere parameter to " and obj.name='title' and obj.value='test'" does not seem to work and I'm having trouble finding any documentation etc to find out what format these where clauses should be in.
>>
>> The closest documentation that ive been able to find is at the bottom of the following page http://dev.xwiki.org/xwiki/bin/view/Drafts/XWikiGridComponentTutorial however it doesnt give much clues as to what format the $filterwhere and $filterfrom parameters (3rd and 4th parameter) of the gridresultwithmacro() macro should be in.
>>
>> The livetable displays all records correctly if I leave the $filterfrom and $filterwhere parameters blank.
>>
>> Can anyone offer any hints or point me to any relevant documentation?
>>
>> Thanks,
>>
>>
>> Radek Rekas
>>
>>
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
>>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
--
Oana Tabaranu
Hi,
Isnt there a way to link to a file on the local file system? I tried using
both the WYSIWYG editor and the creole syntax and both dont work. I know i
can link to an attachment but thats not what i want. I want to add a
hyperlink to a document that links to a file that is somewhere on the C:
drive. Is this possible?
Im using the latest version of xwiki downloaded yesterday.
Thanks
The new Version 2.1.1 ist working really quiet well!
But there is a small problem with sometimes bad consequences in the WYSIWYG Editor when inserting the code makro.
If I insert a code makro and enter a language which is probably? not supported (in my case it is xml) it can happen that I get an exception an the whole wiki crashes. This may be a bug which can be as I already said, a big problem.
Greetings,
Florian
Hi
I'm trying to build XWiki Web 1.8.1. It fails. I'm using Ubuntu 9.10 and tried building it in the terminal and in Netbeans. Both failed with the same error message. I know i'm using the right settings.xml.
ThanksAllen
Here is part of the message:
------------------------------------------------------------------------Building XWiki Platform - Web - WYSIWYG task-segment: [install]------------------------------------------------------------------------[enforcer:enforce][remote-resources:process {execution: xwiki-license-resources}][resources:resources]Using default encoding to copy filtered resources.[compiler:compile]Nothing to compile - all classes are up to date[dependency:unpack]Configured Artifact: com.google.gwt:gwt-dev:linux-libs:1.5.3:zipgwt-dev-1.5.3-linux-libs.zip already unpacked.[gwt:compile]establishing classpath list (buildClaspathList - scope = COMPILE)google.webtoolkit.home (gwtHome) *not* set, using project POM for GWT dependenciesRemoving units with errors [ERROR] Errors in 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java' [ERROR] Line 48: No source code is available for type com.xpn.xwiki.gwt.api.client.app.XWikiGWTDefaultApp; did you forget to inherit a required module? [ERROR] Line 61: No source code is available for type com.xpn.xwiki.gwt.api.client.app.XWikiAsyncCallback; did you forget to inherit a required module? [ERROR] Errors in 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java' [ERROR] Line 137: No source code is available for type com.xpn.xwiki.gwt.api.client.XWikiGWTException; did you forget to inherit a required module? [ERROR] Errors in 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/sync/SyncPlugin.java' [ERROR] Line 438: No source code is available for type com.xpn.xwiki.gwt.api.client.dialog.MessageDialog; did you forget to inherit a required module? [ERROR] Line 438: No source code is available for type com.xpn.xwiki.gwt.api.client.dialog.Dialog; did you forget to inherit a required module? [ERROR] Line 452: No source code is available for type com.xpn.xwiki.gwt.api.client.XWikiGWTException; did you forget to inherit a required module?Removing invalidated units [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/image/ui/ImageSelector.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/valign/VerticalAlignPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/internal/DefaultPluginManager.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/widget/WikiSelector.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/editor/WysiwygEditorDebugger.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/importer/ImporterPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/list/ListPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/importer/ui/ImporterDialog.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/widget/SpaceSelector.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/separator/SeparatorPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/exec/RefreshExecutable.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/image/ImagePlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/MacroPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/ui/CreateNewPageWizardStep.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/text/TextPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/justify/JustifyPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/ui/WikipageSelectorWizardStep.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/symbol/SymbolPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/font/FontPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/editor/WysiwygEditorFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/editor/WysiwygEditor.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/sync/SyncPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/sync/SyncPlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/LinkPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/ui/EditMacroDialog.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/format/FormatPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/undo/UndoPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/color/ColorPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/widget/PageSelector.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/ui/SelectMacroDialog.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/WysiwygService.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/internal/AbstractPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/indent/IndentPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/Wysiwyg.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/ui/LinkWizard.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/ui/WikipageSelectorWizardStep.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/ui/CreateNewPageWizardStep.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/importer/ImporterPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/importer/ImporterPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/MacroPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/MacroPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/indent/IndentPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/indent/IndentPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/DeleteCol.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/separator/SeparatorPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/separator/SeparatorPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/text/TextPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/text/TextPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/image/ImagePluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/image/ImagePlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/InsertRowBefore.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/DeleteRow.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/InsertRowAfter.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/DeleteTable.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/font/FontPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/font/FontPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/InsertColAfter.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/justify/JustifyPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/justify/JustifyPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/symbol/SymbolPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/symbol/SymbolPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/LinkMenuExtension.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/LinkPlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/internal/AbstractStatefulPlugin.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/internal/AbstractPlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/InsertTable.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/AbstractTableFeature.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/MacroMenuExtension.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/MacroPlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/LinkPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/link/LinkPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/list/ListPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/list/ListPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/image/ui/ImageDialog.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/image/ui/ImageSelector.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/format/FormatPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/format/FormatPlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/valign/VerticalAlignPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/valign/VerticalAlignPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/feature/InsertColBefore.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/color/ColorPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/color/ColorPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/undo/UndoPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/undo/UndoPlugin.java [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/Plugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/exec/InsertExecutable.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/macro/MacroPlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TableFeature.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/table/TablePlugin.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/internal/DefaultPluginFactoryManager.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginFactory.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/internal/AbstractPluginFactory.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginFactory.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginFactoryManager.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginFactory.java [WARN] Compilation unit 'file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginManager.java' is removed due to invalid reference(s): [WARN] file:/home/jooty/NetBeansProjects/xwiki-web-1.8.1/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/PluginFactoryManager.javaComputing all possible rebind results for 'com.xpn.xwiki.gwt.api.client.Api' Rebinding com.xpn.xwiki.gwt.api.client.Api Checking rule <generate-with class='com.google.gwt.user.rebind.ui.ImageBundleGenerator'/> [ERROR] Unable to find type 'com.xpn.xwiki.gwt.api.client.Api' [ERROR] Hint: Check that the type name 'com.xpn.xwiki.gwt.api.client.Api' is really what you meant [ERROR] Hint: Check that your classpath includes all required source roots[ERROR]Build failed------------------------------------------------------------------------[ERROR]BUILD ERROR------------------------------------------------------------------------Exception attempting to run script - compile.sh
Embedded error: compile.sh script exited abnormally with code - 1------------------------------------------------------------------------For more information, run Maven with the -e switch------------------------------------------------------------------------Total time: 1 minute 5 secondsFinished at: Thu Jan 07 15:33:10 PHT 2010Final Memory: 39M/102M------------------------------------------------------------------------
_________________________________________________________________
New Windows 7: Find the right PC for you. Learn more.
http://windows.microsoft.com/shop
HI,
Could you give me some more information on where xwiki attachements are
stored and how i can access them directly. I just attached a file to a wiki
page but i havent got a clue where that files is saved in the filesystem.
And most importantly how can i access it?
The reason i ask is i want to use another tool to have access to that same
file. If i know where in teh filesystem it is it would be usefull.
Thanks