-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
The XWiki development team is proud to announce the release of XWiki Enterprise 3.1 Milestone 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is the first milestone in the 3.1 development cycle, you can review the changes made and bugs
fixed since 3.0 by going to:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWikiEnterpris…
Thanks
- -The XWiki development team
If you would like to download the new release now, you can using these links:
- ---- XWiki Enterprise for Servers ----
xwiki-enterprise-web-3.1-milestone-1.war
SHA1: 599b25607b6023d4c744e096147cf58e67e708d1
http://forge.ow2.org/project/download.php?group_id=170&file_id=16638
xwiki-enterprise-wiki-3.1-milestone-1.xar
SHA1: d947bb06cb94d53d56b4777854e7e1d428f1a2b1
http://forge.ow2.org/project/download.php?group_id=170&file_id=16640
- ---- XWiki Enterprise Standalone ----
xwiki-enterprise-installer-windows-3.1-milestone-1.exe
SHA1: 537fceefd6c31005f521a6c68b8410e18fcb3761
http://forge.ow2.org/project/download.php?group_id=170&file_id=16636
xwiki-enterprise-jetty-hsqldb-3.1-milestone-1.zip
SHA1: 84f5714cda15f548145f168e6e4e407fc0841d4e
http://forge.ow2.org/project/download.php?group_id=170&file_id=16637
xwiki-enterprise-installer-generic-3.1-milestone-1-standard.jar
SHA1: 444809f9b172b156dfda970c66e2c3ce5ac4abad
http://forge.ow2.org/project/download.php?group_id=170&file_id=16639
- ---- XWiki Manager for Servers ----
xwiki-manager-web-3.1-milestone-1.war
SHA1: d9783635b1453ea53edd43f6d7bb8b72a58a03ee
http://forge.ow2.org/project/download.php?group_id=170&file_id=16641
xwiki-manager-wiki-administrator-3.1-milestone-1.xar
SHA1: 790ae398b9f21a3013bb21956692df4b7e543ed4
http://forge.ow2.org/project/download.php?group_id=170&file_id=16642
- ---- XWiki Manager Standalone ----
xwiki-manager-jetty-mysql-3.1-milestone-1.zip
SHA1: 2fb9b0417a54dfaaa6be3af1221c2890ec3a0ad1
http://forge.ow2.org/project/download.php?group_id=170&file_id=16643
- ---- XWiki Manager Extension for XWiki Enterprise Installations ----
xwiki-manager-application-xem-3.1-milestone-1.xar
SHA1: 4c3cefce42cc99dd8e0000f54e3adc3eb5b183f5
http://forge.ow2.org/project/download.php?group_id=170&file_id=16644
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iQIcBAEBAgAGBQJNwC0qAAoJECYAmptlsgnWEIEP/R99nxJ3M1hVGutXGt96PnQs
oDWxWiCfxpHO80249FCcehvB1iG12gRe8ZN4Wzg002ZSHoMLyJfS3EIMOqXYoo7R
cFbOK4zEXJCFQvKGCVqpF/J8OF/E3gg0PGwmOOzjtApPcyQxw2RWFw5DaZ4rcFRp
zIC6RjZfU03qSpKJhXamHZ5B1B/iZb177s1YQ7R8OQ+oUYugYn2VQSGfVA9+DpkY
1Te0bwtvzz6SyxbAQaYLy0OoAzYcvQnl5+USXt+HExhiurnGLJMZ6UETAb+HglB1
KvjEra5LQYQGO3gF7IZjAl85xHoGGUCtdNzO1CEQLxYwKELq9ItZNlisRuIrV6LN
Fmx9tcVJW2LCorx4J8ShR5pbSFZADcMpLH9r1saghRZCP7ZwsQ88b9V2H699veRw
NjM1hULEW2oSOX159k3H/JehTJ1kJCJaJIB07A2P6w+iMQEb5iPVImXeLzDpr3QX
0hE+Hz4Ih3ezju0fm5yTNrgZWdm/1mjqEM+QOVoEWt2Uto5PTqVMZPJz9B/H56z9
whGSbbmbVea6HbLcXPYsM2YVxOY0BcSrbf+CW2zbjMw/YsExWxIuB/F8el1tA2Kr
BrmWXGr7hC0/wiDlJJby3wNsV9aWWkiba0CZGU5z02fI55uUOPO19uhMKLR0KhFM
A5bXf65wAQZ7yEBkJxq2
=/xXw
-----END PGP SIGNATURE-----
Hey guys. Are there some certain commands for adding/removing values to
Static or DB lists? Or maybe there are some other ways around to make it
work? For programmatically configuring the values.
Thank you in advance
Marius Vizbaras
--
View this message in context: http://xwiki.475771.n2.nabble.com/Adding-and-removing-values-to-properties-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Dear all,
I have a class with a UserList attribute. I am trying to add users to
this list from an other page with no success. I try using the following
code :
#if($joinTask!="")
#set($taskDoc = $xwiki.getDocument("Project.${joinTask}"))
#set($taskObj = $taskDoc.getObject("XWiki.TaskClass"))
#set($list = $taskObj.get("assignedPeople"))
$list.add($xwiki.getUser())
$taskObj.set("assignedPeople", ${list})
$taskDoc.save()
#end
but $list.add does not exist so I tried differently :
#if($joinTask!="")
#set($taskDoc = $xwiki.getDocument("Project.${joinTask}"))
#set($taskObj = $taskDoc.getObject("XWiki.TaskClass"))
#set($list = $util.getArrayList())
$list.add($xwiki.getUser())
$taskObj.set("assignedPeople", ${list})
$taskDoc.save()
#end
but I have a casting exception.
I had a look on the velocity website, on this list archives,... with no
success
My question is : Can I add users like that or the only way is through
the edit panel and if yes, what is my mistake ?
Best regards,
Jean
--
----
Jean Couteau
Code Lutin - http://www.codelutin.com
44 Bd des Pas Enchantés - 44230 St-Sébastien/Loire
Tél : 02 40 50 29 28 - Fax : 09 59 92 29 28
Hi,
I would like to create a panel showing only certain spaces but not all of
them for the other users.
Could you help me? because when I use the navigation pannel, it shows all
the spaces
Regards
Yannick
The attempt to install XWiki on Fedora 14 fails with the following error message:
# java /opt/downloads/xwiki-enterprise-installer-generic-3.0-standard.jar
Exception in thread "main" java.lang.NoClassDefFoundError: /opt/downloads/xwiki-enterprise-installer-generic-3/0-standard/jar
Caused by: java.lang.ClassNotFoundException: .opt.downloads.xwiki-enterprise-installer-generic-3.0-standard.jar
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
Could not find the main class: /opt/downloads/xwiki-enterprise-installer-generic-3.0-standard.jar. Program will exit.
#
Hello everyone.
Maybe my question is stupid or I am missing something but isn't having multiple wikis managed by one instance without physical cut off a great security risk.
Couldn't the admin of one wiki install an extension to view the filesystem and therefor gain access to all other wikis?
Cheers Chris.
I came across an old discussion on automatic numbering of headings,
Vincent Massol offered this solution:
http://www.xwiki.org/xwiki/bin/view/FAQ/NumberedSections
A great feature, but I am a bit at loss how to implement this in XWiki
2.0 syntax.
{{velocity}}
#set ($context.tocNumbered = true)
#set ($context.tocData = $tdoc.getTOC(2, 6, true))
{{/velocity}}
==example header==
didn't do the trick.
Any hints?
Hi again,
were are some paediatric surgeons who foundet a nonprofit company to Share knowledge about paediatric surgery. Could You install a xwiki for us? We love it.
Could the name be kinderchirurgie@myxwiki ?
Username: van Wasen
Thank You so much,
Felix from germany
Hi,
What is the best way to have a livetable sorted when opened (the default sort)
We would like to sort on a attribute that is not in the class/object the livetable is designed on.
We have a livetable on WXikiUsers that will show all users
It is now sorted on firstName
We prefer a default sort on date/time of creation (registration moment) of the users so that latest registrations are on top of the list (first page)
This collumn is not in the table and should not be in the table since it is not seen as relevant for the majority of records
After the default sort (when you land on the page) the user can re-sort based on the columns
Gerritjan