[xwiki-users] missing doc authors in flamingo skin

2014-08-18 Thread Pascal BASTIEN
Hello,

On flamingo skin the author no longer appear  at the right bottom of pages.
Is this intentional or an oversight?
Thxs


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


Re: [xwiki-users] missing doc authors in flamingo skin

2014-08-18 Thread vinc...@massol.net

On 18 Aug 2014 at 09:45:27, Pascal BASTIEN 
(pbasnews-xw...@yahoo.fr(mailto:pbasnews-xw...@yahoo.fr)) wrote:

 Hello,
 
 On flamingo skin the author no longer appear at the right bottom of pages.
 Is this intentional or an oversight?

Looks like an oversight, a JIRA issue would be nice.

Thanks
-Vincent

 Thxs
 
 
 Pascal BASTIEN

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


Re: [xwiki-users] missing doc authors in flamingo skin

2014-08-18 Thread Ecaterina Moraru (Valica)
Hi,

In the original proposal of Flamingo Skin
http://design.xwiki.org/xwiki/bin/view/Improvements/Skin4x the bottom of
pages (#xdocFooter) information were not present. Firstly this is because
the proposal didn't covered all possible use cases/views, but was more
general.

The information from #xdocFooter:
* can be displayed as in Colibri or
* could be added in the #docextra 'Information' tab.

Since we already display the Tags in the #xdocFooter and document creator
is an important information, we should preserve the Colibri display also
for Flamingo.
Thanks,
Caty


On Mon, Aug 18, 2014 at 10:45 AM, Pascal BASTIEN pbasnews-xw...@yahoo.fr
wrote:

 Hello,

 On flamingo skin the author no longer appear  at the right bottom of pages.
 Is this intentional or an oversight?
 Thxs


 Pascal BASTIEN
 ___
 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] Utilities of checking text input in Page name?

2014-08-18 Thread Pascal BASTIEN
Hello,

What is the function of validation in the text zone Page name of 
/xwiki/bin/create/MySpace/WebHome page? (the green Ok at right side of text 
zone)

In page name It seem I can typing any characters (even 
aaa$^z*-+/\é~@ç|-{#'(   (green Ok is displayed ) and validate.
AND green Ok is displayed even if I type the name of an existing page (of 
course when I click on Create, the message The page MySpace.duplicateName 
already exists. Please fill in a new page name. appear.

Do you think it is a bug a duplicated page test or a reliquat from old versions?

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


Re: [xwiki-users] Utilities of checking text input in Page name?

2014-08-18 Thread Marius Dumitru Florea
See 
https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-web/src/main/webapp/templates/createinline.vm#L84
. It just checks if the value is empty. And btw, any character is
allowed in the page name technically.

Hope this helps,
Marius

On Mon, Aug 18, 2014 at 5:00 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:
 Hello,

 What is the function of validation in the text zone Page name of 
 /xwiki/bin/create/MySpace/WebHome page? (the green Ok at right side of text 
 zone)

 In page name It seem I can typing any characters (even 
 aaa$^z*-+/\é~@ç|-{#'(   (green Ok is displayed ) and validate.
 AND green Ok is displayed even if I type the name of an existing page (of 
 course when I click on Create, the message The page MySpace.duplicateName 
 already exists. Please fill in a new page name. appear.

 Do you think it is a bug a duplicated page test or a reliquat from old 
 versions?

 Pascal BASTIEN
 ___
 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] Groovy or Velocity code to read combo boxes and text boxes

2014-08-18 Thread Jason Clemons
Hello all,

I'm sure this question has been asked before but I can't seem to find anything 
using the all mighty Google, so I thought I'd ask.  I've created a tracking 
application (ticketing / workflow) using App Within Minutes.  What I'd like 
to do using either Groovy or Velocity is when a ticket is closed (by changing 
the value of a combo box) is to gather some details from the closed ticket that 
appears in a few controls on the page and post them to another page in the wiki 
when the user saves the page.  The idea is to keep a running log of recently 
closed tickets.  I've been looking for examples in three parts that I think I 
need help with:

1.  How do I capture a combo box change event using Groovy or Velocity ?

2.  How do I get values of text boxes and combo boxes from a page using Groovy 
or Velocity ?

3.  How do I write to a different page in the Wiki using Groovy or Velocity?

I'm obviously going to continue searching Google, but any pointers / help is 
greatly appreciated.


Thanks in Advance,

Jason Clemons
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Utilities of checking text input in Page name?

2014-08-18 Thread Pascal BASTIEN
It's true than checking duplicate page during typing would be too greedy in 
ressource system (and slow with lot of pages).
Thxs you.

I try to improve a tiny bit this functionality but I didn't manage a simple 
thing: I didn't found a simple syntax (without velocicity code) to add a direct 
link to the edit page of an existing page...
By example:  I have this this page Encyclopédie. existing and  on 
Encyclopédie., I have
[[doc:]] = https://mysite/bin/view/Encyclop%C3%A9die/ BUT I try to 
obtain this link: https://mysite/bin/edit/Encyclop%C3%A9die/ without success

Any ideas?

Thxs





 De : Marius Dumitru Florea mariusdumitru.flo...@xwiki.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org 
Envoyé le : Lundi 18 août 2014 16h22
Objet : Re: [xwiki-users] Utilities of checking text input in Page name?
 

See 
https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-web/src/main/webapp/templates/createinline.vm#L84
. It just checks if the value is empty. And btw, any character is
allowed in the page name technically.

Hope this helps,
Marius


On Mon, Aug 18, 2014 at 5:00 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:
 Hello,

 What is the function of validation in the text zone Page name of 
 /xwiki/bin/create/MySpace/WebHome page? (the green Ok at right side of text 
 zone)

 In page name It seem I can typing any characters (even
 aaa$^z*-+/\é~@ç|-{#'(   (green Ok is displayed ) and validate.
 AND green Ok is displayed even if I type the name of an existing page (of 
 course when I click on Create, the message The page MySpace.duplicateName 
 already exists. Please fill in a new page name. appear.

 Do you think it is a bug a duplicated page test or a reliquat from old 
 versions?

 Pascal BASTIEN
 ___
 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