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
Hello All,
With Vincent's help I have migrated from the standalone wiki to the xwiki on
a remote server.
But, I am not able to import
· Main.LuceneSearch
· Panels.SyntaxHelp
· Photos.NewAlbum
pages, alongwith some other pages that I created and also my ow user
profile.
I also tried to import the above mentioned 3 pages from "
xwiki-enterprise-wiki-1.3~.xar <javascript:void()>" but it still gives
error: (for all 3 of these)
12:04:17,007 [
http://crntsbox01/xwiki/bin/import/XWiki/Import?editor=import&space=XWiki]
[http-80-Processor20] ERROR packaging.Package - Failed to save
document Photos.NewAlbum
12:04:17,304 [
http://crntsbox01/xwiki/bin/import/XWiki/Import?editor=import&space=XWiki]
[http-80-Processor20] ERROR .AbstractFlushingEventListener - Could not
synchronize database state with session
org.hibernate.StaleStateException: Batch update returned unexpected row
count from update [0]; actual row count: 0; expected: 1
Also, another weird thing that is happening is that all my groups show the
number of members - 1 more than the actual number of members in the group. I
know that each group has the blank XWiki.XwikiGroups object and one each for
a particular member. But, this was not a problem for me in my standalone
version (1.4-SNAPSHOT). In the new setup (which is 1.3.2.9174), it seems
like it is counting that blank object also as a member! Do I need to change
something for it to show the correct number of members in every group?
Thanks
I've changed this locally to doc.language is not null and it works fine,
however, I hesitate to treat this as a solution..
There were also three instances of
nameFilter = "name not like '%.%' and name <> ''";
in XWikiStatsServiceImpl.java.
Cheers,
Jeff
The XWiki development team is pleased to announce the release of XWiki
Workspaces 1.0.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
XWiki Workspaces is a new product of XWiki, that focus on providing easy
collaboration for teams around simple wiki, blog, photo galleries and
files module, all brought together in its "Workspaces".
This is the final 1.0 version of Workspaces, it brings a few bug fixes
since last RC2 :
* XWS-72 - Panel not completely hidden when closing "Get started message"
panels
* XWS-80 - Issues with french translations
* XWS-81 - Wrong category link in a blog entry footer
* XWS-84 - Missing right-panel links to delete files and photos
* XWS-85 - Remove right-panel links that are not contextual to the current
page
* XWS-86 - The file versions table is very poorly skinned
* XWS-87 - Upon creation, document names are not cleared properly
You can read the full release notes here :
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesWorkspaces10
To get started with XWiki Workspaces, point your browser at
http://workspaces.xwiki.org
Finally, you can take a sneak peek on workspaces Roadmap for the next 1.1
version over here :
http://workspaces.xwiki.org/xwiki/bin/view/Main/Roadmap
Thanks
-The XWiki dev team
Dear devs,
I would like to release XWiki Workspaces 1.0 today, bringing just a few
bug fixes since RC2 : see http://tinyurl.com/6zfbff
Here's my +1 for it.
Jerome.
I'd like to release XE 1.4M2 tomorrow. It has the following changes
compared to 1.4M2 :
Release Notes - XWiki Platform - Version 1.4 M2
----------------------------------------------------------------------
Bugs :
[XWIKI-2280] Cannot create new users using the Right Management UI
[XWIKI-2298] Character escaping using \ doesn't work anymore
[XWIKI-2299] The XWiki object is created more than once
[XWIKI-2300] HibernateStore synchronization problem
[XWIKI-2309] Migration between xwiki 1.1.x and 1.2.x (and above) can
fail because of some documents
[XWIKI-2283] Overwrite on importing translation documents deletes the
original document too
[XWIKI-2293] PropertyChangedRule does not work
[XWIKI-2281] When a user is removed it's not removed from the groups
it belongs to
[XWIKI-2304] When a user or a group is removed it's not removed from
rights objects
[XWIKI-2302]
Improvements :
[XWIKI-1560] Improve the XWiki implementation of the XML-RPC Confluence API
[XWIKI-2276] Separate AttachmentVersioningStore from AttachmentStore
[XWIKI-2277] Add java5 generics to store#execute methods and callbacks
[XWIKI-2303] Create one paragraph for several empty lines
New Features :
[XWIKI-2275] Option to deactivate attachment versioning
Tasks :
[XWIKI-2279] Fix checkstyle violations in core.
Release Notes - XWiki Enterprise - Version 1.4 M2
-------------------------------------------------------------------------
Bugs :
[XE-220] The Change Password form should not allow empty passwords
Improvements :
[XE-221] Change the table that displays all the documents
(Main.AllDocs) to use ajax for more rapid loading
[XE-23] Improve Treeview's performances on AllDocs by loading data on
node expansion
Here's my +1
We have 5 pending issues for the release :
XWIKI-1560 (Fabio & JV), XWIKI-2280 & XWIKI-2289 (Sergiu), XE-23 & XE-221 (JV),
A possible addition before tomorrow afternoon:
"ThreadLocal request/response/session in the container component" by Vincent.
Please shout if there's a problem with the pending issue or if you
think there's something missing in this list.
Thanks,
--
Jean-Vincent Drean
Guillaume,
I'm evaluating XWiki for one of our projects here at Cornell
University, I'm hopeful that it will meet our needs. Which also means
I'll probably have a few more questions over the next week or so. Re
the language, I believe that I have a Spanish page already. I had
previously gone to the main page and added the language=es to the query
string. I then edited the page and added some Spanish text. I can see
either the en or the es page by adding the language= but I don't see the
Es link in the upper right. Also, when I edit the page, I don't see the
"Translations" panel.
Thanks for your help,
Jeff
Hi All,
It would be nice to have the xwiki icon for the *'address bar icon'* on
firefox (or any other browser) when browsing xwiki.org.
WDYT ?
ps : I'm not sure how to do it but i think it is not that difficult.
The XWiki development team is pleased to announce the release of XWiki
Enterprise Manager 1.2 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Second (and last) milestone of the XWiki Enterprise Manager 1.2 version.
Adding to XE 1.4 M2 bugfixes an new features it also contains some
WikiManager user interface improvements.
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM12M2
Thanks
-The XWiki dev team
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
The XWiki development team is pleased to announce the release of XWiki
Enterprise 1.4 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Second (and last) milestone of the XWiki Enterprise 1.4 version.
Note that general goals for XWiki Enterprise 1.4 are:
* Switch to Java 1.5
* Improved stats performances
* XMLRPC improvements
* Improved performances (less Javascript files, more optimized CSS,
better caching, etc)
* Skins extensions
* Bug fixes
* More automated tests
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise14M2
Thanks
-The XWiki dev team
Hello list,
As developer in a small corporate, we want to use xwiki for internal
documentation, but our managers are actually against it, because of the
extremely buggy WYSIWYG-editor under Mac-OS X/Safari.
Therefore, i searched the bug-database, but this one isn't even
considered for beeing important in the next releases!!
So now, i have two possibilities:
1. Throw away xwiki as wiki for us, what i would deeply regret, or
2. implement tinyMCE v3 in xwiki
Can anybody give me a short introduction in how i can do this if it is
(at all) possible?
Is it (that's my biggest hope) just modular and easy upgraded, or not?
Unfortunately, i have not much time for this, so i can't take an indept
look at xwiki-development, i must find a way to do this just in the
part, that's responsible for the editor...
Kind regards, Florian
Hi devs,
As XE 1.4 Milestone 2 is now "physically" released I would like to
start XEM 1.2 Milestone 2 release on next Monday.
Adding to XE 1.4 M2 bugfixes an new features it also contains some
WikiManager user interface improvements.
See http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM12M2
Thanks
--
Thomas Mortagne
Hi all,
I think it would be great if all mentors introduce themselves to students,
the way we introduced ourselves.
I hope this introduction will help all XWiki GSoC participants.
--Sai Krishna.
http://filtrbox.com looks interesting, although the filtrbox :
dashboard<https://www.filtrbox.com/dashboard/>application is in flash,
which means you don't get the excellent emergent
effect of having google be able to search the filter pages, or being able to
have a search-hit bring you back to a "deep state" in the collaborative feed
reader...
For those planning on upgrading xwikiwatch in future releases, it is well
worth looking at filtrbox to get an idea of functional UI for doing this
class of application, even if it may be more difficult to achieve this style
of UI using standard web browser technologies.
--------------------------------------------------------------------------------------------
http://alwayson.goingon.com/permalink/post/26573
<http://alwayson.goingon.com/user/bradfeld>I have a very patterned daily
information consumption routine. The left-most tab in my browser is called
"Daily" and contains a set of web sites that I open up each morning and look
at as part of my routine. Recently, Filtrbox <http://www.filtrbox.com/> -
one of the TechStars <http://www.techstars.org/> companies - graduated to be
part of this tab.
I try virtually every news alerting system that I come across. I have a set
of about 100 keywords that I track daily - all of the companies we've
invested in, a number of people that I follow, and a handful of random
things I care about. My current staples are Google Alerts, Yahoo Alerts,
and Technorati. I can only seem to get Google and Yahoo via email, so they
show up in my inbox and get moved to my "Daily" email folder (which I read -
er - daily.) Technorati comes via RSS so I read it each morning in
FeedDemon.
The vision for Filtrbox <http://www.filtrbox.com/> when they started at
TechStars last summer was to create an integrated single dashboard of all
this keyword alert information. The tagline "more knowledge, less noise"
says it all. My partner Seth Levine and I totally resonated with this -
Seth has a great post about Filtrbox up titled *Know what you don't
know<http://www.sethlevine.com/blog/archives/2008/04/know-what-you-d.php>
*which addresses how he thinks about the problem and how Filtrbox solves it
for him.
For a while I found the Filtrbox data interesting, but not really that
additive. In addition, the UI was "ok" but there where lots of little things
that slowed me down. About three months ago I noticed I was finding new
information from it that wasn't appearing in my other keyword searches and
that it was streamlining this information in ways that I hadn't expected,
such as eliminating duplicates (e.g. the same alert coming from Google,
Yahoo, and Technorati - which happens many times each day - only appeared
one in Filtrbox) and allowing me to filter based on thresholds for each
keyword. In addition, as the UI evolved, I found I was spending less time
scanning the alerts and more time clicking through onto the interesting
ones.
I hit a tipping point about a month ago where Filtrbox became more useful to
me than Google+Yahoo+Technorati. I haven't turned off the other alerts yet,
but I find that I'm not getting much additional info from them anymore now
that I use Filtrbox as my top level sort.
Filtrbox is still in private beta, but if you are interested in playing
around with it you can get a golden ticket by clicking on the special magic
Brad Feld Filtrbox link <https://www.filtrbox.com/signup.php?code=foundry>.
I'm really proud of Ari Newman, Tom Chikoore, and team. They have reached
the point where their service is very valuable to me and gets noticeably
better every single week.
---------------------------------------------------------------------------------------------
Hi Niels,
Welcome to Filtrbox! You are joining thousands of professionals and
businesses who use Filtrbox to stay in-the-know and ahead of the game. The
Filtrbox service is in private beta, which means we are still adding
features and improving the service. Your feedback is greatly appreciated so
let us know how we can make Filtrbox even better. We will send out a survey
in the coming month to ask more specific questions.
The purpose of the Filtrbox private beta is for us to get real-world
feedback from our customers and to ensure the service is ready for
prime-time usage. We hope you find real value in Filtrbox, and that you will
provide us with feedback, good or bad, on your experience and what you'd
like to see in the product going forward.
With this registration code you are given a "Filtrbox Free" account which
provides 10 Filtrs and 15 days of article history. You can also invite
friends and colleagues to try Fiiltrbox via our "Shared Filtrs" feature.
Once you create a FiltrGroup, you can click on the Share button on the
Filtrs tab and add email addresses.
If you find you need more Filtrs or article history, you can upgrade to
"Filtrbox Pro", our subscription-based service which provides 25 Filtrs and
45 days of article history. You can upgrade right from the Account tab.
In exchange for your free account, we ask that you give us feedback and ask
questions! There is a new community-driven web support site we are trying
out. Right now it requires you to register with them, but shortly we'll have
in integrated with our service. Check it out for FAQ items and answers to
common questions. http://getsatisfaction.com/filtrbox
If you don't find what you are looking for, please email us directly at
support(a)filtrbox.com and we'll get right back with you.
We highly recommend watching the screen-cast tutorials for a quick primer on
some key features: http://www.filtrbox.com/video.php
+++++++Account Info+++++++
Login: NielsMayer(a)gmail.com
Account Type: Free
Access your Filtrbox Account at:
https://www.filtrbox.com/dashboard/
++++++++++++++++++++++++
There are three ways to get help if needed:
FAQs: http://filtrbox.com/help.php
Support/Community: http://getsatisfaction.com/filtrbox
Email: support(a)filtrbox.com
Stay in touch:
subscribe to our blog: http://filtrbox.com/blog
follow us on Twitter: http://twitter.com/filtrbox
Thanks for your business!
The Filtrbox Team
-----------------------------------------------------------
-- Niels
http://nielsmayer.com
This message is for all of you (especially the Orthodox, who are celebrating
Easter this night)
Hope your Easter is filled with all the brightness and warmth you spread all
around you, and I wish you peace, happiness, health and all the joy you can
spend with your families.
Jesus Christ be with you all.
Happy Easter
Paşte Fericit
Joyeuse Pâques
Buona Pasqua
Boa Páscoa
śubh īsţar
Fuhkwuhtjit Faailohk
(sorry - couldn't found how is translated in Tamil) :P
Hello Devs,
Is it possible to create groups in XWiki for each space. Meaning, can each
space have its own set of different groups?
If I create a new class like the XWiki.XWikiGroups fro each space and use it
like the original (XWiki.XWikiGroups) class for including objects, will it
work?
Will these groups be captured in the Administration window to configure
Rights?
Thanks for all help