Hi,
I'm working on the Maven2 build and I'm currently adding the dependencies
and ensuring they are present on ibiblio and pushing them if they're not,
etc.
There are several libs in trunk/libs that do not have version attached to
the jar name.
Could someone in the know rename them with version information or tell me
the version so that I can rename them and add them as POM dependency?
Also, are you sure there is a Servlet API 2.4? The most recent version I
have found is servletapi-2.4-public_draft.jar (or
servletapi-2.4-20040521.jar). See
http://ibiblio.org/maven2/servletapi/servletapi/. I don't think the 2.4 API
has been released yet. Let me know if this is correct or not.
Thanks a lot
-Vincent
Hi team,
JIRA 3.2 is available and it has several cool new features (see
http://confluence.atlassian.com/display/JIRA/JIRA+3.2+Release+Notes). I'd
suggest we migrate to it to try it.
It has a feature that Ludovic will possibly like (not sure it does exactly
what you want Ludovic):
"
Many users requested the ability to change the format of the From email
address within JIRA notifications. The format is now fully configurable -
with the ability to include or exclude the user name, email address and
email hostname: for example, the format can be set to display as follows
'John Doe (ATLASSIAN) <jira(a)atlassian.com>'.
"
-Vincent
This should be fixed now. Let me know if you find any issue.
Thanks
-Vincent
> -----Original Message-----
> From: Vincent Massol [mailto:vincent@massol.net]
> Sent: jeudi 9 juin 2005 17:20
> To: 'xwiki-dev(a)objectweb.org'
> Subject: Error introduced by my recent changes in the tests
>
> Hi,
>
> I've just realized that StoreObjectTest is supposed to contains tests that
> are then executed by StoreObjectHibernateTest for a DB storage or
> StoreObjectRCSFileTest for a RCS storage.
>
> I'll fix my refactoring shortly to restore this feature.
Hi,
I've just realized that StoreObjectTest is supposed to contains tests that
are then executed by StoreObjectHibernateTest for a DB storage or
StoreObjectRCSFileTest for a RCS storage.
I'll fix my refactoring shortly to restore this feature.
Thanks and sorry
-Vincent
I'm interested in using XWIKI with a DB2 database back-end. I've had some
success creating the DB2 schema, populating with data from the MySQL
database supplied for xwiki v. 0.9.793. However, when I hit the following
URL:
http://127.0.0.1:8080/xwiki/bin/view/Main/WebHome
DB2 doesn't like the following query, which is generated from
XWikiHibernateStore starting on line 1775:
select distinct xwikidocum0_.XWD_WEB as col_0_0_, xwikidocum0_.XWD_NAME as
col_1_0_ from xwikidoc xwikidocum0_, xwikiobjects baseobject1_ where
baseobject1_.XWO_NAME=xwikidocum0_.XWD_FULLNAME and
baseobject1_.XWO_CLASSNAME='XWiki.XWikiUsers' order by
xwikidocum0_.XWD_CREATION_DATE desc
>From reading the DB2 docs, I think DB2 doesn't permit use of a column in the
order by clause that does not also appear in the select clause, if the
distinct keyword is present. I was able to fix the problem by removing the
word "distinct" from the query on line 1775 of XWikiHibernateStore. That
allowed me to view the home page, and do several other tasks -- edit pages,
attach documents, etc.
I don't know how critical that "distinct" is to the correct operation of
xwiki. I was wondering if the developers could answer that. If "distinct" is
not needed and can be removed, or the query can somehow be reworked then I
will be glad to submit my DB2 schema on the Database Development page.
Stephen