I want have a try to build common,platfrom,renderer,tools and combine them to a war file ,and publish it to a servlet container , it is not recommended but i want to try this, is there anyone help me?
I found the missing class in the org.xwiki.component.manager ,and it had already built success and installed, but the error occurred
Description Resource Path Location Type
The project was not built since its build path is incomplete. Cannot find the class file for org.xwiki.component.descriptor.ComponentDescriptor. Fix the build path then try building this project XWiki Commons - Legacy - Component - Default Implementation Unknown Java Problem
Description Resource Path Location Type
The type org.xwiki.component.descriptor.ComponentDescriptor cannot be resolved. It is indirectly referenced from required .class files LogEnabledLifecycleHandler.java /XWiki Commons - Legacy - Component - Default Implementation/src/main/java/org/xwiki/component/embed line 1 Java Problem
------------------ 原始邮件 ------------------
发件人: "Vincent Massol";<vincent(a)massol.net>;
发送时间: 2016年8月24日(星期三) 下午4:28
收件人: "XWiki Developers"<devs(a)xwiki.org>;
主题: Re: [xwiki-devs]how to build source and publish it to tomcat using eclipse??
Hi MARS,
> On 23 Aug 2016, at 13:50, 既然 M.A.R.S <464503882(a)qq.com> wrote:
>
> i tried my best to build the source but failed ,My platform is Windows 10 ,eclipse
>
>
> help
>
>
> is there any turtorial from download the sorce from publish the project to tomcat and running?
Yes there’s one:
http://dev.xwiki.org/xwiki/bin/view/Community/Building
Make sure you read the part in read about windows :)
Let us know what problems you got since otherwise it’s hard to help you.
Thanks
-Vincent
> i tried my best to build the source but failed ,My platform is Windows 10 ,eclipse
>
>
> help
>
>
> is there any turtorial from download the sorce from publish the project to tomcat and running?
>
>
>
>
>
>
>
>
>
>
>
> is there any turtorial from download the sorce from publish the project to tomcat and running?<0A0536A2(a)A4E01669.9438BC57>_______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
_______________________________________________
devs mailing list
devs(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/devs
i tried my best to build the source but failed ,My platform is Windows 10 ,eclipse
help
is there any turtorial from download the sorce from publish the project to tomcat and running?
i tried my best to build the source but failed ,My platform is Windows 10 ,eclipse
help
is there any turtorial from download the sorce from publish the project to tomcat and running?
is there any turtorial from download the sorce from publish the project to tomcat and running?
Hi (Thomas),
I’ve found a regression while analyzing why http://ci.xwiki.org/job/xwiki-platform/org.xwiki.platform$xwiki-platform-re… is failing.
The inline action works fine and correctly sets the cdoc (which contains the template content copied to the new doc).
The issue is that when inline.vm executes (evaluateTemplate()), this calls getVelocityContext() which calls XWikiScriptContextInitializer and this line (added in rev 955505595b95784876777a7059fb3bc725c01776) is executed:
setDocument(scriptContext, "cdoc", cdoc, xcontext);
This line executes:
private void setDocument(ScriptContext scriptContext, String key, XWikiDocument document, XWikiContext xcontext)
{
Document previousDoc = (Document) scriptContext.getAttribute(key);
if (previousDoc == null || !previousDoc.getDocumentReference().equals(document.getDocumentReference())) {
Document apiDocument = document.newDocument(xcontext);
scriptContext.setAttribute(key, apiDocument, ScriptContext.ENGINE_SCOPE);
}
}
And since there’s a previousDoc, it’s set as the cdoc and thus then editinline.vm executes the cdoc is the original one and not the one modified by the InlineAction.java code (ie with the template copied).
Apparently this commit was done in:
https://github.com/xwiki/xwiki-platform/commit/955505595b95784876777a7059fb…
@Thomas: could I let you handle this? (since I don’t know this code and its logic).
Thanks
-Vincent
Hello devs,
Since Nested Spaces has been introduced in XWiki, the need of configuring
some applications at space level has also appeared.
There are already some configurable sections at space level: Look & Feel
(Presentation, Page Elements, PanelWizard), Users & Groups (Rights: Page &
Children, Rights: Page) but they are not using the configurable class and
they are defined in
https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwi…
having perSpace key.
The new installed applications that have a configuration page, can't be
configured now at space level and what I'm proposing in order to ease the
way this can be achieved is to add a new boolean property perSpace to the
XWiki.ConfigurableClass class.
Another idea would be to create a mix between this non-existing property
and existing configureGlobally property and to create a new one with some
options: Wiki, Wiki & space, Space but this involves a lot of changes tha
might not worth the effort.
WDYT?
Thanks,
Alex
Hi devs (especially Thomas),
Just making sure we agree about the future of exports:
* Rewrite our various Exports (PDF, HTML, etc) code to use the FilterStream Module
* Modify the Page Export UI to use the FilterStream API/script service + and add an extension point (or an XClass) so that extension can contribute new Export types in the UI
* Modify the Admin Export UI to do the same
* Register the PDF, HTML, XAR, etc exports to register against those extension points
* Modify the XFF extension to do the same
Do we agree?
Thanks
-Vincent