Hi Vincent,
To push XWiki a biiig step forward, you should think about improving the WYSIWYG editor
in my opinion. Always if I explain users XWiki I can see surprised faces, if they see the
limited possibilities of the editor. Especially 2 features are always highlighted to keep
their "MS Office" way of working:
1. Table handling (formatting and usage - today not only displaying tables is needed)
2. Pasting images in a page in edit mode via clipboard.
THX
Matthias
-----Original Message-----
From: users [mailto:users-bounces@xwiki.org] On Behalf Of users-request(a)xwiki.org
Sent: Freitag, 5. Dezember 2014 16:34
To: users(a)xwiki.org
Subject: users Digest, Vol 89, Issue 7
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. What would you like to see in the XWiki 7.x cycle?
(=?utf-8?Q?vincent=40massol.net?=)
2. Re: What would you like to see in the XWiki 7.x cycle?
(Daniel Lundh)
3. run document skript with admin rights (Adrien Moi)
4. Re: What would you like to see in the XWiki 7.x cycle?
(Pascal BASTIEN)
5. I can not use less variable in a SSX (Pascal BASTIEN)
6. Re: I can not use less variable in a SSX
(Ecaterina Moraru (Valica))
7. Re: I can not use less variable in a SSX
(Ecaterina Moraru (Valica))
----------------------------------------------------------------------
Message: 1
Date: Fri, 5 Dec 2014 13:17:43 +0100
From: "=?utf-8?Q?vincent=40massol.net?=" <vincent(a)massol.net>
To: XWiki Users <users(a)xwiki.org>
Subject: [xwiki-users] What would you like to see in the XWiki 7.x
cycle?
Message-ID: <etPan.5481a267.62bbd95a.d55(a)Vincents-MacBook-Pro.local>
Content-Type: text/plain; charset="utf-8"
Dear XWiki users,
We?re getting close to the end of the XWiki 6.x cycle (6.4 is planned for the end of
December) and in January we?ll start developing the XWiki 7.x cycle (which will last the
whole 2015 year), starting with XWiki 7.0.
Thus it?s time for the XWiki devs to start defining the global roadmap for XWiki 7.x.
As XWiki users, I?d like to know if you have some needs for XWiki 7.x. What would you be
interested in seeing in XWiki 7.x?
I?d like to start some proposal on the xwiki devs list (for the XWiki 7.x cycle) around
end of December so it would be nice if you could shoot your suggestion ideas fast so that
we can take them into account in the discussion! :)
Thanks a lot for your help and I hope you?re enjoying using XWiki!?
-Vincent Massol
XWiki Committer
------------------------------
Message: 2
Date: Fri, 5 Dec 2014 13:34:32 +0100
From: Daniel Lundh <dlundh(a)gmail.com>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] What would you like to see in the XWiki 7.x
cycle?
Message-ID:
<CAJcM3q-w3=ohitUcPxtFGZiQWgsFqiteBDKEcA1=V8DLNGQ4Nw(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hello.
New XWiki user here.
First, a big thanks, we are enjoying XWiki. :)
We have a fairly common use case, using the wiki for documenting servers and systems,
trying to build an SKMS ala ITIL.
What i'd like to see is better formatting of text being cut & pasted from
(mainly) Word.
The single biggest issue I have heard complaints about is formatting.
We are moving away from a Lotus Domino environment and here too the formatting is mangled
(this may have everything to do with Domino and nothing with XWiki however) when doing
copy/paste.
I'd like tables to work like they do in Excel. When I press the tab key I want to move
to the next field.
I want to be able to size the table with my mouse in real-time.
I want the columns to be plainly visible, not just the rows.
I want numbered lists to be a core feature.
Making text different colors and/or fonts should work like in a regular word processor,
with a menu item in the WYSIWYG editor.
That's from the top of my head, anyway.
Have a great weekend.
Regards,
Daniel
On Fri, Dec 5, 2014 at 1:17 PM, vincent(a)massol.net <vincent(a)massol.net>
wrote:
Dear XWiki users,
We?re getting close to the end of the XWiki 6.x cycle (6.4 is planned
for the end of December) and in January we?ll start developing the
XWiki 7.x cycle (which will last the whole 2015 year), starting with XWiki 7.0.
Thus it?s time for the XWiki devs to start defining the global roadmap
for XWiki 7.x.
As XWiki users, I?d like to know if you have some needs for XWiki 7.x.
What would you be interested in seeing in XWiki 7.x?
I?d like to start some proposal on the xwiki devs list (for the XWiki
7.x
cycle) around end of December so it would be nice if you could shoot
your suggestion ideas fast so that we can take them into account in
the discussion! :)
Thanks a lot for your help and I hope you?re enjoying using XWiki!
-Vincent Massol
XWiki Committer
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
--
Regards/Mvh
Daniel Lundh
------------------------------
Message: 3
Date: Fri, 5 Dec 2014 14:12:26 +0100
From: Adrien Moi <adrienmoi1988(a)hotmail.com>
To: "users(a)xwiki.org" <users(a)xwiki.org>
Subject: [xwiki-users] run document skript with admin rights
Message-ID: <DUB127-W2024960E044FCA9EBBB5BCB9790(a)phx.gbl>
Content-Type: text/plain; charset="iso-8859-1"
Hello !
on one wiki page I have a skript to delete a comment on another page. But when a user that
has no edit right tries to do it, it fails. Is there a way to go around this and let the
user delete the comment as if he had edit rights?
for reference here is my simplified code
{{groovy}}
yourDocReference = new
org.xwiki.model.reference.DocumentReference('xwiki','Main','WebHome');
yourDoc = xwiki.getDocument(yourDocReference);
comment = yourDoc.getComments();
if(comment.isEmpty()){
println("No Comment to remove!");}
else{
yourDoc.removeObject(comment[comment.size()-1]);
yourDoc.save();
println("First comment removed !")}
{{/groovy}}
thanks for the help
Adrien
------------------------------
Message: 4
Date: Fri, 5 Dec 2014 14:13:48 +0000 (UTC)
From: Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] What would you like to see in the XWiki 7.x
cycle?
Message-ID:
<1774339120.6063392.1417788828917.JavaMail.yahoo(a)jws11111.mail.ir2.yahoo.com>
Content-Type: text/plain; charset=UTF-8
Hello,
You invited us Vincent, then here my proposals.
+10 to thanks Xwiki task force team (especially to support my
+harassment)
WYSIWYG based on FckEditor better to work on tables IMO
+1: "I want the columns to be plainly visible, not just the rows"
+especially when we edit a table
Add tab "Source" on WYSIWYG editor in Blog and FAQ
Add anchor lists on the page (a macros?) to add an link to an anchor #HAnchorTitle) and
update anchor link when anchor target is renamed (difficult) & detect link with anchor
when a page is renamed.
Use pure CSS for xwiki menu (without JS)
Last but not least: forbidden Vincent to awake devs at 2 hours in the morning on IRC xwiki
chanel to chatting about an obscure xwiki code... ;-)
Thxs for all.
Pascal BASTIEN
De?: Daniel Lundh <dlundh(a)gmail.com>
??: XWiki Users <users(a)xwiki.org>
Envoy? le : Vendredi 5 d?cembre 2014 13h34
Objet?: Re: [xwiki-users] What would you like to see in the XWiki 7.x cycle?
Hello.
New XWiki user here.
First, a big thanks, we are enjoying XWiki. :)
We have a fairly common use case, using the wiki for documenting servers and systems,
trying to build an SKMS ala ITIL.
What i'd like to see is better formatting of text being cut & pasted from
(mainly) Word.
The single biggest issue I have heard complaints about is formatting.
We are moving away from a Lotus Domino environment and here too the formatting is mangled
(this may have everything to do with Domino and nothing with XWiki however) when doing
copy/paste.
I'd like tables to work like they do in Excel. When I press the tab key I want to move
to the next field.
I want to be able to size the table with my mouse in real-time.
I want the columns to be plainly visible, not just the rows.
I want numbered lists to be a core feature.
Making text different colors and/or fonts should work like in a regular word processor,
with a menu item in the WYSIWYG editor.
That's from the top of my head, anyway.
Have a great weekend.
Regards,
Daniel
On Fri, Dec 5, 2014 at 1:17 PM, vincent(a)massol.net <vincent(a)massol.net>
wrote:
Dear XWiki users,
We?re getting close to the end of the XWiki 6.x cycle (6.4 is planned
for the end of December) and in January we?ll start developing the
XWiki 7.x cycle (which will last the whole 2015 year), starting with XWiki 7.0.
Thus it?s time for the XWiki devs to start defining the global roadmap
for XWiki 7.x.
As XWiki users, I?d like to know if you have some needs for XWiki 7.x.
What would you be interested in seeing in XWiki 7.x?
I?d like to start some proposal on the xwiki devs list (for the XWiki
7.x
cycle) around end of December so it would be nice if you could shoot
your suggestion ideas fast so that we can take them into account in
the discussion! :)
Thanks a lot for your help and I hope you?re enjoying using XWiki!
-Vincent Massol
XWiki Committer
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
--
Regards/Mvh
Daniel Lundh
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
Message: 5
Date: Fri, 5 Dec 2014 15:24:26 +0000 (UTC)
From: Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>
To: XWiki Users <users(a)xwiki.org>
Subject: [xwiki-users] I can not use less variable in a SSX
Message-ID:
<762255178.6097150.1417793066878.JavaMail.yahoo(a)jws11112.mail.ir2.yahoo.com>
Content-Type: text/plain; charset=UTF-8
Hello,
In ./skins/flamingo/less/bootstrap/variables.less we found:
//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting to different screen
sizes.
...
// Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1 @screen-sm:????????????????? 768px;
@screen-sm-min:????????????? @screen-sm;
Then I want use "screen-sm-min" in a new SSX object but this doesn't
work:@media (min-width: @screen-sm-min) { ? h1 { ??? color: fuchsia; ?? }}(If I replace
screen-sm-min with his value 768px, my SSX work well.) Is it normal than @screen-sm-min
doesn't work in a SSX?Thxs Pascal B
------------------------------
Message: 6
Date: Fri, 5 Dec 2014 17:28:10 +0200
From: "Ecaterina Moraru (Valica)" <valicac(a)gmail.com>
To: Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>fr>, XWiki Users
<users(a)xwiki.org>
Subject: Re: [xwiki-users] I can not use less variable in a SSX
Message-ID:
<CAHQu0mbwyYioJgke-AWDzX2eZbKKPTFnk-Sby4Ud+y8ZomSj2A(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi,
http://jira.xwiki.org/browse/XWIKI-10708
Thanks,
Caty
On Fri, Dec 5, 2014 at 5:24 PM, Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>
wrote:
Hello,
In ./skins/flamingo/less/bootstrap/variables.less we found:
//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting
to different screen sizes.
...
// Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1
@screen-sm: 768px;
@screen-sm-min: @screen-sm;
Then I want use "screen-sm-min" in a new SSX object but this doesn't
work:@media (min-width: @screen-sm-min) {
h1 {
color: fuchsia;
}}(If I replace screen-sm-min with his value 768px, my SSX work
well.) Is it normal than @screen-sm-min doesn't work in a SSX?Thxs
Pascal B
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
Message: 7
Date: Fri, 5 Dec 2014 17:28:10 +0200
From: "Ecaterina Moraru (Valica)" <valicac(a)gmail.com>
To: Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>fr>, XWiki Users
<users(a)xwiki.org>
Subject: Re: [xwiki-users] I can not use less variable in a SSX
Message-ID:
<CAHQu0mbwyYioJgke-AWDzX2eZbKKPTFnk-Sby4Ud+y8ZomSj2A(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi,
http://jira.xwiki.org/browse/XWIKI-10708
Thanks,
Caty
On Fri, Dec 5, 2014 at 5:24 PM, Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr>
wrote:
Hello,
In ./skins/flamingo/less/bootstrap/variables.less we found:
//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting
to different screen sizes.
...
// Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1
@screen-sm: 768px;
@screen-sm-min: @screen-sm;
Then I want use "screen-sm-min" in a new SSX object but this doesn't
work:@media (min-width: @screen-sm-min) {
h1 {
color: fuchsia;
}}(If I replace screen-sm-min with his value 768px, my SSX work
well.) Is it normal than @screen-sm-min doesn't work in a SSX?Thxs
Pascal B
_______________________________________________
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 89, Issue 7
************************************