Thanks Sergiu ... I'll try that.
Would be a great feature to have in XWiki to have a plugin that enables you
to import an image and add hot spots to
link out to other wiki pages. Not sure how that could be done though.
Regards,
Richard
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
Of Sergiu Dumitriu
Sent: 07 May 2009 12:14
To: XWiki Users
Subject: Re: [xwiki-users] XWiki diagram linking
goldring, richard wrote:
> Hi,
>
> Does anyone know if its possible in XWiki to create a diagram (e.g. UML
> diagram, organisational diagram, etc) where you can click on a box or some
> text on the diagram and go to the relevant wiki page and maybe from that
> page back to its associated diagram? This would be quite useful for
> navigating from a diagram to its underlying references.
Not yet, at least not as an official feature.
But you can use HTML tricks to do that: make a png image with an
imagemap, on which you can define areas and their links. The problem is
that you will either have to define the map yourself, or hope that your
UML tool can do that for you.
Another option is to export the image as SVG, which has tags for links,
then edit the SVG and add the links. The only problem is that SVG is not
supported natively by IE.
--
Sergiu Dumitriu
http://purl.org/net/sergiu/
_______________________________________________
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 sender's telephone number above
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.
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Hi
I'm using a modal window (subModal) in my xwiki and things work fine
until I try to use it while in 'inline' mode and using Firefox 3.0.10
(IE works).
The problem is that the modal window opens and closes straight away
making the parent page go from 'inline' to 'preview' mode!!
Looks like js method 'window.setTimeout' is not executing.
Has anyone had js probs in the past?? Do xwiki developers have any
idea?
I can see two errors in the Error console:
Error: Permission denied to get property XULElement.accessibleType
Source File:
http://localhost:8082/xwiki/resources/js/prototype/prototype.js
Line: 2015
And
Error: Permission denied to get property XULElement.accessibleType
Source File:
http://localhost:8082/xwiki/bin/jsx/scripts/subModal?language=en
Line: 1
(Problem here is that xwiki displayed js script on one line)
Ajdin
--------------------------------------------------------
NOTICE
This message and any files transmitted with it is intended for the addressee only and may contain information that is confidential or privileged. Unauthorised use is strictly prohibited. If you are not the addressee, you should not read, copy, disclose or otherwise use this message, except for the purpose of delivery to the addressee.
Any views or opinions expressed within this e-mail are those of the author and do not necessarily represent those of Coventry University.
Hello friends,Found out that the page where the new ModalBox Application Xar
is to be downloaded is a deleted page
URL :
http://code.xwiki.org/xwiki/bin/view/Applications/ModalBoxApplicationDownlo…
It looks like a really cool app to have on the wiki. For me, it will be a
nice workaround to the balloon styled tooltip I had requested help with on
the mailing list some time back.
Hope the modal box is available soon...
>>Hi,
>>
>> I'm working with the xwiki-xmlrpc code, and I'm wondering...
>>
>> What's the story behind swizzle-confluence-1.1-20070829-xwiki.jar?
>>
>> Where can I get the source?
>>
>> Thanks,
>>
>Hi Dan,
>
>this was a custom package created long time ago from the Swizzle 1.1 +
>some custom patches.
>Those patches got eventually committed in the Swizzle trunk but since
>there has not been a 1.2 release since, we kept that custom jar.
>
>You can assume that the source of that jar is the one you find in the
>Swizzle trunk:
>http://svn.codehaus.org/swizzle/trunk/swizzle-confluence/
>
>Cheers,
>Fabio
Fabio,
Thanks for the reply.
The source at the above URL is not the code referenced in, e.g. org.xwiki.plugins.eclipse.model.impl.XWikiConnection:
import org.codehaus.swizzle.confluence.Confluence;
import org.codehaus.swizzle.confluence.IdentityObjectConvertor;
import org.codehaus.swizzle.confluence.Space;
import org.codehaus.swizzle.confluence.SpaceSummary;
import org.codehaus.swizzle.confluence.SwizzleConfluenceException;
import org.codehaus.swizzle.confluence.SwizzleXWiki;
Specifically, SwizzleXWiki, SwizzleConfluenceException, and IdentityObjectConvertor do not exist in that codebase.
I'm creating an XmlRpc client, and am using the XEclipse code as a pattern for my code. I'd like to have the source for the version of swizzle-confluence that implements these classes.
Thanks,
Dan
Hello,
I just started to use xwiki (and I am quite new to wikis but understand
their basic concepts), and in the process, developed a bit of code which
I would like to share (add to the code snippets on the xwiki).
I have a user account on the xwiki.org and can log in.
Every time I use the "Add Snippet" button, it opens the form to name
the page (which I fill in), then there is a form with large window where
I suppose the programming code is to go (this large window
ends with {/pre}).
But, every time I put the code into the form (even starting it with
{pre}), the code never shows in the preview (it is a velocity code
snippet BTW).
So the question is, would you please explain to me how am I supposed to
add the code snippet to xwiki.org? Pointers to documentation welcome.
Kind regards,
Vlad
PS: This is obviously a combination of me being a beginner at
xwiki and not understanding what stuff is expected of me where,
when adding the code snippet.
Hi,
I'm trying to set up XWiki with our single sign on and group
management infrastructure, I've so far managed to handle SSO using CAS
but I'm stuck when it comes to managing groups.
The XWikiUsers are created on demand when they first log in, users
belong to groups, those groups are managed outside of XWiki.
My question is, what API should I use
(XWikiGroupsService,XWikiRightsService?) to materialize those groups
in XWiki so they appear when setting access rights on pages.
Any help would be greatly appreciated.
Mathias.
Hi,
I'm working with the xwiki-xmlrpc code, and I'm wondering...
What's the story behind swizzle-confluence-1.1-20070829-xwiki.jar?
Where can I get the source?
Thanks,
Dan Svoboda
Dept of Structural Biology
University of Pittsburgh
Hi,
3 days ago, we took this following error at xwiki 1.8 startup. The install
is the standalone "Stable: xwiki-enterprise-installer-windows-1.8.2.exe "
with the hdsqldb database by default.
We use xwiki since 2 or 3 months and the database is large of 82Mo.
- I tried to use files of the database (replacing database folder) on
another clean standalone install, and the problem is same.
- I tried to use default database folder of clean install on my problematic
install, and it works.
- I tried to use save of my database folder (5-6 days old), and the problem
is same.
I see in error message several lines with "Cannot create
PoolableConnectionFactory (Out of Memory)" or "Caused by:
java.sql.SQLException: Out of Memory", but i need real help to understand
and fix my problem.
Please any help is welcome, thanks.
HTTP ERROR: 500 Error number 3 in 0: Could not initialize main XWiki
context Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from
param xwiki.store.migration.manager.class Wrapped Exception: Error number 0
in 3: Exception while hibernate execute Wrapped Exception: Could not create
a DBCP pool. There is an error in the hibernate configuration file, please
review it. RequestURI=/xwiki/bin/view/Main/ Caused by:
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main
XWiki context Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from
param xwiki.store.migration.manager.class Wrapped Exception: Error number 0
in 3: Exception while hibernate execute Wrapped Exception: Could not create
a DBCP pool. There is an error in the hibernate configuration file, please
review it. at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:326) at
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:387) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1124)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:145)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:111) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:361)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:417) at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:324) at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:535) at
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:865)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:538) at
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212) at
org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:522)
Wrapped Exception: com.xpn.xwiki.XWikiException: Error number 3001 in 3:
Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from
param xwiki.store.migration.manager.class Wrapped Exception: Error number 0
in 3: Exception while hibernate execute Wrapped Exception: Could not create
a DBCP pool. There is an error in the hibernate configuration file, please
review it. at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1002)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:726) at
com.xpn.xwiki.XWiki.(XWiki.java:668) at
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:316) at
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:387) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1124)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:145)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:111) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:361)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:417) at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:324) at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:535) at
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:865)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:538) at
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212) at
org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:522)
Wrapped Exception: com.xpn.xwiki.XWikiException: Error number 0 in 3:
Exception while hibernate execute Wrapped Exception: Could not create a DBCP
pool. There is an error in the hibernate configuration file, please review
it. at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1052)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1082)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source) at
com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:994) at
com.xpn.xwiki.XWiki.initXWiki(XWiki.java:726) at
com.xpn.xwiki.XWiki.(XWiki.java:668) at
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:316) at
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:387) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1124)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:145)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:111) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:361)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:417) at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:324) at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:535) at
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:865)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:538) at
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212) at
org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:522)
Wrapped Exception: org.apache.commons.dbcp.SQLNestedException: Cannot
create PoolableConnectionFactory (Out of Memory) at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:855)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414)
at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)
at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073)
at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:165)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:562)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1038)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1082)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source) at
com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:994) at
com.xpn.xwiki.XWiki.initXWiki(XWiki.java:726) at
com.xpn.xwiki.XWiki.(XWiki.java:668) at
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:316) at
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:387) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135) at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115) at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1124)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:145)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:111) at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1115)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:361)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:417) at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:324) at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:535) at
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:865)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:538) at
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212) at
org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:522)
Caused by: java.sql.SQLException: Out of Memory at
org.hsqldb.jdbc.Util.sqlException(Unknown Source) at
org.hsqldb.jdbc.jdbcConnection.(Unknown Source) at
org.hsqldb.jdbcDriver.getConnection(Unknown Source) at
org.hsqldb.jdbcDriver.connect(Unknown Source) at
org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:37)
at
org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:290)
at
org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:877)
at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:851)
... 60 more Powered by Jetty://
--
View this message in context: http://n2.nabble.com/Problem-with-HSQLDB-Database-please-Help%21%21-tp27921…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi xwiki-users,
Quick proposal - would it be possible to enhance the box macro so that it
includes two extra (optional) parameters:
"hideable"=[true/false]
"initial"=[show/hide]
It would be useful to have a show/hide button on box macros (and all its
children) using JavaScript (possibly based on
http://code.xwiki.org/xwiki/bin/view/Snippets/ShowHideDIVSnippet). Thanks!
Hi,
The XWiki translation tool located at http://l10n.xwiki.org/ has been
upgraded yesterday. Starting today, new message strings are automatically
loaded into the translation tool every night at 2:00 am Paris time. This
means that whenever a developer commits a new portion of code that requires
to be translated, it will show up on http://l10n.xwiki.org/ the next day.
The immediate effect of this change is that approximately 120 new messages
to translate have been added for XWiki Enterprise since yesterday. Some of
the languages that used to be finished (such as german, romanian or spanish)
are no longer complete. You can check the actual numbers here:
http://l10n.xwiki.org/xwiki/bin/view/XE/XWikiCoreResources
Additionally, some contributions have not been reviewed yet. Reviewing
translations helps finding & fixing typos and other mistakes. It would be
great if members from the community could look at it and review translations
where applicable.
Since we're close to the release date of XE 1.8.3 (and soon XE 1.9 M2) it
would be awesome if some of you guys could update the tool with missing
translations and reviews. I'm done with French already, 15 languages to go
;-)
Many thanks in advance on behalf of the community,
Guillaume
--
Guillaume Lerouge
Product Manager - XWiki
Skype ID : wikibc
http://guillaumelerouge.com/
Hi xwiki-users,
Just wondering if it's possible to add a macro inside a code macro? What I
want to do is something like this:
{{code language="sql"}}
select *
from xyz
where from_date = '{{date-macro date="-1b" format="yyyyMMdd"/}}' -- The
date-macro returns the last business date in yyyyMMdd format
{{/code}}
Thanks in advance!
Hi
After a while I figured out how to add code blocks etc to a blog
entry. This seems to use the wiki 1.0 syntax and I was wondering if
there is a chance to use 2.0 instead because I only use 2.0 for the
wikis and I would love to keep one syntax around.
Cheers
Andreas Schaefer
As a developer I am very interested to be able to display code
(snippets) inside a blog entry.
Any idea or hints on how to accomplish that?
Thanks
Andreas Schaefer
CEO of Madplanet.com Inc.
Email: andreas.schaefer(a)madplanet.com
schaefera(a)me.com
Twitter; andy_mpc
AIM: schaefera(a)me.com
HI,
I have a page that should be readable for multiple translations.
Currently it has a translation 'en' (for english) which is the default
for the xwiki.
The problem is that it also claims that the original version is
'.' (this page is empty)
1) How can such a 'original' version have been created? (to prevent it)
2) How can I remove this version, so the 'en' version is seen as the
original
3) Or is the '.' original 'good' behaviour?
Gerritjan Koekkoek
Hi
I'm trying to use subModal javascript modal tool. I got it to work but
my modal window that contains a simple form also contains XWiki skin
(with menu etc.).
Is there a way to create a page without the skin? This is similar to
the style in modal window in the Admin area when editing a group for
example!
Is there an XWiki js modal too that can be used instead of an external
tool like subModal?
Ajdin
--------------------------------------------------------
NOTICE
This message and any files transmitted with it is intended for the addressee only and may contain information that is confidential or privileged. Unauthorised use is strictly prohibited. If you are not the addressee, you should not read, copy, disclose or otherwise use this message, except for the purpose of delivery to the addressee.
Any views or opinions expressed within this e-mail are those of the author and do not necessarily represent those of Coventry University.
Hi all,
There are two (three) applications handling tasks: The "Task Manager Application" and the "(Extended) ToDo Application". AND there is a "Wanted Application" ... Work Order Management, where you can create a list of workers, and create tasks (define properties like requester dept. and name, project containing the task, date of creation, details, and notes). Assign tasks to a worker, and track hours in each task, finally close tasks. Should be able to extract simple reports, like n. of open/closed tasks, min., max. and average hours per task, listing per requester, and per worker, etc.
What's the development direction of these applications? The main advantage of the "Task Manager Application" is the link to a Wiki Page. This allows making notes, adding open issues ... to a page - the local view. The global view is the central list of all open issues. The two main directions to look for open issues. Jira is a funny tool too; however I need the direct link to the Wiki page.
That's what I like, the question is: What's going on?
Thanks
mb
Dear xwiki experts,
I politely ask for assistance, since many-days-troubleshooting on my own
brought no success.
I'm still getting JBoss Application Server errors, as described below.
What am I doing wrong? All steps are followed as described on xwiki.org.
Many thanks in advance for your expertise!
MY INFRASTRUCTURE:
DEBIAN 5.0.1
JBoss GA 5.0.1 (no add-ons, no other applications)
JDK 5.0
PostgreSQL 8.3.6-1
postgresql-8.3-604.jdbc4.jar JDBC Java Driver
MY INSTALLATION STEPS:
1. Installed JBoss GA 5.0.1
2. created directory
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war
3. copied the content of xwiki-enterprise-web-1.8.1.war into directory
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war/
4. Uncommented the resource-ref in
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war/WEB-INF/web.xml as
follows:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/XWikiDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
5. Modified the
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war/WEB-INF/hibernate.cfg.xml
as follows:
<property
name="connection.url">jdbc:postgresql://localhost:5432/xwiki</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property
name="connection.driver_class">org.postgresql.Driver</property>
<property
name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
6. Downloaded the jboss-web.xml and placed it into the directory
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war/WEB-INF
7. Installed PostgreSQL 8.3.6-1 per command apt-get insall postgresql
8. Executed following commands as postgres user:
# createuser xwiki -S -D -R -P -Upostgres
# createdb xwiki -Eunicode -Oxwiki -Upostgres
9. Copied postgresql-8.3-604.jdbc4.jar Java Driver into
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war/WEB-INF/lib
10. Uncommented xwiki.store.hibernate.path=/WEB-INF/hibernate.cfg.xml line
in the file
/usr/local/jboss.ga.5.0.1/server/default/deploy/xwiki.war/WEB-INF/xwiki.cfg
JBOSS GA ERROR:
When I start the JBoss Application Server, I get the following error:
11:12:19,299 INFO [TomcatDeployment] deploy, ctxPath=/
11:12:19,793 INFO [TomcatDeployment] deploy, ctxPath=/jmx-console
11:12:20,290 INFO [TomcatDeployment] deploy, ctxPath=/xwiki
11:12:21,311 ERROR [JBossContextConfig] XML error parsing: context.xml
org.jboss.xb.binding.JBossXBRuntimeException: Failed to create a new SAX
parser
at
org.jboss.xb.binding.UnmarshallerFactory$UnmarshallerFactoryImpl.newUnmarshaller(UnmarshallerFactory.java:100)
at
org.jboss.web.tomcat.service.deployers.JBossContextConfig.processContextConfig(JBossContextConfig.java:557)
at
org.jboss.web.tomcat.service.deployers.JBossContextConfig.init(JBossContextConfig.java:543)
at
org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:279)
--
View this message in context: http://n2.nabble.com/XWIKI-installation-error-on-JBOSS-5.0.1--%21%21%21PLEA…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi Sergiu,
The link that is displayed is :
http://IPaddr:8080/xwiki/bin/login/XWiki/XWikiLogin?srid=leMZxkWI
I try to give you all information :
My virtual Wiki has a space called PVCS. There is special rights handeling in it :
- In the users tab, i changed nothing
- In the groups tab, i gave the green check to all functions for a group called "PVCSAdmin", i changed nothing for the XWikiAdminGroup and for XWikiAllGroup i gave the access (green check) to View and Comment only (other function have the red stop sign)
If i go to the WebHome page of the space without login, it opens the previous given link. Once logged, i can see my page.
FYI, the link to the virtual wiki login page is : http://IPaddr:8080/xwiki/wiki/technicalwiki/login/XWiki/XWikiLogin?xredirec…
Hope it helps
-----Message d'origine-----
De : users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] De la part de Sergiu Dumitriu
Envoyé : lundi 27 avril 2009 17:06
À : XWiki Users
Objet : Re: [xwiki-users] LDAP users authentication
PERINAUD Christophe wrote:
> Hi,
>
>> No, there's no reason for this. A possible explanation:
>>
>> - The link followed was somehow wrong, pointing to a non-existing
> wiki.
>
> Given to another user (that has already connect in), the link works
I'm not saying that the link is wrong, but that it got wrong somewhere
in the process: bad copy/paste in the mail, bad copy/paste in the
browser, etc.
>> - This normally redirects to the main wiki to a page explaining that
>> "this wiki does not exist".
>
> The wiki exists. After login the message is that the user has no right
> to view the page
Can you tell me what was the name of the page that was displayed to the
user? The one from the main wiki.
>> - The administration menu could only appear if the rights on your
> main
>> wiki are wrongly set. I'd advise you revise your rights, since this is
> a
>> potential security issue.
>
> But in this case why after deleting local profile on the main wiki and
> asking the user to connect on the virtual wiki, everything goes fine
> (able to see and no admin rights) ? I did not change rights before
> deleting.
This is normal behavior. Connecting to a local wiki is just that,
connecting to a local wiki, there's no relation to the main wiki and its
rights. The fact that the first time the user ended up on the main wiki
is an exceptional case, which must be investigated. Ignore the normal
behavior, it is working fine. Debug the main wiki rights issue.
> I checked the rights space and the rights page and there is no
> restriction. On the main wiki, only unregistered users have restriction
> (no edition)
There's no reason why visiting a local wiki should redirect to the
global one, except the one that I stated above. Try logging in on the
main wiki, to see what's happening. Try using that user's account on
both the global and local wiki.
--
Sergiu Dumitriu
http://purl.org/net/sergiu/
_______________________________________________
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
I'm using XWiki (1.3) in our company. For testing of new functionality
(especially in wysiwyg editor) I need the newest version of well configured
XWiki. I registered as "kaferos" and I would like to use "twig" as server
name.
Thanks
Frantisek Kall
--
View this message in context: http://n2.nabble.com/-myxwiki--new-wiki-request-tp2732206p2732206.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello folks,
I am sorry to revive an old question I had asked in this forum but I wanted
to share this with everyone.
My statistics were not working on XWiki 1.7.2 originally.
Finally, I figured this out.
The database was MySql ver 4.x.x.
I got this legacy database to work on since XWiki was on testing mode for my
organization back then. I really did not have any option in the choice of
the MySql version at that point of time.
I had almost given up on getting the stats to work. But in the process of
setting up a test XWiki I installed MySql 5.4.
And the stats module worked !!!
Guess, I missed something in the XWiki install guides or maybe the version
compatibility (for database & app servers) is not mentioned in the install
guides.
My most sincere thanks to Sergiu & Thomas who took the time to answer my
questions when this thread was active.
Thank you everyone...
On Mon, Mar 9, 2009 at 4:56 AM, Dilipkumar Jadhav <
jadhav.dilipkumar(a)gmail.com> wrote:
> Dear all,
> Thank you so much for your prompt response.
> I've tried to check all the things you have suggested. This is where i
> stand now:
>
> 1. Debug each line of the stats panel
> I printed out the values at the end of each #set line in the most
> edited pages panel. This is what i got as a result:
>
> com.xpn.xwiki.criteria.impl.Scope@19fd285
> com.xpn.xwiki.criteria.impl.Period@11ff313
> com.xpn.xwiki.criteria.impl.Range@4348c6
> []
>
> The final [] in the fourth line above is the value for $stats
>
> 2. The Joda time plugin might be disabled
>
> I see that the line com.xpn.xwiki.plugin.jodatime.JodaTimePlugin is in
> my xwiki.cfg properties
> Also, joda-time-1.4.jar is available in WEB_INF > lib folder
>
> 3. "Maybe you have a "statistics" field set to 0 in
> XWiki.XWikiPreferences (edit in object mode to check)"
> I went to the XWiki.XwikiPreferences page and checked it in the object
> mode. Unfortunately, i do not see any "statistics" field in there.
> Could you please provide me with some exact example that i should look
> for in this page. I see info about panels & skins et al. But nothing
> about the statistics field.
>
> 4. I read the line in the user guide that says - "When statistics are
> globally enabled, storage can be enabled/disabled by wiki using the
> XWikiPreference property "statistics"
> Is this the same statistics field that we are talking about in point 3
> above...If so, i really need some more clarity on looking up
> XWikipreferences in the object mode.
>
> 5. I have disabled the module and enabled it again. But there is still
> no data being displayed on the panels. All it says is - "No statistics
> recorded"
>
> Please help...thank you friends.
>
Hi -
1. Vincent, Thanks for answering my previous question on macros.
2. I have a new question on comments. I know I can prevent groups
from entering comments, and I know I can hide the comment section
completely as well. I was wondering if there is a way to hide comments
(both view and edit) from one group, but allow view and edit and view
only for other groups. I've done some searching but haven't turned up
if that's possibly yet.
Kelly
Kelly Lakas
Project Manager
next wave logistics inc.
28377 davis parkway, suite 607a
warrenville, il 60555
________________________
[office] 847.798.8897
[mobile] 312.307.2079
[web] www.nwlinc.com <http://www.nwlinc.com>
Hi,
I tried to upgrade xwiki enterprise from version 1.2 rc3 to 1.8.2 and
it was by no means an easy task. The good thing is xwiki is very robust
and I managed to recover most of it except the wiki preference. I would
appreciate if someone could help me get the last piece going.
Note: I have imported xwiki Application Adminstration xar. And when i
select the Panel Wizard icon, i get the following messages from the console
[WARNING] Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getHashMap] in XWiki.XWikiPreferences@21,28
[WARNING] Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getArrayList] in XWiki.XWikiPreferences@23,39
[WARNING] Deprecated usage of getter
[com.xpn.xwiki.api.XWiki.getHashMap] in XWiki.XWikiPreferences@54,29
[WARNING] Deprecated usage of getter
[com.xpn.xwiki.api.XWiki.getHashMap] in XWiki.XWikiPreferences@55,8
[WARNING] Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getURLEncoded] in XWiki.XWikiPreferences@114,120
[WARNING] Deprecated usage of getter [com.xpn.xwiki.api.Document.getWeb]
in XWiki.XWikiPreferences@6,16
[ERROR] Introspection Error : Ambiguous method invocation print(null)
for class class org.joda.time.format.DateTimeFormatter
[WARNING] Deprecated usage of getter [com.xpn.xwiki.api.Document.getWeb]
in XWiki.XWikiPreferences@12,11
[WARNING] Deprecated usage of method
[com.xpn.xwiki.api.XWiki.getRecentActions] in XWiki.XWikiPreferences@5,31
[WARNING] Deprecated usage of getter [com.xpn.xwiki.api.Document.getWeb]
in VMProxyArg : Reference@1,15
[WARNING] Deprecated usage of getter [com.xpn.xwiki.api.Document.getWeb]
in XWiki.XWikiPreferences@1,6
[WARNING] Deprecated usage of getter [com.xpn.xwiki.api.Document.getWeb]
in XWiki.XWikiPreferences@3,10
[WARNING] Deprecated usage of getter [com.xpn.xwiki.api.Document.getWeb]
in XWiki.XWikiPreferences@10,20
Any help would be greatly appreciated
Thanks in advance
chung-onn
Hi -
I am trying to make the warning box macro work in 2.0. From the
research I did, it looked like I needed to put it in like this:
{{velocity}}#warning("this needs an update"){{/velocity}}. Then I get
this on render: <div class="warningmessage"><span
class="messagetype">Warning: </span>this needs an update</div>.
I tried {{velocity}}{{xhtml}}#warning("this needs an
update"){{/xhtml}}{{/velocity}} as well, but that failed too - I get an
error box that says "unknown macro: html".
I'm using XWiki Enterprise 1.8.1.18545, installed on my local box.
I'm not a programmer/developer, so I'm a little stuck on the next step
and my investigations so far haven't turned up what I need to do.
I saw also on the footnotes macro page that the comment said that it
didn't work in 2.0, so I'm assuming that needs an update to get it to
work? Or is the comment wrong?
Hate to bother, just looking for a little help.
Kelly Lakas
Project Manager
next wave logistics inc.
28377 davis parkway, suite 607a
warrenville, il 60555
________________________
[office] 847.798.8897
[mobile] 312.307.2079
[web] www.nwlinc.com <http://www.nwlinc.com>
Hello Friends,
I have been asked to connect an external database with XWiki (XWiki will be
used as the application & MySql as the database).
I am using XWiki Enterprise 1.7.14685 :: MySql 5.0.
The external database (let's call it titan) is on the same mysql instance
(port) as XWiki database itself.
The requirement is to fetch user input (in terms of check boxes, radio
buttons & text boxes) from XWiki page and insert it into database.
Also, some degree of read operation from the database is required.
I've been able to read from my external database using the following code
directly in my XWiki page (under XWiki 1.0 syntax):
<%
import groovy.sql.Sql
def sql = Sql.newInstance("jdbc:mysql://localhost:3306/titan", "root",
"test", "com.mysql.jdbc.Driver")
sql.eachRow("select * from user"){
println "${it.user}"
}
%>
Hence, I am confident that an update or insert operation can be performed
with ease too (thanks to the groovy page at
http://groovy.codehaus.org/Database+features).
But I am not familiar with how to retrieve session parameters from the page
context. Could someone please guide me to a resource or a working example of
fetching context variables/parameters. Maybe it is a very simple solution,
but I have very little background in velocity. Any help would be much
appreciated.
Also, any time-frame on the page rating feature which is being discussed
very often now?(what version we could expect to see it?). Also, would page
rating be available for all the documents in an existing wiki (as in
embedded in the velocity templates) or would it be available only for newly
created pages/documents.
Thank you everyone...