Hi,
I'd like to know if it's possible for a livetable on the main wiki to list
pages from a subwiki that contain objects of a class defined on the subwiki.
Thanks,
Jamal
--
View this message in context: http://xwiki.475771.n2.nabble.com/Cross-wiki-livetable-tp7594795.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
In my quest to import JSPWiki data into xWiki I found a thread about writing a new Filter Module.
I see the source code of the Confluence Filter but I'm confused about this.
Can I write it as an xWiki component ? Can I write it without embedded it into xwiki source code ?
François B.
This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
Thank you Caleb!
On Apr 28, 2015, at 5:00 AM, users-request(a)xwiki.org wrote:
Send users mailing list submissions to
users(a)xwiki.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.xwiki.org/mailman/listinfo/users
or, via email, send a message with subject or body 'help' to
users-request(a)xwiki.org
You can reach the person managing the list at
users-owner(a)xwiki.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of users digest..."
Today's Topics:
1. Re: How to Add WYSIWIG toolbar button (Marius Dumitru Florea)
2. SSL on Tomcat 7 Xwiki (Niko B.)
3. Re: SSL on Tomcat 7 Xwiki (Caleb James DeLisle)
4. Re: How to Add WYSIWIG toolbar button (Mahomed Hussein)
----------------------------------------------------------------------
Message: 1
Date: Mon, 27 Apr 2015 21:17:52 +0300
From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] How to Add WYSIWIG toolbar button
Message-ID:
<CALZcbBZ4o0qor0vtPxo-XmzkxVK1cus3FmpqFzaRRMt9CgAT0A(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
On Fri, Apr 24, 2015 at 7:27 PM, Mahomed Hussein
<Mahomed(a)custodiandc.com> wrote:
> Hi
>
> I have a problem where users want to highlight text in the WYSIWIG editor and press a button on the toolbar to automatically add the {{code}}, {{warning}} etc. start and end tags to the text. I know how to add a macro button and to style it. But the problem with the macro is that it pops up a form with a text area that you then need to fill in with text you want to put inside the tags. The behaviour I am looking for is similar to highlighting text and then pressing the Bold button on the toolbar.
>
> I have done some digging/searching/googling and found the simpledittoolbar.vm and I?ve customised this and added the copy to my skin. I have added the following code in the relevant sections and it works perfectly when I click Edit>Wiki but it doesn?t show on the toolbar when I click Edit>WYSIWIG. I am running XWiki 7.0
simpledittoolbar.vm affects only the wiki editor.
>
> #set($discard = $syntax10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> #set($discard = $syntax20Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> #set($discard = $confluence10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> So any idea how I can make the button show on the WYSIWIG toolbar? Alternatively how do I make the macro execute on the highlighted text?
It's not simple. You have two options:
(1) Put a button on the toolbar with something like
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
then listen on click and use
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
#getSelectionRange() to access the selected text and then
#getCommandManager() to
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
#execute the 'macroInsert' command. The complex part is to understand
the format of the command parameter. You can check
https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwi…
.
(2) Write a plugin for the WYSIWYG editor from Java, but for this
you'll have to recompile the editor and thus you'll end up with a
custom editor, which is harder to maintain over time and may cause
upgrade headaches.
Hope this helps,
Marius
>
> Thanks in advance.
>
>
> Kind regards,
>
> Mahomed
>
>
>
>
>
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
------------------------------
Message: 2
Date: Mon, 27 Apr 2015 11:57:07 -0700
From: "Niko B." <nikofication(a)gmail.com>
To: users <users(a)xwiki.org>
Subject: [xwiki-users] SSL on Tomcat 7 Xwiki
Message-ID:
<CAB3iuQ45z7VczqhqS56f_o0z1PJ7BzfUci-Yc9+5vXwZmE5-vw(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi,
I am trying to setup SSL/TLS on xwiki running tomcat7. I am trying to find
the tomcat conf file and the java directory but they dont seem to be in the
default location. Since we are running tomcat, the ssl certificate would
have to be in tomcat correct? Would this be easier in Jetty? Does anyone
have instructions on how to setup SSL/TLS on xwiki or can someone point me
in the right direction?
Thanks in advance!
------------------------------
Message: 3
Date: Tue, 28 Apr 2015 10:11:43 +0200
From: Caleb James DeLisle <cjd(a)cjdns.fr>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] SSL on Tomcat 7 Xwiki
Message-ID: <553F40BF.2010501(a)cjdns.fr>
Content-Type: text/plain; charset=utf-8
I know it's possible to setup tomcat itself to do TLS but personally I would
look at using an Apache/AJP connector or Nginx/HTTP for handling the TLS and
proxying back to the Tomcat server. I know Apache/AJP -> Tomcat to be well
tested but I'll throw in a word for Nginx/HTTP -> Jetty just because I have
a personal soft spot for it :)
Thanks,
Caleb
> On 04/27/2015 08:57 PM, Niko B. wrote:
> Hi,
>
> I am trying to setup SSL/TLS on xwiki running tomcat7. I am trying to find
> the tomcat conf file and the java directory but they dont seem to be in the
> default location. Since we are running tomcat, the ssl certificate would
> have to be in tomcat correct? Would this be easier in Jetty? Does anyone
> have instructions on how to setup SSL/TLS on xwiki or can someone point me
> in the right direction?
>
> Thanks in advance!
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
--
Satire is the escape hatch from the cycle of sorrow, hatred and violence. #JeSuisCharlie
------------------------------
Message: 4
Date: Tue, 28 Apr 2015 09:31:57 +0000
From: Mahomed Hussein <Mahomed(a)CustodianDC.com>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] How to Add WYSIWIG toolbar button
Message-ID: <65b0756296074e7c9bb26c2994633ec9(a)CDC-EX1.cdc.local>
Content-Type: text/plain; charset="utf-8"
Hi Marius
Thank you very much for this info. It is very helpful. Unfortunately I may take me a bit of time to assimilate and understand it all :-) But I will certainly give it a try in the next few weeks. I'll do my best to remember to post my results.
Kind regards,
Mahomed
-----Original Message-----
From: users [mailto:users-bounces@xwiki.org] On Behalf Of Marius Dumitru Florea
Sent: 27 April 2015 19:18
To: XWiki Users
Subject: Re: [xwiki-users] How to Add WYSIWIG toolbar button
On Fri, Apr 24, 2015 at 7:27 PM, Mahomed Hussein
<Mahomed(a)custodiandc.com> wrote:
> Hi
>
> I have a problem where users want to highlight text in the WYSIWIG editor and press a button on the toolbar to automatically add the {{code}}, {{warning}} etc. start and end tags to the text. I know how to add a macro button and to style it. But the problem with the macro is that it pops up a form with a text area that you then need to fill in with text you want to put inside the tags. The behaviour I am looking for is similar to highlighting text and then pressing the Bold button on the toolbar.
>
> I have done some digging/searching/googling and found the simpledittoolbar.vm and I?ve customised this and added the copy to my skin. I have added the following code in the relevant sections and it works perfectly when I click Edit>Wiki but it doesn?t show on the toolbar when I click Edit>WYSIWIG. I am running XWiki 7.0
simpledittoolbar.vm affects only the wiki editor.
>
> #set($discard = $syntax10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> #set($discard = $syntax20Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> #set($discard = $confluence10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> So any idea how I can make the button show on the WYSIWIG toolbar? Alternatively how do I make the macro execute on the highlighted text?
It's not simple. You have two options:
(1) Put a button on the toolbar with something like
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
then listen on click and use
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
#getSelectionRange() to access the selected text and then
#getCommandManager() to
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
#execute the 'macroInsert' command. The complex part is to understand
the format of the command parameter. You can check
https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwi…
.
(2) Write a plugin for the WYSIWYG editor from Java, but for this
you'll have to recompile the editor and thus you'll end up with a
custom editor, which is harder to maintain over time and may cause
upgrade headaches.
Hope this helps,
Marius
>
> Thanks in advance.
>
>
> Kind regards,
>
> Mahomed
>
>
>
>
>
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
Subject: Digest Footer
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
End of users Digest, Vol 93, Issue 57
*************************************
Hi Marius
Thank you very much for this info. It is very helpful. Unfortunately I may take me a bit of time to assimilate and understand it all :-) But I will certainly give it a try in the next few weeks. I'll do my best to remember to post my results.
Kind regards,
Mahomed
-----Original Message-----
From: users [mailto:users-bounces@xwiki.org] On Behalf Of Marius Dumitru Florea
Sent: 27 April 2015 19:18
To: XWiki Users
Subject: Re: [xwiki-users] How to Add WYSIWIG toolbar button
On Fri, Apr 24, 2015 at 7:27 PM, Mahomed Hussein
<Mahomed(a)custodiandc.com> wrote:
> Hi
>
> I have a problem where users want to highlight text in the WYSIWIG editor and press a button on the toolbar to automatically add the {{code}}, {{warning}} etc. start and end tags to the text. I know how to add a macro button and to style it. But the problem with the macro is that it pops up a form with a text area that you then need to fill in with text you want to put inside the tags. The behaviour I am looking for is similar to highlighting text and then pressing the Bold button on the toolbar.
>
> I have done some digging/searching/googling and found the simpledittoolbar.vm and I’ve customised this and added the copy to my skin. I have added the following code in the relevant sections and it works perfectly when I click Edit>Wiki but it doesn’t show on the toolbar when I click Edit>WYSIWIG. I am running XWiki 7.0
simpledittoolbar.vm affects only the wiki editor.
>
> #set($discard = $syntax10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> #set($discard = $syntax20Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
> #set($discard = $confluence10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
>
> So any idea how I can make the button show on the WYSIWIG toolbar? Alternatively how do I make the macro execute on the highlighted text?
It's not simple. You have two options:
(1) Put a button on the toolbar with something like
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
then listen on click and use
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
#getSelectionRange() to access the selected text and then
#getCommandManager() to
http://extensions.xwiki.org/xwiki/bin/view/Extension/WYSIWYG+Editor+Module#…
#execute the 'macroInsert' command. The complex part is to understand
the format of the command parameter. You can check
https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwi…
.
(2) Write a plugin for the WYSIWYG editor from Java, but for this
you'll have to recompile the editor and thus you'll end up with a
custom editor, which is harder to maintain over time and may cause
upgrade headaches.
Hope this helps,
Marius
>
> Thanks in advance.
>
>
> Kind regards,
>
> Mahomed
>
>
>
>
>
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi,
I am trying to setup SSL/TLS on xwiki running tomcat7. I am trying to find
the tomcat conf file and the java directory but they dont seem to be in the
default location. Since we are running tomcat, the ssl certificate would
have to be in tomcat correct? Would this be easier in Jetty? Does anyone
have instructions on how to setup SSL/TLS on xwiki or can someone point me
in the right direction?
Thanks in advance!
Hi
I have a problem where users want to highlight text in the WYSIWIG editor and press a button on the toolbar to automatically add the {{code}}, {{warning}} etc. start and end tags to the text. I know how to add a macro button and to style it. But the problem with the macro is that it pops up a form with a text area that you then need to fill in with text you want to put inside the tags. The behaviour I am looking for is similar to highlighting text and then pressing the Bold button on the toolbar.
I have done some digging/searching/googling and found the simpledittoolbar.vm and I’ve customised this and added the copy to my skin. I have added the following code in the relevant sections and it works perfectly when I click Edit>Wiki but it doesn’t show on the toolbar when I click Edit>WYSIWIG. I am running XWiki 7.0
#set($discard = $syntax10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
#set($discard = $syntax20Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
#set($discard = $confluence10Elements.add(['code', '{{code}}', '{{/code}}', 'page_code']))
So any idea how I can make the button show on the WYSIWIG toolbar? Alternatively how do I make the macro execute on the highlighted text?
Thanks in advance.
Kind regards,
Mahomed
I'm sure we can debate this all day.
XWiki is very simple for end users to use. The actual purpose of the wiki (to allow people to create/edit/view articles/pages) is simple and straight-forward. I have everyone in our organisation using it successfully, and trust me, some of the end users should not be allowed near computers. But they managed to use the system for its purpose just fine. That doesn't mean that they can all install, configure, update and customise XWiki.
I'll give you another analogy. XWiki is like a fine car. Cars are easy to use and drive by almost anyone. But that doesn't mean everyone can fix a car. Even if you know a little bit about how engines work and how to change the oil etc. Some jobs just have to be left to the professionals. XWiki is the same. Everyone can use it very easily. But when it comes to the advanced stuff, if you can't understand the excellent documentation, and no one can help you on the mailing list then the problem is not with XWiki.
I consider myself a very competent engineer and developer, but there are some things that even I find quite advanced in XWiki. That goes to show how powerful it is (and what a great job the developers have done).
Anyway I don’t think this is too constructive for the mailing list so I will stop here. You are entitled to your opinion and I am to mine (I think XWiki is great). If you don't like XWiki then I hope you find something that suits you better. That's the beauty of the internet and open source. You can always find something that suits you or make your own :)
Kind regards,
Mahomed
-----Original Message-----
From: users [mailto:users-bounces@xwiki.org] On Behalf Of Pascal BASTIEN
Sent: 22 April 2015 22:23
To: XWiki Users; Maciej Fokt
Subject: Re: [xwiki-users] Clear them all! :p
Hello,I'm sorry, I'm not agree with you : a powerfull system must hide the systems complexity... And it is a wiki : it's mean if there aren't enough simple documentation then anybody (high ueser AND "normal people" with non computer vision) must write a page to contribute and make more available for "simple" user. :-)
IMO we can use a simple xwiki and/or use higher level xwiki and/or a customized one. :-)
Pascal B.
De : Mahomed Hussein <Mahomed(a)CustodianDC.com>
À : Maciej Fokt <maciek.fokt(a)taxi123.pl>; XWiki Users <users(a)xwiki.org>
Envoyé le : Mercredi 22 avril 2015 18h37
Objet : Re: [xwiki-users] Clear them all! :p
That's just the way technology is. The more powerful a system is, and the more options it has, then the more "technical" it is. If you want something that's easy for "no computer" people then I'm afraid you need to use something which has less features and power. A jumbo jet pilot needs to have more experience and knowledge than a Cessna pilot. The jumbo jet has more buttons and features and probably cannot be easily or ever flown by a Cessna pilot. That's just the way things are.
XWiki actually has VERY good documentation (some of the best I've seen, and I've seen a lot of systems). It also has a helpful mailing list. Unfortunately it's not XWiki' s fault if you can't understand the documentation or the help that you have been offered several times here.
I genuinely hope you manage to find a system that you like and works for you.
Kind regards,
Mahomed
-----Original Message-----
From: Maciej Fokt [mailto:maciek.fokt@taxi123.pl]
Sent: 22 April 2015 17:27
To: XWiki Users; Mahomed Hussein
Subject: Re: [xwiki-users] Clear them all! :p
No way... I have back to the 1.1 version and now i haven't settings...
Why XWiki (good, big and helpful toll) can be so hard for "no computer"
people...
Thanks all for help, but XWiki is too hard for me, I think.
W dniu .04.2015 o 18:00 Mahomed Hussein <Mahomed(a)custodiandc.com> pisze:
> He has a problem with his install and I believe he wants to "reset" the
> system so it will be the same as when he installed it for the first
> time. I don't think this is possible without uninstalling, then
> searching and deleting all files/folders related and then installing
> from the beginning.
>
>
> Kind regards,
>
>
>
>
> -----Original Message-----
> From: users [mailto:users-bounces@xwiki.org] On Behalf Of Ecaterina
> Moraru (Valica)
> Sent: 22 April 2015 16:30
> To: XWiki Users
> Subject: Re: [xwiki-users] Clear them all! :p
>
> I guess you could revert the WebPreferences history to version 1.1.
>
> For example, in the Administration you have this URL:
> - "xwiki/bin/admin/XWiki/XWikiPreferences"
> You could do:
> - "xwiki/bin/view/XWiki/XWikiPreferences?viewer=history"
> and then on the version 1.1 use "Rollback".
>
> Not sure if this is what you meant.
> Thanks,
> Caty
>
>
> On Wed, Apr 22, 2015 at 6:01 PM, Maciej Fokt <maciek.fokt(a)taxi123.pl>
> wrote:
>
>>
>> Hello,
>>
>> Is there option to return to the first contain and settings? I mean, I
>> want to clear everything. I would like to back to the settings after
>> installation.
>>
>> Greetings,
>> Maciek.
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
10 days ago you released 6.4.4 we a few important bug fixes. I now want to
switch from 5.2.1 to 7.0, but I am waiting for the fixes in 6.4.4 to be
included in 7.0. When do you plan to release 7.0.1? And many thanks for an
excellent product!
--
View this message in context: http://xwiki.475771.n2.nabble.com/XWIKI-7-01-tp7594780.html
Sent from the XWiki- Users mailing list archive at Nabble.com.