Re: [xwiki-users] User's Groups and/or Conference?

2014-01-20 Thread Ecaterina Moraru (Valica)
On Sat, Jan 18, 2014 at 3:05 PM, vinc...@massol.net vinc...@massol.netwrote:

 Thomas and I discussed this quickly and in our opinions we should instead
 create a small xwiki application to do that:

 * Add the ability to enter one’s location on his profile page on xwiki.org


An alternative would be to take the location from github profile (since
most of us already have that information there and we could use other data
from git also).

Thanks,
Caty


 * Automatically put all filled user’s location in a map on a xwiki page
 (we can also use our user directory application to display user’s location
 in the livetable so that it can filtered by town/country for example).

 That shouldn’t be hard to do.

 WDYT?

 Thanks
 -Vincent

 On 18 Jan 2014 at 10:59:31, Hamster (teun...@hotmail.com) wrote:

 Added my location to XWiki on Google Maps
 
 https://maps.google.com/maps/ms?msid=210331808187331529022.0004f02bd076d94db85c6msa=0dg=feature
 
 ___
 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] Wiki application templates error (SOLVED?)

2014-01-20 Thread Jaume Giribert Peraire
Hi,

Found out that the problem was related to the translated pages! I created
the following script to delete all translated pages on the template. Now
I'm able to create subwikis from template without any issue and everything
works as expected. Thanks Thomas for you help :)

Following is the script. I only preserve the en version (yeah, I know
it's dirty but it works!). Hope it could help someone.

{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(de).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(da).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(es).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(fr).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(it).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(nl).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(AnnotationCode.Translations).getTranslatedDocument(pt_BR).delete(){{/velocity}}

{{velocity}}$xwiki.getDocument(Main.SolrTranslations).getTranslatedDocument(de).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.SolrTranslations).getTranslatedDocument(es).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.SolrTranslations).getTranslatedDocument(fr).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.SolrTranslations).getTranslatedDocument(nl).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.SolrTranslations).getTranslatedDocument(pt_BR).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.SolrTranslations).getTranslatedDocument(sv).delete(){{/velocity}}

{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(ca).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(da).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(de).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(es).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(fr).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(it).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(lv).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(nl).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(pt_BR).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(ro).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(ru).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(sv).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(uk).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(zh).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(Main.Welcome).getTranslatedDocument(zh_TW).delete(){{/velocity}}

{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(ca).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(da).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(de).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(es).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(fr).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(it).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(lv).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(nl).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(pt_BR).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(ru).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(WikiManager.Translations).getTranslatedDocument(sv).delete(){{/velocity}}


{{velocity}}$xwiki.getDocument(XWiki.XWikiSyntaxDefinitionLists).getTranslatedDocument(de).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(XWiki.XWikiSyntaxDefinitionLists).getTranslatedDocument(fr).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(XWiki.XWikiSyntaxDefinitionLists).getTranslatedDocument(it).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(XWiki.XWikiSyntaxDefinitionLists).getTranslatedDocument(lv).delete(){{/velocity}}
{{velocity}}$xwiki.getDocument(XWiki.XWikiSyntaxDefinitionLists).getTranslatedDocument(sv).delete(){{/velocity}}