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?
yes of course.
I wanted add some CSS class in blog code.
Anyway I will PR today and I'm pretty sure than xwiki commiters will make attention with this. :-)
--------------------------------------------
En date de : Ven 21.10.16, Jan-Paul Kleijn <email(a)biggee.nl> a écrit :
Objet: Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?
À: "XWiki Users" <users(a)xwiki.org>
Date: Vendredi 21 octobre 2016, 0h06
Pascal,
I advise you not to use the
style tag in HTML (or WIKI code for that
matter) - only as a last resort. It is good
practice to separate
structure from
presentation. W3C made a rather comprehensive explanation
on this, see link below.
https://www.w3.org/2001/tag/doc/contentPresentation-26.html
It may seem like a little
cumbersome now, but it will help you in the end.
Greetings,
Jan-Paul
Here you are:
https://github.com/xwiki/xwiki-platform/pull/543/files
Thxs Vincent and Jan-Paul
--------------------------------------------
En date de : Jeu 20.10.16, Vincent Massol <vincent(a)massol.net> a écrit :
Objet: Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?
À: "Pascal BASTIEN" <pbasnews-xwiki(a)yahoo.fr>
Cc: "XWiki Users" <users(a)xwiki.org>
Date: Jeudi 20 octobre 2016, 11h10
>
On 20 Oct 2016, at 11:08, Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>
wrote:
>
>
>>>
>>> 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?
Sounds good.
Thanks
-Vincent
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
--- En date de : Jeu 20.10.16, Vincent Massol <vincent(a)massol.net> a écrit :
> De: Vincent Massol <vincent(a)massol.net>
> Objet: Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?
> À: "Pascal BASTIEN" <pbasnews-xwiki(a)yahoo.fr>
> Cc: "XWiki Users" <users(a)xwiki.org>
> Date: Jeudi 20 octobre 2016, 10h35
>
> > On
> 20 Oct 2016, at 10:32, Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>
> wrote:
> >
> > Ok I will
> send a PR.
> > (I didn't knew doc was
> modified through git though)
> >
> > IMO it is better here, no?:
> > http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax#HParameters
>
> The example there is
> correct.
Yes it is correct, but what I want to add in syntax guide (if you agree) is these 2 way:
- to close style with (%%)
- (((…))) construct generates a DIV
>
> You need to close
> only for span, ie only in inline content.
>
> Thanks
> -Vincent
>
> >
> > (%
> 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