Re: [xwiki-users] solr.xml file missing

2016-08-03 Thread Stéphane LASSIRE
Hello THomas That's the fast solution, thanks Now I got some new errors, following tomorrow Nice evening Cordialement Stéphane Lassire Chargé de l'informatique et de la communication Tél direct : 01 42 85 81 87 Courriel : slass...@cesap.asso.fr -Message d'origine- De : users

Re: [xwiki-users] How to get property data type

2016-08-03 Thread dullfig
in a somewhat related question, is it possible to add properties to a class from a script? (velocity, groovy, etc) Dan From: Marius Dumitru Florea [via XWiki] Sent: Wednesday, August 03, 2016 2:11 AM To: dullfig Subject: Re: How to get property data type On Wed, Aug 3, 2016 at 9:29 AM,

Re: [xwiki-users] How to get property data type

2016-08-03 Thread dullfig
Thanks, that helps a lot. Dan From: Marius Dumitru Florea [via XWiki] Sent: Wednesday, August 03, 2016 2:11 AM To: dullfig Subject: Re: How to get property data type On Wed, Aug 3, 2016 at 9:29 AM, Alexandru Cotiuga < [hidden email]> wrote: > Hello Dan, > > To find out what is the data

Re: [xwiki-users] solr.xml file missing

2016-08-03 Thread Thomas Mortagne
The easiest is usually to delete the folder /var/lib/xwiki/data/solr and restar. XWiki will recreate a proper one and reindex everything automatically. On Wed, Aug 3, 2016 at 5:19 PM, Stéphane LASSIRE wrote: > Hello, > > > > I am migrating my Debian server from Wheezy to

[xwiki-users] solr.xml file missing

2016-08-03 Thread Stéphane LASSIRE
Hello, I am migrating my Debian server from Wheezy to Jessie to have the latest xwiki stable version. Tomcat 7.0.56 Apache 2.4.10 JAVA 8 At this moment I got some errors in catalina.out about the missing of the file solr.xml. How can I retrieve it ? I look on the net without

[xwiki-users] mobile/tablet support for new templates

2016-08-03 Thread superuser
The new 4 templates in 8.2 are nice. But the view on mobile need to be corrected, i think.. e.g. the contents section of encyclopedia template should come at top but currently its at bottom when view on small screens. I dont intend to change the template structure for large/ PC screens (they are

Re: [xwiki-users] Include/Display macro now requiring .WebHome

2016-08-03 Thread Patrick Tomblin
Hi Marius, Thanks this helps and ill keep an eye on the jira issue as well. This was a fresh blank install of 8.1 a few weeks ago so there should not have been the nested structure from 7.2. It seems the pages that are letting me map without .WebHome are pages that have imported from word

Re: [xwiki-users] How to resend activation link

2016-08-03 Thread Mahomed Hussein
Any ideas please? I've tried to look at the code of the registration page and I can't see how to butcher it resend the email. Ideally, what should happen is that the page that asks for the validation key should give the option to update the email address and to also resend the email (in case

Re: [xwiki-users] Include/Display macro now requiring .WebHome

2016-08-03 Thread Marius Dumitru Florea
Hi Patrick, In case you haven't read, there is http://platform.xwiki.org/xwiki/bin/view/Features/ContentOrganization/ http://platform.xwiki.org/xwiki/bin/view/Features/ContentOrganization/NestedPagesMigration/ that describe the Nested Pages feature that was introduced in 7.2. There's no change

Re: [xwiki-users] How to get property data type

2016-08-03 Thread Marius Dumitru Florea
On Wed, Aug 3, 2016 at 9:29 AM, Alexandru Cotiuga < alexandru.coti...@xwiki.com> wrote: > Hello Dan, > > To find out what is the data type of a field you need to get the its class > with $field.class and depending on your needs, you can have something like: > $field (1) > $field.class (class

Re: [xwiki-users] How to get property data type

2016-08-03 Thread Alexandru Cotiuga
Hello Dan, To find out what is the data type of a field you need to get the its class with $field.class and depending on your needs, you can have something like: $field (1) $field.class (class java.lang.Integer) $field.class.name (java.lang.Integer) $field.class.simpleName (Integer)