Hi,
I will be at the CISIS conference (http://www.cisis.com.cn/) next
week. I will share the stand of ObjectWeb (A112) with Exo Platform and
representative of ObjectWeb. I will not be every day on the stand, so
send me a mail or call me (13940880590) to tell me when you are
coming. This conference is in Dalian (Liaoning province, China).
If you want to come to discuss about wikis, XWiki, Open Source, you are welcome.
And, i'm in China until maybe the end of August, so if you want to
talk about XWiki and meet, contact me.
Jérémi
Hi All,
Is there an easy way to programmatically add a user? The createUser method
seems to require a bunch of other parameters that seems UI specific:
public int createUser(String xwikiname, Map map, String parent, String
content, String userRights, XWikiContext context) throws XWikiException
Thanks
Duke
Hi All,
Is the contents in SVN trunk the lastest code i.e. the new version soon to
be release or is there a separate repository for the next release?
I couldnt see anything under branches that indicates that it's 1.0.
Cheers
Duke
Hello.
I'm working on XWikiJCRStore project by Google Summer of Code program.
The objective of these project would be to implement a full XWiki store
using JCR as a backend.
Project home page is
http://www.xwiki.org/xwiki/bin/view/Dev/XWikiJCRStore
I've created and tested jcr node type hierarchy for xwiki. And I will
start to write real backend soon.
Any comments/wishes/help/etc are welcome.
--
Artem Melentyev, UralSU, CS301. http://usunet.ru/xwiki/
jabber: amelentev(a)jabber.ru | icq: 175349029
Hi.
In dealing with a performance issue on objects attached to a
document, I came up with an approach to create a subclass of
BaseObject that has its own Hibernate mapping, and can include other
full-class Java objects as children, etc.
This works pretty well but requires some hacking in that it doesn' t
seem like XWiki will load a subclass of BaseObject directly, so I
have to force this reloading when I access the object.
The main advantage is this allows me to have properties that are
loaded in one SQL roundtrip, as opposed to one SQL query per actual
object instance, which is the best that seems possible with the built-
in custom mappings.
I'm wondering if there it would make sense to incorporate this kind
of custom subclassing into the XWiki base code. I think it could be
done without a lot of work (when the store reads the object's class,
if it is a subclass of BaseObject it reloads that particular object
using the appropriate mappings).
For our own project we can probably do this with local patches, but
it seems like it might be useful to others.
Any thoughts?
Hi all,
I have a plugin that does stuff requiring programming rights. For
example it calls Document.getDocument().
This is fine: the plugin is invoked from a doc saved by someone with
prog rights. The plugin API is passed the XWiki API object obtained
when that document is parsed.
So I can then use that to do: wiki.getDocument(blah).getDocument().
Now I need to do something similar when a document is saved, rather
than when invoked by the user. So I'm implementing
XWikiDocChangeNotificationInterface.notify().
However I don't know how to get an XWiki API object that will return
true for checkProgrammingRights() from my notify implementation.
Assuming this makes sense, does anyone have any ideas? :)
Regards,
Robin
hi,
I have followed this tutorial to modify my xwiki to be a full utf8 one:
http://www.xwiki.org/xwiki/bin/view/Dev/CharactersSets
It works and I could input multilanguages in the xwiki.
However when I trying to put a internallink on some other charactersets.
For example I modified these things on a page: [����������]
and edit that new page. Then the strange things happened, the name of the new page turns to be XWiki.WebHome.
Have anyone had this problem?
How to solve it?
I'm looking to get started with XWiki again and checked out the latest from
SVN. I'm getting the following error when trying to do the build:
C:\Project\XWiki\build.xml:151: taskdef A class needed by class
org.apache.cactus.integration.ant.CactusTask cannot be found:
junit/framework/Test
Any ideas?
Thanks
Duke
Thanks for all replies
-----Original Message-----
From: Ludovic Dubost [mailto:ludovic@xwiki.com]
Sent: quinta-feira, 1 de junho de 2006 13:53
To: xwiki-dev(a)objectweb.org
Subject: Re: [xwiki-dev] Deleting old object
It's the XWiki stats service. Look at xwiki.cfg
It records page views.
Ludovic
Filipe a écrit :
> Sorry, but I don't understand what is this Stats Service.
> Is it the Lo4J???
>
> -----Original Message-----
> From: Ludovic Dubost [mailto:ludovic@xwiki.com]
> Sent: quinta-feira, 1 de junho de 2006 09:27
> To: xwiki-dev(a)objectweb.org
> Subject: Re: [xwiki-dev] Deleting old object
>
>
>
> Yes.. turning off the stats works.
> Otherwise you'll have to wait until the next release. This issue is
> fixed in this release.
>
> Much better email Filipe ! It shares info because we learn about what
> you do with XWiki !
>
> Ludovic
>
> Mark H. James a écrit :
>
>> Do you need to have the stats service running? if not, I think turning
>> that off will get rid of the error.
>>
>> On May 31, 2006, at 5:17 PM, Filipe wrote:
>>
>>
>>> G'Day mates,
>>> This time I will try to be more complete.
>>> So, I'm getting a error and decide to investigate.
>>> I'm using the least Xwiki version, 0.9.840, and this version is
>>> working fine with 3 user.Leaving another obstacles that I'm getting,
>>> every thing is running OK. This 3 users are admin users. Until this
>>> point, xWiki is working OK. But I'm tried to use another user,
>>> different of admin user.
>>> My problem starts here. When I navegate with this common user, in
>>> every page, show the same error. The error:
>>>
>>> com.xpn.xwiki.XWikiException: Error number 3213 in 3: Exception while
>>> deleting object XWiki.Mega
>>> Wrapped Exception: possible nonthreadsafe access to session
>>> at
>>> com.xpn.xwiki.store.XWikiHibernateStore.deleteXWikiCollection(XWikiHibernateStore.java:986)
>>>
>>> at
>>> com.xpn.xwiki.stats.impl.XWikiStatsServiceImpl.notify(XWikiStatsServiceImpl.java:209)
>>>
>>> at
>>> com.xpn.xwiki.notify.XWikiActionRule.verify(XWikiActionRule.java:51)
>>> at
>>> com.xpn.xwiki.notify.XWikiNotificationManager.verify(XWikiNotificationManager.java:93)
>>>
>>> at com.xpn.xwiki.web.ViewEditAction.execute(ViewEditAction.java:268)
>>> at
>>> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
>>>
>>> at
>>> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
>>>
>>>
>>> I tried to close some classes in Log4J, but I'm don't confortable
>>> with this masked errors.
>>> When I put the source in Eclipse to debug, I found where this error
>>> is "Blowing up". In
>>> com.xpn.xwiki.stats.impl.XWikiStatsServiceImpl.notify( )say it be
>>> necessary to delete the oldObject because the ID info have changed.
>>> Why do I need to delete this old object? This is occurring only in
>>> simple users. In admin mode this error don't happens.
>>> I'm looking for this error in xWiki mail list and Ludovic said that
>>> is a know problem and already fixed, but this answer was in december
>>> 2005 and the 0.9.840's version was build in september 2005. Are there
>>> anything that I can do to solve this problem in short-term? I'm
>>> thinking in remove the throw Exception. This short solution will be
>>> have big impact in xWiki?
>>>
>>> Cheers,
>>>
>>> Filipe Fumaux
>>>
>>>
>>>
>>> --
>>> You receive this message as a subscriber of the
>>> xwiki-dev(a)objectweb.org mailing list.
>>> To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org
>>> For general help: mailto:sympa@objectweb.org?subject=help
>>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>>
>> ------------------------------------------------------------------------
>>
>>
>> --
>> You receive this message as a subscriber of the xwiki-dev(a)objectweb.org mailing list.
>> To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org
>> For general help: mailto:sympa@objectweb.org?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>
>>
>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the xwiki-dev(a)objectweb.org mailing list.
> To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org
> For general help: mailto:sympa@objectweb.org?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
--
Ludovic Dubost
XPertNet: http://www.xpertnet.fr/
Blog: http://www.ludovic.org/blog/
XWiki: http://www.xwiki.com
Skype: ldubost AIM: nvludo Yahoo: ludovic
Hey,
Anybody realize that the "More Actions" menu in Internet Explorer only is showed clicking 2 times and to close this is necessay to click again in it?
Att,
Filipe Fumaux
Sorry, but I don't understand what is this Stats Service.
Is it the Lo4J???
-----Original Message-----
From: Ludovic Dubost [mailto:ludovic@xwiki.com]
Sent: quinta-feira, 1 de junho de 2006 09:27
To: xwiki-dev(a)objectweb.org
Subject: Re: [xwiki-dev] Deleting old object
Yes.. turning off the stats works.
Otherwise you'll have to wait until the next release. This issue is
fixed in this release.
Much better email Filipe ! It shares info because we learn about what
you do with XWiki !
Ludovic
Mark H. James a écrit :
> Do you need to have the stats service running? if not, I think turning
> that off will get rid of the error.
>
> On May 31, 2006, at 5:17 PM, Filipe wrote:
>
>> G'Day mates,
>> This time I will try to be more complete.
>> So, I'm getting a error and decide to investigate.
>> I'm using the least Xwiki version, 0.9.840, and this version is
>> working fine with 3 user.Leaving another obstacles that I'm getting,
>> every thing is running OK. This 3 users are admin users. Until this
>> point, xWiki is working OK. But I'm tried to use another user,
>> different of admin user.
>> My problem starts here. When I navegate with this common user, in
>> every page, show the same error. The error:
>>
>> com.xpn.xwiki.XWikiException: Error number 3213 in 3: Exception while
>> deleting object XWiki.Mega
>> Wrapped Exception: possible nonthreadsafe access to session
>> at
>> com.xpn.xwiki.store.XWikiHibernateStore.deleteXWikiCollection(XWikiHibernateStore.java:986)
>>
>> at
>> com.xpn.xwiki.stats.impl.XWikiStatsServiceImpl.notify(XWikiStatsServiceImpl.java:209)
>>
>> at
>> com.xpn.xwiki.notify.XWikiActionRule.verify(XWikiActionRule.java:51)
>> at
>> com.xpn.xwiki.notify.XWikiNotificationManager.verify(XWikiNotificationManager.java:93)
>>
>> at com.xpn.xwiki.web.ViewEditAction.execute(ViewEditAction.java:268)
>> at
>> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
>>
>> at
>> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
>>
>>
>> I tried to close some classes in Log4J, but I'm don't confortable
>> with this masked errors.
>> When I put the source in Eclipse to debug, I found where this error
>> is "Blowing up". In
>> com.xpn.xwiki.stats.impl.XWikiStatsServiceImpl.notify( )say it be
>> necessary to delete the oldObject because the ID info have changed.
>> Why do I need to delete this old object? This is occurring only in
>> simple users. In admin mode this error don't happens.
>> I'm looking for this error in xWiki mail list and Ludovic said that
>> is a know problem and already fixed, but this answer was in december
>> 2005 and the 0.9.840's version was build in september 2005. Are there
>> anything that I can do to solve this problem in short-term? I'm
>> thinking in remove the throw Exception. This short solution will be
>> have big impact in xWiki?
>>
>> Cheers,
>>
>> Filipe Fumaux
>>
>>
>>
>> --
>> You receive this message as a subscriber of the
>> xwiki-dev(a)objectweb.org mailing list.
>> To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org
>> For general help: mailto:sympa@objectweb.org?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the xwiki-dev(a)objectweb.org mailing list.
> To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org
> For general help: mailto:sympa@objectweb.org?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
--
Ludovic Dubost
XPertNet: http://www.xpertnet.fr/
Blog: http://www.ludovic.org/blog/
XWiki: http://www.xwiki.com
Skype: ldubost AIM: nvludo Yahoo: ludovic
Roger,
I don't know if I am right, but if you turn on the multi-language ON will solve you problem.
But if you want to change a skin you need to change this in the space or in Wiki preferences --> Presentation. Indicate there what skin file do you want to use.
I hope this is useful.
-----Original Message-----
From: Roger Rukundo Nzabandora [mailto:rnrukundo@syscorp.co.ug]
Sent: quinta-feira, 1 de junho de 2006 06:14
To: xwiki-dev(a)objectweb.org; xwiki-users(a)objectweb.org
Subject: [xwiki-dev]
Can anyone please send me instructions of how to create a skin in ENGLISH?