Re: [xwiki-users] Display current date on page

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
Hi! Lockie wrote: > Hi all, > > Is there a date property I can use to automatically display the current date > on a page? I would do it in javascript but you can't embed

Re: [xwiki-users] Display current date on page

2010-10-28 Thread Vincent Massol
Hi Stefan, On Oct 28, 2010, at 8:15 AM, Stefan abageru wrote: > Hi Lockie ! > > You can use $xwiki.getDate() inside your velocity code in order to > display the current date. This is really deprecated stuff and shouldn't be used. Instead you should use $datetool. http://velocity.apache.org/t

[xwiki-users] Lucene File Indexing

2010-10-28 Thread Thomas Höschele
Hallo, I noticed that lucene is capable of Indexing various office files (excel, word, outlook mails); however, this doesn’t happen automatically. When I add the file it does not get indexed no matter how long I wait. When I rebuild the Index via the administration terminal the files get indexe

Re: [xwiki-users] Lucene File Indexing

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
Hi! Thomas Höschele wrote: > Hallo, > > > > I noticed that lucene is capable of Indexing various office files (excel, > word, outlook mails); however, this doesn’t happen automatically. > When I add the file it does not get indexed no matter how long I wait. When > I rebuild the Index via the ad

Re: [xwiki-users] conditional redirect after login

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
Hi! Gerritjan Koekkoek wrote: > Hi, > > I really appreciate your interest, this really helps me; Thanks > > You are very right, If users are redirected to their profile they are not > forced to enter any extra data. > But we will put a text in the profile page that it would be very helpfull if

Re: [xwiki-users] getRenderedContent issues

2010-10-28 Thread Thomas Mortagne
On Sun, Oct 24, 2010 at 00:31, Eugen Colesnicov wrote: > > Hi colleagues! > > I testing some application with standart organization (many of XWiki > applications organized in a same way): > Exists TestAppCode space with all classes, templates, sheets, codes and > exists TestApp space with visualiz

Re: [xwiki-users] Lucene File Indexing

2010-10-28 Thread Thomas Höschele
Hallo, checked broken attachments. There some put these are picture files only, which should not be affected by the lucene engine. Also how can I make the rebuild with the scheduler, my code does not seem to work. Thanks for your answer. Thomas -Ursprüngliche Nachricht- Von: users-boun.

[xwiki-users] Xwiki installed in WebSphere error

2010-10-28 Thread Aaron Obst
Greetings all ... We are testing out xwiki at my company and have opted for the option to install into WebSphere (on Linux) with a MySQL backend. I have created the backend database and installed the war file into the application server. However at start-up time I get the following error; (Has

Re: [xwiki-users] Lucene File Indexing

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
Hi! Thomas Höschele wrote: > Hallo, > > checked broken attachments. There some put these are picture files only, > which should not be affected by the lucene engine. > I've seen issues with PDF files including only images. I'd fix all and every problem with attachments before debugging proble

[xwiki-users] Disabling "Save & Continue" button

2010-10-28 Thread ccoreggioli
Hi, is there a way to hide/disable (better hide) the "Save & Continue" button when editing a page? My users like to click it very often creating a very long history. If there isn't a property to do so, i think i'll customize the source code, in which .vm file do i have to put my hands? or i

Re: [xwiki-users] Disabling "Save & Continue" button

2010-10-28 Thread Sergiu Dumitriu
On 10/28/2010 05:02 PM, ccoreggioli wrote: > > Hi, > > is there a way to hide/disable (better hide) the "Save& Continue" button > when editing a page? My users like to click it very often creating a > very long history. > > If there isn't a property to do so, i think i'll customize the source

Re: [xwiki-users] conditional redirect after login

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
[Ricardo Rodriguez] eBioTIC. wrote: > Hi! > > Gerritjan Koekkoek wrote: > >> Hi, >> >> I really appreciate your interest, this really helps me; Thanks >> >> You are very right, If users are redirected to their profile they are not >> forced to enter any extra data. >> But we will put a text

[xwiki-users] Successful FreeBSD (Tomcat) to Solaris (Glassfish) migration

2010-10-28 Thread Kaya Saman
Hi guys, I've managed to successfully migrate XWiki from FreeBSD 8.0 x64 Release running Postgresql 8.2 and Apache Tomcat 6 to Nexenta Core 3 x86 (OpenSolaris distro) running as a virtual test machine on Virtual Box running Postgresql 8.3 and Glassfish v3 I'd love to get the information ou

Re: [xwiki-users] documentation wiki user account

2010-10-28 Thread jminne
Oh! so xwiki.org has a register link, but the "sub wikis" only have a login link. That seems odd to me. Anyway, that worked and now I have an account. Thanks. -John -- View this message in context: http://xwiki.475771.n2.nabble.com/documentation-wiki-user-account-tp5680688p5684074.html Se

Re: [xwiki-users] Successful FreeBSD (Tomcat) to Solaris (Glassfish) migration

2010-10-28 Thread Sergiu Dumitriu
On 10/28/2010 06:39 PM, Kaya Saman wrote: > Hi guys, > > I've managed to successfully migrate XWiki from FreeBSD 8.0 x64 Release > running Postgresql 8.2 and Apache Tomcat 6 to Nexenta Core 3 x86 > (OpenSolaris distro) running as a virtual test machine on Virtual Box > running Postgresql 8.3 and Gl

[xwiki-users] issue with getAttachment from different document in Groovy

2010-10-28 Thread Arnaud bourree
Hello I put a file Text.txt as attachment in a page: Sandbox.Page1 I in an other page Sandbox.Page2, I write the following script: {{groovy}} def mydoc=xwiki.getDocument('Sandbox.Page1') def myfile=mydoc.getAttachment('Text.txt') println "|"+mydoc+"|"+myfile {{/goovy}} The result is |Sandbox.Page1

Re: [xwiki-users] documentation wiki user account

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
Hi, jminne wrote: > Oh! so xwiki.org has a register link, but the "sub wikis" only have a login > link. That seems odd to me. > Yeap, perhaps the register link should be available in all and every page a guest visit in the first visits to the xwiki.org ecosystem. As happens to you, if yo

Re: [xwiki-users] issue with getAttachment from different document in Groovy

2010-10-28 Thread [Ricardo Rodriguez] eBioTIC.
Hi! Arnaud bourree wrote: > Hello > > I put a file Text.txt as attachment in a page: Sandbox.Page1 > I in an other page Sandbox.Page2, I write the following script: > {{groovy}} > def mydoc=xwiki.getDocument('Sandbox.Page1') > def myfile=mydoc.getAttachment('Text.txt') > println "|"+mydoc+"|"+myfi

Re: [xwiki-users] issue with getAttachment from different document in Groovy

2010-10-28 Thread Caleb James DeLisle
Hi Arnaud, I have indeed repeated this problem. It appears that I have introduced a bug when I fixed http://jira.xwiki.org/jira/browse/XWIKI-5405. This bug nolonger exists on the 2.6 trunk due to additional refactoring and I will work on a targeted patch for v2.5.1 Terribly sorry for the inconve