Hi,
I've started the page at http://enterprise.xwiki.org/xwiki/bin/view/Main/Roadmap
but let's discuss it here first.
So what are the tasks we want to solve for 1.5. Here's my take:
* More bug fixes
* Better performance
o Run XE with a profiler and find bottlenecks
o Reduce number of database calls
o Improved page loading
* More automated tests
o More selenium tests
o Add tests on Tomcat 6.x as part of the CI build
o Add tests on Windows and with IE6 and IE7 as part of the
CI build
* Overhaul of the Administration
So basically more stability and more usability.
In term of dates, I think 2 milestones followed by a RC works pretty
well. In total that's about 3 weeks for each milestone and then 1 week
for each RC. If we imagine we need 2, then that's 8 weeks, i.e. 2
months, which sounds good to me.
WDYT?
I'll let JV propose precise dates.
Thanks
-Vincent
I downloaded 1.3.1 XWiki Enterprise from xwiki.org which doesn't include
the source, I then downloaded what I thought was the matching source
from the source repository, however, I've missed something somewhere
along the lines. xWiki was running fine until I rebuilt the project,
now it's whacked. I'm planning on deleting what I have and installing
1.3.2, is there any downloads that include both the compiled and source
necessary to run XWiki Enterprise?
Cheers,
Jeff
I've tracked down the language issues I've run into to a hibernate query
select doc.language from XWikiDocument as doc where doc.web = 'Main' and
doc.name = 'WebHome' and doc.language <> ''
This will never return results in Oracle because of the way oracle
treats nulls and black strings. Is there an xWiki fix for this????
I'm using xWiki 1.3.1.8931 and Oracle 9.
Thanks,
Jeff
Hello,
I'm runnig xwiki-enterprise-web-1.3.2 in a WebSphere Application Server 6.1.
I'm trying to use the ldap authentication but I get the following exception:
[4/30/08 12:20:56:890 CEST] 0000006d SystemErr R Caused by: java.lang.NoClassDefFoundError:
com.sun.net.ssl.internal.ssl.Provider
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:68)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:129)
at com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:160)
at com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.authenticate(XWikiLDAPAuthServiceImpl.java:107)
This is caused by the missing com.sun.net.ssl.internal.ssl.Provider class in the IBM JVM.
I have had a look on the code and I saw that the com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection is creating a com.sun.net.ssl.internal.ssl.Provider instance in static way:
Security.addProvider(new Provider());
A strong coupling between the application and the JVC implementation is the consequence.
A possible solution can be: create the provider dynamically using a configuration variable:
try {
ClassLoader cl = Thread.currentThread().getContextClassLoader();
String className = config.getLDAPParam("ldap_ssl_provider",
"com.sun.net.ssl.internal.ssl.Provider", context);
java.security.Provider provider = (java.security.Provider) cl.loadClass(className)
.newInstance();
Security.addProvider(provider);
} catch (Exception e) {
throw new XWikiLDAPException("LDAP bind failed loading security provider " + className, e);
}
Marco Marini
Unicredit Global Information Serivecs SpA
Application Architectures and Development
Application Architectures
Application Integration and Framework
Via Monte Bianco, 18 - 37132 Verona
Tel. +39 045 808 4518
Mobile +39 335 1993 954
Fax +39 045 808 4599
marco.marini(a)unicreditgroup.eu
This e-mail is confidential and may also contain privileged information. If you are not the intended recipient you are not authorised to read, print, save, process or disclose this message. If you have received this message by mistake, please inform the sender immediately and delete this e-mail, its attachments and any copies.
Any use, distribution, reproduction or disclosure by any person other than the intended recipient is strictly prohibited and the person responsible may incur penalties.
Thank you!
XWiki displays a "Creative Commons License" on the site but all of the code
has LGPL license mentioned in the file headers. Is the "skin" under
"Creative Commons License" and the code under LGPL? What about the Velocity
templates are they under Creative Commons? What if I create my own skin?
Glenn Everitt
--
View this message in context: http://www.nabble.com/License-question-tp16981619p16981619.html
Sent from the XWiki- Dev mailing list archive at Nabble.com.
Hi all,
Resonantly I check out the source from *
http://svn.xwiki.org/svnroot/xwiki/trunks* .Then I try to build the project
using "mvn install" but initially it failed. Then I found out that it is
because we connect to the Internet to proxy.To fix this problem you need to
add the following to the ~/.m2/settings.xml
inside the settings tag
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>cache.mrt.ac.lk</host>
<port>3128</port>
<username></username
<password></password>
</proxy>
</proxies>
do we need to add this to the "Building XWiki from sources" article?
regards
Malaka Ekanayake
CSE UOM
This page describes how to create indexes for a MySQL 4 or 5 database
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration…
and I can create indexes on Oracle 10 with the exception of:
create index xwl_value on xwikilargestrings (xwl_value(50));
create index xwd_parent on xwikidoc (xwd_parent(50));
create index xwd_class_xml on xwikidoc (xwd_class_xml(20));
which are clob and varchar columns.
xwd_class_xml CLOB(4000)
xwd_parent VARCHAR(1533)
xwl_value CLOB(4000)
Does anyone know how indexes should be created for these columns in Oracle?
Thanks for any help
Glenn Everitt
--
View this message in context: http://www.nabble.com/Oracle-Database-Index-tp16945142p16945142.html
Sent from the XWiki- Dev mailing list archive at Nabble.com.
I'm trying to use the includeServlet macro
I added this to web.xml
<servlet>
<servlet-name>hello</servlet-name>
<jsp-file>/hello.jsp</jsp-file>
</servlet>
I created hello.jsp in .../webapps/xwiki/WEB-INF directory with these
contents
<HTML>
<BODY>
Hello! The time is now <%= new java.util.Date() %>
</BODY>
</HTML>
tried to enter this into wiki page
#includeServlet("/hello.jsp") - and receive message:
2008-04-29 22:00:19,625 [http://localhost:8080/xwiki/bin/view/Sandbox/]
[P1-19] WARN xwiki.XWiki - Exception including url:
/hello.jsp
java.lang.NullPointerException
at
com.xpn.xwiki.web.includeservletasstring.BufferedResponse.getBufferAsByteArray(BufferedResponse.java:80)
at
com.xpn.xwiki.web.includeservletasstring.IncludeServletAsString.invokeServletAndReturnAsString(IncludeServletAsString.java:69)
so I tried this
#includeServlet("hello.jsp") - enter this and the includeServlet code
seems to recursively call itself forever until you get a stack overflow
Thanks for any help
--
View this message in context: http://www.nabble.com/includeServlet-help.-tp16974118p16974118.html
Sent from the XWiki- Dev mailing list archive at Nabble.com.
Hello,
I have a question:
now it seems Request/Response/SessionContext are stored in a ThreadLocal in
ServletContainer...
But apparently, in the new Action model, the container is still passed to
all functions...
Wasn't the ThreadLocal meant mostly to prevent this?
(I may be wrong and the code might be temporary also...)
best regards
Pascal