I noticed that if I create a new blog entry with the same title as an
existing entry in that same category the old one will be wiped out. Is this
expected behavior or a bug? Using xwiki 2.04.
daniel
--
View this message in context: http://n2.nabble.com/New-blog-entry-overwrites-old-tp4475221p4475221.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Has anyone used this extension? If so, how do you implement it. There is no
documentation on how to implement this extension and I would like to try it
out.
--
View this message in context: http://n2.nabble.com/JSPwiki-2-Xwiki-extension-tp4514844p4514844.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
After migrating our XWiki from 1.8.3 --> 2.1.1 we notices that the "Jump
to page"-feature is only working with pages made with the old xwiki/1.0
syntax.
When I create a new page with syntax to 2.0, the "Jump to Page" is not
displayed anymore in the Quick Links panel.
As soon as I change the page syntax back to 1.0, the "Jump to page" is
displayed again.
It should work also with xwiki/2.0 syntax, shouldn't it?
I don't know if this is from importance but we use a fully customized
skin based on toucan. So maybe we have missed something in the migration.
Any help or hint is very much appreciated.
Thanks.
Reto
If I embed a nabble forum in the xwiki....
The users registered in xwiki, do they have automatic access to the nabble forum,
I do not want anonymous forum members, but rather a 0ne:One relationship and preferably single signon
Hi,
I'm trying to use the panelheader() and panelfooter() macros inside my htmlheader.vm file however the boxes that get displayed do not have the skin's colour scheme applied to them. They appear correctly but in plain white instead of the blue tint that has been setup for the toucan skin.
I have dug through the panel application and through the css files however I haven't been able to find what tints the panel backgrounds.
Can anyone point me in the right direction on either how to apply the blue tint to the background or what files to look at?
Thanks,
Radek
Hi all,
I use method parseGroovyFromPage() to instantiate an object from a Groovy
class stored in a page.
It works well, but now I would like to forbid multiple executions of this
class. To do so, I changed it to be a singleton, setting the constructor as
private.
Of course, now, parseGroovyFromPage() returns that the object can't be
instantiated ... As the call to the constructor is inside this method, I
can't change it to just call getInstance().
Are there any workarounds, or other ways to achieve this ?
Thanks,
Jeremie
The XWiki development team is pleased to announce the release of XWiki
Enterprise 2.2 Release Candidate 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is the first and hopefully last release candidate for the 2.2
version. This release is mostly a bugfix and stabilization release.
Changes from XWiki Enterprise 2.2 Milestone 2:
* Bug fixes and improvements on new XAR Import UI and User Profile UI
* UI improvements on tag applications
* WYSIWYG and Rendering bugfixes and improvements
* Fixed files handlers leak on Lucne plugin
* Many other bugfixes and improvements
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise22RC1
Thanks
-The XWiki dev team
Hi,
I'd like to know if there is a way to delete a document (in velocity or
groovy) without putting in in recycle bin ? (equivalent of "shift-delete").
I have to regularly delete (for tests) documents with heavy attachments, and
it's quite long ... And I don't care about retrieving them later.
Thanks,
Jeremie
Hi All
I am trying to set up XE to use an Oracle 10 XE database using a
Tomcat but I seem to be missing some important point I downloaded the
war file to set it up followed the instructions in the setup pages,
have had issues with getting it to parse files and have now got to
here where I seem to be connecting to my database but not getting it
to function
I am an Oracle DBA and do work with Oracle Middleware, so am familiar
with much of the concepts, not so much with Hibernate and Tomcat
This is the error I am seeing
javax.servlet.ServletException: Error number 3 in 0: Could not
initialize main XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager
from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
Wrapped Exception: could not execute query
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter
Server details are
Centos 5.4 32bit
Apache Tomcat/5.5.23
Oracle 10 database
Xe xwiki-core-2.1.1.jar
OpenJDK Runtime Environment (build 1.6.0-b09)
I have a IBM Java 1.6 jre installed that I could use, should I use
that instead or will this work with OpenJDK
Any help appreciated
Hibernate.cfg.xml
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate
Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for
configuring your
database. You'll need to do 2 things:
1) Copy your database driver JAR in WEB-INF/lib or in some
shared lib directory
2) Uncomment the properties below for your specific DB (and
comment the default
database configuration if it doesn't match your DB)
-->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<property name="dbcp.defaultAutoCommit">false</property>
<property name="dbcp.maxActive">50</property>
<property name="dbcp.maxIdle">5</property>
<property name="dbcp.maxWait">30000</property>
<property name="dbcp.whenExhaustedAction">1</property>
<property name="dbcp.ps.whenExhaustedAction">1</property>
<property name="dbcp.ps.maxActive">20</property>
<property name="dbcp.ps.maxWait">120000</property>
<property name="dbcp.ps.maxIdle">20</property>
<!-- Oracle configuration.
Uncomment if you want to use Oracle and comment out other
database configurations.
Note: the 2 properties named
"hibernate.connection.SetBigStringTryClob" and
"hibernate.jdbc.batch_size". They are required to tell
Oracle to allow CLOBs larger than
32K. -->
<property
name="connection.url">jdbc:oracle:thin:@websrv01:1521:XE</property>
<property name="connection.username">SomeUser</property>
<property name="connection.password">SomePassword</property>
<property
name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<property name="hibernate.connection.SetBigStringTryClob">true</property>
<property name="hibernate.jdbc.batch_size">0</property>
<mapping resource="xwiki.oracle.hbm.xml"/>
<mapping resource="feeds.oracle.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
</session-factory>
</hibernate-configuration>
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.