Re: [xwiki-users] WYSIWYG editor not loading after upgrade to 8.2.1

2016-10-19 Thread Mahomed Hussein
We had this issue with almost every upgrade. Just getting users to press F5 
when they get the spinning editor has usually solved it.


Kind regards,




Mahomed Hussein
Custodian Data Centre
Email: maho...@custodiandc.com
http://www.CustodianDC.com

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of simmsj
Sent: 27 September 2016 13:50
To: users@xwiki.org
Subject: Re: [xwiki-users] WYSIWYG editor not loading after upgrade to 8.2.1

Clearing the browser cache worked. The fix isn't ideal, but I upgraded a clone 
and there's no urgency to upgrade the production instance so I can wait for the 
issue to be resolved.

Thanks for the help.

 - Jared



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/WYSIWYG-editor-not-loading-after-upgrade-to-8-2-1-tp7601398p7601410.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] XWiki on Weblogic 12.2.1

2016-10-19 Thread Qkxy
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   ,
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.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?

2016-10-19 Thread Vincent Massol

> On 19 Oct 2016, at 11:17, Vincent Massol  wrote:
> 
> 
>> On 19 Oct 2016, at 11:17, Jan-Paul Kleijn  wrote:
>> 
>> And for one word only you close the span with (%%). Like so:

Remark: It’s not just for one word. It’s for any inline content.

Thanks
-Vincent

>> (% class="plainmessage publish-message" %)$message(%%)
>> 
>> Sorry vincent, did not want to seem like a wisenose :-)
> 
> no, no, you’re perfectly right :)
> 
> My example wasn’t good actually. We do auto closing but it’s much better to 
> specify it.
> 
> Thanks
> -Vincent
> 
>> Greetings,
>> Jan-Paul 
>> 
>>  Vincent Massol wrote 
>> 
>>> Hi Pascal,
>>> 
>>> (% class="plainmessage publish-message" %)((($message)))
>>> 
>>> the (((…))) construct generates a DIV
>>> 
>>> For a span you need:
>>> 
>>> (% class="plainmessage publish-message" %)$message
>>> 
>>> Thanks
>>> -Vincent
>>> 
 On 19 Oct 2016, at 10:17, Pascal BASTIEN  wrote:
 
 (I resend my previous message: it seem xwiki users list didn't receive it 
 or silent reject it)
 sorry maybe spaming?
 
 
 --- En date de : Mar 18.10.16, Pascal BASTIEN  a 
 écrit :
 
> De: Pascal BASTIEN 
> Objet: riddle: howto insert a simple span with xwiki syntax?
> À: "XWiki Users" 
> Date: Mardi 18 octobre 2016, 9h07
> Hello,
> 
> With wiki syntax I failed to insert a simple span in a
> velocity macro (Blog./BlogCode):
> 
> #macro(publishMessageBox $message)
> (% class="plainmessage publish-message" %)((($message)))
> #end
> 
> display:
> 
> This article was published on 17/10/2016
> 16:47:06
> 
> 
> and I want a span in front of $message like this:
> 
>  This article was published
> on 17/10/2016 16:47:06
> 
> 
> Is it possible (I can not use {{html}} because code is
> escaped)?
> 
> Here my test and what is displayed:
> (% class="plainmessage publish-message" %)%
> class="glyphicon glyphicon-globe" %)((( )))$message)))
> display
> 
> 
> This article was published on 17/10/2016
> 16:47:06
> 
> 
> => With div instead span it is ok BUT there are 
> inserted :-( !
> 
> (% class="plainmessage publish-message" %)%
> class="glyphicon glyphicon-globe" %)$message)))
> 
> 
> 
> This article
> was published on 17/10/2016 16:47:06
> 
> 
> 
> => span inserted BUT I don't want end of span at the end
> of the $message
> 
> (% class="plainmessage publish-message" %)%
> class="glyphicon glyphicon-globe" %)((())) $message)))
> 
> 
> 
> This article was published on 17/10/2016
> 16:47:06
> 
> 
> => With div instead span it is ok BUT there are 
> inserted :-( !
> 
> Have you got a solution?
> Thxs
> 
> Pascal B
> 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?

2016-10-19 Thread Vincent Massol

> On 19 Oct 2016, at 11:17, Jan-Paul Kleijn  wrote:
> 
> And for one word only you close the span with (%%). Like so:
> 
> 
> (% class="plainmessage publish-message" %)$message(%%)
> 
> Sorry vincent, did not want to seem like a wisenose :-)

no, no, you’re perfectly right :)

My example wasn’t good actually. We do auto closing but it’s much better to 
specify it.

Thanks
-Vincent

> Greetings,
> Jan-Paul 
> 
>  Vincent Massol wrote 
> 
>> Hi Pascal,
>> 
>> (% class="plainmessage publish-message" %)((($message)))
>> 
>> the (((…))) construct generates a DIV
>> 
>> For a span you need:
>> 
>> (% class="plainmessage publish-message" %)$message
>> 
>> Thanks
>> -Vincent
>> 
>>> On 19 Oct 2016, at 10:17, Pascal BASTIEN  wrote:
>>> 
>>> (I resend my previous message: it seem xwiki users list didn't receive it 
>>> or silent reject it)
>>> sorry maybe spaming?
>>> 
>>> 
>>> --- En date de : Mar 18.10.16, Pascal BASTIEN  a 
>>> écrit :
>>> 
 De: Pascal BASTIEN 
 Objet: riddle: howto insert a simple span with xwiki syntax?
 À: "XWiki Users" 
 Date: Mardi 18 octobre 2016, 9h07
 Hello,
 
 With wiki syntax I failed to insert a simple span in a
 velocity macro (Blog./BlogCode):
 
 #macro(publishMessageBox $message)
 (% class="plainmessage publish-message" %)((($message)))
 #end
 
 display:
 
 This article was published on 17/10/2016
 16:47:06
 
 
 and I want a span in front of $message like this:
 
  This article was published
 on 17/10/2016 16:47:06
 
 
 Is it possible (I can not use {{html}} because code is
 escaped)?
 
 Here my test and what is displayed:
 (% class="plainmessage publish-message" %)%
 class="glyphicon glyphicon-globe" %)((( )))$message)))
 display
 
 
 This article was published on 17/10/2016
 16:47:06
 
 
 => With div instead span it is ok BUT there are 
 inserted :-( !
 
 (% class="plainmessage publish-message" %)%
 class="glyphicon glyphicon-globe" %)$message)))
 
 
 
 This article
 was published on 17/10/2016 16:47:06
 
 
 
 => span inserted BUT I don't want end of span at the end
 of the $message
 
 (% class="plainmessage publish-message" %)%
 class="glyphicon glyphicon-globe" %)((())) $message)))
 
 
 
 This article was published on 17/10/2016
 16:47:06
 
 
 => With div instead span it is ok BUT there are 
 inserted :-( !
 
 Have you got a solution?
 Thxs
 
 Pascal B
 
>> 
>> ___
>> users mailing list
>> users@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?

2016-10-19 Thread Jan-Paul Kleijn
And for one word only you close the span with (%%). Like so:


(% class="plainmessage publish-message" %)$message(%%)

Sorry vincent, did not want to seem like a wisenose :-)

Greetings,
Jan-Paul 

 Vincent Massol wrote 

>Hi Pascal,
>
>(% class="plainmessage publish-message" %)((($message)))
>
>the (((…))) construct generates a DIV
>
>For a span you need:
>
>(% class="plainmessage publish-message" %)$message
>
>Thanks
>-Vincent
>
>> On 19 Oct 2016, at 10:17, Pascal BASTIEN  wrote:
>> 
>> (I resend my previous message: it seem xwiki users list didn't receive it or 
>> silent reject it)
>> sorry maybe spaming?
>> 
>> 
>> --- En date de : Mar 18.10.16, Pascal BASTIEN  a 
>> écrit :
>> 
>>> De: Pascal BASTIEN 
>>> Objet: riddle: howto insert a simple span with xwiki syntax?
>>> À: "XWiki Users" 
>>> Date: Mardi 18 octobre 2016, 9h07
>>> Hello,
>>> 
>>> With wiki syntax I failed to insert a simple span in a
>>> velocity macro (Blog./BlogCode):
>>> 
>>> #macro(publishMessageBox $message)
>>> (% class="plainmessage publish-message" %)((($message)))
>>> #end
>>> 
>>> display:
>>> 
>>> This article was published on 17/10/2016
>>> 16:47:06
>>> 
>>> 
>>> and I want a span in front of $message like this:
>>> 
>>>  This article was published
>>> on 17/10/2016 16:47:06
>>> 
>>> 
>>> Is it possible (I can not use {{html}} because code is
>>> escaped)?
>>> 
>>> Here my test and what is displayed:
>>> (% class="plainmessage publish-message" %)%
>>> class="glyphicon glyphicon-globe" %)((( )))$message)))
>>> display
>>> 
>>> 
>>> This article was published on 17/10/2016
>>> 16:47:06
>>> 
>>> 
>>> => With div instead span it is ok BUT there are 
>>> inserted :-( !
>>> 
>>> (% class="plainmessage publish-message" %)%
>>> class="glyphicon glyphicon-globe" %)$message)))
>>> 
>>> 
>>> 
>>> This article
>>> was published on 17/10/2016 16:47:06
>>> 
>>> 
>>> 
>>> => span inserted BUT I don't want end of span at the end
>>> of the $message
>>> 
>>> (% class="plainmessage publish-message" %)%
>>> class="glyphicon glyphicon-globe" %)((())) $message)))
>>> 
>>> 
>>> 
>>> This article was published on 17/10/2016
>>> 16:47:06
>>> 
>>> 
>>> => With div instead span it is ok BUT there are 
>>> inserted :-( !
>>> 
>>> Have you got a solution?
>>> Thxs
>>> 
>>> Pascal B
>>> 
>
>___
>users mailing list
>users@xwiki.org
>http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] riddle: howto insert a simple span with xwiki syntax?

2016-10-19 Thread Vincent Massol
Hi Pascal,

(% class="plainmessage publish-message" %)((($message)))

the (((…))) construct generates a DIV

For a span you need:

(% class="plainmessage publish-message" %)$message

Thanks
-Vincent

> On 19 Oct 2016, at 10:17, Pascal BASTIEN  wrote:
> 
> (I resend my previous message: it seem xwiki users list didn't receive it or 
> silent reject it)
> sorry maybe spaming?
> 
> 
> --- En date de : Mar 18.10.16, Pascal BASTIEN  a 
> écrit :
> 
>> De: Pascal BASTIEN 
>> Objet: riddle: howto insert a simple span with xwiki syntax?
>> À: "XWiki Users" 
>> Date: Mardi 18 octobre 2016, 9h07
>> Hello,
>> 
>> With wiki syntax I failed to insert a simple span in a
>> velocity macro (Blog./BlogCode):
>> 
>> #macro(publishMessageBox $message)
>> (% class="plainmessage publish-message" %)((($message)))
>> #end
>> 
>> display:
>> 
>> This article was published on 17/10/2016
>> 16:47:06
>> 
>> 
>> and I want a span in front of $message like this:
>> 
>>  This article was published
>> on 17/10/2016 16:47:06
>> 
>> 
>> Is it possible (I can not use {{html}} because code is
>> escaped)?
>> 
>> Here my test and what is displayed:
>> (% class="plainmessage publish-message" %)%
>> class="glyphicon glyphicon-globe" %)((( )))$message)))
>> display
>> 
>> 
>> This article was published on 17/10/2016
>> 16:47:06
>> 
>> 
>> => With div instead span it is ok BUT there are 
>> inserted :-( !
>> 
>> (% class="plainmessage publish-message" %)%
>> class="glyphicon glyphicon-globe" %)$message)))
>> 
>> 
>> 
>> This article
>> was published on 17/10/2016 16:47:06
>> 
>> 
>> 
>> => span inserted BUT I don't want end of span at the end
>> of the $message
>> 
>> (% class="plainmessage publish-message" %)%
>> class="glyphicon glyphicon-globe" %)((())) $message)))
>> 
>> 
>> 
>> This article was published on 17/10/2016
>> 16:47:06
>> 
>> 
>> => With div instead span it is ok BUT there are 
>> inserted :-( !
>> 
>> Have you got a solution?
>> Thxs
>> 
>> Pascal B
>> 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users