Re: [xwiki-users] Method that returns list of groups for a page

2010-02-17 Thread Meng Wu
Caleb and the XWiki community, Thanks for the response! I wasn't actually aware that this method could take groups as parameters, but if you're right, then it really might solve our problem! However, given the number of groups that we have on xwiki, it may prove a little tedious. Are there any

[xwiki-users] Suppress DocTitle

2010-02-17 Thread stefan bachert
Hi, I am about to set up a glossar. There is a page for each letter. For this kind of page I would like to suppress the display of the standard doc title. The page itself show the letter. Is there a way to do so? - letting the doc title empty is to poor. This may fail at further places -

[xwiki-users] german translations

2010-02-17 Thread stefan bachert
Some of the transaction were very poor, ungrammatically and wrong in panel wizard e.g WIEDERRUFEN means call again very likely the intent was to offer cancel which can be translated as WIDERRUFEN (means revoke, what i have done was wrong) (a better and more usual translation is Abbrechen)

Re: [xwiki-users] How to get the creation date of a document

2010-02-17 Thread Hernández Cuchí , Francisco Ricardo
Thanks! I just got it. And to format the dato to be dd-mm-? Francisco -Mensaje original- De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Marius Dumitru Florea Enviado el: miércoles, 17 de febrero de 2010 8:37 Para: XWiki Users Asunto: Re: [xwiki-users] How

Re: [xwiki-users] german translations

2010-02-17 Thread Vincent Massol
On Feb 17, 2010, at 10:16 AM, stefan bachert wrote: Some of the transaction were very poor, ungrammatically and wrong in panel wizard e.g WIEDERRUFEN means call again very likely the intent was to offer cancel which can be translated as WIDERRUFEN (means revoke, what i have done was

Re: [xwiki-users] Panels

2010-02-17 Thread PERINAUD Christophe
Hi Stefan, Yes you can. In my case, based on a user, its group and its rights, i display different links and pictures. It's easy to do in the source of the panel that you want to customize Ex: #if($xwiki.exists(BankingLexicon.WebHome)) div style=margin-bottom:

[xwiki-users] [ANN] XWiki Enterprise and XWiki Enterprise Manager 2.2 Released

2010-02-17 Thread Thomas Mortagne
The XWiki development team is pleased to announce the release of XWiki Enterprise and XWiki Enterprise Manager 2.2. Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download This release contains many important UI improvements of existing features (xar import, user registration, comments,

Re: [xwiki-users] german translations

2010-02-17 Thread Thomas Mortagne
On Wed, Feb 17, 2010 at 10:16, stefan bachert stefanbach...@yahoo.de wrote: Some of the transaction were very poor, ungrammatically and wrong in panel wizard e.g WIEDERRUFEN means call again very likely the intent was to offer cancel which can be translated as WIDERRUFEN (means revoke, what

Re: [xwiki-users] How to get the creation date of a document

2010-02-17 Thread Guillaume Lerouge
Hi, 2010/2/17 Hernández Cuchí, Francisco Ricardo francisco.hernan...@oepm.es Thanks! I just got it. And to format the dato to be dd-mm-? $xwiki.formatDate($todoDoc.creationDate, 'dd-MM-') or something like that, you can check the API. Guillaume Francisco -Mensaje

Re: [xwiki-users] german translations

2010-02-17 Thread Sergiu Dumitriu
On 02/17/2010 10:21 AM, Vincent Massol wrote: On Feb 17, 2010, at 10:16 AM, stefan bachert wrote: Some of the transaction were very poor, ungrammatically and wrong in panel wizard e.g WIEDERRUFEN means call again very likely the intent was to offer cancel which can be translated as

Re: [xwiki-users] Panels

2010-02-17 Thread Sergiu Dumitriu
On 02/17/2010 10:34 AM, PERINAUD Christophe wrote: Hi Stefan, Yes you can. In my case, based on a user, its group and its rights, i display different links and pictures. It's easy to do in the source of the panel that you want to customize Ex: #if($xwiki.exists(BankingLexicon.WebHome))

Re: [xwiki-users] Suppress DocTitle

2010-02-17 Thread Sergiu Dumitriu
On 02/17/2010 09:28 AM, stefan bachert wrote: Hi, I am about to set up a glossar. There is a page for each letter. For this kind of page I would like to suppress the display of the standard doc title. The page itself show the letter. Is there a way to do so? - letting the doc title empty

Re: [xwiki-users] How to get the creation date of a document

2010-02-17 Thread Hernández Cuchí , Francisco Ricar do
Thanks for all, The last problem I have, it's that in the versión i am using actually 1.7.1, when I use the following code: #set ($hql = , BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.TodoClass' and obj.name'XWiki.TodoClassTemplate' order by doc.date asc ) I get an

Re: [xwiki-users] RESTful api - Uploading Attachments

2010-02-17 Thread Fabio Mancinelli
On Feb 17, 2010, at 12:34 PM, Fabio Mancinelli wrote: On Feb 10, 2010, at 1:00 AM, Radek Rekas wrote: I'm having trouble finding out how to upload attachments using the RESTful api. I've looked at the attachment type in the schema

Re: [xwiki-users] XWord Server URL ?

2010-02-17 Thread Simon Glet
Hi, I have installed the packet sniffer (Wireshark) but windows doesn't allow a tcpdump on the loopback (127.0.0.1). So for now I can't see was is going on. I will have to use XOffice from another machine... Best Regards Simon Glet On Fri, Feb 12, 2010 at 12:52 PM, Simon Glet

[xwiki-users] Missing Edit button in XWiki 's sandbox test page 1

2010-02-17 Thread Bogdan Flueras
Hi there, I,ve installed the XWIKI on my machine and started the webapp. Then went to Sandbox's test page 1: http://localhost:8080/xwiki/bin/view/Sandbox/TestPage1 There it is written that i have to click on the 'Edit' button but I DONT SEE ANY BUTTON at all. Why is that? What's the problem?

Re: [xwiki-users] Missing Edit button in XWiki 's sandbox test page 1

2010-02-17 Thread Sergiu Dumitriu
Hi Bogdan, Are you logged into your wiki? The edit action is not visible by default to guest users. The default username/password are Admin/admin . After you log in, the Edit menu (not button) should appear right above the content. On 02/17/2010 05:13 PM, Bogdan Flueras wrote: Hi there,

[xwiki-users] Programmatically create docs

2010-02-17 Thread stefan bachert
Hi, for a glossar I would like to create documents for each letter automatically. I tried to use #set ($newDoc = $xwiki.createDocument()) However, the var $newDoc will not assigned What is wrong with that? Stefan Bachert __ Do You Yahoo!?

Re: [xwiki-users] Programmatically create docs

2010-02-17 Thread Marius Dumitru Florea
Hi Stefan, stefan bachert wrote: Hi, for a glossar I would like to create documents for each letter automatically. I tried to use #set ($newDoc = $xwiki.createDocument()) However, the var $newDoc will not assigned {{velocity}} #set ($newDoc = $xwiki.createDocument())

Re: [xwiki-users] Programmatically create docs

2010-02-17 Thread Vincent Massol
On Feb 17, 2010, at 10:01 PM, stefan bachert wrote: Hi, for a glossar I would like to create documents for each letter automatically. I tried to use #set ($newDoc = $xwiki.createDocument()) However, the var $newDoc will not assigned What is wrong with that? #set ($mydoc

[xwiki-users] LiveTable column titles

2010-02-17 Thread Rieken, Joshua
I am using the LiveTable macro to build a table similar to the one in XWiki.Tableview. I have custom columns and I want to display a column's pretty name as its header, but I can't find a way to pass a column pretty name in the column properties or otherwise set the column header. The only way

Re: [xwiki-users] ORA-00932 inconsistent datatypes expected got clob

2010-02-17 Thread Marius Dumitru Florea
Hi Alla, I found this http://opensource.atlassian.com/projects/hibernate/browse/HHH-3606 . The problem is indeed caused by the distinct restriction. The good news is that this restriction is not really needed so I opened http://jira.xwiki.org/jira/browse/XWIKI-4907 and removed it. The problem