Hi!
Maybe someone can help with getting all unique names of each user,
that has created some document in XWiki?
For example, there is table in XWiki database named "xwikidoc", which
contains all the documents. Can I create a query, that gets all the
unique values of the creators (column XWD_CREATOR)?
Ar cieņu, Mihails
On Jun 27, 2008, at 9:35 PM, Florian Rhomberg wrote:
> Hi!
> I hope someone can help me. I have troubles with spaces. I installed
> after
> the installation xar. This file creates different spaces: XWiki,
> Scheduler,
> Blog, Panels, Stats, Photos, Sandbox and Main. Now I have two
> questions:
>
> 1. How can I delete spaces? I removed all content from Sandbox and
> Scheduler
> and want to remove this spaces, but I do not know how.
You have to delete all files in a space to delete it. This can be done
manually or using a script,
see http://code.xwiki.org/xwiki/bin/view/Snippets/DeleteSpaceSnippet
Don't forget to delete the WebHome page in the space.
> 2. How can I modify the navigation panel that XWiki, which is
> necessare for
> running the wiki, as well as Blog, Panels,Stats, Photos are hidden. I
> removed the comment line from $hiddenSpaces and tried several thigs
> in the
> navigation but I was not successful!
To modify it, just edit it. Go to the Panels space (Panels.WebHome)
for example or use the Panel Wizard and edit the panel you want.
Thanks
-Vincent
If I am understanding correctly, to delete spaces I think you can go to
"Index" on the quick links panel and that will show you all your spaces.
There is even a search box for spaces, you can copy, delete, rename, and
add rights buttons from here. For your second question, if you are
talking about the quick links panel you can click the "edit this panel"
link under Quick Links panel. You need to have the necessary rights to
do all this, so if you are logged in as an Admin all of these options
should show up.
Thanks,
Brent
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
Of Florian Rhomberg
Sent: Friday, June 27, 2008 2:36 PM
To: 'XWiki Users'
Subject: [xwiki-users] Problem with Spaces
Hi!
I hope someone can help me. I have troubles with spaces. I installed
after
the installation xar. This file creates different spaces: XWiki,
Scheduler,
Blog, Panels, Stats, Photos, Sandbox and Main. Now I have two questions:
1. How can I delete spaces? I removed all content from Sandbox and
Scheduler
and want to remove this spaces, but I do not know how.
2. How can I modify the navigation panel that XWiki, which is necessare
for
running the wiki, as well as Blog, Panels,Stats, Photos are hidden. I
removed the comment line from $hiddenSpaces and tried several thigs in
the
navigation but I was not successful!
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi!
I hope someone can help me. I have troubles with spaces. I installed after
the installation xar. This file creates different spaces: XWiki, Scheduler,
Blog, Panels, Stats, Photos, Sandbox and Main. Now I have two questions:
1. How can I delete spaces? I removed all content from Sandbox and Scheduler
and want to remove this spaces, but I do not know how.
2. How can I modify the navigation panel that XWiki, which is necessare for
running the wiki, as well as Blog, Panels,Stats, Photos are hidden. I
removed the comment line from $hiddenSpaces and tried several thigs in the
navigation but I was not successful!
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
Hello Stuart,
[snip]
One thing I haven't been able to do as yet is to put different access
rights on individual sections of a document. It seems that XWiki only
allocates access rights to the document as a whole.
Is this possible and if so how to do it?
If it is not yet possible, is likely to be in the future?
[/snip]
[MR]
I don't think it's possible to grant edit rights to sections of a page.
As far as viewing sections of a page is concerned think that is already
possible as follows using checkAccess
(http://maven.xwiki.org/site/xwiki-core-parent/xwiki-core/apidocs/com/xpn/xw…):
- [Link to a resource available to everyone>Main.WebHome]
#if($xwiki.checkAccess("Whois.WebHome", "view"))
- [Whois>Whois.WebHome]
#end
[/MR]
Mazzel,
Martijn.
Hello,
It seems that the Search panel is coming with a hard-coded URL like
"/xwiki/bin/Main/WebSearch"
If you give your application a different name than "xwiki" it breaks.
I checked that on the 1.4 XAR.
Best regards,
--
Tiago Rinck Caveden
http://caveden.multiply.com
Hello!
In my wiki, I've saved a page that can be visualized by everybody, included
non logged users. The edition is restricted to logged users, though.
However, in this page I added a little script that changes some object
values when the page is viewed and then saves it. If somebody not logged try
to simply view the page, he receives an exception saying he doesn't have
rights for it.
IMHO, the script execution should be done with the rights of the person that
saved it.. In this case, I would like everybody that can view the page to be
able to execute the script and save the page in the terms I've decided in
the script.
Despite which is the best approach, is there any workaround for my case that
does not include allowing anonymous edition of the page?
Thank you very much,
--
Tiago Rinck Caveden
http://caveden.multiply.com
Hi!
I got the problem solved. There was a problem with my Tomcat and Apache
configuration with xwiki. Now xwiki works perfectly, and I am very happy
that I can now use it.
This is a short installation guide for people who want to use Xwiki in
combination with Apache and mod_jk and want to deploy the application
manually:
1. Download the war file in the directory you want.
2. Now you have two possibilities:
- You can use the Apache Tomcat Manager to deploy (the usual way).
If you use this way you can skip the following steps.
- You rename the war file to zip and then unzip the file (I did it
this way, hopefully it is not completely wrong)
3. Now you can modify the hibernate.conf, see this tutorial step 8 and only
8: http://www.howtoforge.com/xwiki-tomcat-mysql-debian-etch
4. Create if you want or need an alias in the httpd.conf which points to the
folder where you have unzipped xwiki.
5. create an xml file with the following content:
<?xml version="1.0" encoding="utf-8"?>
<Context displayName="xwiki" docBase="/home/tomcat/app/xwiki"
path="aloha/xwiki/">
</Context>
modify docBase and path to your needs. Aloha is my alias of the xwiki the
folder where I stored the xwiki files
6. Use the Tomcat manager to manually deploy the service by using the
created xml file. (If someone needs more information to do this please ask)
7. Now xwiki should be accessible by http://domain/alias
I hope this will help some people
Greetings,
Florian
-----Ursprüngliche Nachricht-----
Von: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] Im Auftrag von
Florian Rhomberg
Gesendet: Freitag, 27. Juni 2008 09:00
An: users(a)xwiki.org
Betreff: [xwiki-users] Can´t reach xwiki from outside with domainname
Hi! I hope someone can help me. I have just installed xwiki on my server.
The server is behind a firewall that means the servers IP adress is
tranformed by the firewall to an external IP adress. I can reach xwiki
normally with the internal IP address (
<http://192.168.1.5/xwiki/bin/view/Main/WebHome>
http://192.168.1.5/xwiki/bin/view/Main/WebHome) behind the firewall, it
works fine even I do not have reconfigured the apache httpd.conf file. But
if I call the website externally, I get redirected to
<http://127.0.0.1/xwiki/bin/view/Main/WebHome>
http://127.0.0.1/xwiki/bin/view/Main/WebHome that does not work. Therefore I
tried to change in the xwiki.cfg the path from 127.0.0.1 to the domainname,
but nothing has changed. How can I solve this problem.
I use an apache 2.2.6 webserver with mod_jk. The folder xwiki is correctly
deployed by tomcat.
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi,
I have been testing XWiki over the last few days with the view to using it
within our Institution.
One thing I haven't been able to do as yet is to put different access rights
on individual sections of a document. It seems that XWiki only allocates
access rights to the document as a whole.
Is this possible and if so how to do it?
If it is not yet possible, is likely to be in the future?
Thanks in advance
Stuart
--
View this message in context: http://www.nabble.com/Section-editting-access-authorization-tp18127869p1812…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi! I hope someone can help me. I have just installed xwiki on my server.
The server is behind a firewall that means the servers IP adress is
tranformed by the firewall to an external IP adress. I can reach xwiki
normally with the internal IP address (
<http://192.168.1.5/xwiki/bin/view/Main/WebHome>
http://192.168.1.5/xwiki/bin/view/Main/WebHome) behind the firewall, it
works fine even I do not have reconfigured the apache httpd.conf file. But
if I call the website externally, I get redirected to
<http://127.0.0.1/xwiki/bin/view/Main/WebHome>
http://127.0.0.1/xwiki/bin/view/Main/WebHome that does not work. Therefore I
tried to change in the xwiki.cfg the path from 127.0.0.1 to the domainname,
but nothing has changed. How can I solve this problem.
I use an apache 2.2.6 webserver with mod_jk. The folder xwiki is correctly
deployed by tomcat.
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
Hello,
I'm using XWiki notification API (
http://platform.xwiki.org/xwiki/bin/view/DevGuide/Notifications) and now I
need to change a property of the document that is being changed by the user.
I tried simply changing the value but this does not persist it - after
rebooting the server the value is not there anymore.
Using the context.getWiki.saveDocument method was not a very bright idea
either because it started an infinite recursion - it called my notification
code back again.
So, does anybody know what could I do?
Thank you very much,
--
Tiago Rinck Caveden
http://caveden.multiply.com
Hi all,
The hsqldb standalone zip distribution for XWiki Watch 1.0 RC 1 has been
released with wrong hibernate configuration file so you should use the
.jar installer until the XWiki Watch 1.0 Release Candidate 2 will be
released with the correct configuration (which is not very far in the
future).
Regards,
the XWiki Watch development team
Hello,
So I have LDAP authentication working now because of the awesome
documentation provided. I have noticed a small problem however. When a
user logs in with their active directory logon information for example,
it will create the Xwiki user account, firstname.lastname, which is
fine. However if they enter Firstname.lastname the second time they
logon (notice the capital letter), it will create another entry which is
a duplicate because of the capital letter. It seems as though the logon
username box is case sensitive, is there a way to prevent this?
Thanks!
how can I fetch the email address of a user if I have his login id.
Shruti Modi
Mailto: shruti.modi(a)tcs.com
=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you
On the xwiki.org there is limited information about multi-language.
I understand that the pages, the user content, can be in many languages
But how to translate the user interface, the buttons etc...
thx
Gerritjan
The XWiki development team is pleased to announce the release of XWiki
Enterprise 1.5 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Last milestone of the XWiki Enterprise 1.5 version.
Main changes:
* [Experimental] New ability to set the wiki syntax used in a page
(Confluence,MediaWiki,TWiki,JSPWiki,Creole), thanks to the new
Rendering Engine
* Brand new Administration Application (see http://tinyurl.com/4qym7w)
* Universal Edit button support (see http://universaleditbutton.org/)
* Reduced execution time of Selenium tests (from 12-15 minutes to 7 minutes)
* An administrator can modify a user profile or password when
visiting a user profile page
* The copy page feature is now available from the top menu (Actions > Copy)
* XWiki properties names are now translatable
* new renamePage method in the XML-RPC API
* Slightly modified header
* New Croatian translation
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise15M2
Note that the general goals of XE 1.5 are :
* More bug fixes
* Better performance
* More automated tests
* Overhaul of the Administration
Thanks,
The XWiki dev team
Hi Guys:
I have been reading everywhere and I can't find a solution that fits my
problem.
I have 2 users
- Admin (Standard).
- User1 (All possible rights for Space called Test).
Now I acces Test.WebPreferences And I get 2 Tabs:
- Space Prefs.
- Space Rights.
(So far so good)
But when I press the Space Rights Tab the Ajax table that should show my
users and groups doesnt show any names... The Only correct information it
displays is how many of each existe.
In the meanwhile When I log in as Admin and access the Administration area
everything works fine both tables on global rights and space rights work
fine.
Can anybody help me out? Or give me a hint to where I should look to solve
this problem.
--
View this message in context: http://www.nabble.com/Space-Admin-Space-Rights-tp18082370p18082370.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Pleeeeease help!!! this is something I thought would be really trivial but
it seems not!!
In the WYSIWYG editor I have inserted an image, used the add link to add a
link to the image (as a file attachement) and clicked 'save and view'.
The resultant page does not display the image, instead it shows
{image:projector.gif|ReplaceTravelerData.wmv}
The code the WYSIWYG editor has produced (that is clearly not being
interpreted properly) is:
{attach:{image:projector.gif|106|106}|ReplaceTravelerData.wmv}
Can anyone save my sanity and point out the obvious mistake??
Many Thanks
Steve Borrett
***********************************************************************************
This e-mail and attachments are intended for the above name only and may be confidential. If they have come to you in error, you must take no action based on them, nor must copy or show them to anyone; please reply to this e-mail and report the error.
Security warning: Please note that this e-mail has been created in the knowledge that the internet is not a one hundred percent secure communication medium. We advise that you understand and observe this lack of security when e-mailing us.
Virus: Although we have taken steps to ensure that this e-mail and attachments are free from any virus, we advise that in keeping with good practice the recipient should ensure they are actually virus free. If you have received this e-mail in error please notify:
postmaster(a)pindar.com
This message has been scanned for viruses by MailControl - www.mailcontrol.com
Hi,
I can start with the http://playground.xwiki.org instance, but i prefer
to have my own instance (malemy.xwiki.org) :)
Thanks,
Philippe
>
> ------------------------------------------------------------------------
>
> Sujet:
> Re: [xwiki-users] [myxwiki] new wiki request
> Expéditeur:
> Vincent Massol <vincent(a)massol.net>
> Date:
> Sun, 22 Jun 2008 16:20:35 +0200
> Destinataire:
> XWiki Users <users(a)xwiki.org>
>
> Destinataire:
> XWiki Users <users(a)xwiki.org>
>
>
> Hi Philippe,
>
> We have a test instance at http://playground.xwiki.org if you just
> want to do a quick test. Another option is to download it from
> xwiki.org and install it locally.
>
> We can also create an instance for you on myxwiki.org if you prefer.
>
> Let us know what you prefer.
>
> Thanks
> -Vincent
>
> On Jun 22, 2008, at 4:10 PM, Philippe Debreucq wrote:
>
>> I just want to try the XWiki wiki, and test its fonctionnalities.
>>
>> My user name is 'pdebreucq', and i would like to have 'malemy' as server
>> name.
>>
>> Thank's a lot!
Hi,
I have just installed the jar in my WebLogic/Oracle ear starting to test it.
I have reached a problem that was solved by adding <property name="query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property> to the hibernate config.
And Now I am getting the attached exception.
The tables where created in the DB and XWIKIRCS was even filled with 16 records, so it looks like the DB connection is working.
Even tough the exception where thrown, the XWiki WebHome was opened (even tough when I have clicked the administration I have got exception on page.)
Please assist.
Thanks a lot.
Gilad
2008-06-24 11:58:09,356 ERROR com.xpn.xwiki.plugin.watchlist.WatchListPlugin - Cannot initialize WatchListJob
com.xpn.xwiki.XWikiException: Error number 3201 in 3: Exception while saving document Scheduler.WatchListJob1
Wrapped Exception: Error number 3212 in 3: Exception while saving property jobName of object Scheduler.WatchListJob1
Wrapped Exception: dereferenced: baseproper0_.id.id [select prop.name from com.xpn.xwiki.objects.BaseProperty as prop where prop.id.id = :id and prop.id.name= :name]
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiDoc(XWikiHibernateStore.java:573)
at com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:97)
at com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:91)
at com.xpn.xwiki.XWiki.saveDocument(XWiki.java:1131)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.initWatchListJob(WatchListPlugin.java:275)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.initWatchlistJobs(WatchListPlugin.java:292)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.init(WatchListPlugin.java:125)
at com.xpn.xwiki.plugin.XWikiPluginManager.initPlugin(XWikiPluginManager.java:155)
at com.xpn.xwiki.plugin.XWikiPluginManager.addPlugin(XWikiPluginManager.java:92)
at com.xpn.xwiki.plugin.XWikiPluginManager.addPlugins(XWikiPluginManager.java:120)
at com.xpn.xwiki.XWiki.preparePlugins(XWiki.java:880)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:810)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:732)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:318)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:515)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1163)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:396)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.JCoreFilter.doFilter(JCoreFilter.java:141)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.SecurityFilter.doFilter(SecurityFilter.java:128)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.SSLFilter.doFilter(SSLFilter.java:27)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(Unknown Source)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 3212 in 3: Exception while saving property jobName of object Scheduler.WatchListJob1
Wrapped Exception: dereferenced: baseproper0_.id.id [select prop.name from com.xpn.xwiki.objects.BaseProperty as prop where prop.id.id = :id and prop.id.name= :name]
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiProperty(XWikiHibernateStore.java:1310)
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiCollection(XWikiHibernateStore.java:926)
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiDoc(XWikiHibernateStore.java:552)
at com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:97)
at com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:91)
at com.xpn.xwiki.XWiki.saveDocument(XWiki.java:1131)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.initWatchListJob(WatchListPlugin.java:275)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.initWatchlistJobs(WatchListPlugin.java:292)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.init(WatchListPlugin.java:125)
at com.xpn.xwiki.plugin.XWikiPluginManager.initPlugin(XWikiPluginManager.java:155)
at com.xpn.xwiki.plugin.XWikiPluginManager.addPlugin(XWikiPluginManager.java:92)
at com.xpn.xwiki.plugin.XWikiPluginManager.addPlugins(XWikiPluginManager.java:120)
at com.xpn.xwiki.XWiki.preparePlugins(XWiki.java:880)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:810)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:732)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:318)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:515)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1163)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:396)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.JCoreFilter.doFilter(JCoreFilter.java:141)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.SecurityFilter.doFilter(SecurityFilter.java:128)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.SSLFilter.doFilter(SSLFilter.java:27)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(Unknown Source)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
Wrapped Exception:
org.hibernate.QueryException: dereferenced: baseproper0_.id.id [select prop.name from com.xpn.xwiki.objects.BaseProperty as prop where prop.id.id = :id and prop.id.name= :name]
at org.hibernate.hql.classic.PathExpressionParser.token(PathExpressionParser.java:167)
at org.hibernate.hql.classic.WhereParser.doPathExpression(WhereParser.java:347)
at org.hibernate.hql.classic.WhereParser.doToken(WhereParser.java:382)
at org.hibernate.hql.classic.WhereParser.token(WhereParser.java:263)
at org.hibernate.hql.classic.ClauseParser.token(ClauseParser.java:86)
at org.hibernate.hql.classic.PreprocessingParser.token(PreprocessingParser.java:108)
at org.hibernate.hql.classic.ParserHelper.parse(ParserHelper.java:28)
at org.hibernate.hql.classic.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:216)
at org.hibernate.hql.classic.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:185)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:77)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:56)
at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:72)
at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:133)
at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:112)
at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1623)
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiProperty(XWikiHibernateStore.java:1271)
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiCollection(XWikiHibernateStore.java:926)
at com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiDoc(XWikiHibernateStore.java:552)
at com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:97)
at com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:91)
at com.xpn.xwiki.XWiki.saveDocument(XWiki.java:1131)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.initWatchListJob(WatchListPlugin.java:275)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.initWatchlistJobs(WatchListPlugin.java:292)
at com.xpn.xwiki.plugin.watchlist.WatchListPlugin.init(WatchListPlugin.java:125)
at com.xpn.xwiki.plugin.XWikiPluginManager.initPlugin(XWikiPluginManager.java:155)
at com.xpn.xwiki.plugin.XWikiPluginManager.addPlugin(XWikiPluginManager.java:92)
at com.xpn.xwiki.plugin.XWikiPluginManager.addPlugins(XWikiPluginManager.java:120)
at com.xpn.xwiki.XWiki.preparePlugins(XWiki.java:880)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:810)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:732)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:318)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:515)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:136)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1163)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:396)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.JCoreFilter.doFilter(JCoreFilter.java:141)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.SecurityFilter.doFilter(SecurityFilter.java:128)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at tti.jcore.presentation.filters.SSLFilter.doFilter(SSLFilter.java:27)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(Unknown Source)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
The XWiki development team is pleased to announce the release of XWiki
Watch 1.0 RC 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download#HXWikiWatch !
This is the first release candidate for the 1.0 version, the final release
being planned for end June.
Changes from 1.0M4:
* fixed interface and usability bugs (XWATCH-10, XWATCH-104,
XWATCH-109, XWATCH-110, XWATCH-145, XWATCH-156, XWATCH-157,
XWATCH-159, XWATCH-164, XWATCH-126)
* improved usage coherence (XWATCH-77, XWATCH-124, XWATCH-133,
XWATCH-84, XWATCH-128, XWATCH-123)
* added installers to XWiki Watch (XWATCH-85)
For more information, see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesWatch10RC1 .
Thanks,
The XWiki dev team
Marius,
Looking forward to it!
Best Regards,
Richard
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
Of Marius Dumitru Florea
Sent: 24 June 2008 11:07
To: XWiki Users
Subject: Re: [xwiki-users] New XWIKI WYSIWYG editor
Hi Richard,
Thank you for your interest in the new WYSIWYG editor. We're currently
working on it and expecting to have a first version by the end of July.
Thanks,
Marius
> Hi,
>
> Does anyone know how the new WYSIWYG editor development going?
>
> I'd be happy to help test it out and help work out any bugs in it.
>
> Regards,
>
> Richard
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
> is confidential. It may also be legally privileged. It is intended only
> for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose, copy,
> circulate or in any other way use or rely on the information contained in
> this e-mail. Such unauthorised use may be unlawful. We may monitor all
> e-mail communications through our networks. If you have received this
> e-mail
> in error, please inform us immediately on +44 (0) 1749 672081 and delete
> it
> and all copies from your system. We accept no responsibility for changes
> to
> any e-mail which occur after it has been sent. Attachments to this e-mail
> may contain software viruses which could damage your system. We therefore
> recommend you virus-check all attachments before opening. A business of
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
> Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
> 868273
> _______________________________________________
> 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
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Hi,
Does anyone know how the new WYSIWYG editor development going?
I'd be happy to help test it out and help work out any bugs in it.
Regards,
Richard
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Jan,
How's your email plugin development going?
When do you think you'd be able to make it available to other XWiki users?
Best Regards,
Richard
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
Of Jan Kodera
Sent: 02 May 2008 14:43
To: XWiki Users
Subject: Re: [xwiki-users] Multiple file attaching
Hi,
i made a plugin which is capable to get email from pop3 and loaded to xwiki
as a page. It works with attachments too. So you can easy forward your mails
to xwiki from outlook.
It is not ready for publish, because it is not document well. But in a
couple of weeks I will publish it on xwiki.org
Jan
On Fri, May 2, 2008 at 12:54 PM, goldring, richard <
richard.goldring(a)uk.thalesgroup.com> wrote:
> Hi,
>
> Does anyone know how to select files from a directory and have XWiki
> attach
> all those files in that directory to a wiki page? I'm thinking I could
> have
> a directory with a load of outlook emails copied there that would be
> useful
> to attach and index in a wiki page so the emails can be searched within
> XWiki - except Lucene doesn't seem to be able to search attached Outlook
> email files as I've just discovered.
>
> What I want is to be able to get emails into XWiki so say a marketing
> department could search on them - is there another way?
>
> Regards,
>
> Richard
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
> Of Benjamin K Leung
> Sent: 01 May 2008 14:33
> To: 'XWiki Users'
> Subject: Re: [xwiki-users] Import/Export
>
>
> Hi,
>
> I think the export failed due to insufficient memory. Increasing the
> memory
> pool available the container would solve this.
>
> I agree the export code should definitely generate an error message
> appropriately.
>
> BL
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
> Of
> goldring, richard
> Sent: Thursday, May 01, 2008 3:54 AM
> To: 'XWiki Users'
> Subject: Re: [xwiki-users] Import/Export
>
> Vincent,
>
> I had this exception while (having first attached the file) importing
> (clicking on the file) (even when I exported from 1.3.2 and then tried to
> import again)
>
> er 11015 in 11: Exception while importing
> Wrapped Exception: Error number 2002 in 2: Error parsing xml
> Wrapped Exception: Error on line -1 of document : Premature end of file.
> Nested
> exception: Premature end of file.
> com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
> importin
> g
> Wrapped Exception: Error number 2002 in 2: Error parsing xml
> Wrapped Exception: Error on line -1 of document : Premature end of file.
> Nested
> exception: Premature end of file.
> at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:94)
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:198)
> at
> org.apache.struts.action.RequestProcessor.processActionPerform(Reques
> tProcessor.java:431)
>
> ...and then a message saying there was no documents in the file!
>
> I eventually traced it down to an empty "WebHome" file in the archive - I
> deleted this from the archive and the import worked. Why the export
> produced
> an empty WebHome file - I don't know!? But I hope this information helps
> other users with similar difficulties.
>
> Maybe the export code needs refactoring so it can't produce empty files,
> and
> maybe the import code needs to be more robust so it doesn't produce an
> exception if it fails to read anyone file, but produces an message to flag
> up the problem but continues processing the other files so the import
> doesn't fail completely because of one file. I wish I had some to time to
> help fix this at this time ... maybe these issues can be addressed later
> in
> the year.
>
> Best Regards,
>
> Richard
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
> Of Vincent Massol
> Sent: 29 April 2008 07:31
> To: XWiki Users
> Subject: Re: [xwiki-users] Import/Export
>
>
>
> On Apr 29, 2008, at 8:25 AM, goldring, richard wrote:
>
> > Hi all,
> >
> > I've exported from xwiki enterprise hsqldb 1.2 milestone 2 and tried
> > to
> > import into xwiki enterprise hsqldb 1.3.2 by attaching the exported
> > file,
> > but when I click on the attached file it doesn't list the exported
> > files
> > within so I can import them.
>
> That should work fine. So you need to tell us what error you get in
> the xwiki logs.
> Also make sure you click only once and you wait enough. If your XAR is
> large it'll take time to display the items.
>
> BTW what's the size of your XAR?
>
> > Anyone know how to get my pages from 1.2 to 1.3.2?
>
> See http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Backup
>
> Thanks
> -Vincent
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
> is confidential. It may also be legally privileged. It is intended only
> for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose, copy,
> circulate or in any other way use or rely on the information contained in
> this e-mail. Such unauthorised use may be unlawful. We may monitor all
> e-mail communications through our networks. If you have received this
> e-mail
> in error, please inform us immediately on +44 (0) 1749 672081 and delete
> it
> and all copies from your system. We accept no responsibility for changes
> to
> any e-mail which occur after it has been sent. Attachments to this e-mail
> may contain software viruses which could damage your system. We therefore
> recommend you virus-check all attachments before opening. A business of
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
> Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
> 868273
> _______________________________________________
> 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
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
> is confidential. It may also be legally privileged. It is intended only
> for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose, copy,
> circulate or in any other way use or rely on the information contained in
> this e-mail. Such unauthorised use may be unlawful. We may monitor all
> e-mail communications through our networks. If you have received this
> e-mail
> in error, please inform us immediately on +44 (0) 1749 672081 and delete
> it
> and all copies from your system. We accept no responsibility for changes
> to
> any e-mail which occur after it has been sent. Attachments to this e-mail
> may contain software viruses which could damage your system. We therefore
> recommend you virus-check all attachments before opening. A business of
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
> Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
> 868273
> _______________________________________________
> 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
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273