[xwiki-users] Report - 6.2-rc-1

2014-09-18 Thread Andreea Popescu
Hello all,

During the last few days we have conducted smoke testing on: Firefox 32,
Chrome 37, IE8, IE9, IE10 and IE11. Also, I would like to mention that I
have conducted no full test so far on this version. The next full text will
most likely take place after version 6.2 is launched. If you wish for us to
conduct a full test on a certain browser, we will gladly honour your
request.

This link offers an overview of the issues and improvements reported by the
team on the 6.2-rc-1 version:
http://jira.xwiki.org/issues/?jql=affectedVersion%20in%20%28%226.2-rc-1%22%29

We shall continue testing for other issues and improvements.
Have a good day!

-- 
Andreea Zenovia Popescu
QA Engineer @XWiki
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] need advice about an extension developpment

2014-09-18 Thread Pascal BASTIEN
Thanks you but this code doesn't work with flamingo skin because this issue: 
http://jira.xwiki.org/browse/XWIKI-10498

class collapsed have no effetc with flamingo (tested with firebug)




 De : Michael Bußler michael.buss...@googlemail.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org 
Envoyé le : Mercredi 17 septembre 2014 22h54
Objet : Re: [xwiki-users] need advice about an extension developpment
 


Hi Pascal,

I've had the same issue. Here is how I solved it with JS:

code
function collapse( panel ){
  panel.addClassName('collapsed').removeClassName('expanded');
}

function collapsePanels() {
  $$('.PanelIndex').each( collapse );
  $$('.PanelAbkuerzungenLink').each( collapse );
  $$('.PanelDifferentialDiagnosen').each( collapse );
  $$('.PanelEintraege').each( collapse );
};
/code


Just insert the ids of the panels you wank to be collapsed during page loading. 
You would need to add this to a page as XWiki.JavaScriptExtension object, and 
make sure it is loaded for instance in the sheet.
BTW, I would really like to see a version of this using a session cookie. :)

Best regards,
Michael

(XWiki  XWiki.domIsLoaded  collapsePanels()) || 
document.observe(xwiki:dom:loaded, collapsePanels);


2014-09-17 21:40 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

Thxs you (again :-) )
You have just confirmed what I was afraid of, I mean js + cookie.
I will probably look into this collapsed menu , this week. but, I am not sure 
if this replies to your issue...
If you like, I will show you the result... if I manage :-/





 De : Ecaterina Moraru (Valica) vali...@gmail.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
Envoyé le : Mercredi 17 septembre 2014 19h01
Objet : Re: [xwiki-users] need advice about an extension developpment




Hi Pascal,

If you look at 
http://www.cssportal.com/css3-preview/showing-and-hiding-content-with-pure-css3.php
 the CSS code for making this work is using the :focus pseudo-class, which is 
triggered when the link is selected using the mouse pointer or keyboard. It's 
normal that if you navigate the focus of that element to be lost.

If you want something persistent you must implement it with JS and cookies. 
CSS is not the tool to achieve these things.


On this topic there is also this issue 
http://jira.xwiki.org/browse/XWIKI-10498 but this is not a priority and not 
sure when/who will try to fix it (maybe even you :) )

Thanks,
Caty




On Wed, Sep 17, 2014 at 4:48 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr 
wrote:

Hello,

I try to writing an extension to add the right panel collapsible (with CSS 
only). Something like this:
http://www.cssportal.com/css3-preview/demo/css-menu-ex4.html (hide and seek 
panel)
explained here 
http://www.cssportal.com/css3-preview/showing-and-hiding-content-with-pure-css3.php
I inserted code in rightpanels.vm and CSS but the limitation is when I 
navigate on another xwiki page/space the right panel is reset. My right panel 
is  not persistent.
Do you have an advice to make my right panel persistent:
- if user show panel and change current page, right panel  must be still open
- if user hide panel and change current page right panel must be  still hide

javascript (and cookie) are mandatory in my case?
Do you have an elegant tip: an secret xwiki API ?

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


[xwiki-users] Fwd: need advice about an extension developpment

2014-09-18 Thread Michael Bußler
*push*
-- Forwarded message --
From: Pascal BASTIEN pbasnews-xw...@yahoo.fr
Date: 2014-09-18 10:17 GMT+02:00
Subject: Re: [xwiki-users] need advice about an extension developpment
To: Michael Bußler michael.buss...@googlemail.com


heu it's my fault I didn't precised xwiki version (6.1) and skin
(flamingo)I used. :-/


  --
 *De :* Michael Bußler michael.buss...@googlemail.com
*À :* Pascal BASTIEN pbasnews-xw...@yahoo.fr
*Envoyé le :* Jeudi 18 septembre 2014 10h08

*Objet :* Re: [xwiki-users] need advice about an extension developpment

Yes you're right, it wasn't clear to me which version of XWiki you are
using.
I'm using the latest stable, consider it working in there. ;)

Best, Michael

2014-09-18 10:02 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

Thanks you but this code doesn't work with flamingo skin because this issue:
http://jira.xwiki.org/browse/XWIKI-10498
class collapsed have no effetc with flamingo (tested with firebug)


  --
 *De :* Michael Bußler michael.buss...@googlemail.com
*À :* Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org

*Envoyé le :* Mercredi 17 septembre 2014 22h54

*Objet :* Re: [xwiki-users] need advice about an extension developpment

Hi Pascal,

I've had the same issue. Here is how I solved it with JS:

code
function collapse( panel ){
  panel.addClassName('collapsed').removeClassName('expanded');
}

function collapsePanels() {
  $$('.PanelIndex').each( collapse );
  $$('.PanelAbkuerzungenLink').each( collapse );
  $$('.PanelDifferentialDiagnosen').each( collapse );
  $$('.PanelEintraege').each( collapse );
};
/code

Just insert the ids of the panels you wank to be collapsed during page
loading.
You would need to add this to a page as XWiki.JavaScriptExtension object,
and make sure it is loaded for instance in the sheet.
BTW, I would really like to see a version of this using a session cookie. :)

Best regards,
Michael

(XWiki  XWiki.domIsLoaded  collapsePanels()) ||
document.observe(xwiki:dom:loaded, collapsePanels);

2014-09-17 21:40 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

Thxs you (again :-) )
You have just confirmed what I was afraid of, I mean js + cookie.
I will probably look into this collapsed menu , this week. but, I am not
sure if this replies to your issue...
If you like, I will show you the result... if I manage :-/




 De : Ecaterina Moraru (Valica) vali...@gmail.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
Envoyé le : Mercredi 17 septembre 2014 19h01
Objet : Re: [xwiki-users] need advice about an extension developpment



Hi Pascal,

If you look at
http://www.cssportal.com/css3-preview/showing-and-hiding-content-with-pure-css3.php
the CSS code for making this work is using the :focus pseudo-class, which
is triggered when the link is selected using the mouse pointer or keyboard.
It's normal that if you navigate the focus of that element to be lost.

If you want something persistent you must implement it with JS and cookies.
CSS is not the tool to achieve these things.


On this topic there is also this issue
http://jira.xwiki.org/browse/XWIKI-10498 but this is not a priority and not
sure when/who will try to fix it (maybe even you :) )

Thanks,
Caty




On Wed, Sep 17, 2014 at 4:48 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr
wrote:

Hello,

I try to writing an extension to add the right panel collapsible (with CSS
only). Something like this:
http://www.cssportal.com/css3-preview/demo/css-menu-ex4.html (hide and
seek panel)
explained here
http://www.cssportal.com/css3-preview/showing-and-hiding-content-with-pure-css3.php
I inserted code in rightpanels.vm and CSS but the limitation is when I
navigate on another xwiki page/space the right panel is reset. My right
panel is  not persistent.
Do you have an advice to make my right panel persistent:
- if user show panel and change current page, right panel  must be still
open
- if user hide panel and change current page right panel must be  still
hide

javascript (and cookie) are mandatory in my case?
Do you have an elegant tip: an secret xwiki API ?

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] Report - 6.2-rc-1

2014-09-18 Thread Marius Dumitru Florea
Impressive work! Well done!

Thanks,
Marius

On Thu, Sep 18, 2014 at 9:15 AM, Andreea Popescu
andreea.pope...@xwiki.com wrote:
 Hello all,

 During the last few days we have conducted smoke testing on: Firefox 32,
 Chrome 37, IE8, IE9, IE10 and IE11. Also, I would like to mention that I
 have conducted no full test so far on this version. The next full text will
 most likely take place after version 6.2 is launched. If you wish for us to
 conduct a full test on a certain browser, we will gladly honour your
 request.

 This link offers an overview of the issues and improvements reported by the
 team on the 6.2-rc-1 version:
 http://jira.xwiki.org/issues/?jql=affectedVersion%20in%20%28%226.2-rc-1%22%29

 We shall continue testing for other issues and improvements.
 Have a good day!

 --
 Andreea Zenovia Popescu
 QA Engineer @XWiki
 ___
 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] Filter document list by parent and tag

2014-09-18 Thread Jaume Giribert Peraire
Hi everyone,

I need to create a livetable for documents having a specific parent and
tag. For example:

Document A - Has a parent document called procedure and Server01 tag
Document B - Has a parent document called procedure and Server02 tag

Document Server01 - Should show a livetable with a filter for
Parent=procedure and tag=Server01 (same as Doc.name)
Document Server02 - Should show a livetable with a filter for
Parent=procedure and tag=Server02 (same as Doc.name)

I know I can create a new Document macro and filter by Parent and
Space, but I also need to filter by tag. XWQL may help but I need to show
result as a link to the document.

Any guess or example to follow? Any advice will be appreciated!

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


Re: [xwiki-users] need advice about an extension developpment

2014-09-18 Thread Pascal BASTIEN
I'm pulling my hair out...

If I hide the DIV #rightPanels (with class hidden or display none) the DIV 
contentcontainer is not automatically resized!
I wonder why and above all I wonder how can I resize content side when 
rightPanels disapeared (with javascript and/or jquery).

Any help will be apprecie :)

Here two screenshot will be more explicite:
http://snag.gy/zVIRU.jpg
http://snag.gy/voZuE.jpg


By the way, for  http://jira.xwiki.org/browse/XWIKI-10498 
http://tuljo.com/web-development/expanding-collapsing-sliding-div-jquery will 
help.


Pascal B





 De : Pascal BASTIEN pbasnews-xw...@yahoo.fr
À : Ecaterina Moraru (Valica) vali...@gmail.com; XWiki Users 
users@xwiki.org 
Envoyé le : Mercredi 17 septembre 2014 21h40
Objet : Re: [xwiki-users] need advice about an extension developpment
 

Thxs you (again :-) )
You have just confirmed what I was afraid of, I mean js + cookie.
I will probably look into this collapsed menu , this week. but, I am not sure 
if this replies to your issue...
If you like, I will show you the result... if I manage :-/




De : Ecaterina Moraru (Valica) vali...@gmail.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org 
Envoyé le : Mercredi 17 septembre 2014 19h01
Objet : Re: [xwiki-users] need advice about an extension developpment



Hi Pascal, 

If you look at 
http://www.cssportal.com/css3-preview/showing-and-hiding-content-with-pure-css3.php
 the CSS code for making this work is using the :focus pseudo-class, which is 
triggered when the link is selected using the mouse pointer or keyboard. It's 
normal that if you navigate the focus of that element to be lost. 

If you want something persistent you must implement it with JS and cookies. CSS 
is not the tool to achieve these things. 


On this topic there is also this issue http://jira.xwiki.org/browse/XWIKI-10498 
but this is not a priority and not sure when/who will try to fix it (maybe even 
you :) )

Thanks,
Caty




On Wed, Sep 17, 2014 at 4:48 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:

Hello,

I try to writing an extension to add the right panel collapsible (with CSS 
only). Something like this:
http://www.cssportal.com/css3-preview/demo/css-menu-ex4.html (hide and seek 
panel)
explained here 
http://www.cssportal.com/css3-preview/showing-and-hiding-content-with-pure-css3.php
I inserted code in rightpanels.vm and CSS but the limitation is when I 
navigate on another xwiki page/space the right panel is reset. My right panel 
is  not persistent.
Do you have an advice to make my right panel persistent:
- if user show panel and change current page, right panel  must be still open
- if user hide panel and change current page right panel must be  still hide

javascript (and cookie) are mandatory in my case?
Do you have an elegant tip: an secret xwiki API ?

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


[xwiki-users] [ANN] XWiki 6.2 released

2014-09-18 Thread Eduard Moraru
The XWiki development team is proud to announce the availability of XWiki
6.2.

This release is mainly focused on the Flamingo skin and it being now used
by default, but also features improvements for applications such as AWM and
Blog and various performance improvements.

Developers can benefit from new APIs such as the new Mail Sender API and
the new Blame API but also from improved APIs such as the wiki module API
and JS widgets.

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/ReleaseNotesXWiki62

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