Re: [xwiki-users] MyTodos not showing my todos

2008-10-15 Thread Fabian Pichler
Hi Antonio I had a quick look at your problem and think your right the HQL-Query is wrong. The Problem comes from the definition of the Assignee-Field in the XWiki.TodoClass. The Assignee-Field is defined as List of Users Property which is based on the LargeStringProperty and not the

Re: [xwiki-users] MyTodos not showing my todos

2008-10-15 Thread Fabian Pichler
Sorry, missing a 't' in $context so once again: #set ($hql = , BaseObject as obj, StringProperty as prop1, LargeStringProperty as prop2 where obj.name=doc.fullName and obj.className='XWiki.TodoClass' and obj.name'XWiki.TodoClassTemplate' and obj.id=prop1.id.id and prop1.id.name='Status' and

Re: [xwiki-users] XWiki Right to Left language support

2008-10-15 Thread Bey Youcef
Hi Amer, On Mon, Oct 13, 2008 at 3:49 PM, Amer Radwan [EMAIL PROTECTED] wrote: Hi All, As I know Xwiki supports localization,but I think there is problem with Right to left languages like (Arabic and Hebrew) , so please I need your support for how I (if any) can render Xwiki workplace pages

[xwiki-users] After Migrating ... to new version

2008-10-15 Thread Azzedine Ait Khelifa
In the dos console I see 10:22:55.848 INFO   [main] org.mortbay.log.LogImpl.add(LogImpl.java:109) 16 ad ded [EMAIL PROTECTED] 10:22:55.691 INFO   [main] org.mortbay.util.FileResource.clinit(FileResource.j ava:60) 11 Checking Resource aliases 10:22:56.395 INFO   [main]

Re: [xwiki-users] Help wanted on the database list class property, database tree class property and the Custom Display attribute.

2008-10-15 Thread jerem
Hello, I'm posting here because I tried to implement solution proposed by Sergiu but it's not (yet) working ... (I'm using XWiki 1.5.2) I want to have a Database Tree List property in a class of type FAQ (FAQs.FAQClass). I would like to use this property to link together a FAQ property Category

[xwiki-users] LDAP authentication

2008-10-15 Thread Mihails Agafonovs
Hi! Just installed XWiki 1.6. Thought LDAP authentication would now work for AD using sAMAccountName (with dot), but no success. I've configured UID_ATTR=sAMAccountName, all the other configuration is same as for version 1.3 (LDAP worked fine using cn). P.S. Of course, I didn't just copy my old

Re: [xwiki-users] LDAP authentication

2008-10-15 Thread Thomas Mortagne
Hi, On Wed, Oct 15, 2008 at 5:11 PM, Mihails Agafonovs [EMAIL PROTECTED] wrote: Hi! Just installed XWiki 1.6. Thought LDAP authentication would now work for AD using sAMAccountName (with dot), but no success. I've configured UID_ATTR=sAMAccountName, all the other configuration is same as for

Re: [xwiki-users] Conditionally displaying content on the landing page depending on access rights

2008-10-15 Thread Thomas Mortagne
On Wed, Oct 15, 2008 at 1:44 PM, Alban Schmid [EMAIL PROTECTED] wrote: Dear fellow xwiki users, I'd like to display some portions of the landing page as well as some items in the menu conditionally, i.e. only for some specific groups. I've found following code snippet on the 'Quick

[xwiki-users] Conditionally displaying content on the landing page depending on access rights

2008-10-15 Thread Alban Schmid
Dear fellow xwiki users, I'd like to display some portions of the landing page as well as some items in the menu conditionally, i.e. only for some specific groups. I've found following code snippet on the 'Quick Links' menu: #if ($xwiki.hasAdminRights()) Content to display

Re: [xwiki-users] Public vs. Private strict content separation -what's the best strategy?

2008-10-15 Thread Alban Schmid
Thanks Guillaume, That's very useful. Regards, ALBAN SCHMID CLIENT SOLUTIONS SPECIALIST DIRECTOR, CHANNEL SOLUTION SERVICES CBS Interactive - Channel Tel: +41 21 943 03 86 Skype: albanschmid Rte Industrielle 2 | CP 138 | 1806 St-Légier, Switzerland CNETChannel.com -Original

Re: [xwiki-users] After Migrating ... to new version

2008-10-15 Thread Jerome Velociter
Hi Azzedine. I answered your question in FAQ entry here : http://www.xwiki.org/xwiki/bin/view/FAQ/WhyDoIHaveDeprecatedUsageOfMethodXXXInTheConsoleLog Regards, Jerome. Azzedine Ait Khelifa wrote: In the dos console I see 10:22:55.848 INFO [main]

Re: [xwiki-users] MyTodos not showing my todos

2008-10-15 Thread Antonio Goncalves
Thanks Fabian, it works, that's great. I would have a second question though. The TODOs are ordered by doc.date (which is the creation of the document). What I really want is to order by the Target Date (it's the property of the TodoClass). This property is a date, so do you know how I can order

[xwiki-users] 2-1/2 naming questions

2008-10-15 Thread Dave Mangot
Bonjour, We've just upgraded to Xwiki 1.6 and I have some questions from a user that are not necessarily 1.6 specific. 1. Is it possible to have a page name with a period (.) in the name. e.g. [Release 1.6]? In Xwiki 1.0 it renders as underlined 6. In Xwiki 2.0, it doesn't even render as a

Re: [xwiki-users] MyTodos not showing my todos

2008-10-15 Thread Fabian Pichler
Try: #set ($hql = , BaseObject as obj, StringProperty as prop1, LargeStringProperty as prop2, DateProperty as dueDate where obj.name=doc.fullName and obj.className='XWiki.TodoClass' and obj.name'XWiki.TodoClassTemplate' and obj.id=prop1.id.id and prop1.id.name='Status' and prop1.value 'Finished'

Re: [xwiki-users] MyTodos not showing my todos

2008-10-15 Thread Antonio Goncalves
That works great thanks Fabian. IMHO the TODO application should be changed and use this HQL request instead. It makes more sense to only display the todos of the connected user and sort them by due date. Antonio 2008/10/16 Fabian Pichler [EMAIL PROTECTED] Try: #set ($hql = , BaseObject as