The XWiki development team is pleased to announce the release of XWiki
Enterprise 2.5 and XWiki Enterprise Manager 2.5.
Go grab them at http://www.xwiki.org/xwiki/bin/view/Main/Download
The highlights of this release are:
* support for viewing attached office documents in the wiki
* a new User Directory
* an experimental Extension Manager
* improvements to action menus
* further improvements to the edit UI
* support for activating a special accessibility stylesheet
* more consistent use of user avatars
* an experimental xwiki/2.1 wiki syntax
* a mechanism for inserting custom links in the header
* the introduction of cancelable events
* better external search engine indexing support
* experimental CSRF protection
* experimental Cryptographic Module
For more information, see the Release notes at
http://www.xwiki.org/xwiki/bin/Main/ReleaseNotesXWikiEnterprise25 and
http://www.xwiki.org/xwiki/bin/Main/ReleaseNotesXEM25
Thanks
-The XWiki dev team
Hi there,
The problem I'm having is importing a signed ca (from goDaddy). I
believe I'm importing it correctly however after I've imported it along
with adding the crt files to the keystore, what happens is when I go to
connect to the webserver there's a certificate error indicating the
certificate being used is self-signed when it should be signed by
goDaddy???
I've spent many hours researching this issue on the net and have not
been successful. Someone suggested for me to try this mail list - it's
my last resort.
Please if someone can help me, it would be very much appreciate.
Luigi
--
This message has been verified by LastSpam (http://www.lastspam.com) eMail security service.
http://www.lastspam.com
Hi,
I'm trying to upgrade my farm from 2.3.2 to 2.4.3.
If I follow the upgrade guide
http://manager.xwiki.org/xwiki/bin/view/AdminGuide/Migration , the 2 steps
are :
1/ upgrade the main wiki (XEM war and XEM xar)
2/ upgrade each sub-wikis
My question is about this last third step.
To do the upgrade, I have downloaded the standard XE xar
(xwiki-enterprise-wiki-2.4.3.xar). But there is also a xar attached in the
XemManager.install page (template-xe.xar). These 2 xar are the same. I hope
you confirm this.
When I import this XAR in a sub-wiki, the author of the upgraded pages is
XWiki.Admin (the local admin of the sub-wiki). But this local Admin doesn't
have programming rights. It so happens that a lot of pages (AllDocs,
DeletedDocuments, ...) can't execute. The workaround is to save these pages
as xwiki:XWiki.Admin but it's boring.
Is there something that I've missed ?
Why the template-xe.xar does not have xwiki:XWiki.Admin as author of the
pages ?
Best regards,
Maxime Mathieu
Hi,
Working in a XE/XEM 2.4 installation and login with a global user in a
virtual wiki, cookies don't remember the status of the panels. When I
use the same account in the controller, it works fine.
For instance, this cookie fails to store/retrieve the state of MREC
panel. Each time I refresh, I get an expanded panel:
xwiki:XWiki.RicardoRodriguezFernandez_Panels.MREC
The same user in the controller works as expected having a cookie named...
XWiki.RicardoRodriguezFernandez_Panels.MREC
And when working without log in, it works as expected as well. In this
case, the cookie is...
XWiki.XWikiGuest_Panels.MREC
Could this something to do with the name of the cookies being set as
"${xcontext.user}_${panel}" when the user is a global one?
Any idea will be welcome! Thanks!
--
Ricardo RodrÃguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
Hi colleagues!
I need some help for the Scheduler.
I already have some not small script in a velocity. This script select some
pages with complex conditions (hql), make some calculations and sending
emails. Now this script is working when I simply open it page (where script
is placed).
I need to make automatic schedule for this script (for example - every day).
Unfortunately, scheduler scripts permit only groovy scripts ... Also,
problem for me - I dont't now groovy at all (velocity - so-so) and I am not
a programmer. For me - groovy learning is difficult (in any case - not
quickly).
My question - is any possibility to use my velocity script without total
rewriting for groovy? Maybe I can write groovy script with redirection for
my page with velocity script? Maybe is it possible to include code of one
scripting language in another?
If is not (only need to totally rewrite script to grovvy) can somebody can
help me in this operation? I attached my original velocity script (it's
working fine).
http://xwiki.475771.n2.nabble.com/file/n5666438/velocity_script.txt
velocity_script.txt
--
Thanks beforehand
Eugen Colesnicov
--
View this message in context: http://xwiki.475771.n2.nabble.com/Using-Scheduler-issues-groovy-questions-t…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi! Maybe somebody can help me.
I need to select some docs with own class. Together I need 3 filters:
1) by class: only "myclass"
2) by property value: where "myproperty" = "myvalue"
3) by date: where doc date = current date - 5 days
I created xwql script with 2 creterias and it's working well:
select obj.name from Document doc, doc.object(mySpace.myClass) as obj where
obj.myProperty like 'myValue' order by obj.name
How need to add one more criteria by date?
Thanks beforehand!
Eugen Colesnicov
--
View this message in context: http://xwiki.475771.n2.nabble.com/using-XWQL-with-additional-search-criteri…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
Infos: I've a class to create some services (Prestations) with (at this
time) 3 fields: name, town and country.
They are created with a name for the doc, like MyService01, MyService02, etc
(for the tests)
Second part, there is another class used to evaluate each service. The
system needed is to have a form of evaluation created each time that any
person want make an evaluation for a service.
So, I would like to create a system of pages called like
MyService01_Eval_001, MyService01_Eval_002, MyService01_Eval_003, etc. for
an evaluation of MyService01, and MyService02_Eval_001,
MyService02_Eval_002, etc. for an evaluation of MyService02 for example.
My problem, when I want create an evalutation, I get back the name of the
service (spent in hidden parameter in the form) then I would like to use it
in the code to create page and call the class template of the second class
with the code:
<code>
#if("$!request.xaction" == 'createevaluationtype01')
#if($docname != '' && !$xwiki.exists($docname))
#if("$!request.xaction" == 'createevaluationtype01')
$xwiki.copyDocument('EtudeCode.EtudeRatingType01Template', $docname)
#set($etudeDoc= $xwiki.getDocument($docname))
$etudeDoc.setTitle(${title})
$etudeDoc.setParent($doc.getFullName())
$etudeDoc.save()
$response.sendRedirect($etudeDoc.getURL('inline'))
#end
#end
#end
</code>
The "$docname" value has the good name when I display it, like for example
"MyService001_Eval_002", but when I click on button the page created is
called "WebHome_Eval_002", I can't keep the name of the service evaluated.
Really, I don't understand why and I don't find any soluce to my problem
since now almost 3 days and after tried several methods :(
Someone could help me for this please ;)
--
View this message in context: http://xwiki.475771.n2.nabble.com/Problem-to-give-a-name-to-a-page-with-Cla…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hey All.
So I found some documentation on setting up jetty with SSL/HTTPs
I have done this with Apache in an wamp environment, but because I wanted to
test xwiki out of the box I am using just the full packaged installed
product.
The site I found discussed on how to generate a keystore, and I have done
that, I am not worried about CSR at this point because its for testing
purposes.
So now that I have a keystore in hand i open up the jetty config xml and it
says to set up a SSL connection i need to run the following command.
java -jar start.jar etc/jetty.xml etc/jetty-ssl.xml
and that I should look in the jetty-ssl.xml file, which is non existent.
Do you have any advice as to where to point me on this. The reason that I
am coming here is because I am in a time crunch to get this done asap.
any and all help will be greatly appreciated
--
View this message in context: http://xwiki.475771.n2.nabble.com/Setting-up-Xwiki-for-HTTPs-tp5663073p5663…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi!
Sorry, but I'm kind of a mess with this topic...
Working with old XWiki XE releases, there was a way of controlling if
attachments, comments, (information) and history were displayed or not
by adding four string properties to the class XWiki.XWikiPreferences.
Then, on a per document basis it were possible to set each of them to
control this feature.
#set ($showcomments="no")
#set ($showattachments = "no")
#set ($showhistory="no")
#set ($showinformation = "no")
Now, working with Xe/XEM 2.4.1, the #set for these four variables keeps
working, but I don't know now to control this for a whole wiki because
when editing XWiki.XWikiPreferences, the editor claims that these four
properties have been deprecated and offers the an option to delete them.
If I delete them, the settings keep working.
I also found this in the configuration guide:
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Configuration#HTurningo…
So, please, where/how is now controlled the visibility of those items?
Thanks for your help!
Ricardo
--
Ricardo RodrÃguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems