The XWiki development team is pleased to announce the release of XWiki
Enterprise and XWiki Enterprise Manager 3.0.
Go grab them at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is the first release of the 3.x cycle. Conforming to the general
themes of the 3.x cycle, a lot of features have been polished and
improved, and a few new features have been introduced as well. The
highlights of this release are:
* Twitter-like messaging and networking inside the wiki,
* a new filesystem storage for attachments which allows huge attachments
to be uploaded without requiring a lot of memory or database storage,
* improved dashboard editing,
* better cross-browser support and improved functionality for the
WYSIWYG editor,
* a revamped UI for administration, improved office presentation import
with a new gallery macro,
* live suggestions for the search input,
* a new UI for changing user avatars.
On the developers' front, we've made it easier to reuse the XWiki
rendering engine outside our own codebase, by extracting two new top
level projects:
* XWiki Commons, holding generic modules not tied to the rest of the
platform,
* XWiki Rendering, holding all the XWiki-independent modules of the
rendering engine.
We've setup a Jira dashboard (
http://jira.xwiki.org/jira/secure/Dashboard.jspa?selectPageId=10550 ) to
present the work done for the whole 3.0 release. In summary, 510 issues
have been closed by 14 committers (and other contributors providing
patches), out of which 236 are fixed bugs.
For more information, see the full release notes for XWiki Enterprise
3.0 (
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWikiEnterpris…
) and XWiki Enterprise Manager 3.0 (
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXEM30 ).
Thanks
-The XWiki dev team
Hi all!
I'm still struggling to understand how expanded/collapsed state of
panels do work.
I'm currently using a 2.4.30451 XE/XEM installation.
Looking for macros controlling this state in macros.vm, I see:
***
#macro(panelheader $title)
#set($cookieName = "${context.user.replaceAll(':','')}_${panel}")
#set($expanded = $xwiki.getUserPreferenceFromCookie($cookieName))
#if(!$expanded)
#set($expanded = 'expanded')
#end
## Note: We pass the Panel name as an HTML class attribute so that it's
possible to style
## the Panels selectively using CSS.
#set ($specialClassAttribute = "")
#if ($paneldoc && $paneldoc != "")
#set ($specialClassAttribute =
$util.convertToAlphaNumeric($paneldoc.name))
#end
<div class="panel $expanded $specialClassAttribute">
<h1 class="xwikipaneltitle"
onclick="togglePanelVisibility(this.parentNode,
'${cookieName}');">$title</h1>
<div class="xwikipanelcontents">
#end
***
This macro creates an expanded panel. By clicking the panel title, the
system creates a cookie that stores her current state.
But if I modify this macro and says...
#if(!$expanded)
#set($expanded = 'collapsed')
#end
No macro is created and panels are always collapsed when loaded and
after relaoding.
Please, could you me understand why?
Thank you so much!!!
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
I just installed XWiki-Enterprise 3.0 and I cannot seem to get Registration working correctly. What we want is to force ALL users to register and not be able to see content until they do. I have setup the Invitation/Email sections correctly, but the verification email is corrupted. Here is what I get in the body of the email:
Hello Ken George,
This email address was used to register a new account on ${wikiname}. If you did not make the request, please ignore this message.
In order to activate your account, please follow this link:
$xwiki.getDocument("XWiki.AccountValidation").getExternalURL("view", "validkey=${validkey}&xwikiname=${xwikiname}")
I believe this to possibly be a rights issue, but I am not sure. Here is what I have setup:
UnregisteredUsers: have VIEW/REGISTER checked. All other fields are unchecked
I also have the following CHECKED:
Prevent unregistered users from viewing pages, regardless of the page or space rights
Prevent unregistered users from editing pages, regardless of the page or space rights
Require unregistered users to solve a captcha when posting a comment on a page
Is this how I need to set things up for this to work the way I need it to?
Thanks,
Ken George
________________________________
This e-mail may contain Sprint Nextel proprietary information intended for the sole use of the recipient(s). Any use by others is prohibited. If you are not the intended recipient, please contact the sender and delete all copies of the message.
Hi, I'm trying to install XWiki in the following way: I have a headless
CentOS running on the cloud and a Macbook with SSH tunneling to the cloud
machine. Because I'm new to setting up XWiki (or any wiki), I thought I'd
try the Java installation first before attempting to set up all the pieces
at once.
>From my terminal window on the Macbook, I enter
java -jar xwiki-enterprise-installer-generic-2.7.1-standard.jar
and after a short wait, the install dialog box pops up in the Mac's X11
application.
The problem is that I can't read the font that's displayed. I'm attaching a
screen shot, but in case that doesn't come through, it looks like the font
is in some cursive or handwritten italic font, but only bits and pieces of
each letter are visible. Sometimes I can guess what's being displayed, but
mostly I can't read it at all. I've tried a trick I read about to increase
the number of colors output by X11, but that didn't do anything.
I suspect it's something with lacking a specific font, but I don't know
what. Any suggestions?
Hello,
I've recently noticed that one of the documents on XWiki is in the
orphaned list while clicking on it redirects me to the document that
obviously has parent (path in the above section is present).
Going to the database I found out on einteresting thing
mysql> select xwd_id, xwd_name, xwd_fullname, xwd_parent, xwd_version,
xwd_translation from xwikidoc where xwd_name like 'InitialRequirements';
+------------+---------------------+----------------------------------+--------------------------------+-------------+-----------------+
| xwd_id | xwd_name | xwd_fullname |
xwd_parent | xwd_version | xwd_translation |
+------------+---------------------+----------------------------------+--------------------------------+-------------+-----------------+
| 43295369 | InitialRequirements | MyHappySpace.InitialRequirements |
| 5.1 | 1 |
| -536599142 | InitialRequirements | MyHappySpace.InitialRequirements |
xwiki:MyHappySpace.UserStories | 25.2 | 1 |
+------------+---------------------+----------------------------------+--------------------------------+-------------+-----------------+
2 rows in set (0.00 sec)
As I understand it's not quite normal to have document wit negative ID. I
remember such issue happening before, the solution to it was to back-up the
document content, delete the document. This would make "the document behind"
(or phantom document) visible, delete the phantom document, and then create
the document once more, restoring it from the backup.
If you'd ask me for circumstances under which it occurred, I recollect only
in general - we were simultaneously working on the document trying to create
it and import its content from MSWord file.
Is this a known issue? Any circumstances under which it might occur? I've
experienced it at least on version 2.4 and 2.6.
Regards,
Roman
--
View this message in context: http://xwiki.475771.n2.nabble.com/Phantom-documents-tp6221973p6221973.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Dear All,
When trying to deploy the current version(s) of xwiki-enterprise-web
(i.e. xwiki-enterprise-web-3.0-rc-1.war respectively
xwiki-enterprise-web-2.7.1.war), I was facing the following error:
"Error 500: Component manager has not been initialized before lookup for
[org.xwiki.model.reference.DocumentReferenceResolver] for hint
[currentmixed]"
At the moment, we are still running XWiki Enterprise 1.7.14685. And, a
couple of months ago, we have been also been able to deply Version 2.1.1
without any issues. It seems that
CurrentMixedReferenceDocumentReferenceResolver has only been introduced
with version 2.3M1 of Xwiki.
Apparently a similar type of error has already been described on
http://lists.xwiki.org/pipermail/users/2011-March/023456.html .
Unfortunately, I couldn't find any definitive solution for this problem
on the mailing list. I can confirm that XWikiServletContextListener is
in fact contained in the web.xml configuration file:
<listener>
<listener-class>org.xwiki.container.servlet.XWikiServletContextListener<
/listener-class>
</listener>
Our current setup is as follows:
Xwiki is to be deployed to a Websphere application server (on a Solaris
5.10 SPARC environment).
The underlying database is Oracle 10.2.0.3.
The actual stack trace is as follows:
java.lang.RuntimeException: Component manager has not been initialized
before lookup for [org.xwiki.model.reference.DocumentReferenceResolver]
for hint [currentmixed]
at com.xpn.xwiki.web.Utils.getComponent(Utils.java:627)
at com.xpn.xwiki.XWikiContext.<init>(XWikiContext.java:138)
at com.xpn.xwiki.web.Utils.prepareContext(Utils.java:339)
at
com.xpn.xwiki.web.XWikiAction.initializeXWikiContext(XWikiAction.java:35
7)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:114)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestPr
ocessor.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:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.ja
va:1146)
at
com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.ja
va:1087)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:145)
at
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilt
er.java:152)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:
68)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.
doFilter(SavedRequestRestorerFilter.java:218)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.
doFilter(SetCharacterEncodingFilter.java:112)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterC
hain.java:87)
at
com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilter
Manager.java:848)
at
com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilter
Manager.java:691)
at
com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrap
per.java:588)
at
com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWr
apper.java:526)
at
com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3574)
at
com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:269)
at
com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:831
)
at
com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1
478)
at
com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:1
33)
at
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscriminatio
n(HttpInboundLink.java:450)
at
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(Ht
tpInboundLink.java:508)
at
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(Http
InboundLink.java:296)
at
com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpIC
LReadCallback.java:102)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueMa
nager.java:556)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.
java:606)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.
java:979)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager
.java:1064)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1551)
(...)
[3/30/11 15:27:38:962 CEST] 00000064 WebApp E [Servlet
Error]-[action]: java.lang.RuntimeException: Component manager has not
been initialized before lookup for
[org.xwiki.model.reference.DocumentReferenceResolver] for hint
[currentmixed]
at com.xpn.xwiki.web.Utils.getComponent(Utils.java:627)
at com.xpn.xwiki.XWikiContext.<init>(XWikiContext.java:138)
at com.xpn.xwiki.web.Utils.prepareContext(Utils.java:339)
at
com.xpn.xwiki.web.XWikiAction.initializeXWikiContext(XWikiAction.java:35
7)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:114)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestPr
ocessor.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:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.ja
va:1146)
at
com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.ja
va:1087)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:145)
at
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilt
er.java:152)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:
68)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.
doFilter(SavedRequestRestorerFilter.java:218)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.
doFilter(SetCharacterEncodingFilter.java:112)
at
com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInst
anceWrapper.java:190)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterCh
ain.java:130)
at
com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterC
hain.java:87)
at
com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilter
Manager.java:848)
at
com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilter
Manager.java:691)
at
com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrap
per.java:588)
at
com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWr
apper.java:526)
at
com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3574)
at
com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:269)
at
com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:831
)
at
com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1
478)
at
com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:1
33)
at
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscriminatio
n(HttpInboundLink.java:450)
at
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(Ht
tpInboundLink.java:508)
at
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(Http
InboundLink.java:296)
at
com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpIC
LReadCallback.java:102)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueMa
nager.java:556)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.
java:606)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.
java:979)
at
com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager
.java:1064)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1551)
Any idea where the source of the problem might be?
Visit our website at http://www.ubs.com
This message contains confidential information and is intended only
for the individual named. If you are not the named addressee you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.
E-mails are not encrypted and cannot be guaranteed to be secure or
error-free as information could be intercepted, corrupted, lost,
destroyed, arrive late or incomplete, or contain viruses. The sender
therefore does not accept liability for any errors or omissions in the
contents of this message which arise as a result of e-mail transmission.
If verification is required please request a hard-copy version. This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities
or related financial instruments.
UBS reserves the right to retain all messages. Messages are protected
and accessed only in legally justified cases.
Hello,
Environment: XWiki iteratively upgraded 2.2 -> 2.3 -> 2.4 -> 2.6 ->
3.0RC1 (there might have been minor version upgrade in-between)
After having upgraded to XWiki 3.0RC1, Tooltip macro (
http://extensions.xwiki.org/xwiki/bin/view/Extension/Tooltip+Macro ) stopped
working throwing the error shown below.
I've checked several other macros - they still work.
Should I log a bug in Jira for the macro or this can be fixed somehow?
> Failed to execute the [velocity] macro
> org.xwiki.rendering.macro.MacroExecutionException: Failed to evaluate
> Velocity Macro for content [(%class="tooltipHint
> #if($!xcontext.macro.params.display-icon == false) withoutIcon#end"
> $!hintStyles%)#if("$!xcontext.macro.params.id" !=
> "")(%class="tooltipLabelId hidden"%)$!xcontext.macro.params.id#else{{html
> clean=false}}$!xcontext.macro.params.label{{/html}}#end(%class="tooltip
> hidden" $!tooltipStyles %)$xcontext.macro.content(%class="tooltipEvent
> hidden"%)$tooltipEvent]
> at
> org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:124)
> at
> org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:47)
> at
> org.xwiki.rendering.macro.script.AbstractScriptMacro.evaluateBlock(AbstractScriptMacro.java:303)
> at
> org.xwiki.rendering.macro.script.AbstractScriptMacro.execute(AbstractScriptMacro.java:199)
> at
> org.xwiki.rendering.macro.script.AbstractScriptMacro.execute(AbstractScriptMacro.java:57)
> at
> org.xwiki.rendering.internal.transformation.macro.MacroTransformation.transformOnce(MacroTransformation.java:184)
> at
> org.xwiki.rendering.internal.transformation.macro.MacroTransformation.transform(MacroTransformation.java:129)
> at
> org.xwiki.rendering.internal.macro.wikibridge.DefaultWikiMacro.execute(DefaultWikiMacro.java:213)
> at
> org.xwiki.rendering.internal.macro.wikibridge.DefaultWikiMacro.execute(DefaultWikiMacro.java:57)
> at
> org.xwiki.rendering.internal.transformation.macro.MacroTransformation.transformOnce(MacroTransformation.java:184)
> at
> org.xwiki.rendering.internal.transformation.macro.MacroTransformation.transform(MacroTransformation.java:129)
> at
> org.xwiki.rendering.internal.transformation.DefaultTransformationManager.performTransformations(DefaultTransformationManager.java:72)
> at
> com.xpn.xwiki.doc.XWikiDocument.performSyntaxConversion(XWikiDocument.java:7605)
> at
> com.xpn.xwiki.doc.XWikiDocument.performSyntaxConversion(XWikiDocument.java:7554)
> at
> com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:836)
> at
> com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:785)
> at
> com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:879)
> at com.xpn.xwiki.api.Document.getRenderedContent(Document.java:556)
> at sun.reflect.GeneratedMethodAccessor530.invoke(Unknown Source)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at
> org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
> at
> org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
> at
> org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
> at
> org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
> at
> org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:567)
> at
> org.apache.velocity.runtime.parser.node.ASTExpression.value(ASTExpression.java:71)
> at
> org.apache.velocity.runtime.parser.node.ASTSetDirective.render(ASTSetDirective.java:142)
> at
> org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
> at
> org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
> at
> org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
> at
> org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
> at
> com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
> at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1890)
> at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1828)
> at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:848)
> at sun.reflect.GeneratedMethodAccessor284.invoke(Unknown Source)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at
> org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
> at
> org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
> at
> org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
> at
> org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
> at
> org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:369)
> at
> org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
> at
> org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
> at
> org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
> at
> org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
> at
> org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
> at
> org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
> at
> org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
> at
> org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
> at
> org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
> at
> org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
> at
> org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
> at
> com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
> at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1941)
> at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1860)
> at com.xpn.xwiki.web.Utils.parseTemplate(Utils.java:154)
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:226)
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
> 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:617)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> at
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
> at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
> at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
> at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
> at
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
> at java.lang.Thread.run(Thread.java:619)
> Caused by: org.xwiki.velocity.XWikiVelocityException: Failed to evaluate
> content with id [unknown namespace]
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:197)
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
> at
> org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:117)
> ... 97 more
> Caused by: org.apache.velocity.runtime.parser.ParseException: Lexical
> error: org.apache.velocity.runtime.parser.TokenMgrError: Lexical error
> at line 1, column 336. Encountered: "%" (37), after : ""
> at org.apache.velocity.runtime.parser.Parser.parse(Parser.java:136)
> at
> org.apache.velocity.runtime.RuntimeInstance.parse(RuntimeInstance.java:1226)
> at
> org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:181)
> ... 99 more
>
Regards,
Roman
--
View this message in context: http://xwiki.475771.n2.nabble.com/Tooltip-macro-not-working-after-upgrade-t…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
I'm trying to get rid of errors in my xwiki.log and this post is about
XWiki complaining about usage of deprecated method
[com.xpn.xwiki.api.XWiki.parseMessage] in /templates/login.vm@28,33.
Environment: XWiki iteratively upgraded 2.2 -> 2.3 -> 2.4 -> 2.6 ->
3.0RC1 (there might have been minor version upgrades in-between)
The question is: How should I fix this issue? (ignore it? update
something? else?)
And the actual warning from the logs
> 2011-03-29 15:51:11,969
> [http://host/xwiki/bin/loginsubmit/XWiki/XWikiLogin]
> [http://host/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> internal.DefaultVelocityEngine - Deprecated usage of method
> [com.xpn.xwiki.api.XWiki.parseMessage] in /templates/login.vm@28,33
>
Regards,
Roman
--
View this message in context: http://xwiki.475771.n2.nabble.com/Deprecated-usage-of-method-com-xpn-xwiki-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Good evening.
I attempted to invite one of my colleagues to check out XWiki that I have setup in my organization. They got the invitation email all right, but when they clicked "Accept", they get the following error message from the Wiki:
Failed to execute the [include] macro
Any ideas?
________________________________
This e-mail may contain Sprint Nextel proprietary information intended for the sole use of the recipient(s). Any use by others is prohibited. If you are not the intended recipient, please contact the sender and delete all copies of the message.
Hi everybody,
I'm using LDAP for login into XWiki (MS AD), it works very well. But there's something I'll need to change: when a user is editing some page's access rights, when he/she selects the "User" radio button, the list that appears is based on the user's objetc names (that came from the sAMAccountName LDAP field). Since our login field (and the username) is the registering number on our company, the user's list on the access rights appears as a bunch of numbers, and not the users' names, what makes it difficult to the author guess which one is to be granted the desired right. I would like that the "first_name" field (or another one from the user's object, mapped from LDAP) is shown on this list. I've been looking around the rightsUI.vm and usersandgroups.js, but could not figure out how to do this. I'm using XE 3.0RC1.
Any ideas?
Regards,
Ramon Gomes Brandão
Hello,
I'm trying to get rid of errors in my xwiki.log and this post is about
XWiki complaining that XWiki.WikiMacroTemplate has empty ID.
Environment: XWiki iteratively upgraded 2.2 -> 2.3 -> 2.4 -> 2.6 ->
3.0RC1 (there might have been minor version upgrade in-between)
The question is: How should I fix this issue? (remove
XWiki.WikiMacroTemplate? simply add random ID to the document?)
And the actual exception
> 2011-03-29 17:48:05,389
> [http://host/xwiki/bin/import/XWiki/XWikiPreferences?editor=globaladmin§…]
> [http://host/xwiki/bin/import/XWiki/XWikiPreferences?editor=globaladmin§…]
> ERROR ro.DefaultWikiMacroInitializer - Incomplete macro definition in
> [name = [WikiMacroTemplate], type = [DOCUMENT], parent = [name = [XWiki],
> type = [SPACE], parent = [name = [xwiki], type =[WIKI], parent =
> [null]]]], macro id is empty
> org.xwiki.rendering.macro.wikibridge.WikiMacroException: Incomplete macro
> definition in [name = [WikiMacroTemplate], type = [DOCUMENT], parent =
> [name = [XWiki], type = [SPACE], parent = [name = [xwiki], type
> = [WIKI], parent = [null]]]], macro id is empty
> at
> com.xpn.xwiki.internal.macro.DefaultWikiMacroFactory.buildMacro(DefaultWikiMacroFactory.java:133)
> at
> com.xpn.xwiki.internal.macro.DefaultWikiMacroFactory.createWikiMacro(DefaultWikiMacroFactory.java:99)
> at
> com.xpn.xwiki.internal.macro.DefaultWikiMacroInitializer.registerMacro(DefaultWikiMacroInitializer.java:224)
> at
> com.xpn.xwiki.internal.macro.DefaultWikiMacroInitializer.registerMacrosForWiki(DefaultWikiMacroInitializer.java:179)
> at
> com.xpn.xwiki.internal.macro.DefaultWikiMacroInitializer.registerExistingWikiMacros(DefaultWikiMacroInitializer.java:148)
> at
> com.xpn.xwiki.internal.macro.DefaultWikiMacroInitializer.registerExistingWikiMacros(DefaultWikiMacroInitializer.java:105)
> at
> com.xpn.xwiki.internal.macro.RegisterMacrosOnImportListener.onEvent(RegisterMacrosOnImportListener.java:106)
> at
> org.xwiki.observation.internal.DefaultObservationManager.notify(DefaultObservationManager.java:278)
> at
> org.xwiki.observation.internal.DefaultObservationManager.notify(DefaultObservationManager.java:247)
> at
> com.xpn.xwiki.plugin.packaging.Package.install(Package.java:606)
> at
> com.xpn.xwiki.plugin.packaging.PackageAPI.install(PackageAPI.java:318)
> at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:140)
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:216)
> at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
> 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.doPost(ActionServlet.java:432)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> at
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
> at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
> at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
> at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
> at
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
> at java.lang.Thread.run(Thread.java:619)
>
Regards,
Roman
--
View this message in context: http://xwiki.475771.n2.nabble.com/Incomplete-macro-definition-XWiki-WikiMac…
Sent from the XWiki- Users mailing list archive at Nabble.com.
I am seriously considering migrating from JSPWiki to XWiki, but I need a few questions answered first:
1) Has anyone migrated from JSPWiki to XWiki?
a. How do you migrate file attachments?
2) Is there a migration tool to convert text for the pages from JSPWiki language to XWiki language?
________________________________
This e-mail may contain Sprint Nextel proprietary information intended for the sole use of the recipient(s). Any use by others is prohibited. If you are not the intended recipient, please contact the sender and delete all copies of the message.
Hello,
I would like to use xwiki for my personal website about african music. I
will share music sheets and other stuff with some of my friends.
My xwiki user name is : llacheny
Cheers,
Laurent
Hello,
It looks like I can't edit pages with the WYSIWYG editor in my myxwiki!
Did I do something wrong?
Thanks,
John
Error number 4001 in 4: Error while parsing velocity page
/templates/editwysiwygnew.vm
Wrapped Exception: Failed to evaluate content with id
[/templates/editwysiwygnew.vm]
com.xpn.xwiki.XWikiException: Error number 4001 in 4: Error while parsing
velocity page /templates/editwysiwygnew.vm
Wrapped Exception: Failed to evaluate content with id
[/templates/editwysiwygnew.vm]
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:122)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1890)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1828)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:848)
at sun.reflect.GeneratedMethodAccessor6636.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:369)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1890)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1828)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:848)
at sun.reflect.GeneratedMethodAccessor6636.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:369)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1941)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1860)
at com.xpn.xwiki.web.Utils.parseTemplate(Utils.java:154)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:226)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
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:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:769)
at
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:698)
at
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:891)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
at java.lang.Thread.run(Thread.java:595)
Wrapped Exception:
org.apache.velocity.exception.MethodInvocationException: Invocation of
method 'isSourceEditorEnabled' in class
org.xwiki.wysiwyg.server.internal.DefaultWysiwygEditorConfiguration threw
exception java.lang.NoClassDefFoundError:
org/xwiki/gwt/user/client/StringUtils at /templates/macros.vm[line 1963,
column 68]
at
org.apache.velocity.runtime.parser.node.ASTMethod.handleInvocationException(ASTMethod.java:261)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:187)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:567)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:151)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:567)
at
org.apache.velocity.runtime.parser.node.ASTExpression.value(ASTExpression.java:71)
at
org.apache.velocity.runtime.parser.node.ASTSetDirective.render(ASTSetDirective.java:142)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1890)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1828)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:848)
at sun.reflect.GeneratedMethodAccessor6636.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:369)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1890)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1828)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:848)
at sun.reflect.GeneratedMethodAccessor6636.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:369)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:188)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:153)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1941)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1860)
at com.xpn.xwiki.web.Utils.parseTemplate(Utils.java:154)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:226)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
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:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:769)
at
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:698)
at
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:891)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.lang.NoClassDefFoundError:
org/xwiki/gwt/user/client/StringUtils
at
org.xwiki.wysiwyg.server.internal.DefaultWysiwygEditorConfiguration.getProperty(DefaultWysiwygEditorConfiguration.java:71)
at
org.xwiki.wysiwyg.server.internal.DefaultWysiwygEditorConfiguration.isSourceEditorEnabled(DefaultWysiwygEditorConfiguration.java:204)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
... 112 more
When being on a train and editing pages on my local wiki I realized
that sometimes saving a page takes really long.
I analyzed what's going on, and guessed that it has something to do
with the app trying a connectoin to the Internet, which hangs when 3G
Internet is connected but very slow.
And yes, that's it.
BUT, now I wonder, why does xwiki need to connect xwiki.com servers on
every page save I do?
Do xwiki developers get all my saved data from my personal wiki?
What data do they get?
Hoping for clarifications.
Henning
--
Henning Sprang
http://www.sprang.de
Dear Sir/Madam,
I would like to request a wiki for our project.
I'm writing as an enquiry officer with Suffolk Libraries.
We are currently researching the feasability of maintaining staff handbooks and library procedures in the form of a wiki. This would allow us to instantly share the handbook with all who need it. It would also facilitate internal and public discussion of the way we run our libraries and what are the best ways to deal with issues as they come up.
We also feel there is scope for fostering co-operation between public libraries in general through this project - again by facilitating debate and the sharing of technical know-how.
We are attracted to xwiki because of its LGPL license and would be very interested in running our wiki on your servers for the duration of this pilot.
My username is AlexSassmannshausen. The server name we are hoping for is either sls.myxwiki.org or suffolklibs.myxwiki.org (depending on whether the first is already taken).
Please let me know if you have any further questions or requirements prior to creating the wiki for us.
With Regards,
Alex Sassmannshausen
Suffolk libraries direct
County Library
Northgate Street
IPSWICH
IP1 3DE
01473 584563
www.suffolk.gov.uk/sld<http://www.suffolk.gov.uk/sld>
mailto: help(a)suffolklibraries.co.uk<mailto:help@suffolklibraries.co.uk>
Have your say on the future of Suffolk's libraries: www.suffolk.gov.uk/librariesconsultation2011<http://www.suffolk.gov.uk/librariesconsultation2011>
Follow us on Twitter<blocked::https://twitter.com/SuffolkLibrary>
We now offer pre-overdue alerts by sms text message or email - please ask for further details if you are interested.
Our website enables you to renew your loans, make reservations and search our catalogue. It includes a link to our new free eBook service.
Emails sent to and from this organisation will be monitored in accordance
with the law to ensure compliance with policies and to minimise any
security risks.
The information contained in this email or any of its attachments may
be privileged or confidential and is intended for the exclusive use of
the addressee. Any unauthorised use may be unlawful. If you receive
this email by mistake, please advise the sender immediately by using
the reply facility in your email software.
Hi all,
I would like to have a little wiki that permit me to work better with my
schoolfriends. We have to handle large projects (concerning IT and
open-source softwares) during the year and this wiki will permit us to waste
less time than before, retrieving the informations and work of each others.
This project is of course a non-profit one.
Thank you in advance.
Regards,
Guillaume Fenollar (login myxwiki.org : GuillaumeFenollar)
--
guillaume(a)fenollar.fr
Skype: guillaume.fenollar
The XWiki development team is pleased to announce the release of XWiki
Enterprise 3.0 RC 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is the first and hopefully the last release candidate for the 3.0
version. It brings several improvements to the features introduced in
the previous milestones. The final release is planned for the beginning
of the next week.
The highlights of this release are:
* Administration section for the WYSIWYG content editor
* Attachment Selector Macro
* Improvements to the message stream, dashboard, gallery macro, search
suggest, extension manager and the administration application
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/ReleaseNotes/ReleaseNotesXWikiEnterprise30RC1
Thanks
-The XWiki dev team
Hi,
Is it possible to use an external OpenOffice Server that is not on the same machine as the XWiki instance, i.e., not local? If so, how can I do that? If not, can't I even test this possibility? External local one is running in my test place, but in production environment this probably won't be the case.
I'm using XE 2.7.1 and I'll test also XE 3.0M3.
Ramon Gomes Brandão
Hi Xwiki users,
we are using Xwiki in our Intranet and I have a problem with the Navigation Panel.
I've dragged and dropped the Navigation Panel from the Panel Wizard to the left Panel of my site. After that I edited the Panel to my satisfaction. By the way I am using the Default Skin with "Nature" Color Theme.
Now to my problem. If you edit the content of the Navigation Panel you will also find the following code:
$xwiki.jsfx.use('js/scriptaculous/scriptaculous.js')
$xwiki.jsfx.use('js/xwiki/accordion/accordion.js')
<script type="text/javascript">
document.observe('xwiki:dom:loaded', function() {
var obj = {div:'xwikinav', no:$spacecount, height:250};
var acc = createAccordion(obj);
});
</script>
I think the "document.observe" function expands/collapses the Navigation Fields. This function is also used to expand the Panel Wizard Fields where you can drag and drop the panels in the Wiki administration.
I was able to expand the fields wit Firefox 3.6.x and Internet Explorer 8.
Yesterday I updated Firefox to version 4 and Internet Explorer to version 9. If I am viewing the site with Firefox 4 the fields remain collapsed/closed and I can't open them. So I can't use the Navigation Panel. Same problem with the Panel Wizard in wiki administration. With Internet Explorer 9 and Opera 11 no problems. I can use the Navigation Panel and the Panel Wizard without problems. I also tested Chrome 10. Same problem as Firefox 4. With these two Browser (and these are the most used Browsers of my users) I am not able to view and edit my Wiki correctly.
Now where is the problem? Is that a bug in Xwiki or a bug in the javascript engine of Firefox and Chrome? Could you give me a quick solution or workaround please?
Best regards.
Enzo
Hi, I would like to create a wiki on myxwiki.org which I will use for a
school project, for collaborative documents and resource sharing.
The Wiki's name should be HCI (comes from Human-Computer Interaction),
so the url would be hci.myxwiki.org
The myxwiki account I created is sorzu, and I would be its main
aministrator.
Thanks,
Stefan Orzu.
Hi,
When I try to create a page from an Office Doc in XE 2.7.1 (Add -> Create a Page from Office Document), some documents succeed without problems, others get an exception caused by:
java.sql.BatchUpdateException: Incorrect string value: '\xEF\x80\xBD|(%...' for column 'XWR_PATCH' at row 1
I get this also with the same docs when I try to use the office importer macro on WYSIWYG editor.
I've searched the user list archive and found something about this was a misconfgured charset. But I've created the xwiki database with charset=utf8 just like the instructions, and double checked on mysql:
My xwiki database:
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | latin1 |
| character_set_connection | latin1 |
| character_set_database | utf8 |
| character_set_filesystem | binary |
| character_set_results | latin1 |
| character_set_server | latin1 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
My MySQL System database:
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | latin1 |
| character_set_connection | latin1 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | latin1 |
| character_set_server | latin1 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
The strange point is why some docs succeed, others not. I've tested a bunch of docs, and found this behaviour.
Any ideas? Is it a BUG? Other places to check? I've though at first the problem happened just with docs containing some bullets markings, but not only.
Regards,
Ramon Gomes Brandão