Questions tagged [xwiki]

XWiki is both an open source enterprise wiki software and a platform for quickly writing simple collaborative web applications. It's written in Java with a design emphasis on extensibility.

XWiki is a free software platform written in Java based on the wiki principles, under the LGPL license. In addition to being a full-featured wiki, it is also a second generation wiki allowing effortless development of collaborative web applications. On top of this platform a plethora of applications are developed, targeted mainly on aiding enterprise-level needs.

XWiki Enterprise, the enterprise wiki edition, includes WYSIWYG editing, OpenOffice based document import/export, semantic annotations and tagging, and advanced permissions management.

Read more about XWiki at Wikipedia..

170 questions
1
vote
1 answer

Compile error in Grails xwiki plugin

I'm desperately trying to use the XWiki Grails plugin but had no luck so far. What I did: grails create-app xwikitest add "compile ":xwiki-rendering:1.0-RC3" in BuildConfig.groovy, plugin section. cd xwikitest grails run-app (no controller, empty…
PierreVn
  • 25
  • 1
  • 3
1
vote
3 answers

XWiki + MySQL Database: Errors

I have (as far as I know) properly followed all of the instructions on xwiki.org, and I have also searched high and low for answers to my errors, but have unfortunately been unable to resolve them by myself. I have downloaded XWiki in two different…
April
  • 21
  • 1
  • 4
1
vote
1 answer

Loop through a list of Tags and compare xWiki

I have a xwiki project with a Tag system implemented. What I am trying to do is solve this problem. When I click on a Tag I get the correct output but I want to sort the documents according to their other Tags, which means I need a way to search by…
nupac
  • 2,459
  • 7
  • 31
  • 56
1
vote
1 answer

How do I check for documents with more than 1 Tag in xwiki?

So I want to access all the documents that are tagged using 2 tags instead of one. For example I want all photoshop tutorial documents.If I searched with the tag tutorial I would get other software tutorials too and if I use the tag photoshop i get…
nupac
  • 2,459
  • 7
  • 31
  • 56
1
vote
1 answer

Know the parent of a space

I'm building a custom panel for my Xwiki (Cloud hosted). I need to do a hierarchy tree on my panel, and for that, I need to know the parent of a space, so I can do an #if clause... #set ($spaces = $xwiki.spaces) #set ($hiddenSpaces = ["XWiki",…
Gaston Claret
  • 1,000
  • 1
  • 7
  • 27
1
vote
1 answer

How to use XWiki a CMS for a web site?

I want to build a web site with wiki and blog. It seems that XWiki could do all these. Could I create 3 spaces: Default "static" web site Wiki Blog If so, how do I configure the default site so to the public, it has no wiki features visible at…
mentics
  • 6,852
  • 5
  • 39
  • 93
1
vote
1 answer

xwiki takes 100 cpu

I have installed Xwiki 4.4. If I visit a page on my wiki, the cpu load goes up to 100%. The load goes down as soon as the page has finished loading. I have done a few steps described on:…
Vince
  • 1,133
  • 3
  • 17
  • 34
1
vote
1 answer

How to create a custom FileUpload in XWiki with progress bar using FileUploadPlugin

Anyone has any ideas or piece of codes (it's better) about how to create a custome FileUpload in XWiki with progress bar using FileUploadPlugin? What I want exactly is how to get instantly the progress data from XWiki server side ? Thanks
1
vote
2 answers

xwiki java.lang.OutOfMemoryError: PermGen space

I just downloaded and setup xwiki on my local machine using the war file. I'm running it through tomcat 6 using hsql. I have it up and running but everytime i use it and get to the 5 or 6th page of whatever i'm doing, I get the error…
Catfish
  • 18,876
  • 54
  • 209
  • 353
1
vote
2 answers

Fortify Sourceanalyzer - Missing java class when analyzing XWiki

The missing class is com.xpn.xwiki.test.AbstractXWikiComponentTestCase. This is the only class that cannot be resolved. I have run: mvn package Then I have tried to build with sourceanalyzer and this is the only class that cannot be found. I do…
user143062
  • 31
  • 2
1
vote
2 answers

Is the name of web application always the name of the war?

I'm trying to install XWiki on Tomcat. I have checked the web.xml and found: xwiki XWiki Application But localhost:8080/xwiki returns error 404: description The requested resource (/xwiki) is…
user710818
  • 23,228
  • 58
  • 149
  • 207
0
votes
1 answer

How set rights to a group with xml-rpc in eclipse

i try to create a new group, but i cant set permissions my code is private static void createNewGroup() throws MalformedURLException, XmlRpcException { XWikiXmlRpcClient rpc = new…
u.tuvoz
  • 1
  • 1
0
votes
1 answer

Getting an error while writing a custom velocity macro

When creating my own macro, and trying to add it so that anyone can use it, I get the following error: Error number 4001 in 4: Error while parsing velocity page /templates/docdoesnotexist.vm Wrapped Exception: Cannot start the Velocity engine I do…
ShadowFlame
  • 2,996
  • 5
  • 26
  • 40
0
votes
1 answer

xwiki/velocity recent changes

by default the recent pages code that can be found does not do what I want it to do. How can I get a media-wiki-like version of recent changes -and/or- the last 10 changed pages preferably using velocity. Many greetings
ShadowFlame
  • 2,996
  • 5
  • 26
  • 40
0
votes
1 answer

Javascript - How to cancel a Post form with a confirmation message?

Here is the code to Receive the POST : {{velocity}} #if ($request.getMethod() == "POST") $request.getParameter("servicename") #end {{/velocity}} Here is the code to Send the POST : {{velocity}} {{html}} Here is the code for the javascript…