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
The XWiki development team is pleased to announce the release of XWiki
Enterprise and XWiki Enterprise Manager 2.4.4.
Important bug fixed:
* XWIKI-5542 - Different rights in view and rest mode
* XWIKI-5597 - File upload plugin doesn't strip the file path in IE
* XWIKI-5598 - When importing a XAR, ignoring translated documents
does not work
* XWIKI-5309 - rest api query called by XE JumpToPage causes
performance problem and even deadlock
* XWIKI-5387 - Apache commons URIUtil is potentially unsafe
* XWIKI-4366 - Blockquote is badly parsed when multiple lines are
styled together
* XWIKI-5525 - DBList request level cache is ignored
* XWIKI-5591 - HTML to Wiki Syntax 2 looses color in certain cases
* XWIKI-5599 - In the XAR importer UI, the initial space document
count is wrong whenever that space has translated documents
* XWIKI-5530 - LDAP module: Impossible to login with the same UID
if your DN changes
* XWIKI-5523 - NPE during parsing of a sequence
table/style/paragraphe/paragraphe
* XAANNOTATIONS-32 - Highlight does not disappear after deleting
the last annotation from a page
For more information see the Releases notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise244
and http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM244
Thanks
-The XWiki dev team
Hi all,
I have a XE 2.4.3 instance running on a Tomcat 6 (JDK 1.6.0) and I'm
experiencing that the Tree view of documents doesn't work.
If I use the link
http://<host>:8080/xwiki/bin/view/Main/AllDocs?view=tree I get the
page but a "Loading data..." message is displayed and nothing happens.
Can you help me to figure out a solution?
Thanks,
Loris Conedera
Hi!
I would like to modify the appearance of this area entries for guests
(Export, More Actions and Annotations) allowing these options only for
registered users. Thus, I would like this area to be empty for guests.
I've been playing with *menuview.vm* both in /templates and
/skins/colibri to no avail.
Please, what template is controlling this appearance?
Thanks!
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
Hi,
Our XE/XEM 2.4.1 farm runs in a Tomcat servlet server. Lucene is
currently not working. I'm trying to understand what messages logged in
catalina.out could relate to this problem. We get this
java.io.NotSerializableException during the start up process. See this...
http://ftp.ebiotic.net/fromPeat/catalina.out.201010202219.txt
Could it affect Lucene? Thanks!
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
Hi!
In a XE/XEM 2.4.1 farm, our Lucene building index process stopped as ...
*Lucene is currently building its index, 41 documents in queue.
*And we can't access Search in XWiki Preferences of any of the subwikis
or even the controller.*
*
I see this in xwiki.log:
com.xpn.xwiki.XWikiException: Error number 3301 in 3: Exception while
switching to database redpatrimonio
Wrapped Exception: Unknown database 'redpatrimonio'
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.setDatabase(XWikiHibernateBaseStore.java:643)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.beginTransaction(XWikiHibernateBaseStore.java:742)
at
com.xpn.xwiki.store.XWikiHibernateStore.loadXWikiDoc(XWikiHibernateStore.java:683)
at
com.xpn.xwiki.store.XWikiCacheStore.loadXWikiDoc(XWikiCacheStore.java:289)
at com.xpn.xwiki.XWiki.getDocument(XWiki.java:1463)
at com.xpn.xwiki.XWiki.getDocument(XWiki.java:1506)
at com.xpn.xwiki.api.XWiki.getDocument(XWiki.java:166)
at com.xpn.xwiki.api.XWiki.getDocument(XWiki.java:153)
at com.xpn.xwiki.plugin.lucene.SearchResult.<init>(SearchResult.java:98)
at
com.xpn.xwiki.plugin.lucene.SearchResults.getRelevantResults(SearchResults.java:72)
at
com.xpn.xwiki.plugin.lucene.SearchResults.getHitcount(SearchResults.java:22
In fact, that database is called redepatrimonio, not redpatrimonio.
The wiki descriptor page name in the main wiki is
XWiki.XWikiServerRedepatrimonio.
Please, where the name of the database as listed in the exception is
stored? How could I correct it?
I don't know how I've messed things and if this error is related with
problem, but it seems that need to be corrected before trying anything else!
Thanks!
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
Hello,
I use treeview in a panel for navigation in my xwiki, but I have a problem with displaying of pages in this treeview. I want to display titles of the pages instead of their names. Is this possible?
The second problem is sorting. Pages are sorted according their creation but I would like to sort them in another way, eg. alphabetically. Is it possible to sort this treeview?
I have an xwiki 2.4.3.
There is a code of treeview from the panel:
## Smartclient
$xwiki.jsfx.use('js/smartclient/initsc.js', {'forceSkinAction' : true, 'defer' : false})##
$xwiki.jsfx.use('js/smartclient/modules/ISC_Core.js', {'defer' : false})##
## TODO: remove this line
## when http://forums.smartclient.com/showthread.php?t=3097 will be fixed
$xwiki.jsfx.use('js/smartclient/overwritesc.js', {'defer' : false})##
$xwiki.jsfx.use('js/smartclient/modules/ISC_Foundation.js', {'defer' : false})##
$xwiki.jsfx.use('js/smartclient/modules/ISC_Containers.js', {'defer' : false})##
$xwiki.jsfx.use('js/smartclient/modules/ISC_Grids.js', {'defer' : false})##
$xwiki.jsfx.use('js/smartclient/modules/ISC_Forms.js', {'defer' : false})##
$xwiki.jsfx.use('js/smartclient/modules/ISC_DataBinding.js', {'defer' : false})##
$xwiki.jsfx.use('js/smartclient/skins/Enterprise/load_skin.js', {'defer' : false})##
## XWikiExplorer
$xwiki.jsfx.use('js/xwiki/xwikiexplorer/xwikiexplorer.js', {'forceSkinAction' : true, 'defer' : false})##
<div id="XWEWrapper" style="height:600px;margin-right:5px; padding-right:5px;padding-bottom:30px;"></div>
<script type="text/javascript">
isc.XWETreeGrid.create({
ID: "Treeview",
defaultValue: "$doc.prefixedFullName",
htmlElement: "XWEWrapper", // Mandatory HTML wrapper.
matchElement: true, // Make the widget match HTML wrapper size.
dataSource: isc.XWESpaceDataSource.create({ space:"mySpace" }),
displaySuggest: false, // Display the input at the bottom.
displayLinks: true, // Node titles are HTML links.
displayAttachments: false, // Display pages attachments.
displayAttachmentsOnTop: false // Display attachments before page children.
}).draw();
</script>
</div>
#panelfooter()
Thank you very much for your answer.
Zuzana Zapletalova
Hi everybody,
I have XEM 2.3 working in a test environment with OpenSuse 11.3, Mysql 5.1,
OpenOffice 3.2.1, and Jetty, as per defualt war distributed, and everything
is working fine.
I made the upgrade to XEM 2.4.3 version, importing new xar, also. I made
modifications to the relevant
xwiki.properties file to make the Office importer section identical to the
previous 2.3 version, (see below) but the office server does not start and
import is not working in 2.4.3!
------
xwiki.log file: (XEM 2.4.3)
2010-10-18 11:23:05,125 [main] ERROR rnal.DefaultObservationManager - Fail
to send event [org.xwiki.observation.event.ApplicationStartedEvent@1d592a]
to listener
[org.xwiki.officeimporter.internal.openoffice.OpenOfficeManagerLifecycleListener@c8e4de]
java.lang.IllegalStateException: invalid templateProfileDir:
/home/smg/.ooo3/user
at
org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration.buildOfficeManager(DefaultOfficeManagerConfiguration.java:122)
at
org.xwiki.officeimporter.internal.openoffice.DefaultOpenOfficeManager.initialize(DefaultOpenOfficeManager.java:102)
at
org.xwiki.officeimporter.internal.openoffice.DefaultOpenOfficeManager.start(DefaultOpenOfficeManager.java:135)
at
org.xwiki.officeimporter.internal.openoffice.OpenOfficeManagerLifecycleListener.startOpenOffice(OpenOfficeManagerLifecycleListener.java:96)
at
org.xwiki.officeimporter.internal.openoffice.OpenOfficeManagerLifecycleListener.onEvent(OpenOfficeManagerLifecycleListener.java:83)
at
org.xwiki.observation.internal.DefaultObservationManager.notify(DefaultObservationManager.java:269)
at
org.xwiki.observation.internal.DefaultObservationManager.notify(DefaultObservationManager.java:243)
at
org.xwiki.observation.internal.DefaultObservationManager.notify(DefaultObservationManager.java:290)
at
org.xwiki.container.servlet.XWikiServletContextListener.contextInitialized(XWikiServletContextListener.java:76)
at
org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:548)
at org.mortbay.jetty.servlet.Context.startContext(Context.java:136)
at
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1250)
at
org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:517)
at
org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at
org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:152)
at
org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:156)
at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at
org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:152)
at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at
org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:130)
at org.mortbay.jetty.Server.doStart(Server.java:224)
at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at org.mortbay.xml.XmlConfiguration.main(XmlConfiguration.java:985)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.mortbay.start.Main.invokeMain(Main.java:194)
at org.mortbay.start.Main.start(Main.java:534)
at org.mortbay.start.Main.start(Main.java:441)
at org.mortbay.start.Main.main(Main.java:119)
--------
Since it is a test environment, I can easily start/stop Jetty container and
choose to use 2.3 or 2.4.3 versions, which are in different dirs but they
use the same database. Since the values of the parameters in the Office
import section of the xwiki.properties are exactly the same and if I use 2.3
version Office server starts and import works fine, I wonder if this is a
bug of version 2.4.3 or what can be my mistake in configuration.
-----------
xwiki.properties file: (good for 2.3 , bad for 2.4.3)
# Settings for the OpenOffice server instance consumed by the OfficeImporter
plugin
#----------------------------------------------------------------------------------
#-# [Since 1.9M2]
#-# Type of the openoffice server instance used by officeimporter plugin.
#-# 0 - Internally managed server instance. (Default)
#-# 1 - Externally managed (local) server instance.
# openoffice.serverType=0
#-# [Since 1.9M2]
#-# Port number used for connecting to the openoffice server instance.
#-# Default port is 8100
# openoffice.serverPort=8100
#-# [Since 1.9M2]
#-# If the openoffice server should be started / connected upon XE start.
#-# Default value is false
openoffice.autoStart=true
#-# [Since 1.8RC3]
#-# Path to openoffice installation (serverType:0 only).
#-# If no path is provided, a default value will be calculated based on the
operating environment.
openoffice.homePath=/usr/lib/ooo3
#-# [Since 1.8RC3]
#-# Path to openoffice execution profile (serverType:0 only).
#-# If no path is provided, a default value will be calculated based on the
operating environment.
openoffice.profilePath=/home/smg/.ooo3/user
#-# [Since 1.8RC3]
#-# Maximum number of simultaneous conversion tasks to be handled by a
single openoffice process (serverType:0 only).
#-# Default value is 50
# openoffice.maxTasksPerProcess=50
#-# [Since 1.8RC3]
#-# Timeout for conversion tasks (in miliseconds) (serverType:0 only).
#-# Default value is 30 seconds
# openoffice.taskExecutionTimeout=30000
-----
NOTES: if I comment the line of 'openoffice.profilePath=' the server does
not start either, since it takes a default dir that really does not exist.
>From documentation, I found out that 2.3 uses 'JODConverter 3.0 beta2' ,
while 2.4.3 uses 'JODConverter 3.0 beta3'; the log messages from 2.3 refer
to 'net.sf.jodconverter.office......' while 2.4.3 refer to
'org.artofsolving.jodconverter.office......'. Is this the problem? Hot to
configure correctly the new jdoconverter?
Thanks for your help
Angelo
--
View this message in context: http://xwiki.475771.n2.nabble.com/Open-Office-import-plugin-is-not-working-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi!
In a 2.4.1 XE/XEM installation with contents recently migrated from a XE
1.3.8295 I'm seeing this:
top - 12:15:06 up 16 days, 8:38, 3 users, load average: 1.36, 1.39, 1.32
Tasks: 1062 total, 1 running, 1061 sleeping, 0 stopped, 0 zombie
Cpu(s): 7.8%us, 0.2%sy, 0.0%ni, 92.0%id, 0.0%wa, 0.0%hi, 0.0%si,
0.0%st
Mem: 6216784k total, 5992440k used, 224344k free, 95312k buffers
Swap: 2104472k total, 152k used, 2104320k free, 3222044k cached
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+
COMMAND
17689 root 22 0 668m 550m 2852 S 100 9.1 216:28.00
java
Java goes back to "normal" if I shut down the Tomcat instance on which
XWiki is running. Catalina.out is plenty of errors and warnings and I
really don't know which of them, if any, could be responsible of this
situation.
Lucene is not working neither.
I'm linking a catalina.out file truncated by yesterday at 22:19 after a
Tomcat shutdown. Please, could you help me to work out this errors and
warnings?
http://ftp.ebiotic.net/fromPeat/catalina.out.201010211227.txt
Thanks for your help!
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
I am trying to create a query to populate an attribute of an object with all
the “Name” (an attribute of another object) .
I seem to have run into an issue, in which I created a special space
(CustomClass) to house all my User defined classes.
I can’t seem to build a query to access that space.
I have tried to normal default query that I found which worked was:
select doc.fullName from XWikiDocument doc
this of course returns all the documents in the wiki.
Is there a way that I can get all the pages listed in a specific space and
not just the XWiki default space (I assume I should be able to do this), and
if I can do this, how can I query an instance of a class (Foo) that lives in
the CustomClass
I have tried and several permutations of the following query. I am hitting
my head against a wall and all help would be greatly appreciated. Things
that have been unsucessfull, Xwiki.CustomClass.Foo, Foo itself, the modifier
seen below, I am at a loss on how to currently approach this.
select foo.Name from CustomClass.Foo foo
I am new to HQL, and while I have read up, it has not quite yet solved my
problem in dealing with this XWiki problem. It is important to note that I
have also taken the query out and used the feiled for Class, and Value but
that also did not work. Advice?
Thank you
Martin Bryant
Modus Operandi
--
View this message in context: http://xwiki.475771.n2.nabble.com/DB-List-Query-Problems-tp5654730p5654730.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi
I have another more serious error on my wiki cluster today. Yesterday I had a DBCP error that was remedied by resetting the wiki user password in MYSQL.
I have 2 wiki servers wiki1 and wiki2 working as a cluster. I can get to and open wiki2 in my domain but today wiki1 just hangs, no error message at all. .Even from the localhost it still hangs. I have checked permissions, cleared browser cache, flushed DNS, rebooted machine. The wiki page still hangs trying to open, no error or timeout. I see the following error in catalina log file -
SEVERE: Catalina.start
LifecycleException: Protocol handler initialization failed: java.lang.Exception: Socket bind failed: [730048] Only one usage of each socket address (protocol/network address/port) is normally permitted.
This is my Netstat -a Output
Microsoft Windows [Version 5.2.3790] (C) Copyright 1985-2003 Microsoft Corp. C:\Documents and Settings\clinton-admin>netstat -a Active Connections Proto Local Address Foreign Address State TCP xwiki1:http xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:epmap xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:microsoft-ds xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:1042 xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:ms-wbt-server xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:7800 xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:7801 xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:8009 xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:http xwiki1.invisioninc.local:1098 ESTABLISHED TCP xwiki1:1098 xwiki1.invisioninc.local:http ESTABLISHED TCP xwiki1:5152 xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:5152 xwiki1.invisioninc.local:1099 CLOSE_WAIT TCP xwiki1:netbios-ssn xwiki1.invisioninc.local:0 LISTENING TCP xwiki1:1086 inv-file1.invisioninc.local:microsoft-ds ESTABLISHED
TCP xwiki1:1092 xwiki2.invisioninc.local:7800 ESTABLISHED
TCP xwiki1:1096 xwiki2.invisioninc.local:7800 ESTABLISHED C:\Documents and Settings\clinton-admin>
Any advise would be great, xwiki2 has all the same settings and is working with no issues or errors.
Thanks
Clinton
________________________________
This communication and attachment(s) are the confidential property of INVISION, Inc. If you are not the intended recipient, please notify the sender immediately and delete this message; any copying, dissemination or use of these contents by persons other than the intended addressee(s) is prohibited. Thank you.
Hi all
Well, I'm working in a company and use a wikis farm and several sub-wikis.
Currently we are using a 2.2.5 version of XWiki. We're using LDAP and Active
Directory as well to recognize our users.
The archi : Main Wiki (Wiki Administrator) with the normal starting groups
like XWikiAllGroup, XWikiAdminGroup and one more called ldap_group. All
users are in the ldap_group (new created or registered users as well).
The problem that I've is to add a global user from Wiki farm in a created
group in a local wiki.
My Example, I created a wiki as WebServiceSupport (WSS) and a local group as
SupportTeamGroup. I would like add some users from the global wiki in this
local group, but:
First, I can't have suggest when I try to type firsts letters from a global
login.
Second, I tried to add with type directly "xwiki:XWiki.<desired_loginname>,
so, apparently local wiki recognize real global user because it displays his
real username but twice "xwiki:xwiki:" before the XWiki.User (like in my
case "Pierre DELISLE-EXTERIEUR (xwiki:xwiki:XWiki.pdelisle)" and it doesn't
work when I'm log with this account (I don't have the rights given to the
local group)
So, my question is: Is there a way to add a global user in a local group?
Pierre
--
View this message in context: http://xwiki.475771.n2.nabble.com/Adding-a-global-user-in-a-local-group-tp5…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi All,
I need to give my users the possibility to edit XWiki Pages using
XWord but doing some tests I get some errors.
I'm using XE 2.4.3 and Microsoft Office 2007.
When i create a new page and upload it, XWord works fine but when I
try to edit an existing page I get errors while saving the document.
Any idea about this problem?
I can't see errors on xwiki.log file...
Thanks!
Loris
Hello Fabio & friends,
i tried to use curl and the RESTful API to
1) create a page: ok
2) upload a file/image: ok
3) create some TAGS to the page: ????
1) and 2) is working, but 3 is not working. What is wrong in 3)?
What about unicode/Umlaut in page-name, tag-name and
upload-filename. I have some problems with öäü-German and
øæå-Norwegian.
I use Autohotkey and cURL in WindowsXP.
Thank you folks...
1)
curl.exe -v -S -u Admin:admin -X PUT -d @C:\1.xml -H
Content-Type:application/xml %Server
%/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%
1.xml:
---
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<page xmlns="http://www.xwiki.org">
<title>Hello world</title>
<content>This is a new page</content>
</page>
---
2)
curl.exe -v -S -u Admin:admin -T C:\%file% %Server
%/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%/attachments/%
file%
3)
curl.exe -v -S -u Admin:admin -X PUT -d @C:\2.xml -H
Content-Type:application/xml %Server
%/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%/tags
2.xml:
---
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<tags xmlns="http://www.xwiki.org">
<tag>TestTag</tag>
</tags>
---
--
Volker Lapczynski vl(a)LegeInfo.net
Rosendalsveien 3-B +47 - 92 62 02 48
N-1166 Oslo www.legeinfo.net
- Norway - N59°51.573 E10°47.843
Hello,
I'm using XWiki for some time now and allways await the portlet
support (using a JBossPortal solution). I can see the support
provided in subversion sandbox and in the roadmap since 2.4.
Is there some progress to be expected for 2.5?
With best wishes
Werner Greßhoff
Please help
I am trying to move my wiki cluster and sql database to a new co location with diff Ip and I keep getting a Could not create a DBCP pool error when I try to open the wiki, I have made the changes to the hibernate config file to point to the new sql address, What am I missing, nothing else has changed. My machines were VM's so I took snapshots changed IP updated dns and brought them online, sound simple. If anyone can point out where I went wrong I would greatly appreciate it.
clinton
________________________________
This communication and attachment(s) are the confidential property of INVISION, Inc. If you are not the intended recipient, please notify the sender immediately and delete this message; any copying, dissemination or use of these contents by persons other than the intended addressee(s) is prohibited. Thank you.
The XWiki development team is pleased to announce the release of XWiki
Enterprise 2.5 Release Candidate 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Main changes since XWiki Enterprise 2.5 Milestone 2:
* New macros for the Space List and Tag Cloud
* Display user avatars in annotations
* A few improvements to the Extension Manager
* A few improvements to the User Directory
* WYSIWYG and Rendering improvements
* A few security and performance improvements
For more information see the Release notes at
http://www.xwiki.org/xwiki/bin/Main/ReleaseNotesXWikiEnterprise25RC1
Thanks
-The XWiki dev team
Favor retirar o meu e-mail da lista.
Obrigado.
José Roberto
2010/10/16 <users-request(a)xwiki.org>
> Send users mailing list submissions to
> users(a)xwiki.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xwiki.org/mailman/listinfo/users
> or, via email, send a message with subject or body 'help' to
> users-request(a)xwiki.org
>
> You can reach the person managing the list at
> users-owner(a)xwiki.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of users digest..."
>
>
> Today's Topics:
>
> 1. Re: Links to pages in 1.0 syntax don't look good (Thomas Mortagne)
> 2. Re: Links to pages in 1.0 syntax don't look good (Vincent Massol)
> 3. Re: XWiki RESTful API: TAGS and unicode (Fabio Mancinelli)
> 4. Re: Links to pages in 1.0 syntax don't look good
> (Antonio Goncalves)
> 5. [Announcement] XWiki Enterprise 2.5 Release Candidate 1
> Released (Sergiu Dumitriu)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 15 Oct 2010 12:05:15 +0200
> From: Thomas Mortagne <thomas.mortagne(a)xwiki.com>
> Subject: Re: [xwiki-users] Links to pages in 1.0 syntax don't look
> good
> To: XWiki Users <users(a)xwiki.org>
> Message-ID:
> <AANLkTimbQTpazh9JG4HmcTUL41-0qHYfah+1b3zpQyD7(a)mail.gmail.com<AANLkTimbQTpazh9JG4HmcTUL41-0qHYfah%2B1b3zpQyD7(a)mail.gmail.com>
> >
> Content-Type: text/plain; charset=UTF-8
>
> Hi Antonio,
>
> On Fri, Oct 15, 2010 at 11:46, Antonio Goncalves
> <antonio.mailing(a)gmail.com> wrote:
> > Hi all,
> >
> > Our XWiki instance has been upgraded to a 2.0. We are still using 1.0
> syntax
> > and we can see some strange behaviour.
> >
> > If you look at this page http://www.parisjug.org/xwiki/bin/view/Speaker/all
> > the titles (the name of the speakers) look ok. But if you click to a
> > specific speaker (
> > http://www.parisjug.org/xwiki/bin/view/Speaker/MagninLaurent), you can
> see
> > that the title is [Laurent Magnin>Speaker.MagninLaurent] instead of just
> > Laurent Magnin. This doesn't happen to all the pages (ex.
> > http://www.parisjug.org/xwiki/bin/view/Speaker/MartignoleNicolas).
> >
> > All these pages are in XWiki syntaxe 1.0 and all have the same syntax :
> >
> > 1 [Laurent Magnin>Speaker.MagninLaurent]
> >
> > Do you know what that could be ?
>
> That looks like a bug, would be great if you could create an issue on
> http://jira.xwiki.org.
>
> Thanks for catching it, i will look at that.
>
> >
> > Thanks,
> > Antonio
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> >
>
>
>
> --
> Thomas Mortagne
>
>
> ------------------------------
>
> Message: 2
> Date: Fri, 15 Oct 2010 12:10:18 +0200
> From: Vincent Massol <vincent(a)massol.net>
> Subject: Re: [xwiki-users] Links to pages in 1.0 syntax don't look
> good
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <A2EE11A4-9102-44C0-9873-1EE8EEB197FC(a)massol.net>
> Content-Type: text/plain; charset=us-ascii
>
>
> On Oct 15, 2010, at 12:05 PM, Thomas Mortagne wrote:
>
> > Hi Antonio,
> >
> > On Fri, Oct 15, 2010 at 11:46, Antonio Goncalves
> > <antonio.mailing(a)gmail.com> wrote:
> >> Hi all,
> >>
> >> Our XWiki instance has been upgraded to a 2.0. We are still using 1.0
> syntax
> >> and we can see some strange behaviour.
> >>
> >> If you look at this page
> http://www.parisjug.org/xwiki/bin/view/Speaker/ all
> >> the titles (the name of the speakers) look ok. But if you click to a
> >> specific speaker (
> >> http://www.parisjug.org/xwiki/bin/view/Speaker/MagninLaurent), you can
> see
> >> that the title is [Laurent Magnin>Speaker.MagninLaurent] instead of just
> >> Laurent Magnin. This doesn't happen to all the pages (ex.
> >> http://www.parisjug.org/xwiki/bin/view/Speaker/MartignoleNicolas).
> >>
> >> All these pages are in XWiki syntaxe 1.0 and all have the same syntax :
> >>
> >> 1 [Laurent Magnin>Speaker.MagninLaurent]
> >>
> >> Do you know what that could be ?
> >
> > That looks like a bug, would be great if you could create an issue on
> > http://jira.xwiki.org.
> >
> > Thanks for catching it, i will look at that.
>
> As a workaround (while waiting for Thomas findings) you could convert to
> 2.0 syntax (it's automatic but you need to clean up the automatic
> conversion).
>
> Note that 1.0 syntax has been deprecated for more than a year now and will
> disappear at some point in some future release so you should think about
> migrating your content to 2.0 syntax.
>
> Thanks
> -Vincent
>
>
>
> ------------------------------
>
> Message: 3
> Date: Fri, 15 Oct 2010 12:39:52 +0200
> From: Fabio Mancinelli <fabio.mancinelli(a)xwiki.com>
> Subject: Re: [xwiki-users] XWiki RESTful API: TAGS and unicode
> To: users(a)xwiki.org
> Message-ID: <4CB82F78.5010106(a)xwiki.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> On 10/15/2010 10:27 AM, Volker Lapczynski wrote:
> >
> >
> > Hello Fabio!
> >
> > I solved the TAG problem, but still fighting with Umlauts.
> >
> > TAGs solved:
> > In Autohotkey environment i have to "escape" commas, they must be escaped
> as
> > shown here:
> >
> > tags=foo`,bar
> >
> > ; --- create a TAG--- Working ;)
> > curl.exe -u "Admin:admin" -X POST -H "Content-type:
> > application/x-www-form-urlencoded" --data-ascii
> > "className=TagClass&property#tags=foo`,bar"
> >
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%/objec…
> >
> I don't really know what a "Autohotkey environment" is, but I retested
> it and it works perfectly without any escaping at all (though I am under
> Ubuntu)
>
> > Umlaut:
> >
> > My code works without umlauts, but with umlaut i get a "0000: HTTP/1.1
> 405
> > Method Not Allowed"
> >
> > page = test
> > page = ??????
> >
>
> Again, tried with a BASH terminal under Ubuntu:
>
> > ;-make-
> > Runwait curl -u "Admin:admin" -X PUT -d "@1.xml" -H "Content-type:
> > application/xml; charset=UTF-8"
> > http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%
> >
> What I did: curl -u "Admin:admin" -X PUT -H "Content-type: text/plain"
> --data-ascii " Hello world"
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/??????
>
> (Which is equivalent to send an XML with the content information)
>
> Result: page created.
>
>
> > ;-upload-
> > RunWait curl -u "Admin:admin" -T "wordlist.txt"
> >
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%/attac…
> >
> What I did: curl -u "Admin:admin" -T tagcloud3.png
>
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/??????/attac…
> ??
>
> Result: attachment created (though the name is: oaeaOAEA)
>
> > ;-make tag-
> > RunWait curl -u "Admin:admin" -X POST -H
> > "Content-type:application/x-www-form-urlencoded;charset=UTF-8"
> > --data-binary "className=TagClass&property#tags=test"
> >
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%/objec…
> >
> What I did: curl -u "Admin:admin" -X POST -d
> "className=TagClass&property#tags=foo,bar"
>
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/??????/objec…
>
> Result: Object tags created and with foo,bar tags
>
>
> > ;-write tag-
> > RunWait curl -u "Admin:admin" -X PUT -H "Content-type:
> > text/plain;charset=UTF-8"
> > --data-binary "%page%`,%page%"
> >
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/%page%/objec…
> >
> What I did: curl -u "Admin:admin" -X PUT -H "Content-type: text/plain"
> --data-ascii "??????,??????"
>
> http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/??????/objec…
>
> Result: tags modified to ??????,??????
>
> Bonus: I also tried with --data-binary as you did and I get the correct
> result.
>
> So, finally, I cannot reproduce your errors :(
>
> I don't have a Windows box to make tests with it, but I think that a
> possible cause is the configuration of your Windows terminal that makes
> curl.exe send some extra stuff that confuses the REST subsystem.
>
> For your information my BASH shell has LANG=en_US.utf8 and
> gnome-terminal is configured with Unicode (UTF-8)
>
> Maybe somebody else with a Window system can help you better.
>
> -Fabio
>
>
> ------------------------------
>
> Message: 4
> Date: Fri, 15 Oct 2010 15:16:42 +0200
> From: Antonio Goncalves <antonio.mailing(a)gmail.com>
> Subject: Re: [xwiki-users] Links to pages in 1.0 syntax don't look
> good
> To: XWiki Users <users(a)xwiki.org>
> Message-ID:
> <AANLkTikR_996Q96_m21f0QvQgDPpk=dGVbrJJUKcnCL_(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I followed your advice and turned the 1.0 page into a 2.0. Automatically
> the
> page was translated and it works fine. Great. Well, I think I'll use the
> 2.0
> syntax then.
>
> Thanks,
> Antonio
>
> 2010/10/15 Vincent Massol <vincent(a)massol.net>
>
> >
> > On Oct 15, 2010, at 12:05 PM, Thomas Mortagne wrote:
> >
> > > Hi Antonio,
> > >
> > > On Fri, Oct 15, 2010 at 11:46, Antonio Goncalves
> > > <antonio.mailing(a)gmail.com> wrote:
> > >> Hi all,
> > >>
> > >> Our XWiki instance has been upgraded to a 2.0. We are still using 1.0
> > syntax
> > >> and we can see some strange behaviour.
> > >>
> > >> If you look at this page
> > http://www.parisjug.org/xwiki/bin/view/Speaker/ all
> > >> the titles (the name of the speakers) look ok. But if you click to a
> > >> specific speaker (
> > >> http://www.parisjug.org/xwiki/bin/view/Speaker/MagninLaurent), you
> can
> > see
> > >> that the title is [Laurent Magnin>Speaker.MagninLaurent] instead of
> just
> > >> Laurent Magnin. This doesn't happen to all the pages (ex.
> > >> http://www.parisjug.org/xwiki/bin/view/Speaker/MartignoleNicolas).
> > >>
> > >> All these pages are in XWiki syntaxe 1.0 and all have the same syntax
> :
> > >>
> > >> 1 [Laurent Magnin>Speaker.MagninLaurent]
> > >>
> > >> Do you know what that could be ?
> > >
> > > That looks like a bug, would be great if you could create an issue on
> > > http://jira.xwiki.org.
> > >
> > > Thanks for catching it, i will look at that.
> >
> > As a workaround (while waiting for Thomas findings) you could convert to
> > 2.0 syntax (it's automatic but you need to clean up the automatic
> > conversion).
> >
> > Note that 1.0 syntax has been deprecated for more than a year now and
> will
> > disappear at some point in some future release so you should think about
> > migrating your content to 2.0 syntax.
> >
> > Thanks
> > -Vincent
> >
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> >
>
>
>
> --
> --
> Antonio Goncalves (antonio.goncalves(a)gmail.com)
> Software architect
>
> Web site : www.antoniogoncalves.org
> Blog: agoncal.wordpress.com
> Feed: feeds2.feedburner.com/AntonioGoncalves
> Paris JUG leader : www.parisjug.org
> LinkedIn: www.linkedin.com/in/agoncal
>
>
> ------------------------------
>
> Message: 5
> Date: Sat, 16 Oct 2010 00:27:02 +0200
> From: Sergiu Dumitriu <sergiu(a)xwiki.com>
> Subject: [xwiki-users] [Announcement] XWiki Enterprise 2.5 Release
> Candidate 1 Released
> To: XWiki Developers <devs(a)xwiki.org>, XWiki Users <users(a)xwiki.org>
> Message-ID: <4CB8D536.6010900(a)xwiki.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> The XWiki development team is pleased to announce the release of XWiki
> Enterprise 2.5 Release Candidate 1.
>
> Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
>
> Main changes since XWiki Enterprise 2.5 Milestone 2:
>
> * New macros for the Space List and Tag Cloud
> * Display user avatars in annotations
> * A few improvements to the Extension Manager
> * A few improvements to the User Directory
> * WYSIWYG and Rendering improvements
> * A few security and performance improvements
>
> For more information see the Release notes at
> http://www.xwiki.org/xwiki/bin/Main/ReleaseNotesXWikiEnterprise25RC1
>
> Thanks
> -The XWiki dev team
>
>
> ------------------------------
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> End of users Digest, Vol 39, Issue 25
> *************************************
>
--
José Roberto de M. Junior
==========================================================================================================================================
Esta mensagem pode conter informações sigilosas e/ou privilegiadas. Se você
não for o destinatário ou a pessoa autorizada a receber esta mensagem, não
deve usar, copiar ou divulgar as informações nela contidas ou tomar qualquer
ação baseada nessas informações.
==========================================================================================================================================
Hi all,
Our XWiki instance has been upgraded to a 2.0. We are still using 1.0 syntax
and we can see some strange behaviour.
If you look at this page http://www.parisjug.org/xwiki/bin/view/Speaker/ all
the titles (the name of the speakers) look ok. But if you click to a
specific speaker (
http://www.parisjug.org/xwiki/bin/view/Speaker/MagninLaurent), you can see
that the title is [Laurent Magnin>Speaker.MagninLaurent] instead of just
Laurent Magnin. This doesn't happen to all the pages (ex.
http://www.parisjug.org/xwiki/bin/view/Speaker/MartignoleNicolas).
All these pages are in XWiki syntaxe 1.0 and all have the same syntax :
1 [Laurent Magnin>Speaker.MagninLaurent]
Do you know what that could be ?
Thanks,
Antonio
Hello,
I'm using the
http://code.xwiki.org/xwiki/bin/view/Applications/CalendarApplication
Calendar Application and I would like to know how to get the Category
(static list) object into the actual calendar. The default is that it
contains the User and Title objects which are both strings.
I would like it so that the user can pick a "Holiday" or "Operation" option,
which are coloured differently using <h> tags. Then their name would be
displayed next to it where the Title object usually is (which I'm fine with
changing).
>From my attempts at trying to do this, I think that somehow replacing the
User string would be the easiest way, because otherwise it looks like I'd
have to alter the .JAR files. So is there a way I can make the Category
static list object 'pretend' to be the User string object? I can swap the
string objects around no problem, but the Category one being a static list
is making things more difficult.
Thanks in advance,
Lockie.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Adding-the-category-object-to-the-calenda…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
I'm trying to upgrade XWiki from 1.0 to 1.2. The problem comes when I want
to import my .xar file (6Mb) and get a Java Heap Space Out Of Memory
Exception.
I've checked your admin page
http://www.xwiki.org/xwiki/bin/view/FAQ/Howtoincreasethemaximumattachmentsi…
and
it looks like for my problem (file < 10Mb), only MySQL should be changed. So
I've changed the max_allowed_packet parameter but the problem still occurs.
I don't have anything in Tomcat or MySQL logs, which is a bit strange. The
only trace I get is the one bellow. It looks like Lucene breaks because of
the file upload not working. Any idea ? How could I get more details in the
log ?
Thanks,
Antonio
[http://localhost:8080/xwiki/bin/upload/XWiki/Import]
[http-8080-Processor25] ERROR lucene.IndexUpdater - invalid
parameters given to add: XWiki.Import, null,
{grouplist={xwiki:XWiki.XWikiGuest=[], xwiki:xwiki:XWiki.XWikiGuest=[]},
fileuploadlist=[name=null, StoreLocation=D:\Servers\Tomcat\apache-
tomcat-5.5.23\temp\upload_662feb76_117990b87e0__8000_00000000.tmp,
size=77bytes, isFormField=true
, FieldName=xredirect, name=null, StoreLocation=D:\Servers\Tomcat\apache-
tomcat-5.5.23\temp\upload_662feb76_117990b87e0__8000_00000001.tmp,
size=20bytes, isFormField=true, FieldName=filename, name=
Backup2008-01-20.xar , StoreLocation=D:\Servers\Tomcat\apache-
tomcat-5.5.23\temp\upl
oad_662feb76_117990b87e0__8000_00000002.tmp, size=6639095bytes,
isFormField=false, FieldName=filepath], msg=com.xpn.xwiki.web.XWikiMessageTo
ol@1171e30, util=com.xpn.xwiki.util.Util@bf1a4a, baseskin=albatross, tdoc=
XWiki.Import, ajax=false, locale=fr, doc=XWiki.Import, mainxwiki=x
wiki, skin=albatross, message=javaheapspace,
fileuploadplugin=com.xpn.xwiki.plugin.fileupload.FileUploadPlugin@571cc4,
vcontext=org.apache.v
elocity.VelocityContext@1219665}
Hello community
I have created JS Extension file
its code is : alert("Hello world");
I configured it as run on demand.
I use this code in order to call js:
{{velocity}}
$xwiki.jsx.use("XWiki.FirstJS")
{{/velocity}}
however it does not do anything.
Any ideas how to run JS?
I'm trying to use the SVGMacro (2.0) in my XWiki Enterprise 2.5M2.
I got editing working, but in an ill-advised experiment trying to
change the underlying svg-edit to 2.5.1 by blindly changing the
attachment on the SVGMacro page, the edit capability broke.
So I deleted all 3 of the pages (and emptied the trash) relating to
the SVGMacro, and then re-imported from the XAR.
However, now whenever I attempt to edit an SVG, I will get the Modal
Box popup, but the main pane contains the message: "Error This
template does not exist".
Does someone know what the correct procedure (I presume I'm doing
something wrong) to wipe and restore-from-scratch this macro?
Thanks!
--
View this message in context: http://xwiki.475771.n2.nabble.com/SVGMacro-Error-This-template-does-not-exi…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
I would like to ask you about having one instance of xwiki (one database) in two different layouts. I use xwiki for documentation of our product and I need to have two different layouts of xwiki. The first one with all navigation and information panels and the second one only in a simple style without all these panels (e.g. similar to print style (print.css) in xwiki).
Do you know if it is possible to have one instance (one database) of xwiki in these two different layouts?
Thank you very much for your answer,
Zuzana Zapletalova.
Hello everyone
I have a question about embedding a flash file to my header
how can i do that?
I tried to embed it to a global.vm of my colibri skin file
however it did not show anything.
Hello,
Thanks for the great software,, I downloaded and installed
"xwiki-enterprise-installer-windows-2.4.exe" out of the box (means I'm using
Jetty),, then I went through the cool "Short URL" article:
"http://platform.xwiki.org/xwiki/bin/view/Main/ShortURLs"
All what I made different, was copying the application files from "xwiki"
folder to "root" folder,, (both inside webapps) to be able to run it from
the root.
I could successfully run the application using my short url
"http://domain.com/" but the Skins mapping is not working at all,, I spent
several painful hours trying to get it work, but all in vain.
When I used the script in the article ....................
<servlet>
<servlet-name>defaultSkins</servlet-name>
<servlet-class>org.mortbay.jetty.servlet.Default</servlet-class>
<init-param>
<param-name>relativeResourceBase</param-name>
<param-value>skins</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>defaultSkins</servlet-name>
<url-pattern>/skins/*</url-pattern>
</servlet-mapping>
...... it makes the whole application fails on this error ...........
HTTP ERROR: 503
Problem accessing /. Reason:
SERVICE_UNAVAILABLE
........ so I tried "org.mortbay.jetty.servlet.DefaultServlet" instead then
the error was gone but the skins directory is still not mapped !!!
Please help !
--
View this message in context: http://xwiki.475771.n2.nabble.com/Skin-Mapping-doesn-t-work-in-Jetty-after-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello again,
I've created new post to not to confuse future readers. As we know, importing users works well but what
about synchronizing them in the opposite way, I mean: xwiki -> ldap. Do you have something like that or
maybe planning to introduce such a feature ?
I think it could be useful - especially in case of updating user personal data. Of course, if this mode of
synchronization is already available, I will be grateful for any link to that topic.
Regards,
Piotr
Hi,
I'm testing the ldap features of xwiki and have a question regarding importing /registering new user.
I managed to setup ldap authentication with user import and group mapping. The question is connected with
this configuration flag:
#-# Specifies the LDAP attribute containing the identifier to be used as the XWiki name (default=cn)
xwiki.authentication.ldap.UID_attr=mail
What I would achieve is a user authentication with his mail/password ( which is pretty common nowadays ).
It works with ldap and after a successful authentication with i.e.
mail = bruno(a)7cogs.com,
a new user is created with the following value:
username = bruno@7cogscom
I assume that the 'dot' is not allowed to be used in the username string ?
In my scenario there will be also a need for registering new users in a traditional (xwiki ) way but it
seems to be impossible to provide a mail as a username ( even though the client side validation seems to not
complain about that initially ):
Invalid username provided. Please use only letters from the latin alphabet, numbers, and the underscore
character.
Do you have any clues how to achieve that ? maybe it's possible to set a flag in xwiki config similar to the
ldap solution ( identifier to be used as the XWiki name )..
Thanks in advance,
Piotr
Hi all,
I made a form that a user uses to manually list files stored on the local
network drive, that are then displayed in a table. It works fine but to get
the link to be clickable you have to copy/paste the windowsPath macro into
the inline form field.
I am wondering how I can put the variable for the file into the windowsPath
macro so its clickable in the table, like this (only it doesn't work):
...
<td>{{windowsPath share="$formObj.file" name="Link"/}}</td>
...
I've tried a few things out but I'm not really sure on how to get it
working. Do I have to create an entirely new macro?
Thanks,
Lockie
--
View this message in context: http://xwiki.475771.n2.nabble.com/Using-a-Variable-in-the-WindowsPath-Macro…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I'm trying to implement editing of object properties in WYSIWYG editor
and there is some questions about it's functionality:
1. On page I have a grid which displays custom objects attached to the
it and WYSIWYG editor below the grid, used for editing this objects. By
clicking on a row - selected objects property should be loaded into
WYSIWYG editor and user can easily modify and save it. So the question
is - Is it possible to create single WYSIWYG editor on the page and then
dynamically(using JavaScript) load different properties from different
objects into it?
2. Can I load some abstract text which is not an object property into
WYSIWYG editor?
3. It seems that example provided on the following page doesn't work.
http://code.xwiki.org/xwiki/bin/view/Modules/WysiwygEditorModule#HLoadondem…
May be the reason is that request parameter 'key=fake' is incorrect.
BTW, what does this parameter mean?
Thank you,
Taras
Hi,
I'm testing my XWiki instance and noticed that I can edit headings from H1, H2 levels, and the H3 - H6 are
just treated like a text formatting. Is that intended behavior ? I found an old bug report:
http://jira.xwiki.org/jira/browse/XWIKI-4275?page=com.atlassian.jira.plugin…
its status is fixed but somehow it's still an issue for me.
My XWiki version:
XWiki Enterprise 2.4.3.31377
Is there any option to enable editing those h3-h6 headings as well ?
Regards,
Piotr
Hello xwiki users,
I reviewed the docs, but I didn't find the right answer, maybe you can help:
If a user is in two groups A and B, how can I handle the treatment if it is "allow" in one group and "deny" in the other?
Imagine B is the group of experts within a company A, so I would like to have "at least one allow" but I probably have "at least one deny".
To overcome this situation at the moment, I must provide admin rights for the experts group, which I am not interested in at all.
The second option is to have one user per role, this will lead to inconsistencies and is not preferred too.
The thrid is to massively increase the number of groups, for each role combination one own group. This is not an option too.
Any ideas? Thx a lot in advance Best regards
Pierre
I am out of the office until 10/12/2010.
I am on holiday. For wiki assistance, please contact Kim Dillon. If this
is an emergency, please leave a message on my cell phone. Thank you! :-)
Note: This is an automated response to your message "users Digest, Vol 39,
Issue 14" sent on 10/9/10 6:00:04.
This is the only notification you will receive while this person is away.
Hi,
I've compiled the last WYSIWYG (client/server) code and replaced it in my wiki. But the new xwe is misbehaving : the background of the text edit box became blue (I'm using the bluesky color theme). The xwe I was using before was normal, with the background in white (the way I want).
Where in the module's code I can correct this issue?
Regards,
Ramon
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 29 Sep 2010 12:13:29 +0200
> From: Vincent Massol <vincent(a)massol.net>
> Subject: Re: [xwiki-users] [myxwiki] new wiki request
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <572F59BE-5887-4988-991A-BB8E85DCEBB6(a)massol.net>
> Content-Type: text/plain; charset=us-ascii
>
> Hi Bogdan,
>
> On Sep 29, 2010, at 11:29 AM, Bogdan Flueras wrote:
>
> > Hello XWiki users,
> >
> > I would like to get a new wiki (named: *imigrant.myxwiki.org* - checked
> and
> > it's available) hosted on your server.
> > It's purpose will be to empower the communities of romanian imigrants
> with
> > useful tips and how they could easily fit in into their 'adoptive
> country'
> > with legal, shopping a.s.o advice.
> >
> > My username on myxwiki.org is *bflueras*.
>
> Just to be sure you want it "imigrant" or "immigrant" ?
> I guess the one 'm' is romanian while the 2 'm' is english:
>
> http://www.googlefight.com/index.php?lang=en_GB&word1=immigrant&word2=imigr…
>
> Thanks
> -Vincent
>
>
Hello Vincent,
Haha :) good question about the name but your guess is correct.
I'd prefer imigrant though. It's a lot simpler and it has a meaning for
romanians.
Ps: the *xxx* from my previous message are just formatting hints. So my
username is simply: bflueras.
Have a nice day!
--
ing. Flueras Bogdan
Hi,
I had until today success compiling the wysiwyg modules. So I've updated my local checked-out code to the last head version of wysiwyg editor (both client and server modules), but now the server module fails to compile with the following error:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project xwiki-web-gwt-wysiwyg-server: Compilation failure: Compilation failure:
/workspace/xwiki-gwt-wysiwyg-server/src/main/java/com/xpn/xwiki/wysiwyg/server/internal/wiki/DefaultLinkService.java:[33,33] cannot find symbol
symbol : class LinkParser
location: package org.xwiki.rendering.parser
/workspace/xwiki-gwt-wysiwyg-server/src/main/java/com/xpn/xwiki/wysiwyg/server/internal/wiki/DefaultLinkService.java:[91,12] cannot find symbol
symbol : class LinkParser
location: class com.xpn.xwiki.wysiwyg.server.internal.wiki.DefaultLinkService
I'm using the XE 2.4. How can I correct this error? Should I use another branch/version/revision of server module? The client module worked well with the latest from HEAD.
Regards,
Ramon
Hi everybody,
I was considering installing xwiki in a SSO environment (JASIG CAS + LDAP
user authentication behind).
Could you help me out with inputs (documentation, links, examples), I
couldn't find anything explicit enough (for me ;)! ).
Your help is very much appreciated.
Olivier
Sorry for multiple mails, I'm a bit forgetful today :(
Hi there,
for the coordination / website of the newly founded YESS -- Young Earth
System Science association, we'd like to have an own wiki on myxwiki.org.
YESS is an association to further networking and collaboration between PhD
students / young scientists in the field of Earth system science in
Germany.
If you have any more questions, just let me know!
My username on myxwiki.org is andreash. The servername should be
yess.myxwiki.org, if possible. Otherwise yess-germany.myxwiki.org would be
cool ...
Cheers,
Andreas.
Hi there,
for the coordination / website of the newly founded YESS -- Young Earth
System Science association, we'd like to have an own wiki on myxwiki.org.
YESS is an association to further networking and collaboration between PhD
students / young scientists in the field of Earth system science in
Germany.
If you have any more questions, just let me know!
Cheers,
Andreas.
Hi,
i'm having problem with XE 2.5M2. i upgraded an already existend wiki
(2.5M1) and various errors are in place. this image should be self
explaining:
http://xwiki.475771.n2.nabble.com/file/n5606396/xe_25m1_1.jpg
where "Failed to execute the [html] macro" shows this message:
org.xwiki.rendering.macro.MacroExecutionException: When using the HTML macro
inline, you can only use inline HTML content. Block HTML content (such as
tables) cannot be displayed. Try leaving an empty line before and after the
HTML macro.
at
org.xwiki.rendering.internal.macro.html.HTMLMacro.cleanHTML(HTMLMacro.java:195)
at
org.xwiki.rendering.internal.macro.html.HTMLMacro.execute(HTMLMacro.java:145)
at
org.xwiki.rendering.internal.macro.html.HTMLMacro.execute(HTMLMacro.java:65)
at
org.xwiki.rendering.internal.transformation.MacroTransformation.transformOnce(MacroTransformation.java:172)
at
org.xwiki.rendering.internal.transformation.MacroTransformation.transform(MacroTransformation.java:117)
at
org.xwiki.rendering.internal.transformation.DefaultTransformationManager.performTransformations(DefaultTransformationManager.java:85)
at
com.xpn.xwiki.doc.XWikiDocument.performSyntaxConversion(XWikiDocument.java:7403)
at
com.xpn.xwiki.doc.XWikiDocument.performSyntaxConversion(XWikiDocument.java:7353)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:830)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:781)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:873)
at com.xpn.xwiki.api.Document.getRenderedContent(Document.java:527)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:493)
at
org.apache.velocity.runtime.parser.node.ASTExpression.value(ASTExpression.java:71)
at
org.apache.velocity.runtime.parser.node.ASTSetDirective.render(ASTSetDirective.java:142)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:196)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:161)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1862)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1800)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:896)
at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:332)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:212)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:247)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:175)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:196)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:161)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1910)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1832)
at com.xpn.xwiki.web.Utils.parseTemplate(Utils.java:155)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:226)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.valves.RequestFilterValve.process(RequestFilterValve.java:269)
at
org.apache.catalina.valves.RemoteAddrValve.invoke(RemoteAddrValve.java:81)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:769)
at
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:698)
at
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:891)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
at java.lang.Thread.run(Thread.java:619)
and "Failed to execute the [velocity] macro" shows this message:
org.xwiki.rendering.macro.MacroExecutionException: Failed to evaluate
Velocity Macro for content [...code...]
at
org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:125)
at
org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:44)
at
org.xwiki.rendering.macro.script.AbstractScriptMacro.evaluateBlock(AbstractScriptMacro.java:299)
at
org.xwiki.rendering.macro.script.AbstractScriptMacro.execute(AbstractScriptMacro.java:191)
at
org.xwiki.rendering.macro.script.AbstractScriptMacro.execute(AbstractScriptMacro.java:58)
at
org.xwiki.rendering.internal.transformation.MacroTransformation.transformOnce(MacroTransformation.java:172)
at
org.xwiki.rendering.internal.transformation.MacroTransformation.transform(MacroTransformation.java:117)
at
org.xwiki.rendering.internal.transformation.DefaultTransformationManager.performTransformations(DefaultTransformationManager.java:85)
at
com.xpn.xwiki.doc.XWikiDocument.performSyntaxConversion(XWikiDocument.java:7403)
at
com.xpn.xwiki.doc.XWikiDocument.performSyntaxConversion(XWikiDocument.java:7353)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:830)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:781)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:873)
at com.xpn.xwiki.api.Document.getRenderedContent(Document.java:527)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:493)
at
org.apache.velocity.runtime.parser.node.ASTExpression.value(ASTExpression.java:71)
at
org.apache.velocity.runtime.parser.node.ASTSetDirective.render(ASTSetDirective.java:142)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:196)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:161)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1862)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1800)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:896)
at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:332)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(VelocimacroProxy.java:212)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.java:247)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:175)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:196)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:161)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRenderer.java:116)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1910)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1832)
at com.xpn.xwiki.web.Utils.parseTemplate(Utils.java:155)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:226)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.valves.RequestFilterValve.process(RequestFilterValve.java:269)
at
org.apache.catalina.valves.RemoteAddrValve.invoke(RemoteAddrValve.java:81)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:291)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:769)
at
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:698)
at
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:891)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
at java.lang.Thread.run(Thread.java:619)
Caused by: org.xwiki.velocity.XWikiVelocityException: Failed to evaluate
content with id [xwiki:Main.WebHome]
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:205)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:161)
at
org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:118)
... 98 more
Caused by: org.apache.velocity.exception.MethodInvocationException:
Invocation of method 'formatDate' in class com.xpn.xwiki.api.XWiki threw
exception java.lang.NullPointerException at xwiki:Main.WebHome[line 226,
column 40]
at
org.apache.velocity.runtime.parser.node.ASTMethod.handleInvocationException(ASTMethod.java:337)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:284)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:252)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:332)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:106)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at org.apache.velocity.runtime.directive.Foreach.render(Foreach.java:366)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:175)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:336)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:196)
... 100 more
Caused by: java.lang.NullPointerException
at com.xpn.xwiki.XWiki.formatDate(XWiki.java:5899)
at com.xpn.xwiki.XWiki.formatDate(XWiki.java:5904)
at com.xpn.xwiki.api.XWiki.formatDate(XWiki.java:2135)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:389)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:378)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:270)
... 112 more
i'm testing this version on Centos 5 64bit, tomcat 6.0.26 running with jdk
1.6.0_20 (64bit).
any idea?
thanks,
claudio
--
View this message in context: http://xwiki.475771.n2.nabble.com/XE-2-5M2-problem-tp5606396p5606396.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I'm facing some trouble with attachments becoming empty (zero bytes) after some time they were uploaded. I'm using XWiki Enterprise 2.4.30451. I've searched the mail archives and it seems to exist a bug in the cache coherency. I could not find anything related on JIRA.
My -Xms and -Xmx are both 768m. Although my max packet size on MySQL is 20Mb for attachments, the files that are becoming empty are docs, pictures and xls's of a few Kbytes.
Can someone point me some cause and solution on this please?
Regards,
Ramon Gomes Brandão
Dear Colleagues,
I am requesting assistance with setting up an xwiki to create a learning
environment for a project I manage. Within the xwiki there will be eight
Business Development Managers from small charitable organisations who
provide Community Transport. The aim is to share learning through the
xwiki and create a shared body of knowledge which will then be made
available through the CTA to all rural community transport providers.
Norman Rides
Rural Social Enterprise Programme Manager
Community Transport Association UK
4th Floor | Kingsgate | 1 Bravington's Walk
London N1 9AE
020 7278 2528 | 07747 020 369
P Please consider the environment before printing this email.
#####################################################################################
This email is intended solely for the addressee and is strictly
confidential. If you are not the intended recipient please contact
Community Transport Association UK (CTA) immediately on 0161 351 1475
quoting the name of the sender and the email address, then delete it
from your system. You must not disclose, copy or distribute its contents
to any other person nor use its contents in any way or you may be acting
unlawfully.
The CTA reserves the right to intercept any e-mails or other
communication for permitted purposes in accordance with the current
legislation which you send to, or receive from, any of the employees or
agents of the CTA via its telecommunication systems. By so corresponding
you also give your consent to CTA monitoring and recording any
correspondence using these systems.
Unless stated otherwise by an authorised individual, nothing contained
in this e-mail is intended to create binding legal obligations between
us. We have checked for viruses but accept no liability arising as a
result of this email.
Community Transport Association UK is a Charitable Company Limited by
Guarantee
Registered in Cardiff no. 1985361
Registered Office: Highbank, Halton Street, Hyde, Cheshire SK14 2NY.
Registered as a charity in England and Wales no. 1002222
Charity registered in Scotland no. SC038518
#####################################################################################
Hi,
I'm getting complaints of users that they can not read what is in their watchlist notifications.
We have a multi language setup; in this case my visitors would like to get notified in their local language.
So if a user is registered with default language french will also get the watchlist notifications in french?
Gerritjan
I have recently installed the Bulletin Board Application and am having some
troubles. After creating our own bulletin board, when trying to create a
new category or topic it sends me to a JIRA failed startup page, also when
trying to use the example one that comes with it, it tells me that this
document does not exist. I am fairly new to using Xwiki and this could be
something simple that I am not seeing. Can annyone help me out?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Bulletin-Board-Application-Unable-to-crea…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
since update to 2.1 i can not delete attachments anymore.
Environment:
XE 2.1/Tomcat6/Mysql
Upload attachment
-> Delete attachment (Message Attachment deleted appears, "Attachments (0)"
displayes)
Reload page
-> Attachment is still here
Any idea?
Thanks
hel.
-----
semantic-web.hel.at
hel(a)hel.at
--
View this message in context: http://n2.nabble.com/Cant-delete-attachments-tp4197275p4197275.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
On Friday, October 1rst, XWiki SAS (http://www.xwiki.com) made a demo of
the XWiki open source solution, as a finalist og the Demo Cup. It is one
of the lucky winners!
The Demo Cup is an opportunity to show innovative and promising open
source solutions, selected very strictly. We are proud to announce that
XWiki SAS received *one of five awards*, given by the jury composed of
international experts from the field of open source. It rewards the work
and commitment of a team and of the XWiki open source community. *So
thank you to all of you!
*
The other winners are Bluegriffon, Obeo, Jaspersoft and Talend.
About the Demo Cup: http://www.openworldforum.org/connect/awards
Regards,
Emilie
----
XWiki SAS
Marketing & Communication Manager
Web site: http://www.xwiki.com
To subscribe to our newsletter:
- http://www.xwiki.com/xwiki/bin/view/News/Newsletter
Join our community on Facebook:
- http://www.facebook.com/xwiki
Follow us on Twitter:
- http://www.twitter.com/xwiki
The XWiki development team is pleased to announce the release of XWiki
Enterprise 2.5 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Main changes since XWiki Enterprise 2.5 Milestone 1:
* Support for viewing attached office documents in the wiki
* Experimental Extension Manager
* New User Directory
* Further improvements to the edit UI
* More consistent use of user avatars
* More image manipulation settings
* Better handling of attachment versions when rolling back documents
* Preliminary optional accessibility stylesheet
* Experimental xwiki/2.1 wiki syntax
* Interwiki links
* Various Security improvements
For more information see the Release notes at
http://www.xwiki.org/xwiki/bin/Main/ReleaseNotesXWikiEnterprise25M2
Thanks
-The XWiki dev team
Hi...
I'm interested in having the "Xwiki Watch" hosted on this farm, i would
like to use xwiki watch in keeping track of current day feeds and articles
that are directly related to our day to day business... My username in
mywiki.org is "srikanth" and the server name can be "idealabz"
Regards,
Srikanth.
--
Sent from My BlackBerry®
Hi all,
Is it possible to set xwiki server do not allow force editing?
Or just remove link for editing from notice that object is curently locked
would by better.
Thank you for your help!
Frantisek Kall
--
View this message in context: http://xwiki.475771.n2.nabble.com/Do-not-allow-force-editing-tp5590512p5590…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi!
We are planning to introduce "Documents" that will have a set of additional
attributes besides Content as regular xwiki page has.
For example our "Document" will contain
a) Name
b) Content
c) State
d) Rating
Questions are about proper attributes distribution between xwiki page and
object (instance of additional xwiki class will be designed)
Currently we see two reasonable ways. In both cases Name will be name of
page where our "Document" "stored".
1) Content in page
* Content is stored in a page content
* State and Rating are attributes of some class (e.g. OurDocClass),
stored as an object on this page.
2) Content in class
* Content, State and Rating are attributes of some class
* Page is just to display (may edit) properties (including Content) of
the object "attached" to particular page
I prefer to use first way, but there we have a dispute in our implementation
team.
Questions:
a) What way is preferable?
b) What benefits and disadvantages of using #1 ?
c) Are there possible some performance issues if we store bulky
content text in object property instead of page content?
I suppose in case #2 we can meet inconvenience with powerful using of other
xwiki functionality which we are planning to use, such as Lucene Searching,
Document Locking, Versioning, Including of page etc.
It will be nice to get recommendations or references to some staff on
xwiki.org.
Thank you,
Andriy
Hello,
Is there anyone out there using xwiki on an iSeries?
I'm experiencing issues but will get back with specifics later, if I
can't resolve them.
Ken
Hi -
I am using XWiki Enterprise 2.0-milestone-1.21570.
I am attaching files that are between 1-10 MB into the wiki, and when I
check it right after upload and attach, the file downloads properly.
However, later on, like the next day, I get an error when clicking on
the link "no template exist". I try to click the link again and the doc
downloads, but it is 0 bytes.
I did some searching through the mailing list archives, and saw a note
about increasing the max_packet_size in MySQL. Our default size is
16mb. Is there anything else we need to check or do to make sure the
attachments continue to exist properly? Beyond upgrading, that is.
Kelly
Kelly Lakas
Project Manager
next wave logistics inc.
28377 Davis Parkway, Suite 607A
Warrenville, IL 60555
________________________
[web] www.nwlinc.com <http://www.nwlinc.com/>
[office] 847.798.8897
[cell] 312.307.2079
Hi all,
I need to import upgraded XAR archives in xwiki on many Linux servers running an integrated system we made with liferay, zimbra, alfresco and of course xwiki. Importing them via web interface it is quite time comsuming and web ports are not always easily reachable.
I looked for a way to import the XARs from command line but i haven't figured out how to do that, could you suggest me how to do that?
I think I can't reach my goal with shell scripting, xwiki preferences/import page scraping and curl posting because authentication is centrally managed by CAS and it needs client-side javascript to succeed.
I could use a method like the one described at:
http://code.xwiki.org/xwiki/bin/view/Snippets/LargeXARImportScriptSnippet
by defining a local directory on the server where to deploy the XARs and then running a macro that gets the file list and imports them, but doing all from the shell would be better.
Any help would be very appreciated, thanks in advance!
Ciao,
Max
I need to create a simple login form (just name and address) for participants
in training. Maximum 20 participants per term. Then print the attendance
list. How can I do it simply?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Simple-form-tp5580601p5580601.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi guys,
somehow I'm not able to resolve the administration error regarding the
'Inadequate priviledges' when trying to restart the OpenOffice Server over
the AdminSheet.
OpenOffice Import works fine on my windows machine. There is no problem with
either an internal or externally managed instance. Still I cannot seem to
get rid of the priviledges statement when trying to restart the server
through the admin interface. I already tried saving the
XWiki.OfficeImporterAdmin with and without programming rights but it still
does not resolve the error whilst trying to use restart over the
XWiki.AdminSheet. There is no talk of any 'Inadequate priviledges' when
trying to restart the server directly in the XWiki.OfficeImporterAdmin page.
This works fine and the logs state this as well.
Is there something I'm overlooking here or is this a known bug?
--
View this message in context: http://xwiki.475771.n2.nabble.com/OpenOffice-Importer-AdminSheet-Inadequate…
Sent from the XWiki- Users mailing list archive at Nabble.com.
After I installed the 2.4 version, the Office importer does not work because it says the soffice process is not running. I tried to restart the process using the Admin page but I get a velocity error 4001 caused by this exception:
Caused by: java.lang.IllegalStateException: invalid templateProfileDir: C:Documents and SettingsAdministratorApplication DataOpenOffice.org3
1) The path exists and it is defined into xwiki.cfg correctly (it's also shown correctly in the admin panel before I tried to press the update button.)
2) The office 3.1 version works standalone.
Any idea?
Best Regards
Andrea
Hello XWiki users,
I would like to get a new wiki (named: *imigrant.myxwiki.org* - checked and
it's available) hosted on your server.
It's purpose will be to empower the communities of romanian imigrants with
useful tips and how they could easily fit in into their 'adoptive country'
with legal, shopping a.s.o advice.
My username on myxwiki.org is *bflueras*.
Thank you!
--
ing. Flueras Bogdan
As planned i just pre-released XE/XEM 2.4.3 on maven and subversion.
I'm now waiting for as many testers as possible to try and validate
that it does not contains important regression.
You can download XE/XEM on:
- XE jetty+hsqldb:
http://maven.xwiki.org/releases/com/xpn/xwiki/products/xwiki-enterprise-jet…
- XE war: http://maven.xwiki.org/releases/com/xpn/xwiki/products/xwiki-enterprise-web…
- XE xar: http://maven.xwiki.org/releases/com/xpn/xwiki/products/xwiki-enterprise-wik…
- XEM war: http://maven.xwiki.org/releases/com/xpn/xwiki/products/xwiki-enterprise-man…
- XEM xar: http://maven.xwiki.org/releases/com/xpn/xwiki/products/xwiki-enterprise-man…
If nothing is found i will finish the release tomorrow morning (GMT).
Thanks
On Mon, Sep 27, 2010 at 09:34, Thomas Mortagne
<thomas.mortagne(a)xwiki.com> wrote:
> 5.5 for 2.4.3 and 1.5 for 2.4.2.1
>
> 2.4.3 it is. Starting now.
>
> On Fri, Sep 24, 2010 at 15:42, Thomas Mortagne
> <thomas.mortagne(a)xwiki.com> wrote:
>> Hi devs,
>>
>> 2.4 is a blessed branch, now the issue is that there is no parent
>> field anymore because XE has been release with the wrong version of
>> panels applications.
>>
>> This seems pretty blocker to me and deserve to be fixed ASAP, i can
>> see the following solutions:
>>
>> 1. complete new release of XE/XEM 2.4.3
>> 2. release of XE/XEM 2.4.2.1 with the existing core/web 2.4.2
>> 3. re-release XE 2.3.2
>>
>> 1: +1, probably the cleanest but if I don't have to release core i
>> would be more than glad...
>> 2: +0.5, probably the clean solutions that needs the less work IMO.
>> After all technically XE and core have different versions
>> 3: -1, it's already public and downloaded by some users
>>
>> Also whatever the chosen solution before announcing the release i will
>> as much people as possible to validate it.
>>
>> So WDYT ?
>>
>> --
>> Thomas Mortagne
>>
>
>
>
> --
> Thomas Mortagne
>
--
Thomas Mortagne
I'm trying to Import a backup of around 45 MB in a test environment of Xwiki
It fails after clicking UPLOAD;I'm getting a message:
XWiki has a default limit of around 10Mb for attached files. This limit can be changed using the upload_maxsize parameter. Check the FAQ for more information.
I'm running XWiki Enterprise 2.4.2.31315
on mySQL 5.1
I've changed my.cnf of mySQL to increase max_allowed_packet
# The MySQL server
[mysqld]
port = 3306
socket = /tmp/mysql.sock
skip-locking
key_buffer_size = 16M
max_allowed_packet = 64M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
This shows in when i run mysqld --verbose --help as:
max_allowed_packet 67108864
I've also used the class editor in xwiki to edit the parameter of the preferences
Name: upload_maxsize (default)
Pretty Name: Maximum Upload Size (default)
Validation Regular Expression: (default)
Validation Message: (default)
Number Type: long (default)
Size of the corresponding form element in edit mode : 200000000 (changed)
any suggestions?
Please, could you tell me what the "," means in this query string? Thanks!
$query = ", BaseObject as obj where..."
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
Hi,
I am new to using xwiki and still learning, I have recently installed the
TaskManager Application. While everything seems to be working properly as
far as creating and editing tasks, The panel will now show the task, if I am
on the Page Tasks section that shows the My Active, My Reported, and All
active tasks it will show the tasks in the panel but only on this page. If
I go anywhere else in our wiki it will not show. I know this may be kind of
vague but, if anyone has had the same problem as me and could help that
would be great.
Thanks
--
View this message in context: http://xwiki.475771.n2.nabble.com/TaskManager-Application-Not-showing-tasks…
Sent from the XWiki- Users mailing list archive at Nabble.com.
The XWiki development team is pleased to announce the release of XWiki
Enterprise and XWiki Enterprise Manager 2.4.1.
This is a bug fix release for the 2.4 branch.
Important Bugs fixed:
* XWIKI-5511 - In some conditions a newly created wiki does not
have the standard classes
* XWIKI-5492 - Can't move the focus outside of the rich text area in Opera
* XWIKI-5440 - user.isUserInGroup return false if User in Master
and group in virtual
* XWIKI-5452 - "cache.path" configuration is not taken into
account by JBossCache module
* XWIKI-5414 - Keyboard shortcuts are not ignored when trying to
navigate with keys in a select input
* XWIKI-5391 - MediaWikiScanner#docElements() raises unexpected
ParseException when encountering <D_TABLE_CAPTION> tokens
* XWIKI-5515 - NPE when accessing an not existing wiki and autowww = 0
* XWIKI-5363 - PeriodFactory#createSinceMonthsPeriod creates a
"since weeks" period instead
* XWIKI-5476 - Problem with non-px image dimensions in wysiwyg
mode only with IE7
* XWIKI-5457 - Propeditor cannot work anymore with recent livetable code
* XWIKI-5243 - Reflected XSS in edit(wiki|wysiwyg|wysiwygnew).vm
* XWIKI-5450 - SQL injection in suggest.vm
* XWIKI-5428 - Save and Continue doesn't validate the mandatory
document title
* XWIKI-5434 - Saved request parameters are not restored on relogin
* XWIKI-5244 - Stored XSS via user/group name
* XWIKI-5510 - Text and background color don't match the color themev
* XWIKI-5417 - xwiki/2.0 renderer should escape any (% it can find
* XWIKI-5453 - includeMacro() no longer works in XE 2.4
* XASEARCH-10 - Escaping issue in Main.DatabaseSearch
* XAADMINISTRATION-156 - Cannot add "global" user in groups
* XAADMINISTRATION-155 - Improper search icon position in
Administration Application
* XAADMINISTRATION-168 - Small inconsistency in DOM of some
elements that use ConfigurationClass Class
For more information see the Releases notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise241
and http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM241
Thanks
-The XWiki dev team
Hi,
I can use this to enable/disable attachments and comments on a per wiki
basis:
http://www.xwiki.org/xwiki/bin/view/FAQ/Howtodisablecommentsandattachments
To the best of my understanding, there is no way of avoiding than an
user that have access to a given document, access its attachments and
comments provided he/she knows the right URL syntax.
Is that correct?
Thanks!
Ricardo
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
I see that my screenshot did not pass through to the list correctly, so
below is more information on what the Task App is looking like in our
wiki.
>From the new task page:
its_task 3 its_task_onpage
its_task -
* its_task_status : New Assigned Verified Resolved Reopened
* its_task_resolution : None Fixed Duplicate WorksForMe Wontfix
Invalid
* its_task_reporter : (removed for privacy)
* its_task_assignee : (removed for privacy)
* its_task_dueDate :
* its_task_severity :
So what we are seeing is "its_task_status" instead of just "status" and
so forth. Any ideas on what we did wrong? :)
Sorry about the multiple emails.
Thanks!
Tamara
> _____________________________________________
> From: Johnston, T. (Tamara)
> Sent: Thursday, September 23, 2010 11:06 AM
> To: 'users(a)xwiki.org'
> Subject: Problems with Task Application
>
> Xwiki users,
>
> We installed the TaskManager application
> (http://code.xwiki.org/xwiki/bin/view/Applications/TaskManagerApplicat
> ion) and are seeing some funkiness that we cannot figure out what is
> going on, mainly because our team is all new to xwiki. Can anyone give
> any guidance based on the attached screenshot of the app in our wiki.
>
> << File: screenshot-taskapp.JPG >>
> Any help would be so greatly appreciated!!
>
> Thanks!!
>
> Tamara Johnston
> ING Contractor - ArcSight
> Minneapolis Command Center
> 111 Washington Avenue South
> Minneapolis, MN 55401
> Office: (612) 342-3274
> Remote: (510) 364-1580
> ING email: tamara.johnston(a)us.ing.com
>
>
>
---------------------------------------------------------
NOTICE: The information contained in this electronic mail message is confidential and intended only for certain recipients. If you are not an intended recipient, you are hereby notified that any disclosure, reproduction, distribution or other use of this communication and any attachments is strictly prohibited. If you have received this communication in error, please notify the sender by reply transmission and delete the message without copying or disclosing it.
============================================================================================
Xwiki users,
We installed the TaskManager application
(http://code.xwiki.org/xwiki/bin/view/Applications/TaskManagerApplicatio
n) and are seeing some funkiness that we cannot figure out what is going
on, mainly because our team is all new to xwiki. Can anyone give any
guidance based on the attached screenshot of the app in our wiki.
<<screenshot-taskapp.JPG>>
Any help would be so greatly appreciated!!
Thanks!!
Tamara Johnston
ING Contractor - ArcSight
Minneapolis Command Center
111 Washington Avenue South
Minneapolis, MN 55401
Office: (612) 342-3274
Remote: (510) 364-1580
ING email: tamara.johnston(a)us.ing.com
---------------------------------------------------------
NOTICE: The information contained in this electronic mail message is confidential and intended only for certain recipients. If you are not an intended recipient, you are hereby notified that any disclosure, reproduction, distribution or other use of this communication and any attachments is strictly prohibited. If you have received this communication in error, please notify the sender by reply transmission and delete the message without copying or disclosing it.
============================================================================================
Hi,
Please, as an new XWiki *user* is created as a new instance of
XWiki.XWikiUser class, what class is instantiated to create a new XWiki
*document*?
Thanks!
--
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems
Hello @all,
after Importing the LightBox addon I noticed that it wasn't visible for
other users. This was due to the reduced visibility of the MacroClass Object
to 'Only User'. It would be nice for others if the author would change this
to an appropiate value, so that others won't have the same problem as me.
Greets
--
View this message in context: http://xwiki.475771.n2.nabble.com/Info-LightBox-Macro-v1-3-tp5559163p555916…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
When using the *Meta+G* popup search in a wiki instance of the farm, after
typing something to search for, the dropdown appears saying always "Document
not found".
If we repeat the same operation with the admin user of the farm, all works
fine and the suggested list contains up to 10 pages.
Using Firebug, I discovered that all is right except that the Rest search
service returns an empty list of page. This is the exact JSON received :
{"template":"
http://server.com/xwiki/rest/wikis/calife/search?q={keywords}(&scope={conte…
","searchResults":[]}
My xwiki farm version is 2.3.2. Does someone encounter the same problem ? Do
I have to create an issue in JIRA ?
Thank for your response,
Maxime Mathieu
I am out of the office until 09/23/2010.
I will respond to your message when I return.
Note: This is an automated response to your message "users Digest, Vol 38,
Issue 41" sent on 9/22/2010 2:45:22 AM.
This is the only notification you will receive while this person is away.
Hi all
Trying again to get this mail sent through. please see mail below.
Hi all
>
> I would like to Export our XWiki to disk as a XAR, but I want the Page
> Content to be HTML.
>
> I have tried using the Large Wike Export Code Snippet:
> http://code.xwiki.org/xwiki/bin/view/Snippets/LargeWikiExportSnippet
>
> This works perfectly except I am not managing to use convertSyntax() on the
> "xdoc.content()". Perhaps I am not getting the syntax right (I'm not very
> good with Java-like)
>
> I have the following as part of the toXML function in the snippet:
>
> // Add SyntaxConversion
> xwriter.startElement("", "HTMLsyntax", "HTMLsyntax", attributes);
> xdoc.convertSyntax(xhtml/1.0);
> xwriter.write(xdoc.getContent())
> xwriter.endElement("", "HTMLsyntax", "HTMLsyntax");
>
> What am I missing? And is there a better way?
>
> Thanx in advance for the help
>
> --
> Gordon
>
>
>
>
--
Gordon
Hi devs,
Currently the image plugin [1] allows us to create image thumbnails by
specifying the image width and/or height in the query string of the
image attachment download URL:
/xwiki/bin/download/Spage/Page/image.jpg?width=100
I propose that we:
(A) Use the image width and/or height (when they are specified in the
image syntax using pixel unit) to resize the image on the server side.
For instance:
[[image:logo.jpg||width="100px"]]
will be linked to
/xwiki/bin/download/Spage/Page/logo.jpg?width=100
and
[[image:logo.jpg||style="height: 50px; width: 70px"]]
will be linked to
/xwiki/bin/download/Spage/Page/logo.jpg?width=70&height=50
The image plugin also accepts a quality parameter that controls the
compression quality when encoding jpeg images. The default value of this
parameter (i.e. when not specified in the URL) is configurable. I
propose we use 0.3 by default, 1 representing the best quality.
(B) Add the ability to limit the image dimensions (preserving aspect
ratio) when the image width and/or height are not specified in the image
syntax (or when they are not using pixel unit). The width and height
limit will be configurable and -1 by default (i.e. no limitation). For
instance:
image:logo.jpg
will be linked to
/xwiki/bin/download/Spage/Page/logo.jpg?width=1024
when width limit is 1024, and to
/xwiki/bin/download/Spage/Page/logo.jpg?width=1024&height=768&keepAspectRatio=true
when width limit is 1024 and height limit is 768. Note that in this case
the image aspect ratio is preserved. The image is resized to best fit
the limits. If the user want to bypass the limit he has to specify the
image width/height in the image syntax.
I'm +1 for both (A) and (B). WDYT?
Thanks,
Marius
[1]
http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-core/src/main/…
Hi all
Please excuse this first junk and see first email below. I am sending from my mobile so editing difficult
Gordon
-----Original Message-----
From: users-owner(a)xwiki.org
Sender: users-bounces(a)xwiki.org
Date: Tue, 21 Sep 2010 15:16:47
To: <gordon(a)yilaconsulting.com>
Subject: XWiki Export, Page content as HTML?
You are not allowed to post to this mailing list, and your message has
been automatically rejected. If you think that your messages are
being rejected in error, contact the mailing list owner at
users-owner(a)xwiki.org.
Has anyone ever performed a migration that could give me some advice on
how it's done and if what I asked about below is possible?
I have checked out this:
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Backup
which suggests to backup the database but doesn't give any clue to
Postgresql!
Also is Xwiki content stored in a database or in the /webapps/xwiki
instance??
So if I simply backed up and restored the database and copied the xwiki/
dir across to a different platform the system should work?? Even if
going from Tomcat to Glassfish or so??
Thanks and regards,
Kaya
-------- Original Message --------
Subject: Migrating Xwiki
Date: Fri, 17 Sep 2010 14:16:08 +0300
From: Kaya Saman <kayasaman(a)gmail.com>
To: XWiki Users <users(a)xwiki.org>
Hi,
I'm wondering if it's possible to migrate Xwiki from one system to another??
I currently run Xwiki on a FreeBSD 8.0 RELEASE x64 platform with 4GB RAM
in a dedicated FreeBSD Jail, however I'm having an issue with Java
spinning up the CPU to 100% rendering Xwiki inoperable!
If I migrate it would be from FreeBSD to either a dedicated FreeBSD
system or an OpenSolaris based system on Nexenta.
Currently I run Tomcat6 coupled with Postgresql, but would migrate to
Glassfish and MySQL.
Is it just a matter of backup the Xwiki from the web GUI then restore
under Glassfish and convert database from Postgresql to MySQL then
attach at other end?
Or can I just simply dump the /webapps/xwiki folder into Glassfish or
another instance of Tomcat?
Thanks for any advice!!
Regards,
Kaya
Hi,
Just done a fresh install of XEM2.4 and I encounter the following problem.
In the templatexe wiki, it's impossible to add a new group or a new user
(the Add button do nothing).
If I edit the objects of an existing group (XWikiAllGroup for example), a
warning is displayed :
"Some objects from this document contain deprecated properties which were
deleted from their respective classes."
In fact, I detected that the *XWikiGroups and XWikiUsers classes are not
defined* (they do not exist) in this templatexe wiki.
In the main wiki, all is ok (and the XWikiGroups and Users classes are well
defined).
Nothing in the xwiki.log.
Do you have any idea to help me ?
Best regards,
Maxime Mathieu
Hi all,
I missed something about XWiki users object visibility.
I put in a wiki page the velocity script for implementing the Live table sample with XWikiUser objects.
It works if I log in with Admin rights.
If I log in with a user without Admin rights (Programming rights are ok) the live table shows no elements.
Thank you a lot,
Andrea
Hi,
I've done a installation on my localhost (Windows XP machine) of XE
2.1.1, Tomcat 6 and MySQL 5.1.
After this i wrote a bad hql query and executed it which brought MySQL
to spyke the CPU usage to 100% and even more rendering both the
localhost and database unusable.
{{velocity}}
#set($badhql = ", BaseObject obj, StringProperty stringprop,
LargeStringProperty largestringprop where (doc.name like '%$text%' or
doc.content like '%$text%') or (obj.name=doc.fullName and
stringprop.id.id=obj.id and stringprop.value like '%$text%') or
(obj.name=doc.fullName and largestringprop.id.id=obj.id and
largestringprop.value like '%$text%')")
#set($ok = $list.addAll(0, $xwiki.searchDocuments("$badhql")))
{{include document="XWiki.Results"/}}
{{/velocity}}
The bad thing is that $xwiki.searchDocuments brought me to this state
(no programming rights.).
Now my question is: Are there any remedies against this? MySQL
configuration statements that prevent this kind of behaviour?
--
Flavius Olaru
Hi XWiki people,
I need a "semantic" way to edit xml data. This is a project that could consume
a very large portion of my future time, but in the near term I'm looking for a
way to get this typed data into a wiki format so that the object graph can be
clicked through and offsite links can be managed.
First, I need to be able to have nested types. That is, a class has a field,
the type for which is a class I have defined elsewhere. I don't see a way to
do this in XWiki. Am I missing something? Seems like a typing system is
incomplete without being able to have classes have attributes of defined
types.
Travis
Hello, All.
I am trying to set up an xwiki/tomcat(5) installation that is proxied behind
nginx (httpd).
I was working with 2.4, but I am currently trying 2.5 snapshot
20100917.044441-172.
I've got it all working internally, the the proxies and xwiki redirects work
externally.
But when I try to edit a page, I get 2 javascript errors : (I got 3 errors
with 2.4)
Z is undefined in prototype.js : 1877
and
Permission denied for <external host> to get property Window.document from
<internal host:port> at http://<external
host>/xwiki/resources/js/xwiki/wysiwyg/xwe/2ED0D1BCD0DB002FD3C0404AF6E0AAA3.cache.html
Don't know if this is nginx configuration or xwiki issue. If anyone has
been successful running behind nginx I would love to hear any tips. I'm
rather new to both.
thanks a lot,
Linus
--
View this message in context: http://xwiki.475771.n2.nabble.com/edit-fails-with-xwiki-tomcat-proxy-from-n…
Sent from the XWiki- Users mailing list archive at Nabble.com.