[xwiki-users] Location of storage of different content in xwiki?

2012-01-11 Thread mohit gupta
I have a question regarding the location of storage of different content in
xwiki.(I mean does it get stored in xwiki databse which we mention in
hibernate.cfg.xml or somewhere else on disc?)Where does below contents gets
stored in xwiki :-
1)Space and page contents
2)Atachment under spaces/pages
3)Users ,groups, spaces
4)Rights given to Users ,groups, spaces
5)Any modification done from admin user like changes in main Page
configuration/Look and Fell , changing the default colour theme or
addition of new colour theme.


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


Re: [xwiki-users] Location of storage of different content in xwiki?

2012-01-11 Thread Raluca Stavro
Hello,

On Wed, Jan 11, 2012 at 11:23 AM, mohit gupta motgu...@gmail.com wrote:

 I have a question regarding the location of storage of different content in
 xwiki.(I mean does it get stored in xwiki databse which we mention in
 hibernate.cfg.xml or somewhere else on disc?)Where does below contents gets
 stored in xwiki :-
 1)Space and page contents


In the database.


 2)Atachment under spaces/pages


There are 2 ways of storing attachments:
a) As part of documents (each attachment is stored as binary data in the
document xml) - they go along with the documents in the database.
b) As filesystem attachments - they go on the filesystem


 3)Users ,groups, spaces


Almost everything in XWiki is a document :) So, users, groups, spaces are
all documents - they all go in the database.


 4)Rights given to Users ,groups, spaces


Rights given to users, groups are objects attached to documents (each
object is part of the document xml) - they go with documents in the
database.


 5)Any modification done from admin user like changes in main Page
 configuration/Look and Fell , changing the default colour theme or
 addition of new colour theme.


Color themes are also documents - they go in the database.
Unless the Look  Feel changes are made in the filesystem skin (this is not
recommended), all the UI changes go in the database.

Raluca.




 Thanks.
 ___
 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] Location of storage of different content in xwiki?

2012-01-11 Thread mohit gupta
Thanks a lot  Raluca.Looks like everything goes to xwiki database by
default. Two more questions on same .

 As you told   there are 2 ways of storing attachments. Which one is
default? Where in xwiki UI , as admin user he need to change to other
value, if he wants

Another thing are you aware of table name where these docs gets
stored.Looks like in *xwikidoc* table . Right?



On Wed, Jan 11, 2012 at 3:21 PM, Raluca Stavro rsta...@xwiki.com wrote:

 Hello,

 On Wed, Jan 11, 2012 at 11:23 AM, mohit gupta motgu...@gmail.com wrote:

  I have a question regarding the location of storage of different content
 in
  xwiki.(I mean does it get stored in xwiki databse which we mention in
  hibernate.cfg.xml or somewhere else on disc?)Where does below contents
 gets
  stored in xwiki :-
  1)Space and page contents
 

 In the database.


  2)Atachment under spaces/pages
 

 There are 2 ways of storing attachments:
 a) As part of documents (each attachment is stored as binary data in the
 document xml) - they go along with the documents in the database.
 b) As filesystem attachments - they go on the filesystem


  3)Users ,groups, spaces
 

 Almost everything in XWiki is a document :) So, users, groups, spaces are
 all documents - they all go in the database.


  4)Rights given to Users ,groups, spaces
 

 Rights given to users, groups are objects attached to documents (each
 object is part of the document xml) - they go with documents in the
 database.


  5)Any modification done from admin user like changes in main Page
  configuration/Look and Fell , changing the default colour theme or
  addition of new colour theme.
 

 Color themes are also documents - they go in the database.
 Unless the Look  Feel changes are made in the filesystem skin (this is not
 recommended), all the UI changes go in the database.

 Raluca.


 
 
  Thanks.
  ___
  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] Creating unique serialised pagenames

2012-01-11 Thread Joris Dirks
One of the use cases I have for my wiki is storing 'issues', where
each issue should have a serial number consisting of year + subsequent
number.

I was thinking about a script like this, but one of the problems is:
there is no 'while' function in Velocity.

How would you create a form for this? Thanks for your ideas!

Joris

#set($space=Issues}
#set($template=AppSpace.IssueTemplate)
#set($parent=$space.WebHome)
#set($year= ${xwiki.formatDate($datetool.date, '')})
#set($partID=0
#set($genericID=$space.$year)

#while($xwiki.exists($space.$issueID'')
{
#set($partID=$partID+1)
#set($issueID=$year-$partID)
}

  #if(!$xwiki.exists($issueID)  $xwiki.hasAccessLevel('edit',
$context.user, $issueID))
$response.sendRedirect($xwiki.getURL($ID, 'inline',
template=$template}parent=$parent))
## Stop processing, since we already sent a redirect.
#stop
  #end
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [myxwiki] new wiki request

2012-01-11 Thread Thomas Mortagne
You can access your new wiki on http://iiscn.myxwiki.org

Enjoy !

On Tue, Jan 10, 2012 at 3:01 PM, Yves T yt75...@gmail.com wrote:
 Hello,

 This message to request a wiki on the myxwiki farm, basically to try it
 out, and to see if/how I could use it around some of the ideas presented
 below :

 http://iiscn.wordpress.com/about/

 (basically a proposal for an ID  space for IT in general, also allowing to
 attach current ones(UNICODE code points and other concept/items, ISBNs, for
 example), strictly as is.

 myxwiki.org user's name : yves trmlt
 login : yt75

 wiki server name wished : iiscn

 Brgds,
 Yves Trémolet
 ___
 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] Creating unique serialised pagenames

2012-01-11 Thread Edo Beutler
Hi Joris

I think there is no good solution in Velocity. I would do it in a
Java component. If you do not want to write a component you could use
Groovy alternatively. There you have the possibility of while.
If it has to be Velocity you could write a DB query which gets you all
your IssueXYZ documents. From those you can get the highest number and
increment your result.

Hope this helps
Edo

On Wed, Jan 11, 2012 at 3:36 PM, Joris Dirks jo...@user.stekje.nl wrote:
 One of the use cases I have for my wiki is storing 'issues', where
 each issue should have a serial number consisting of year + subsequent
 number.

 I was thinking about a script like this, but one of the problems is:
 there is no 'while' function in Velocity.

 How would you create a form for this? Thanks for your ideas!

 Joris

 #set($space=Issues}
 #set($template=AppSpace.IssueTemplate)
 #set($parent=$space.WebHome)
 #set($year= ${xwiki.formatDate($datetool.date, '')})
 #set($partID=0
 #set($genericID=$space.$year)

 #while($xwiki.exists($space.$issueID'')
 {
 #set($partID=$partID+1)
 #set($issueID=$year-$partID)
 }

  #if(!$xwiki.exists($issueID)  $xwiki.hasAccessLevel('edit',
 $context.user, $issueID))
    $response.sendRedirect($xwiki.getURL($ID, 'inline',
 template=$template}parent=$parent))
    ## Stop processing, since we already sent a redirect.
    #stop
  #end
 ___
 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] o.x.v.i.DefaultVelocityEngine - Deprecated??

2012-01-11 Thread Kaya Saman

Hi guys,


sorry for so many emails but here seems to be the cause of why the 
Global Wiki Admin panel isn't working properly:



Jan 11, 2012 12:58:03 AM org.apache.tomcat.util.http.Parameters 
processParameters
INFO: Invalid chunk starting at byte [0] and ending at byte [0] with a 
value of [null] ignored



2012-01-11 00:58:03,570 
[http://www.optiplex-networks.com/xwiki/bin/edit/Main/WebHome?editor=wysiwyg] 
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method 
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:Main.WebHome@2,42
2012-01-11 00:58:04,494 [http-8180-1] WARN  
o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method 
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in 
xwiki:Main.DocumentDoesNotExist@2,42
2012-01-11 00:59:38,316 
[http://www.optiplex-networks.com/xwiki/bin/view/Main/WebHome] WARN  
o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method 
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:Main.WebHome@2,42



2012-01-11 01:00:31,970 
[http://www.optiplex-networks.com/xwiki/bin/admin/XWiki/XWikiPreferences] WARN  
o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method 
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:XWiki.XWikiPreferences@2,42



Now that the upgrades have all been put in, does this mean that the 
Xwiki environment is unstable?



Current Xwiki version is 3.1.1.


Would an upgrade to 3.3 solve this or are there intermediate steps to 
perform before I can go forward?



Regards,


Kaya

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


Re: [xwiki-users] o.x.v.i.DefaultVelocityEngine - Deprecated??

2012-01-11 Thread Thomas Mortagne
On Wed, Jan 11, 2012 at 4:51 PM, Kaya Saman kayasa...@gmail.com wrote:
 Hi guys,


 sorry for so many emails but here seems to be the cause of why the Global
 Wiki Admin panel isn't working properly:


 Jan 11, 2012 12:58:03 AM org.apache.tomcat.util.http.Parameters
 processParameters
 INFO: Invalid chunk starting at byte [0] and ending at byte [0] with a value
 of [null] ignored


 2012-01-11 00:58:03,570
 [http://www.optiplex-networks.com/xwiki/bin/edit/Main/WebHome?editor=wysiwyg]
 WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
 [com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:Main.WebHome@2,42
 2012-01-11 00:58:04,494 [http-8180-1] WARN  o.x.v.i.DefaultVelocityEngine  -
 Deprecated usage of method [com.xpn.xwiki.api.XWiki.getXMLEncoded] in
 xwiki:Main.DocumentDoesNotExist@2,42
 2012-01-11 00:59:38,316
 [http://www.optiplex-networks.com/xwiki/bin/view/Main/WebHome] WARN
  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
 [com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:Main.WebHome@2,42


 2012-01-11 01:00:31,970
 [http://www.optiplex-networks.com/xwiki/bin/admin/XWiki/XWikiPreferences]
 WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
 [com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:XWiki.XWikiPreferences@2,42


 Now that the upgrades have all been put in, does this mean that the Xwiki
 environment is unstable?

DefaultVelocityEngine is where the log is generated, what the log is
saying is that com.xpn.xwiki.api.XWiki.getXMLEncoded is deprecated.
Note that deprecated does not mean it does not work it just mean that
at some point in the future we plan to remove it so better use the
proper one right now.



 Current Xwiki version is 3.1.1.


 Would an upgrade to 3.3 solve this or are there intermediate steps to
 perform before I can go forward?


 Regards,


 Kaya

 ___
 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] o.x.v.i.DefaultVelocityEngine - Deprecated??

2012-01-11 Thread Kaya Saman

On 01/11/2012 06:07 PM, Thomas Mortagne wrote:

On Wed, Jan 11, 2012 at 4:51 PM, Kaya Samankayasa...@gmail.com  wrote:

Hi guys,


sorry for so many emails but here seems to be the cause of why the Global
Wiki Admin panel isn't working properly:


Jan 11, 2012 12:58:03 AM org.apache.tomcat.util.http.Parameters
processParameters
INFO: Invalid chunk starting at byte [0] and ending at byte [0] with a value
of [null] ignored


2012-01-11 00:58:03,570
[http://www.optiplex-networks.com/xwiki/bin/edit/Main/WebHome?editor=wysiwyg]
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:Main.WebHome@2,42
2012-01-11 00:58:04,494 [http-8180-1] WARN  o.x.v.i.DefaultVelocityEngine  -
Deprecated usage of method [com.xpn.xwiki.api.XWiki.getXMLEncoded] in
xwiki:Main.DocumentDoesNotExist@2,42
2012-01-11 00:59:38,316
[http://www.optiplex-networks.com/xwiki/bin/view/Main/WebHome] WARN
  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:Main.WebHome@2,42


2012-01-11 01:00:31,970
[http://www.optiplex-networks.com/xwiki/bin/admin/XWiki/XWikiPreferences]
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getXMLEncoded] in xwiki:XWiki.XWikiPreferences@2,42


Now that the upgrades have all been put in, does this mean that the Xwiki
environment is unstable?

DefaultVelocityEngine is where the log is generated, what the log is
saying is that com.xpn.xwiki.api.XWiki.getXMLEncoded is deprecated.
Note that deprecated does not mean it does not work it just mean that
at some point in the future we plan to remove it so better use the
proper one right now.


Ok this is weird as the wysiwyg editor doesn't seem to be working for my 
main site - the little circle icon just spins and spins but produces 
nothing, and both Global Wiki Admin + Site Wiki Admin panels are not 
displaying properly on either one of my sites.


Instead of the pictures in the previous 'drop down' panel I get text 
links with a bunch of sub links and the pictures right at the bottom of 
the page which I need to scroll down for??


I can provide a screenshot if necessary!

Regards,


Kaya





Current Xwiki version is 3.1.1.


Would an upgrade to 3.3 solve this or are there intermediate steps to
perform before I can go forward?


Regards,


Kaya

___
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] How to restrict user from editing his prefernces, profile?

2012-01-11 Thread mohit gupta
When i take my mouse on user name link  (that we see in front of profile on
the page just after log in), i see list of options profiles,preferences,
watchlist,network,my dashboard.  I want to cofigure it so that this option
does not show up for specific group users.  Can i configure it?
The reason why i want to this because if these options are shoen then user
can edit some stuff like change password, edit profile etch which i dont
want for specific group/user.

If it is not possible, can we restrict the specific group/user from editing
profile,change password( which is possible right now if user click
on profile or preferences option under user name link on top right corner
of welcome page) .Thanks.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Creating unique serialised pagenames

2012-01-11 Thread Ludovic Dubost
Joris,

There is the $xwiki.getUniquePageName(SpaceName , BasePageName) which
allows to give you a page name not existing in XWiki.
It works in most cases, except if you generate the page name before the
save (for the form display) as you risk having twice the same name.

If you make this call just before the save, the duplicate risks are close
to zero.

As Edo has mentionned, a component would be needed to guarantee zero
possible duplication and/or to generate the page name for the edit form
(before saving). An even there there are some issues to support clustering.
We have been thinking about this and is part of our plan for 3.4/3.5 or
early 4.0.

Ludovic

2012/1/11 Joris Dirks jo...@user.stekje.nl

 One of the use cases I have for my wiki is storing 'issues', where
 each issue should have a serial number consisting of year + subsequent
 number.

 I was thinking about a script like this, but one of the problems is:
 there is no 'while' function in Velocity.

 How would you create a form for this? Thanks for your ideas!

 Joris

 #set($space=Issues}
 #set($template=AppSpace.IssueTemplate)
 #set($parent=$space.WebHome)
 #set($year= ${xwiki.formatDate($datetool.date, '')})
 #set($partID=0
 #set($genericID=$space.$year)

 #while($xwiki.exists($space.$issueID'')
 {
 #set($partID=$partID+1)
 #set($issueID=$year-$partID)
 }

  #if(!$xwiki.exists($issueID)  $xwiki.hasAccessLevel('edit',
 $context.user, $issueID))
$response.sendRedirect($xwiki.getURL($ID, 'inline',
 template=$template}parent=$parent))
## Stop processing, since we already sent a redirect.
#stop
  #end
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Ludovic Dubost
Founder and CEO
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


[xwiki-users] Xwiki 3.2+ broken with PostgreSQL

2012-01-11 Thread Mike Jakubik
Hello,

I decided to upgrade my xwiki from 3.1 to 3.3 today, only to find out
that since 3.2 postgresql support in the wiki is broken. That's two
stable releases that have this problem, is this being worked on or is
postgresql support dead?

Below is the error, searching around i see other people complaining
about this, but no fix.

Thanks.

---
exception

javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error
number 3 in 0: Could not initialize main XWiki context
Wrapped Exception: Error number 3201 in 3: Exception while saving
document xwiki:XWiki.XWikiUsers
Wrapped Exception: Error number 3211 in 3: Exception while updating
archive XWiki.XWikiUsers
Wrapped Exception: Error number 0 in 3: Exception while hibernate
execute
Wrapped Exception: could not load an entity:
[com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent#component[docId,version1,version2]{docId=495778886,
 version2=1, version1=4}]

org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)

org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)

org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:128)

org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:144)

com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)

org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:217)

org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)

root cause

com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize
main XWiki context
Wrapped Exception: Error number 3201 in 3: Exception while saving
document xwiki:XWiki.XWikiUsers
Wrapped Exception: Error number 3211 in 3: Exception while updating
archive XWiki.XWikiUsers
Wrapped Exception: Error number 0 in 3: Exception while hibernate
execute
Wrapped Exception: could not load an entity:
[com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent#component[docId,version1,version2]{docId=495778886,
 version2=1, version1=4}]
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:419)
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:488)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:116)

org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)

org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:128)

org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:144)

com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)

org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:217)

org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)


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


Re: [xwiki-users] Xwiki 3.2+ broken with PostgreSQL

2012-01-11 Thread Vincent Massol
Hi Mike,

On Jan 12, 2012, at 1:38 AM, Mike Jakubik wrote:

 Hello,
 
 I decided to upgrade my xwiki from 3.1 to 3.3 today, only to find out
 that since 3.2 postgresql support in the wiki is broken. That's two
 stable releases that have this problem, is this being worked on or is
 postgresql support dead?

Yeah we broke a lot of stuff when upgrading to the latest Hibernate version :(

We didn't have automated tests for the various DBs and we let that slip.

I've fixed support for Oracle already and I've been working on fixing the 
PostgreSQL one too.

What you should do is try to add the following in your xwiki.hbm.xml file:

 typedef name=materialized_clob class=org.hibernate.type.StringClobType /

Add it at the top just before this:
class name=com.xpn.xwiki.doc.XWikiDocument table=xwikidoc

And let me know if it fixes the issue.

To get the xwiki.hbm.xml file you can extract it from 
WEB-INF/lib/xwiki-platform-legacy-oldcore-*.jar and copy it to WEB-INF/classes 
so that your copy takes precedence in the classpath.

Thanks
-Vincent

 Below is the error, searching around i see other people complaining
 about this, but no fix.
 
 Thanks.
 
 ---
 exception
 
 javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error
 number 3 in 0: Could not initialize main XWiki context
 Wrapped Exception: Error number 3201 in 3: Exception while saving
 document xwiki:XWiki.XWikiUsers
 Wrapped Exception: Error number 3211 in 3: Exception while updating
 archive XWiki.XWikiUsers
 Wrapped Exception: Error number 0 in 3: Exception while hibernate
 execute
 Wrapped Exception: could not load an entity:
 [com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent#component[docId,version1,version2]{docId=495778886,
  version2=1, version1=4}]
 
 org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
 
 org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
 
 org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
   org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
   org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
   com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:128)
 
 org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:144)
 
 com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
 
 org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:217)
 
 org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
 
 root cause
 
 com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize
 main XWiki context
 Wrapped Exception: Error number 3201 in 3: Exception while saving
 document xwiki:XWiki.XWikiUsers
 Wrapped Exception: Error number 3211 in 3: Exception while updating
 archive XWiki.XWikiUsers
 Wrapped Exception: Error number 0 in 3: Exception while hibernate
 execute
 Wrapped Exception: could not load an entity:
 [com.xpn.xwiki.doc.rcs.XWikiRCSNodeContent#component[docId,version1,version2]{docId=495778886,
  version2=1, version1=4}]
   com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:419)
   com.xpn.xwiki.XWiki.getXWiki(XWiki.java:488)
   com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
   com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:116)
 
 org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
 
 org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
   org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
   org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
   com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:128)
 
 org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:144)
 
 com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
 
 org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:217)
 
 org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
 
 
 ___
 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