Re: [xwiki-users] Incident lors de l'enregistrement d'une page

2016-06-21 Thread lewil84
Hello,

Whether it is from the model of "empty" page supplied in the XWiki or on a
model of page created beforehand, having to stick an image or having to
insert an image, it happens that by moment to see systematically that the
phase of recording does not take place or indicates me an error message of
the style " Bad gateway " or " servee not responding ".

Thank you for your help(assistant)

Cordially



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Incident-lors-de-l-enregistrement-d-une-page-tp7600034p7600035.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


[xwiki-users] need help about JS/webjar integration

2016-06-21 Thread Pascal BASTIEN
Hi,

about http://jira.xwiki.org/browse/XWIKI-13470

I can use https://silviomoreto.github.io/bootstrap-select/ JS if I copy js 
content in a JSX object between this stuff:
require(['jquery'], function ($) {
});

To PullRequesting I need to writing cleaner code: I mean "use RequireJS and 
WebJars API to load and use the bootstrap-select widget"

Then I copied bootstrap-select JAR to WEB-INF/lib and add add this 2 lines in 
./skins/flamingo/javascript.vm:
(bootstrap-select requires jQuery v1.8.0+, Bootstrap’s dropdown.js component, 
and Bootstrap's CSS.)
--
require.config({
  paths: {
'jquery': '#removeJsSuffix($services.webjars.url("jquery", 
"jquery${jsExtension}"))',
'bootstrap': '#removeJsSuffix($services.webjars.url("bootstrap", 
"js/bootstrap${jsExtension}"))',
'bootstrap-select': 
'#removeJsSuffix($services.webjars.url("bootstrap-select/1.10.0/js/bootstrap-select.js"))',


 shim: {
'bootstrap' : ['jquery'],
'bootstrap-select' : ['jquery'],
(or 'bootstrap-select' : ['jquery', 'bootstrap'],


I tested with minify version too with
shim: {
'bootstrap' : ['jquery'],
'bootstrap-select': {
  deps: ['jquery', 'bootstrap'],
  exports: 'bootstrap-select'
  },
http://requirejs.org/docs/api.html#config-shim
--

Unfortunaly when I use the webjar with this config, bootstrap-select doesn't 
work.

Do I miss something? 

(Source Page generated contain:
'bootstrap-select': 
'/xwiki/webjars/wiki%3Axwiki/bootstrap-select/1.10.0/js/bootstrap-select.js?r=1',
and my browser can read bootstrap-select.js content at this URL.)


(I tried to enables this too:

pluginsToDisable = ['collapse', 'dropdown', 'modal', 'tooltip', 'tab', 
'popover'] => pluginsToDisable = ['collapse',  'modal', 'tooltip', 'tab', 
'popover'] 

Any help are welcome.
Thxs


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


[xwiki-users] Incident lors de l'enregistrement d'une page

2016-06-21 Thread lewil84
Bonjour,

Que ce soit à partir du modèle de page "vide" fourni dans le XWiki ou sur un
modèle de page créé au préalable, après avoir coller une image ou insérer
une image, il arrive que par moment voir systématiquement que la phase
d'enregistrement ne se déroule pas ou m'indique un message d'erreur du style
"Bad gateway" ou "servee not responding".

Merci pour votre aide

Cordialement

lewil84



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Incident-lors-de-l-enregistrement-d-une-page-tp7600034.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


[xwiki-users] [myxwiki] new wiki request

2016-06-21 Thread paulebou...@gmail.com

   Hi,

  Here are informations for the creation of a first wiki on the myxwiki 
plateform :


* *description*:

  I plan to use this plateform to propose collaborative spaces and apps 
to members of citizen groups concerned by urbanities from the city of Bagnolet.

* *owner name*:
  Paule Bouton

* *wiki name*:
  bagnoletcqcentre.myxwiki.org


  Thanks in advance, Best regards.



---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] need help about JS/webjar integration

2016-06-21 Thread Pascal BASTIEN
I found a solution that's working here:
http://jsfiddle.net/9xr5af00/

(next step: CSS stuff)


En date de : Mar 21.6.16, Pascal BASTIEN  a écrit :

 Objet: need help about JS/webjar integration
 À: "XWiki Users" 
 Date: Mardi 21 juin 2016, 11h53
 
 Hi,
 
 about http://jira.xwiki.org/browse/XWIKI-13470
 
 I can use https://silviomoreto.github.io/bootstrap-select/ JS if
 I copy js content in a JSX object between this stuff:
 require(['jquery'], function ($) {
 });
 
 To PullRequesting I need to writing cleaner code: I mean
 "use RequireJS and WebJars API to load and use the
 bootstrap-select widget"
 
 Then I copied bootstrap-select JAR to WEB-INF/lib and add
 add this 2 lines in ./skins/flamingo/javascript.vm:
 (bootstrap-select requires jQuery v1.8.0+, Bootstrap’s
 dropdown.js component, and Bootstrap's CSS.)
 --
 require.config({
   paths: {
     'jquery':
 '#removeJsSuffix($services.webjars.url("jquery",
 "jquery${jsExtension}"))',
     'bootstrap':
 '#removeJsSuffix($services.webjars.url("bootstrap",
 "js/bootstrap${jsExtension}"))',
     'bootstrap-select':
 
'#removeJsSuffix($services.webjars.url("bootstrap-select/1.10.0/js/bootstrap-select.js"))',
 
 
  shim: {
     'bootstrap' : ['jquery'],
     'bootstrap-select' : ['jquery'],
 (or 'bootstrap-select' : ['jquery', 'bootstrap'],
 
 
 I tested with minify version too with
 shim: {
     'bootstrap' : ['jquery'],
     'bootstrap-select': {
       deps: ['jquery', 'bootstrap'],
       exports: 'bootstrap-select'
       },
 http://requirejs.org/docs/api.html#config-shim
 --
 
 Unfortunaly when I use the webjar with this config,
 bootstrap-select doesn't work.
 
 Do I miss something? 
 
 (Source Page generated contain:
 'bootstrap-select':
 
'/xwiki/webjars/wiki%3Axwiki/bootstrap-select/1.10.0/js/bootstrap-select.js?r=1',
 and my browser can read bootstrap-select.js content at this
 URL.)
 
 
 (I tried to enables this too:
 
 pluginsToDisable = ['collapse', 'dropdown', 'modal',
 'tooltip', 'tab', 'popover'] => pluginsToDisable =
 ['collapse',  'modal', 'tooltip', 'tab', 'popover'] 
 
 Any help are welcome.
 Thxs
 
 
 Pascal B
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Xwiki replace " " with "+" on title

2016-06-21 Thread stefbort
Hi.
Tanks Helged. The issue 59317 may be the cause. I did other two test and
with Tomcat 9 Xwiki dosn't work fine.
URIEncoding is not cause or solution.
At the moment I am using Tomcat 8.0.35 under Linux and It works fine.




--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Xwiki-replace-with-on-title-tp7599972p7600031.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


[xwiki-users] [ANN] XWiki 8.2 Milestone 2 released

2016-06-21 Thread Eduard Moraru
The XWiki development team is proud to announce the availability of XWiki
8.2 Milestone 2.

This milestone release features a redesigned default homepage, a new
application index in the drawer and minor improvements to the template
providers, the Flamingo skin and Ratings.

For developers, we have some welcomed Livetable macro improvements and a
long overdue change of behaviour for the getRenderedContent method.

You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download

Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki82M2

The following people have contributed code to this release (sorted
alphabetically):

Alexandru Cotiuga
Clemens Robbenhaar
Denis Gervalle
Ecaterina Moraru (Valica)
Eduard Moraru
Guillaume Delhumeau
Marius Dumitru Florea
Pascal Bastien
Thomas Mortagne
Vincent Massol

Thanks for your support
-The XWiki dev team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users