Re: [xwiki-users] AllAttachments live table doesn't show anything

2010-04-20 Thread Colesnicov Eugen

Big thanks Adoro!
-- 
View this message in context: 
http://n2.nabble.com/AllAttachments-live-table-doesn-t-show-anything-tp4875907p4933187.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] How to add cookie and header in xmlrpc in xwiki?

2010-04-20 Thread Nithya Vembu

Hi All,

 I am facing issue in xmlrpc client while login the admin user. I want to
add the user in the xwiki through xmlrpc. For that i have to login as admin
and then i have to add the user which is given in the below link.

 I have used the login sample defined in the following link  
http://platform.xwiki.org/xwiki/bin/view/Features/XMLRPCJavaExamples

 I have my own sso implemented in xwiki.
 I need to add header and cookie in xmlrpc so that i can get those cookie in
my own sso class and check for the authentication.
 It is possible to add the header and cookie in httpclient.
 But how to do the cookie based xmlrpc login in xwiki? is there any way to
add the cookie and header in xmlrpc in xwiki?

 Kindly suggest any idea.

Thanks,
Nithya.
-- 
View this message in context: 
http://n2.nabble.com/How-to-add-cookie-and-header-in-xmlrpc-in-xwiki-tp4932519p4932519.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Fabio Mancinelli
On 04/19/2010 09:19 PM, Sergiu Dumitriu wrote:
> Hello Community,
>
> The search for the XWiki.org logo isn't over yet...
>
> The second round of votes finished, with the following results:
>
> +9 for 4
> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
> +1 for 15
> +14 for 16
> +1 for 19
>
> Normally, 16 would be the winner, but since several key members of the
> community objected to it, I see three ways to proceed:
>
> 1. Declare 16 as the elected logo, but further improve it to soften the
> objections
> 2. Start a third round between improved version of 4 and 16
> 3. Slow down a bit, since there's no hard deadline to meet, and start
> all over, accepting new proposals
>
> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
> agree.
>
Ok for option 1.

-Fabio

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


Re: [xwiki-users] AllAttachments live table doesn't show anything

2010-04-20 Thread adoro

Hi,

we had the same issue with the view “AllAttachments” from the  Main.AllDocs.  
Environment – Oracle 10.2, JDK 1.6, Tomcat.6.0 (used also OC4J). 
Tested on XE 2.1.2 – 2.1.5. All necessary pages are saved with programming
rights.

All tabs (views) worked fine but the livetable in the “Attachments”- tab was
empty. The table in “Deleted attachments”-view was filled,
in the Tree-tab (treeview) all attachments were available as well.

Environment – Oracle 10.2, JDK 1.6, Tomcat.6.0 (used also OC4J). 
Tested on XE 2.1.2 – 2.1.5

I think, I found it.

Simple query in XWiki.AllAttachmentsResults 
#set($sql = "select doc.fullName, attach from XWikiDocument as doc,
XWikiAttachment as attach where attach.docId=doc.id")
$xwiki.search($sql) 
- works fine

The problem is in the clause
#if($title)
  #set($title = $title.trim().toLowerCase())
  #set($sql = "and lower(doc.fullName) like '%${title}%' ")
#else #set($sql = "and lower(doc.fullName) <> ''  ") #end,

(two single quotes after <>, i.e. "empty string"), that generates the next
sql statement:

select doc.fullName, attach from XWikiDocument as doc, XWikiAttachment as
attach where attach.docId=doc.id and lower(doc.fullName) <> '' order by
attach.filename asc

This query returns 0 rows (at least against the Oracle DB) – perhaps of
well-known Oracle specific issue to treat an empty string as NULL and the
right comparison for Oracle would be smth like "doc.fullName in not NULL" or
"length(doc.fullName) > 0" - tested both of them - work OK, the both return
the list of attachments.

And if I just use instead of empty string '' blank ' ' or use as escape
characters one more set of single quotes (), the problem is solved as
well - the livetable is filled with all wiki attachments. 

Best Regards,
Alla


-
Best Regards,
Alla
-- 
View this message in context: 
http://n2.nabble.com/AllAttachments-live-table-doesn-t-show-anything-tp4875907p4931164.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Vincent Massol

On Apr 20, 2010, at 1:52 PM, Thomas Mortagne wrote:

> On Tue, Apr 20, 2010 at 13:30, Raluca Stavro  wrote:
>> Hello,
>> 
>> +0.7 to declare 16 the winner and improve it
>> +0.2 to start a third round between improved version of 4 and 16
>> +0.1 to start all over
>> 
>> What do you think about this:
>> http://dev.xwiki.org/xwiki/bin/download/Community/LogoChallengeRound2/16-variation-engineering.png
>> ?
> 
> I like this one, i voted for
> http://dev.xwiki.org/xwiki/bin/view/Community/LogoChallenge#HProposal8RalucaStavro
> after all ;)

I also find it better.

Thanks
-Vincent

> 
>> 
>> Raluca.
>> 
>> 
>> On Mon, Apr 19, 2010 at 10:19 PM, Sergiu Dumitriu  wrote:
>>> Hello Community,
>>> 
>>> The search for the XWiki.org logo isn't over yet...
>>> 
>>> The second round of votes finished, with the following results:
>>> 
>>> +9 for 4
>>> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
>>> +1 for 15
>>> +14 for 16
>>> +1 for 19
>>> 
>>> Normally, 16 would be the winner, but since several key members of the
>>> community objected to it, I see three ways to proceed:
>>> 
>>> 1. Declare 16 as the elected logo, but further improve it to soften the
>>> objections
>>> 2. Start a third round between improved version of 4 and 16
>>> 3. Slow down a bit, since there's no hard deadline to meet, and start
>>> all over, accepting new proposals
>>> 
>>> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
>>> agree.
>>> 
>>> On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
 Hello XWiki Community,
 
 We're still looking for the new XWiki.org logo. First of all, many
 thanks to all those who submitted their ideas (
 http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
 first round of votes (digest here:
 http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en),
 
 we chose 6 "popular" proposals for the second round:
 http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
 
 The authors of these proposals were asked to do the following, if not
 already done for round 1:
 * try to integrate any constructive feedback that came with the
 votes (a digest of the feedback from the emails is available for each
 proposal on
 http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
 * polish the design (if they consider it necessary)
 * provide the requested variations for .org, enterprise and office
 * provide samples for light and dark background
 * provide a black&white version
 * provide a 16X16 icon containing the logo or a representative part
 of the logo
 * provide a nice "Powered by XWiki" button that goes with the logo
 * provide a mockup/screenshot with the logo used in the current
 skin, colibri
 
 For most of the finalist logos, the _final_ versions were already
 uploaded here:
 http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
 For those who were not updated, we will use the initial submissions
 for round 2 as well,
 and voters will have to use their imagination in case
 any of the required use cases is missing.
 
 
 VOTING:
 
 You can send your vote on the mailing list (d...@xwiki.org or
 users@xwiki.org), in reply to this email. No twitter votes this time.
 
 Each voter can grant a whole +1 to only one of the 6 finalists
 (
 http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
 ).
 
 IMPORTANT: Before choosing a logo based on your personal preference,
 please try to also ask yourself the following questions:
 
 * Is it distinctive? Note that it should not resemble other logos,
 including the XWiki SAS/xwiki.com logo.
 * Is it easy to remember and recognize?
 * Does it blend in smoothly with the Colibri skin? With the new
 XWiki.org skin? Note that adjustments to the skin is possible, in order
 to better integrate with the logo.
 * Is the design scalable? Could it (or parts of it) be
 successfully used in a 16X16 icon? Would it look good on a very large
 poster?
 * Can it be used (as it is, or adapted) on both light and dark backgrounds?
 * What would it look like in black and white (not just grayscale)?
 It's ok if some details are lost, but it needs to still look
 attractive and keep the main features.
 
 
 TIMELINE:
 
 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
 users@xwiki.org
 11/Apr/10 : End of votes
 
 
 Thanks,
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Ecaterina Valica
On Tue, Apr 20, 2010 at 14:30, Raluca Stavro wrote:

> Hello,
>
> +0.7 to declare 16 the winner and improve it
> +0.2 to start a third round between improved version of 4 and 16
> +0.1 to start all over
>
> What do you think about this:
>
> http://dev.xwiki.org/xwiki/bin/download/Community/LogoChallengeRound2/16-variation-engineering.png
> ?
>
> Raluca.
>

The variation is very nice and subtle :P


>
> On Mon, Apr 19, 2010 at 10:19 PM, Sergiu Dumitriu 
> wrote:
> > Hello Community,
> >
> > The search for the XWiki.org logo isn't over yet...
> >
> > The second round of votes finished, with the following results:
> >
> > +9 for 4
> > +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
> > +1 for 15
> > +14 for 16
> > +1 for 19
> >
> > Normally, 16 would be the winner, but since several key members of the
> > community objected to it, I see three ways to proceed:
> >
> > 1. Declare 16 as the elected logo, but further improve it to soften the
> > objections
> > 2. Start a third round between improved version of 4 and 16
> > 3. Slow down a bit, since there's no hard deadline to meet, and start
> > all over, accepting new proposals
> >
> > I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
> > agree.
> >
> > On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
> >> Hello XWiki Community,
> >>
> >> We're still looking for the new XWiki.org logo. First of all, many
> >> thanks to all those who submitted their ideas (
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
> >> first round of votes (digest here:
> >>
> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en
> ),
> >>
> >> we chose 6 "popular" proposals for the second round:
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
> >>
> >> The authors of these proposals were asked to do the following, if not
> >> already done for round 1:
> >> * try to integrate any constructive feedback that came with the
> >> votes (a digest of the feedback from the emails is available for each
> >> proposal on
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
> >> * polish the design (if they consider it necessary)
> >> * provide the requested variations for .org, enterprise and office
> >> * provide samples for light and dark background
> >> * provide a black&white version
> >> * provide a 16X16 icon containing the logo or a representative part
> >> of the logo
> >> * provide a nice "Powered by XWiki" button that goes with the logo
> >> * provide a mockup/screenshot with the logo used in the current
> >> skin, colibri
> >>
> >> For most of the finalist logos, the _final_ versions were already
> >> uploaded here:
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
> >> For those who were not updated, we will use the initial submissions
> >> for round 2 as well,
> >> and voters will have to use their imagination in case
> >> any of the required use cases is missing.
> >>
> >>
> >> VOTING:
> >>
> >> You can send your vote on the mailing list (d...@xwiki.org or
> >> users@xwiki.org), in reply to this email. No twitter votes this time.
> >>
> >> Each voter can grant a whole +1 to only one of the 6 finalists
> >> (
> >>
> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
> >> ).
> >>
> >> IMPORTANT: Before choosing a logo based on your personal preference,
> >> please try to also ask yourself the following questions:
> >>
> >> * Is it distinctive? Note that it should not resemble other logos,
> >> including the XWiki SAS/xwiki.com logo.
> >> * Is it easy to remember and recognize?
> >> * Does it blend in smoothly with the Colibri skin? With the new
> >> XWiki.org skin? Note that adjustments to the skin is possible, in order
> >> to better integrate with the logo.
> >> * Is the design scalable? Could it (or parts of it) be
> >> successfully used in a 16X16 icon? Would it look good on a very large
> >> poster?
> >> * Can it be used (as it is, or adapted) on both light and dark
> backgrounds?
> >> * What would it look like in black and white (not just grayscale)?
> >> It's ok if some details are lost, but it needs to still look
> >> attractive and keep the main features.
> >>
> >>
> >> TIMELINE:
> >>
> >> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
> >> users@xwiki.org
> >> 11/Apr/10 : End of votes
> >>
> >>
> >> Thanks,
> >
> >
> > --
> > Sergiu Dumitriu
> > http://purl.org/net/sergiu/
> > ___
> > devs mailing list
> > d...@xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/devs
> >
> ___
> 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] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Valdis Vītoliņš
We should believe in evolution, not in intelligent design ;-)

For me topology (i.e. shapes of character) looks good, though I'd like
right part for w parallel to slope parts of "X" and "k", with "iki" size
adjusted accordingly
(probably they need to be smaller then).

Wouldn't it be better?

Valdis

> Hello,
> 
> What do you think about this:
> http://dev.xwiki.org/xwiki/bin/download/Community/LogoChallengeRound2/16-variation-engineering.png
> ?
> 
> Raluca.
> ...
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Thomas Mortagne
On Tue, Apr 20, 2010 at 13:30, Raluca Stavro  wrote:
> Hello,
>
> +0.7 to declare 16 the winner and improve it
> +0.2 to start a third round between improved version of 4 and 16
> +0.1 to start all over
>
> What do you think about this:
> http://dev.xwiki.org/xwiki/bin/download/Community/LogoChallengeRound2/16-variation-engineering.png
> ?

I like this one, i voted for
http://dev.xwiki.org/xwiki/bin/view/Community/LogoChallenge#HProposal8RalucaStavro
after all ;)

>
> Raluca.
>
>
> On Mon, Apr 19, 2010 at 10:19 PM, Sergiu Dumitriu  wrote:
>> Hello Community,
>>
>> The search for the XWiki.org logo isn't over yet...
>>
>> The second round of votes finished, with the following results:
>>
>> +9 for 4
>> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
>> +1 for 15
>> +14 for 16
>> +1 for 19
>>
>> Normally, 16 would be the winner, but since several key members of the
>> community objected to it, I see three ways to proceed:
>>
>> 1. Declare 16 as the elected logo, but further improve it to soften the
>> objections
>> 2. Start a third round between improved version of 4 and 16
>> 3. Slow down a bit, since there's no hard deadline to meet, and start
>> all over, accepting new proposals
>>
>> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
>> agree.
>>
>> On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
>>> Hello XWiki Community,
>>>
>>> We're still looking for the new XWiki.org logo. First of all, many
>>> thanks to all those who submitted their ideas (
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
>>> first round of votes (digest here:
>>> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en),
>>>
>>> we chose 6 "popular" proposals for the second round:
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>>>
>>> The authors of these proposals were asked to do the following, if not
>>> already done for round 1:
>>> * try to integrate any constructive feedback that came with the
>>> votes (a digest of the feedback from the emails is available for each
>>> proposal on
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
>>> * polish the design (if they consider it necessary)
>>> * provide the requested variations for .org, enterprise and office
>>> * provide samples for light and dark background
>>> * provide a black&white version
>>> * provide a 16X16 icon containing the logo or a representative part
>>> of the logo
>>> * provide a nice "Powered by XWiki" button that goes with the logo
>>> * provide a mockup/screenshot with the logo used in the current
>>> skin, colibri
>>>
>>> For most of the finalist logos, the _final_ versions were already
>>> uploaded here:
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>>> For those who were not updated, we will use the initial submissions
>>> for round 2 as well,
>>> and voters will have to use their imagination in case
>>> any of the required use cases is missing.
>>>
>>>
>>> VOTING:
>>>
>>> You can send your vote on the mailing list (d...@xwiki.org or
>>> users@xwiki.org), in reply to this email. No twitter votes this time.
>>>
>>> Each voter can grant a whole +1 to only one of the 6 finalists
>>> (
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
>>> ).
>>>
>>> IMPORTANT: Before choosing a logo based on your personal preference,
>>> please try to also ask yourself the following questions:
>>>
>>> * Is it distinctive? Note that it should not resemble other logos,
>>> including the XWiki SAS/xwiki.com logo.
>>> * Is it easy to remember and recognize?
>>> * Does it blend in smoothly with the Colibri skin? With the new
>>> XWiki.org skin? Note that adjustments to the skin is possible, in order
>>> to better integrate with the logo.
>>> * Is the design scalable? Could it (or parts of it) be
>>> successfully used in a 16X16 icon? Would it look good on a very large
>>> poster?
>>> * Can it be used (as it is, or adapted) on both light and dark backgrounds?
>>> * What would it look like in black and white (not just grayscale)?
>>> It's ok if some details are lost, but it needs to still look
>>> attractive and keep the main features.
>>>
>>>
>>> TIMELINE:
>>>
>>> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
>>> users@xwiki.org
>>> 11/Apr/10 : End of votes
>>>
>>>
>>> Thanks,
>>
>>
>> --
>> Sergiu Dumitriu
>> http://purl.org/net/sergiu/
>> ___
>> devs mailing list
>> d...@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/devs
>>
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



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


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Guillaume Lerouge
Hi,

On Tue, Apr 20, 2010 at 13:39, Vincent Massol  wrote:

>
> On Apr 19, 2010, at 9:19 PM, Sergiu Dumitriu wrote:
>
> > Hello Community,
> >
> > The search for the XWiki.org logo isn't over yet...
> >
> > The second round of votes finished, with the following results:
> >
> > +9 for 4
> > +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
> > +1 for 15
> > +14 for 16
> > +1 for 19
> >
> > Normally, 16 would be the winner, but since several key members of the
> > community objected to it, I see three ways to proceed:
> >
> > 1. Declare 16 as the elected logo, but further improve it to soften the
> > objections
> > 2. Start a third round between improved version of 4 and 16
> > 3. Slow down a bit, since there's no hard deadline to meet, and start
> > all over, accepting new proposals
> >
> > I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
> > agree.
>
> Even though I don't like the 16 logo too much this has been a community
> vote so I'm ok to accept it.
>

Same for me, the community's choice is the community's choice whether I like
it or not :-)

Guillaume


> So I'm ok for option 1.
>
> Thanks
> -Vincent
>
> > On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
> >> Hello XWiki Community,
> >>
> >> We're still looking for the new XWiki.org logo. First of all, many
> >> thanks to all those who submitted their ideas (
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
> >> first round of votes (digest here:
> >>
> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en
> ),
> >>
> >> we chose 6 "popular" proposals for the second round:
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
> >>
> >> The authors of these proposals were asked to do the following, if not
> >> already done for round 1:
> >> * try to integrate any constructive feedback that came with the
> >> votes (a digest of the feedback from the emails is available for each
> >> proposal on
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
> >> * polish the design (if they consider it necessary)
> >> * provide the requested variations for .org, enterprise and office
> >> * provide samples for light and dark background
> >> * provide a black&white version
> >> * provide a 16X16 icon containing the logo or a representative part
> >> of the logo
> >> * provide a nice "Powered by XWiki" button that goes with the logo
> >> * provide a mockup/screenshot with the logo used in the current
> >> skin, colibri
> >>
> >> For most of the finalist logos, the _final_ versions were already
> >> uploaded here:
> >> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
> >> For those who were not updated, we will use the initial submissions
> >> for round 2 as well,
> >> and voters will have to use their imagination in case
> >> any of the required use cases is missing.
> >>
> >>
> >> VOTING:
> >>
> >> You can send your vote on the mailing list (d...@xwiki.org or
> >> users@xwiki.org), in reply to this email. No twitter votes this time.
> >>
> >> Each voter can grant a whole +1 to only one of the 6 finalists
> >> (
> >>
> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
> >> ).
> >>
> >> IMPORTANT: Before choosing a logo based on your personal preference,
> >> please try to also ask yourself the following questions:
> >>
> >> * Is it distinctive? Note that it should not resemble other logos,
> >> including the XWiki SAS/xwiki.com logo.
> >> * Is it easy to remember and recognize?
> >> * Does it blend in smoothly with the Colibri skin? With the new
> >> XWiki.org skin? Note that adjustments to the skin is possible, in order
> >> to better integrate with the logo.
> >> * Is the design scalable? Could it (or parts of it) be
> >> successfully used in a 16X16 icon? Would it look good on a very large
> >> poster?
> >> * Can it be used (as it is, or adapted) on both light and dark
> backgrounds?
> >> * What would it look like in black and white (not just grayscale)?
> >> It's ok if some details are lost, but it needs to still look
> >> attractive and keep the main features.
> >>
> >>
> >> TIMELINE:
> >>
> >> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
> >> users@xwiki.org
> >> 11/Apr/10 : End of votes
> >>
> >>
> >> Thanks,
> >
> >
> > --
> > Sergiu Dumitriu
> > http://purl.org/net/sergiu/
> > ___
> > devs mailing list
> > d...@xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/devs
>
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



-- 
Guillaume Lerouge
Product Manager - XWiki SAS
Skype: wikibc
Twitter: glerouge
http://guillaumelerouge.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] XWiki Logo Challenge, Round 2

2010-04-20 Thread Thomas Mortagne
On Mon, Apr 19, 2010 at 21:19, Sergiu Dumitriu  wrote:
> Hello Community,
>
> The search for the XWiki.org logo isn't over yet...
>
> The second round of votes finished, with the following results:
>
> +9 for 4
> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
> +1 for 15
> +14 for 16
> +1 for 19
>
> Normally, 16 would be the winner, but since several key members of the
> community objected to it, I see three ways to proceed:
>
> 1. Declare 16 as the elected logo, but further improve it to soften the
> objections
> 2. Start a third round between improved version of 4 and 16
> 3. Slow down a bit, since there's no hard deadline to meet, and start
> all over, accepting new proposals

I don't have anything against 16 and i voted for 4 so I'm ok with 1.
and 2. but i think i would prefer 3. since i have the feeling all this
was rushed too much (really just a feeling i don't have strong
arguments).

>
> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
> agree.
>
> On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
>> Hello XWiki Community,
>>
>> We're still looking for the new XWiki.org logo. First of all, many
>> thanks to all those who submitted their ideas (
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
>> first round of votes (digest here:
>> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en),
>>
>> we chose 6 "popular" proposals for the second round:
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>>
>> The authors of these proposals were asked to do the following, if not
>> already done for round 1:
>> * try to integrate any constructive feedback that came with the
>> votes (a digest of the feedback from the emails is available for each
>> proposal on
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
>> * polish the design (if they consider it necessary)
>> * provide the requested variations for .org, enterprise and office
>> * provide samples for light and dark background
>> * provide a black&white version
>> * provide a 16X16 icon containing the logo or a representative part
>> of the logo
>> * provide a nice "Powered by XWiki" button that goes with the logo
>> * provide a mockup/screenshot with the logo used in the current
>> skin, colibri
>>
>> For most of the finalist logos, the _final_ versions were already
>> uploaded here:
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>> For those who were not updated, we will use the initial submissions
>> for round 2 as well,
>> and voters will have to use their imagination in case
>> any of the required use cases is missing.
>>
>>
>> VOTING:
>>
>> You can send your vote on the mailing list (d...@xwiki.org or
>> users@xwiki.org), in reply to this email. No twitter votes this time.
>>
>> Each voter can grant a whole +1 to only one of the 6 finalists
>> (
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
>> ).
>>
>> IMPORTANT: Before choosing a logo based on your personal preference,
>> please try to also ask yourself the following questions:
>>
>> * Is it distinctive? Note that it should not resemble other logos,
>> including the XWiki SAS/xwiki.com logo.
>> * Is it easy to remember and recognize?
>> * Does it blend in smoothly with the Colibri skin? With the new
>> XWiki.org skin? Note that adjustments to the skin is possible, in order
>> to better integrate with the logo.
>> * Is the design scalable? Could it (or parts of it) be
>> successfully used in a 16X16 icon? Would it look good on a very large
>> poster?
>> * Can it be used (as it is, or adapted) on both light and dark backgrounds?
>> * What would it look like in black and white (not just grayscale)?
>> It's ok if some details are lost, but it needs to still look
>> attractive and keep the main features.
>>
>>
>> TIMELINE:
>>
>> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
>> users@xwiki.org
>> 11/Apr/10 : End of votes
>>
>>
>> Thanks,
>
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



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


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Vincent Massol

On Apr 19, 2010, at 9:19 PM, Sergiu Dumitriu wrote:

> Hello Community,
> 
> The search for the XWiki.org logo isn't over yet...
> 
> The second round of votes finished, with the following results:
> 
> +9 for 4
> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
> +1 for 15
> +14 for 16
> +1 for 19
> 
> Normally, 16 would be the winner, but since several key members of the 
> community objected to it, I see three ways to proceed:
> 
> 1. Declare 16 as the elected logo, but further improve it to soften the 
> objections
> 2. Start a third round between improved version of 4 and 16
> 3. Slow down a bit, since there's no hard deadline to meet, and start 
> all over, accepting new proposals
> 
> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio 
> agree.

Even though I don't like the 16 logo too much this has been a community vote so 
I'm ok to accept it.

So I'm ok for option 1.

Thanks
-Vincent

> On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
>> Hello XWiki Community,
>> 
>> We're still looking for the new XWiki.org logo. First of all, many
>> thanks to all those who submitted their ideas (
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
>> first round of votes (digest here:
>> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en),
>> 
>> we chose 6 "popular" proposals for the second round:
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>> 
>> The authors of these proposals were asked to do the following, if not
>> already done for round 1:
>> * try to integrate any constructive feedback that came with the
>> votes (a digest of the feedback from the emails is available for each
>> proposal on
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
>> * polish the design (if they consider it necessary)
>> * provide the requested variations for .org, enterprise and office
>> * provide samples for light and dark background
>> * provide a black&white version
>> * provide a 16X16 icon containing the logo or a representative part
>> of the logo
>> * provide a nice "Powered by XWiki" button that goes with the logo
>> * provide a mockup/screenshot with the logo used in the current
>> skin, colibri
>> 
>> For most of the finalist logos, the _final_ versions were already
>> uploaded here:
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>> For those who were not updated, we will use the initial submissions
>> for round 2 as well,
>> and voters will have to use their imagination in case
>> any of the required use cases is missing.
>> 
>> 
>> VOTING:
>> 
>> You can send your vote on the mailing list (d...@xwiki.org or
>> users@xwiki.org), in reply to this email. No twitter votes this time.
>> 
>> Each voter can grant a whole +1 to only one of the 6 finalists
>> (
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
>> ).
>> 
>> IMPORTANT: Before choosing a logo based on your personal preference,
>> please try to also ask yourself the following questions:
>> 
>> * Is it distinctive? Note that it should not resemble other logos,
>> including the XWiki SAS/xwiki.com logo.
>> * Is it easy to remember and recognize?
>> * Does it blend in smoothly with the Colibri skin? With the new
>> XWiki.org skin? Note that adjustments to the skin is possible, in order
>> to better integrate with the logo.
>> * Is the design scalable? Could it (or parts of it) be
>> successfully used in a 16X16 icon? Would it look good on a very large
>> poster?
>> * Can it be used (as it is, or adapted) on both light and dark backgrounds?
>> * What would it look like in black and white (not just grayscale)?
>> It's ok if some details are lost, but it needs to still look
>> attractive and keep the main features.
>> 
>> 
>> TIMELINE:
>> 
>> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
>> users@xwiki.org
>> 11/Apr/10 : End of votes
>> 
>> 
>> Thanks,
> 
> 
> -- 
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ___
> devs mailing list
> d...@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs

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


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Dan Grigore
Raluca Stavro wrote:
> Hello,
>
> +0.7 to declare 16 the winner and improve it
> +0.2 to start a third round between improved version of 4 and 16
> +0.1 to start all over
>
> What do you think about this:
> http://dev.xwiki.org/xwiki/bin/download/Community/LogoChallengeRound2/16-variation-engineering.png
> ?
>
> Raluca.
>
>
> On Mon, Apr 19, 2010 at 10:19 PM, Sergiu Dumitriu  wrote:
>   
>> Hello Community,
>>
>> The search for the XWiki.org logo isn't over yet...
>>
>> The second round of votes finished, with the following results:
>>
>> +9 for 4
>> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
>> +1 for 15
>> +14 for 16
>> +1 for 19
>>
>> Normally, 16 would be the winner, but since several key members of the
>> community objected to it, I see three ways to proceed:
>>
>> 1. Declare 16 as the elected logo, but further improve it to soften the
>> objections
>> 2. Start a third round between improved version of 4 and 16
>> 3. Slow down a bit, since there's no hard deadline to meet, and start
>> all over, accepting new proposals
>>
>> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
>> agree.
>>
>> On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
>> 
>>> Hello XWiki Community,
>>>
>>> We're still looking for the new XWiki.org logo. First of all, many
>>> thanks to all those who submitted their ideas (
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
>>> first round of votes (digest here:
>>> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en),
>>>
>>> we chose 6 "popular" proposals for the second round:
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>>>
>>> The authors of these proposals were asked to do the following, if not
>>> already done for round 1:
>>> * try to integrate any constructive feedback that came with the
>>> votes (a digest of the feedback from the emails is available for each
>>> proposal on
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
>>> * polish the design (if they consider it necessary)
>>> * provide the requested variations for .org, enterprise and office
>>> * provide samples for light and dark background
>>> * provide a black&white version
>>> * provide a 16X16 icon containing the logo or a representative part
>>> of the logo
>>> * provide a nice "Powered by XWiki" button that goes with the logo
>>> * provide a mockup/screenshot with the logo used in the current
>>> skin, colibri
>>>
>>> For most of the finalist logos, the _final_ versions were already
>>> uploaded here:
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>>> For those who were not updated, we will use the initial submissions
>>> for round 2 as well,
>>> and voters will have to use their imagination in case
>>> any of the required use cases is missing.
>>>
>>>
>>> VOTING:
>>>
>>> You can send your vote on the mailing list (d...@xwiki.org or
>>> users@xwiki.org), in reply to this email. No twitter votes this time.
>>>
>>> Each voter can grant a whole +1 to only one of the 6 finalists
>>> (
>>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
>>> ).
>>>
>>> IMPORTANT: Before choosing a logo based on your personal preference,
>>> please try to also ask yourself the following questions:
>>>
>>> * Is it distinctive? Note that it should not resemble other logos,
>>> including the XWiki SAS/xwiki.com logo.
>>> * Is it easy to remember and recognize?
>>> * Does it blend in smoothly with the Colibri skin? With the new
>>> XWiki.org skin? Note that adjustments to the skin is possible, in order
>>> to better integrate with the logo.
>>> * Is the design scalable? Could it (or parts of it) be
>>> successfully used in a 16X16 icon? Would it look good on a very large
>>> poster?
>>> * Can it be used (as it is, or adapted) on both light and dark backgrounds?
>>> * What would it look like in black and white (not just grayscale)?
>>> It's ok if some details are lost, but it needs to still look
>>> attractive and keep the main features.
>>>
>>>
>>> TIMELINE:
>>>
>>> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
>>> users@xwiki.org
>>> 11/Apr/10 : End of votes
>>>
>>>
>>> Thanks,
>>>   
>> --
>> Sergiu Dumitriu
>> http://purl.org/net/sergiu/
>> ___
>> devs mailing list
>> d...@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/devs
>>
>> 
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>   
+1 to start all over
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] XWiki Logo Challenge, Round 2

2010-04-20 Thread Raluca Stavro
Hello,

+0.7 to declare 16 the winner and improve it
+0.2 to start a third round between improved version of 4 and 16
+0.1 to start all over

What do you think about this:
http://dev.xwiki.org/xwiki/bin/download/Community/LogoChallengeRound2/16-variation-engineering.png
?

Raluca.


On Mon, Apr 19, 2010 at 10:19 PM, Sergiu Dumitriu  wrote:
> Hello Community,
>
> The search for the XWiki.org logo isn't over yet...
>
> The second round of votes finished, with the following results:
>
> +9 for 4
> +4 for 12 (I counted Thibaut's +1 for 12A as a +1 for 12)
> +1 for 15
> +14 for 16
> +1 for 19
>
> Normally, 16 would be the winner, but since several key members of the
> community objected to it, I see three ways to proceed:
>
> 1. Declare 16 as the elected logo, but further improve it to soften the
> objections
> 2. Start a third round between improved version of 4 and 16
> 3. Slow down a bit, since there's no hard deadline to meet, and start
> all over, accepting new proposals
>
> I for one would go for option 1, if Vincent, Ludovic, Guillaume, Fabio
> agree.
>
> On 04/08/2010 06:02 PM, Sergiu Dumitriu wrote:
>> Hello XWiki Community,
>>
>> We're still looking for the new XWiki.org logo. First of all, many
>> thanks to all those who submitted their ideas (
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallenge ). After the
>> first round of votes (digest here:
>> http://spreadsheets.google.com/ccc?key=0Ah6DqXzfHT2vdHV5Ty1LX3lKU3U5V3M4YmNFSXEzcVE&hl=en),
>>
>> we chose 6 "popular" proposals for the second round:
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>>
>> The authors of these proposals were asked to do the following, if not
>> already done for round 1:
>> * try to integrate any constructive feedback that came with the
>> votes (a digest of the feedback from the emails is available for each
>> proposal on
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 )
>> * polish the design (if they consider it necessary)
>> * provide the requested variations for .org, enterprise and office
>> * provide samples for light and dark background
>> * provide a black&white version
>> * provide a 16X16 icon containing the logo or a representative part
>> of the logo
>> * provide a nice "Powered by XWiki" button that goes with the logo
>> * provide a mockup/screenshot with the logo used in the current
>> skin, colibri
>>
>> For most of the finalist logos, the _final_ versions were already
>> uploaded here:
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2 .
>> For those who were not updated, we will use the initial submissions
>> for round 2 as well,
>> and voters will have to use their imagination in case
>> any of the required use cases is missing.
>>
>>
>> VOTING:
>>
>> You can send your vote on the mailing list (d...@xwiki.org or
>> users@xwiki.org), in reply to this email. No twitter votes this time.
>>
>> Each voter can grant a whole +1 to only one of the 6 finalists
>> (
>> http://dev.xwiki.org/xwiki/bin/Community/LogoChallengeRound2#HFinalistproposals
>> ).
>>
>> IMPORTANT: Before choosing a logo based on your personal preference,
>> please try to also ask yourself the following questions:
>>
>> * Is it distinctive? Note that it should not resemble other logos,
>> including the XWiki SAS/xwiki.com logo.
>> * Is it easy to remember and recognize?
>> * Does it blend in smoothly with the Colibri skin? With the new
>> XWiki.org skin? Note that adjustments to the skin is possible, in order
>> to better integrate with the logo.
>> * Is the design scalable? Could it (or parts of it) be
>> successfully used in a 16X16 icon? Would it look good on a very large
>> poster?
>> * Can it be used (as it is, or adapted) on both light and dark backgrounds?
>> * What would it look like in black and white (not just grayscale)?
>> It's ok if some details are lost, but it needs to still look
>> attractive and keep the main features.
>>
>>
>> TIMELINE:
>>
>> 08/Apr/10 : Beginning of second round of votes on d...@xwiki.org,
>> users@xwiki.org
>> 11/Apr/10 : End of votes
>>
>>
>> Thanks,
>
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ___
> devs mailing list
> d...@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
>
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Application translations with the properties located in XWiki pages (Bulleting Board example)

2010-04-20 Thread Thomas Mortagne
On Tue, Apr 20, 2010 at 11:37, Marine JULIAN  wrote:
>
> Hi Marius,
>
> Thank your very much. I've found where my problem was !
>> Strange, I just tried with XWiki Enterprise 2.2.4 and it worked. Here's
>> what I did:
>>
>> * went to Administration/General
>> * enabled multi lingual
>> * set the Languages field to "en,fr" (without the quotes)
>> * kept en as the Default Language
>> * saved
>> * opened BBCode.Translations in wiki edit mode
>> * clicked on fr in the Document Translations panel ("Translate this
>> document in:")
>> * changed some of the translations (e.g. the value associated to
>> bb_addnewcategory translation key) and saved
>> * went to the Bulletin Board home page and the French translation was in
>>   place
> I already did what you say except one thing : instead of editing
> BBCode.Translations in wiki mode, I did it in WYSIWYG mode... And, thank to
> you, I realize that, in WYSIWYG mode, some codes are added in the page. Look
> this quote :
> || bb_bb=Bulletin Board
> || bb_welcomebb=Welcome to your Bulletin Board!
> My problem was this automatical "bb_" piece of code...
> But, mea culpa, because on the
> http://platform.xwiki.org/xwiki/bin/view/DevGuide/InternationalizingApplications
> Internationalizing Applications page  it's written that we have to edit in
> wiki mode... Perhaps, it should be bigger ! :)

I made it a little more visible ;)

> Anyway, thank you ! Now, it works !
>
>> Now, I can see that on the Bulletin Board home page only the en language
>> is listed in view mode in the top right corner of the page. This is both
>> correct, because the Bulletin Board home page wasn't translated in a
>> different language, and wrong because the user is not able to switch the
>> UI language.
>>
>> Unfortunately the language of the UI is currently mixed with the
>> document language. You can force the French language by appending
>> language=fr to the query string of the URL. For instance
>>
>> /xwiki/bin/view/BulletinBoard/?language=fr
>>
>> should display the Bulletin Board home page in French.
> I understand that but it's too bad... Is there a way (a workaround ?) to
> detect if there are many translations in the translation document and not in
> the page itself ? Or, if there isn't, a way to force the wiki to have the
> list of all languages available (in the top right corner) even if the
> current page is translated in only one language ?
> --
> View this message in context: 
> http://n2.nabble.com/Application-translations-with-the-properties-located-in-XWiki-pages-Bulleting-Board-example-tp4926053p4930255.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



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


Re: [xwiki-users] Application translations with the properties located in XWiki pages (Bulleting Board example)

2010-04-20 Thread Marine JULIAN

Hi Marius,

Thank your very much. I've found where my problem was !
> Strange, I just tried with XWiki Enterprise 2.2.4 and it worked. Here's 
> what I did:
> 
> * went to Administration/General
> * enabled multi lingual
> * set the Languages field to "en,fr" (without the quotes)
> * kept en as the Default Language
> * saved
> * opened BBCode.Translations in wiki edit mode
> * clicked on fr in the Document Translations panel ("Translate this 
> document in:")
> * changed some of the translations (e.g. the value associated to 
> bb_addnewcategory translation key) and saved
> * went to the Bulletin Board home page and the French translation was in 
>   place
I already did what you say except one thing : instead of editing
BBCode.Translations in wiki mode, I did it in WYSIWYG mode... And, thank to
you, I realize that, in WYSIWYG mode, some codes are added in the page. Look
this quote :
|| bb_bb=Bulletin Board
|| bb_welcomebb=Welcome to your Bulletin Board!
My problem was this automatical "bb_" piece of code...
But, mea culpa, because on the 
http://platform.xwiki.org/xwiki/bin/view/DevGuide/InternationalizingApplications
Internationalizing Applications page  it's written that we have to edit in
wiki mode... Perhaps, it should be bigger ! :)
Anyway, thank you ! Now, it works !

> Now, I can see that on the Bulletin Board home page only the en language
> is listed in view mode in the top right corner of the page. This is both
> correct, because the Bulletin Board home page wasn't translated in a
> different language, and wrong because the user is not able to switch the
> UI language.
> 
> Unfortunately the language of the UI is currently mixed with the
> document language. You can force the French language by appending
> language=fr to the query string of the URL. For instance
> 
> /xwiki/bin/view/BulletinBoard/?language=fr
> 
> should display the Bulletin Board home page in French. 
I understand that but it's too bad... Is there a way (a workaround ?) to
detect if there are many translations in the translation document and not in
the page itself ? Or, if there isn't, a way to force the wiki to have the
list of all languages available (in the top right corner) even if the
current page is translated in only one language ?
-- 
View this message in context: 
http://n2.nabble.com/Application-translations-with-the-properties-located-in-XWiki-pages-Bulleting-Board-example-tp4926053p4930255.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users