Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-23 Thread Paul Libbrecht
Hello all, here would be the query: select xwd_fullname from xwikidoc where xwd_content like concat("%",char(1),"%"); (I've seen many indicate that || would be the concatenation operator, but it seems like it is not the case in like operands) Based on that, Peter, you should be able to filter t

[xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Stuart Stephen
Hi all, In various web applications these days it is now possible to copy and paste images into web pages which makes the process of adding an image to a document online so much easier as you do not need to save it off somewhere, then upload it. Copy and paste makes the process so much more eff

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread vinc...@massol.net
Hi Stuart, I agree that’s would be a very nice feature addition: ability to drag and drop images as attachments directly on wiki pages (without having to go through edit). Strangely I couldn’t find a jira issue for this. Would be awesome if you could create one at http://jira.xwiki.org Thanks

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Eduard Moraru
Hi, Found this issue http://jira.xwiki.org/browse/XWIKI-10026 However, as far as I have tested it, it works. Taking a screenshot, copying it to the clicpboard and pasting in wysiwyg produces an [[image:data:]] type image. Then, right clicking on an image on a website, selecting "Copy Image" (Fir

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Guillaume Lerouge
Hi Stuart, thanks for your feedback. This is indeed a frequent request. In the current WYSIWYG editor, it partially works (your image has to be available from a public server). However, we added full support for this feature in the last version of the CKEditor extension: http://extensions.xwiki.o

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Paul Libbrecht
Guillaume Lerouge wrote: > Please also note that drag & drop of images currently work if you go to the > "attachments" tab of any page (while in view mode) and drop your image > there. What's even better for productivity: it works with multiple files. That makes it very effective. paul _

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread vinc...@massol.net
  On 23 Feb 2016 at 12:06:43, Guillaume Lerouge (guilla...@xwiki.com(mailto:guilla...@xwiki.com)) wrote: > Hi Stuart, > > thanks for your feedback. This is indeed a frequent request. In the current > WYSIWYG editor, it partially works (your image has to be available from a > public server). >

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Eduard Moraru
On Tue, Feb 23, 2016 at 1:22 PM, vinc...@massol.net wrote: > > > On 23 Feb 2016 at 12:06:43, Guillaume Lerouge (guilla...@xwiki.com(mailto: > guilla...@xwiki.com)) wrote: > > > Hi Stuart, > > > > thanks for your feedback. This is indeed a frequent request. In the > current > > WYSIWYG editor, it

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Eduard Moraru
On Tue, Feb 23, 2016 at 3:38 PM, Eduard Moraru wrote: > > > On Tue, Feb 23, 2016 at 1:22 PM, vinc...@massol.net > wrote: > >> >> >> On 23 Feb 2016 at 12:06:43, Guillaume Lerouge (guilla...@xwiki.com >> (mailto:guilla...@xwiki.com)) wrote: >> >> > Hi Stuart, >> > >> > thanks for your feedback. Th

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Guillaume Lerouge
Hi Vincent, On Tue, Feb 23, 2016 at 12:22 PM, vinc...@massol.net wrote: > > > On 23 Feb 2016 at 12:06:43, Guillaume Lerouge (guilla...@xwiki.com(mailto: > guilla...@xwiki.com)) wrote: > > > Hi Stuart, > > > > thanks for your feedback. This is indeed a frequent request. In the > current > > WYSIW

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Guillaume Lerouge
Hi Edy, On Tue, Feb 23, 2016 at 2:38 PM, Eduard Moraru wrote: > On Tue, Feb 23, 2016 at 1:22 PM, vinc...@massol.net > wrote: > > > > > > > On 23 Feb 2016 at 12:06:43, Guillaume Lerouge (guilla...@xwiki.com > (mailto: > > guilla...@xwiki.com)) wrote: > > > > > Hi Stuart, > > > > > > thanks for y

Re: [xwiki-users] XAR Export fails - Invalid white space character (0x1) in text to output

2016-02-23 Thread Peter John Acklam
Thanks everyone! The problem has been solved, and the odd characters are gone. The query didn't work without some modifications. I ended up using select xwd_fullname from xwikidoc where xwd_content like '%' || chr(1) || '%'; (concat() only takes two operands, so it was easier to use ||. My sqlp

[xwiki-users] Listing connected users

2016-02-23 Thread Bruno
Hello, I try to list the connected users. I fall on "Connected Users List Macro" but it dates from 2014. Should I use this extension or is there another way to list open connections ? Thank you, Signature mails _ Bruno Joffredo Ecole Centrale

[xwiki-users] Deleting Admin user causes document tree to not load

2016-02-23 Thread Mark Sack
My understanding is that I should be able to replace the Admin user with another user that I've created and added to the Admin group. But when I delete the Admin user using the other user in the Admin group, I find that the document tree no longer loads. My configuration is as follows: XWiki Enter

Re: [xwiki-users] Deleting Admin user causes document tree to not load

2016-02-23 Thread Mark Sack
A satisfactory alternative for our situation would be to hide the Admin user from all but users in the Admin group. That is a feature that I can see coming in handy for other scenarios as well (for example, someone leaves the organization but for some reason we don't want to remove them from the us

Re: [xwiki-users] Deleting Admin user causes document tree to not load

2016-02-23 Thread vinc...@massol.net
Hi Mark, On 23 Feb 2016 at 16:15:34, Mark Sack (mark.s...@secti.al.gov.br(mailto:mark.s...@secti.al.gov.br)) wrote: > My understanding is that I should be able to replace the Admin user with > another user that I've created and added to the Admin group. But when I > delete the Admin user using t

Re: [xwiki-users] Deleting Admin user causes document tree to not load

2016-02-23 Thread vinc...@massol.net
  On 23 Feb 2016 at 17:57:24, Mark Sack (mark.s...@secti.al.gov.br(mailto:mark.s...@secti.al.gov.br)) wrote: > A satisfactory alternative for our situation would be to hide the Admin user > from all but users in the Admin group. That is a feature that I can see > coming in handy for other scenari

Re: [xwiki-users] Deleting Admin user causes document tree to not load

2016-02-23 Thread Thomas Mortagne
On Tue, Feb 23, 2016 at 6:02 PM, vinc...@massol.net wrote: > > On 23 Feb 2016 at 17:57:24, Mark Sack > (mark.s...@secti.al.gov.br(mailto:mark.s...@secti.al.gov.br)) wrote: > >> A satisfactory alternative for our situation would be to hide the Admin user >> from all but users in the Admin group. T

Re: [xwiki-users] Listing connected users

2016-02-23 Thread vinc...@massol.net
Does it work? :) (why don’t you try it and let us know :)) Thanks -Vincent On 23 Feb 2016 at 15:23:06, Bruno (bruno.joffr...@ec-nantes.fr) wrote: Hello, I try to list the connected users. I fall on "Connected Users List Macro" but it dates from 2014. Should I use this extension or is there ano

Re: [xwiki-users] Listing connected users

2016-02-23 Thread vinc...@massol.net
  On 23 Feb 2016 at 18:37:37, vinc...@massol.net (vinc...@massol.net(mailto:vinc...@massol.net)) wrote: > Does it work? :) (why don’t you try it and let us know :)) I don’t know of any other BTW. Thanks -Vincent > Thanks > -Vincent > > > > On 23 Feb 2016 at 15:23:06, Bruno > (bruno.jo

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread vinc...@massol.net
  On 23 Feb 2016 at 14:38:27, Eduard Moraru (enygma2...@gmail.com(mailto:enygma2...@gmail.com)) wrote: > On Tue, Feb 23, 2016 at 1:22 PM, vinc...@massol.net > wrote: > > > > > > > On 23 Feb 2016 at 12:06:43, Guillaume Lerouge (guilla...@xwiki.com(mailto: > > guilla...@xwiki.com)) wrote: >

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread vinc...@massol.net
  On 23 Feb 2016 at 15:14:06, Guillaume Lerouge (guilla...@xwiki.com(mailto:guilla...@xwiki.com)) wrote: > Hi Edy, > > On Tue, Feb 23, 2016 at 2:38 PM, Eduard Moraru wrote: > > > On Tue, Feb 23, 2016 at 1:22 PM, vinc...@massol.net > > wrote: > > > > > > > > > > > On 23 Feb 2016 at 12:06

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Eduard Moraru
On Tue, Feb 23, 2016 at 7:47 PM, vinc...@massol.net wrote: > > > > > > On 23 Feb 2016 at 15:14:06, Guillaume Lerouge (guilla...@xwiki.com(mailto: > guilla...@xwiki.com)) wrote: > > > Hi Edy, > > > > On Tue, Feb 23, 2016 at 2:38 PM, Eduard Moraru wrote: > > > > > On Tue, Feb 23, 2016 at 1:22 PM, v

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread vinc...@massol.net
Hi Edy, On 23 Feb 2016 at 22:35:18, Eduard Moraru (enygma2...@gmail.com(mailto:enygma2...@gmail.com)) wrote: > On Tue, Feb 23, 2016 at 7:47 PM, vinc...@massol.net > wrote: > > > > > > > > > > > > > On 23 Feb 2016 at 15:14:06, Guillaume Lerouge (guilla...@xwiki.com(mailto: > > guilla...@xwiki

Re: [xwiki-users] Feature Request: Allow copy & paste of images into WYSIWYG editor

2016-02-23 Thread Eduard Moraru
Why not launch a javascript event when an attachment is added to a page? If you are in edit mode and you have an editor listening to such an event, it can also include the attachment in the editor (if it's an image), etc. Right now we already have the feature of adding an attachment from view mode