Hi,
I am using this macro in one of my pages:
{{velocity}}
{{documents parent="$doc.fullName"/}}
{{/velocity}}
However, it doesn't display all child documents of this page. Why is that?
Thanks
Hi,
I tried to install XWiki 8.3 WAR on Weblogic 12.2.1 but it failed on
XWikiJaxRsApplication because it extends the javax.ws.rs.core.Application
class and the container tries to set up this as a JAX-RS 2 servlet and of
course it not find the servlet configuration.
I'm unable to find any option to tell to the WLS to not use JAX-RS.
I have found this JIRA ticket <http://jira.xwiki.org/browse/XWIKI-12674> ,
but it helps nothing to solve this problem.
Do you have any idea/experience how to install XWiki on WLS 12.2.1?
Thanks, Zoltán.
--
View this message in context: http://xwiki.475771.n2.nabble.com/XWiki-on-Weblogic-12-2-1-tp7601654.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
> >
> > Yes it is correct,
> but what I want to add in syntax guide (if you agree)Â is
> these 2 way:
> > - to close style with
> (%%)
>
> only for inline
> content and only needed if you need to style only a potion
> of the inlined content.
yes it was my intention :-)
>
> > - (((…))) construct generates a DIV
>
> already documented, see http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax?syntax=2.1§io…
hum IMO we must add an exemple with style too. Why? because on syntax page I'm pretty sur everyone use Ctrl+F: "style" (search feature in web browser) and next to find the correct syntax.
WDYT?
> >
> > (%
> class="plainmessage publish-message" %)((((%
> class="glyphicon glyphicon-globe" %)$message)))
>
> First this is not fully
> correct. You need to close the span with (%%).
haaaaa!
It's like manage to scratch my back! so pleasurable!
I need to add that here: http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax
>
> > <div
> class="plainmessage publish-message">
> > <p>
> > <span
> class="glyphicon glyphicon-globe">This article
> was published on 17/10/2016 16:47:06</span>
> > </p>
> >
> </div>
> >
> >
> => span inserted BUT I don't want end of span at the
> end of the $message
>
> Normally you should have tried this:
>
> (% class="plainmessage
> publish-message" %)((((% class="glyphicon
> glyphicon-globe" %)(%%)$message)))
>
> But it won’t work because the span is
> empty.
>
> So you have 2
> options:
> - option 1: you insert some
> character in the space like a space (you’ll get
> in the output though)
yes I confirm this. I have in html output) with
(% class="plainmessage publish-message" %)((((% class="glyphicon glyphicon-globe" %) (%%)$message)))
> - option 2: you use
> the html macro.
>
> It seems
> from your need that you’re trying to output some specific
> custom HTML so best is to use the html macro for that.
> You’ll have better control with it.
yes but I "improved" blog macro: I will commit it this week i think
ty