From simon at 333.ch Thu Apr 1 00:47:37 2010
From: simon at 333.ch (simon)
Date: Thu Apr 1 01:00:52 2010
Subject: [Yanel-dev] Re: [Yanel-commits] rev 48424
- public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt
In-Reply-To: <201003312158.o2VLwxB3010652@cvs-extra.wyona.com>
References: <201003312158.o2VLwxB3010652@cvs-extra.wyona.com>
Message-ID: <4BB3D109.4070209@333.ch>
michi@wyona.com schrieb:
> Author: michi
> Date: 2010-03-31 23:58:59 +0200 (Wed, 31 Mar 2010)
> New Revision: 48424
>
> Modified:
> public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl
> Log:
> login zone added
>
> Modified: public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl
> ===================================================================
> --- public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl 2010-03-31 21:58:36 UTC (rev 48423)
> +++ public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl 2010-03-31 21:58:59 UTC (rev 48424)
> @@ -43,8 +43,51 @@
>
>
>
> +
> +
> +
> [...]
are you sure you want to use the jquery from the internet. doesn't this
mean one has to be online to use it?
simon
From michael.wechner at wyona.com Thu Apr 1 00:48:10 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Thu Apr 1 01:01:28 2010
Subject: [Yanel-dev] Login Zone Link
Message-ID: <4BB3D12A.3000702@wyona.com>
Hi
I have added a login-zone-link to the from scratch realm, which means if
you hover with the mouse at
the upper right corner of your browser, then an image will appear saying
"Login" and allows the user
to click in order to get to the login screen.
I think this is a very nice for people familiar with Yanel to find the
login page without having to make
a link available or remember some hidden URL.
Please give it a try and let me know what you think
Thanks
Michi
From michael.wechner at wyona.com Thu Apr 1 00:57:01 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Thu Apr 1 01:10:34 2010
Subject: [Yanel-dev] Re: [Yanel-commits] rev
48424 - public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt
In-Reply-To: <4BB3D109.4070209@333.ch>
References: <201003312158.o2VLwxB3010652@cvs-extra.wyona.com>
<4BB3D109.4070209@333.ch>
Message-ID: <4BB3D33D.10501@wyona.com>
simon wrote:
> michi@wyona.com schrieb:
>> Author: michi
>> Date: 2010-03-31 23:58:59 +0200 (Wed, 31 Mar 2010)
>> New Revision: 48424
>>
>> Modified:
>>
>> public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl
>>
>> Log:
>> login zone added
>>
>> Modified:
>> public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl
>>
>> ===================================================================
>> ---
>> public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl
>> 2010-03-31 21:58:36 UTC (rev 48423)
>> +++
>> public/yanel/trunk/src/realms/from-scratch-realm-template/data-repo/data/app1/xslt/global.xsl
>> 2010-03-31 21:58:59 UTC (rev 48424)
>> @@ -43,8 +43,51 @@
>>
>>
>>
>> +
>> +
>> +
>>
>> [...]
> are you sure you want to use the jquery from the internet. doesn't
> this mean one has to be online to use it?
good catch, thanks very much for pointing this out. I have changed it now
svn ci -m "jquery moved here instead from the web" .
Adding app1/js
Adding app1/js/jquery
Adding app1/js/jquery/1.2.6
Adding app1/js/jquery/1.2.6/jquery.min.js
Sending app1/xslt/global.xsl
Transmitting file data ..
Committed revision 48425.
whereas this should be fine license wise, because it's dual licensed
also using the MIT license.
At least I hope ;-)
Thanks
Michi
>
> simon
>
From guillaume.deflache at wyona.com Thu Apr 1 10:21:20 2010
From: guillaume.deflache at wyona.com (=?ISO-8859-15?Q?Guillaume_D=E9flache?=)
Date: Thu Apr 1 10:34:30 2010
Subject: [Yanel-dev] GWT 2.0 IE7 caveat: do not use
com.google.gwt.xml.client.Element.getElementsByTagName("*")
Message-ID: <4BB45780.2000100@wyona.com>
Hi!
I had a hard time diagnosing this, so I'd better share it:
At least on GWT 2.0 and IE7,
com.google.gwt.xml.client.Element.getElementsByTagName("*") always
returns an empty NodeList on IE, whereas it behaves as expected on e.g.
Firefox, i.e. it return all child elements of the given element as per
the DOM spec.
One would have though GWT would have isolated us from the browser
peculiarities in their API as many JS libraries do, but apparently not! :/
HTH,
Guillaume
From michael.wechner at wyona.com Thu Apr 1 10:41:40 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Thu Apr 1 10:54:54 2010
Subject: [Yanel-dev] GWT 2.0 IE7 caveat: do not
use com.google.gwt.xml.client.Element.getElementsByTagName("*")
In-Reply-To: <4BB45780.2000100@wyona.com>
References: <4BB45780.2000100@wyona.com>
Message-ID: <4BB45C44.6080409@wyona.com>
Guillaume D?flache wrote:
> Hi!
>
> I had a hard time diagnosing this, so I'd better share it:
>
> At least on GWT 2.0 and IE7,
> com.google.gwt.xml.client.Element.getElementsByTagName("*") always
> returns an empty NodeList on IE, whereas it behaves as expected on
> e.g. Firefox, i.e. it return all child elements of the given element
> as per the DOM spec.
thanks very much for sharing this
>
> One would have though GWT would have isolated us from the browser
> peculiarities in their API as many JS libraries do, but apparently
> not! :/
I think GWT does try hard to make it work independently of the browser
and IIRC the GWT docs says sometimes explicitely
if something does not behave the same on every browser and I think it's
up to each of us to test our code as soon as possible,
such that we can recognize such issues from the very beginning. The
earlier we recognize issues, then easier the analysis
becomes at large.
Thanks
Michi
>
> HTH,
> Guillaume
From mehmet.birgi at wyona.com Thu Apr 1 11:56:08 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Thu Apr 1 12:09:30 2010
Subject: [Yanel-dev] Re: [Dev] Maven repo dupes
In-Reply-To: <4BB34541.6020405@wyona.com>
References:
<4BB3072F.40207@wyona.com>
<4BB34541.6020405@wyona.com>
Message-ID:
Skipped content of type multipart/alternative-------------- next part -----=
---------
A non-text attachment was scrubbed...
Name: build.log
Type: application/octet-stream
Size: 243684 bytes
Desc: not available
Url : http://lists.wyona.org/pipermail/yanel-development/attachments/201004=
01/2e92b74a/build-0001.obj
From mehmet.birgi at wyona.com Thu Apr 1 12:01:18 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Thu Apr 1 12:18:24 2010
Subject: [Yanel-dev] Re: [Dev] Maven repo dupes
In-Reply-To:
References:
<4BB3072F.40207@wyona.com>
<4BB34541.6020405@wyona.com>
Message-ID:
sorry, here is the wholw dependencies block, might make more sense:
dependencies:
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from central
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-=
commons-discovery-0.2.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-j=
akarta-commons-id-0.1-dev-lcr357257.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-=
commons-logging-1.0.4.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons=
-io-1.2.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.jar from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.jar from central
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-=
commons-discovery-0.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 70K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-j=
akarta-commons-id-0.1-dev-lcr357257.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 53K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-=
commons-logging-1.0.4.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 37K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons=
-io-1.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 64K from wyona.remote.repository
On Thu, Apr 1, 2010 at 11:56 AM, Mehmet Birgi wrote:
> OK, I have attached the build.log, and the important lines seem to be
> those:
>
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from central
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commo=
ns-io-1.2.pom
> from wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.jar from wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.jar from central
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commo=
ns-io-1.2.jar
> from wyona.remote.repository
>
> can anybody tell what the problem is?
>
>
>
>
> On Wed, Mar 31, 2010 at 2:51 PM, Michael Wechner <
> michael.wechner@wyona.com> wrote:
>
>> Mehmet Birgi wrote:
>>
>>> Thanks for all the feedback. As this is low priority, I might get back =
to
>>> it later, but I will not pursue this issue at the moment.
>>>
>>
>> I would like you to spend 15 minutes on this. Please give the debugging
>> approach as I suggested a try and also please
>> add a bugzilla entry, because these ambiguities can lead to problems and
>> hence we better get it documented it at least.
>>
>> Thanks
>>
>> Michi
>>
>>>
>>> Cheers,
>>>
>>> Memo
>>>
>>>
>>>
>>> 2010/3/31 Guillaume D=E9flache >> guillaume.deflache@wyona.com>>
>>>
>>>
>>> [This message just came on one internal Wyona mailing-lists,
>>> answering it here as it is of general interest: ]
>>>
>>> Mehmet Birgi schrieb:
>>>
>>> > Yesterday, while we were looking for the jakarta-commons-io lib
>>> to use, Guillaume noticed that this library is included twice,
>>> namely in:
>>> >
>>> >
>>>
>>> /Users/memo/.m2/repository/apache-jakarta-commons/apache-jakarta-commo=
ns-io/1.2/apache-jakarta-commons-io-1.2.jar
>>> >
>>>
>>> /Users/memo/.m2/repository/commons-io/commons-io/1.2/commons-io-1.2.jar
>>>
>>> I previously found a statement in the jakarta-commons mailing-list
>>> about what is the now recommended form (I do not really remember
>>> which one so I won't risk a guess) and a rationale for it, I'll
>>> try to dig it up at home.
>>>
>>>
>>>
>>> > As they are both the same version, one of them should be enough.
>>> There may be other dupes, we didn't search for them. The bug
>>> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=3D7006
>>> also seems to be remotely related to this. Would it be worth the
>>> effort to
>>>
>>> It is indeed related to this. The cleanup explained below is made
>>> as part of
>>> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=3D6896
>>>
>>>
>>>
>>> > try to clean out the maven repository? Or should I just enter a
>>> new P2
>>>
>>> To sum it up is not really our or Maven's central repositories
>>> that are "dirty", it's rather the dependencies metadata that do
>>> not cater for renames of the groupId/artifactId couples during the
>>> life of a library.
>>> Cleaning that would probably remove all "duplicate librairies",
>>> but it is a long term task and not a very high priority ATM I think.
>>>
>>>
>>>
>>> > bug and "forget about it" for now?
>>>
>>> No need to enter another bug.
>>> You can forget about it for now as an application developer as the
>>> only real way to try to fix this is to clean up the dependency
>>> tree starting from its "leaves".
>>> For now only wyona-commons has been cleaned up (see r45585 on
>>> ), next target up the tree is
>>> yarep.
>>> I had already started on that so please coordinate with us on this
>>> list if you want to work on that.
>>>
>>>
>>> HTH,
>>> Guillaume
>>> -- Yanel-development mailing list Yanel-development@wyona.com
>>>
>>>
>>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>>
>>>
>>>
>>>
>>> --
>>> Mehmet Birgi
>>> www.wyona.com
>>>
>>>
>> --
>> Yanel-development mailing list Yanel-development@wyona.com
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
1/fceddaaf/attachment.htm
From guillaume.deflache at wyona.com Thu Apr 1 14:00:43 2010
From: guillaume.deflache at wyona.com (=?ISO-8859-15?Q?Guillaume_D=E9flache?=)
Date: Thu Apr 1 14:13:56 2010
Subject: [Yanel-dev] Vim configuration for Yanel development
Message-ID: <4BB48AEB.9070907@wyona.com>
Hi!
AFAIK this is all that is needed to make Vim behave WRT indentation to
meet Yanel coding conventions.
This is the most safe and straightforward way I found, but it can
probably be done differently/better:
---8<---
set expandtab " never add TAB characters
set tabstop=2 shiftwidth=2 " by default indentation is 2, e.g. for HTML
and XML-based syntaxes like XHTML, XSLT, etc.
au BufNewFile,BufRead *.java,*.js,*.css set tabstop=4 shiftwidth=4 "
indentation is 4 for languages using braces for nesting like Java,
Javascript, CSS. etc.
---8<---
Of course you may want to use an IDE like Eclipse or IntelliJ IntelliJ
IDEA instead! :P
HTH,
Guillaume
From michael.wechner at wyona.com Thu Apr 1 14:01:27 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Thu Apr 1 14:14:40 2010
Subject: [Yanel-dev] Capturing data by Eclipse
Message-ID: <4BB48B17.4000407@wyona.com>
Hi
I have just noticed that Eclipse is capturing data as described
http://www.eclipse.org/org/usagedata/faq.php
I guess/hope they use it to improve to Eclipse.
Maybe some food for thought ;-)
Thanks
Michi
From mehmet.birgi at wyona.com Thu Apr 1 14:34:23 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Thu Apr 1 14:47:44 2010
Subject: [Yanel-dev] Vim configuration for Yanel development
In-Reply-To: <4BB48AEB.9070907@wyona.com>
References: <4BB48AEB.9070907@wyona.com>
Message-ID:
Thanks, Guillaume.
I had to make a small adaptation to make it work, because I am using "set
softtabstop=3DX". Now it seems to work nicely.
Here is the part of my .vimrc concerning tabs:
set autoindent
set softtabstop=3D2
set shiftwidth=3D2
set expandtab
"indentation for languages using braces for nesting like Java, Javascript,
CSS. etc.
au BufNewFile,BufRead *.java,*.js,*.css set softtabstop=3D4 shiftwidth=3D4
Also, there is more information on that subject at
http://vim.wikia.com/wiki/Indenting_source_code
2010/4/1 Guillaume D=E9flache
> Hi!
>
> AFAIK this is all that is needed to make Vim behave WRT indentation to me=
et
> Yanel coding conventions.
> This is the most safe and straightforward way I found, but it can probably
> be done differently/better:
> ---8<---
> set expandtab " never add TAB characters
> set tabstop=3D2 shiftwidth=3D2 " by default indentation is 2, e.g. for HT=
ML and
> XML-based syntaxes like XHTML, XSLT, etc.
> au BufNewFile,BufRead *.java,*.js,*.css set tabstop=3D4 shiftwidth=3D4 "
> indentation is 4 for languages using braces for nesting like Java,
> Javascript, CSS. etc.
> ---8<---
>
> Of course you may want to use an IDE like Eclipse or IntelliJ IntelliJ ID=
EA
> instead! :P
>
> HTH,
> Guillaume
> --
> Yanel-development mailing list Yanel-development@wyona.com
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
1/da70c9bc/attachment.htm
From michael.wechner at wyona.com Thu Apr 1 14:34:40 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Thu Apr 1 14:47:54 2010
Subject: [Yanel-dev] Vim configuration for Yanel development
In-Reply-To: <4BB48AEB.9070907@wyona.com>
References: <4BB48AEB.9070907@wyona.com>
Message-ID: <4BB492E0.5090600@wyona.com>
Dear Guillaume
Thanks very much for sharing this.
Just being curious, but did I as a vi(m) user do anything wrong? Or is
just a general hint/pointer?
I think we should add these notes to our coding standards:
http://www.yanel.org/en/development/processes/index.html
http://www.yanel.org/en/documentation/index.html
Thanks
Michi
Guillaume D?flache wrote:
> Hi!
>
> AFAIK this is all that is needed to make Vim behave WRT indentation to
> meet Yanel coding conventions.
> This is the most safe and straightforward way I found, but it can
> probably be done differently/better:
> ---8<---
> set expandtab " never add TAB characters
> set tabstop=2 shiftwidth=2 " by default indentation is 2, e.g. for
> HTML and XML-based syntaxes like XHTML, XSLT, etc.
> au BufNewFile,BufRead *.java,*.js,*.css set tabstop=4 shiftwidth=4 "
> indentation is 4 for languages using braces for nesting like Java,
> Javascript, CSS. etc.
> ---8<---
>
> Of course you may want to use an IDE like Eclipse or IntelliJ IntelliJ
> IDEA instead! :P
>
> HTH,
> Guillaume
From guillaume.deflache at wyona.com Thu Apr 1 15:35:23 2010
From: guillaume.deflache at wyona.com (=?ISO-8859-15?Q?Guillaume_D=E9flache?=)
Date: Thu Apr 1 15:48:34 2010
Subject: [Yanel-dev] Vim configuration for Yanel development
In-Reply-To: <4BB492E0.5090600@wyona.com>
References: <4BB48AEB.9070907@wyona.com> <4BB492E0.5090600@wyona.com>
Message-ID: <4BB4A11B.9010905@wyona.com>
Michael Wechner schrieb:
> Dear Guillaume
>
> Thanks very much for sharing this.
>
> Just being curious, but did I as a vi(m) user do anything wrong? Or is
> just a general hint/pointer?
Oh no, sorry for the confusion: memo could not quite find how to do it,
so I dug it up from my configuration files.
BTW any idea if there is an option to stop Vim from always adding a line
ending for the last line of a file when it is missing?
For example:
$ echo -n foo > bar
$ vim bar # just save it as baz, i.e. :wq baz
$ env LANG=C diff -u bar baz
--- bar 2010-04-01 15:26:58.000000000 +0200
+++ baz 2010-04-01 15:29:20.000000000 +0200
@@ -1 +1 @@
-foo
\ No newline at end of file
+foo
$
This is the single thing I do not know how to control that makes Vim
produces unwanted differences.
So all in all Vim is very fine for cooperative development indeed! :)
From mehmet.birgi at wyona.com Thu Apr 1 16:00:45 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Thu Apr 1 16:14:43 2010
Subject: [Yanel-dev] Vim configuration for Yanel development
In-Reply-To: <4BB4A11B.9010905@wyona.com>
References: <4BB48AEB.9070907@wyona.com> <4BB492E0.5090600@wyona.com>
<4BB4A11B.9010905@wyona.com>
Message-ID:
I did a little research on the web, and apparently the " \ No newline at end
of file" message is not really a bug, but more of a feature :-)
C compilers (and maybe others) expect each file to be terminated with a \n,
and will object otherwise. This seems to be the reason why Vim always adds
this character if it is not present already. For more reasons for having a
\n at the end of files, see:
http://stackoverflow.com/questions/729692/why-should-files-end-with-a-newli=
ne
Unfortunately, I couldn't find a simple way to change this behaviour.
cheers,
memo
2010/4/1 Guillaume D=E9flache
> Michael Wechner schrieb:
>
> Dear Guillaume
>>
>> Thanks very much for sharing this.
>>
>> Just being curious, but did I as a vi(m) user do anything wrong? Or is
>> just a general hint/pointer?
>>
>
> Oh no, sorry for the confusion: memo could not quite find how to do it, so
> I dug it up from my configuration files.
>
>
> BTW any idea if there is an option to stop Vim from always adding a line
> ending for the last line of a file when it is missing?
>
> For example:
> $ echo -n foo > bar
> $ vim bar # just save it as baz, i.e. :wq baz
> $ env LANG=3DC diff -u bar baz
> --- bar 2010-04-01 15:26:58.000000000 +0200
> +++ baz 2010-04-01 15:29:20.000000000 +0200
> @@ -1 +1 @@
> -foo
> \ No newline at end of file
> +foo
> $
>
> This is the single thing I do not know how to control that makes Vim
> produces unwanted differences.
> So all in all Vim is very fine for cooperative development indeed! :)
>
> --
> Yanel-development mailing list Yanel-development@wyona.com
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
1/e3091f70/attachment.htm
From mehmet.birgi at wyona.com Tue Apr 6 09:37:17 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Tue Apr 6 09:57:45 2010
Subject: [Yanel-dev] Login Zone Link
In-Reply-To: <4BB3D12A.3000702@wyona.com>
References: <4BB3D12A.3000702@wyona.com>
Message-ID:
Good idea!
The only improvement I can think of is to anti-alias the "LOGIN" text for a
white background, that would look a bit better.
Cheers,
Memo
On Thu, Apr 1, 2010 at 12:48 AM, Michael Wechner
wrote:
> Hi
>
> I have added a login-zone-link to the from scratch realm, which means if
> you hover with the mouse at
> the upper right corner of your browser, then an image will appear saying
> "Login" and allows the user
> to click in order to get to the login screen.
>
> I think this is a very nice for people familiar with Yanel to find the
> login page without having to make
> a link available or remember some hidden URL.
>
> Please give it a try and let me know what you think
>
> Thanks
>
> Michi
> --
> Yanel-development mailing list Yanel-development@wyona.com
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
6/4a7ddf95/attachment.htm
From michael.wechner at wyona.com Tue Apr 6 10:26:59 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Tue Apr 6 10:41:13 2010
Subject: [Yanel-dev] Login Zone Link
In-Reply-To:
References: <4BB3D12A.3000702@wyona.com>
Message-ID: <4BBAF053.9040302@wyona.com>
Mehmet Birgi wrote:
> Good idea!
>
> The only improvement I can think of is to anti-alias the "LOGIN" text
> for a white background, that would look a bit better.
I have exchanged the image now by the new kangaroo logo.
Cheers
Michi
>
> Cheers,
>
> Memo
>
>
>
> On Thu, Apr 1, 2010 at 12:48 AM, Michael Wechner
> > wrote:
>
> Hi
>
> I have added a login-zone-link to the from scratch realm, which
> means if you hover with the mouse at
> the upper right corner of your browser, then an image will appear
> saying "Login" and allows the user
> to click in order to get to the login screen.
>
> I think this is a very nice for people familiar with Yanel to find
> the login page without having to make
> a link available or remember some hidden URL.
>
> Please give it a try and let me know what you think
>
> Thanks
>
> Michi
> --
> Yanel-development mailing list Yanel-development@wyona.com
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
From mehmet.birgi at wyona.com Tue Apr 6 14:52:13 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Tue Apr 6 15:11:28 2010
Subject: [Yanel-dev] Vim configuration for Yanel development
In-Reply-To:
References: <4BB48AEB.9070907@wyona.com>
Message-ID:
Update: the version with softtabstop (below) doesn't seem to work as
expected, so I have reverted to Guillaume's proposal (using "set
tabstop=3D2"), which seems to work. Next I will document this in our
documentation.
Cheers,
Memo
On Thu, Apr 1, 2010 at 2:34 PM, Mehmet Birgi wrote:
> Thanks, Guillaume.
>
> I had to make a small adaptation to make it work, because I am using "set
> softtabstop=3DX". Now it seems to work nicely.
>
> Here is the part of my .vimrc concerning tabs:
>
> set autoindent
> set softtabstop=3D2
> set shiftwidth=3D2
> set expandtab
> "indentation for languages using braces for nesting like Java, Javascript,
> CSS. etc.
> au BufNewFile,BufRead *.java,*.js,*.css set softtabstop=3D4 shiftwidth=3D4
>
> Also, there is more information on that subject at
> http://vim.wikia.com/wiki/Indenting_source_code
>
>
>
>
> 2010/4/1 Guillaume D=E9flache
>
> Hi!
>>
>> AFAIK this is all that is needed to make Vim behave WRT indentation to
>> meet Yanel coding conventions.
>> This is the most safe and straightforward way I found, but it can probab=
ly
>> be done differently/better:
>> ---8<---
>> set expandtab " never add TAB characters
>> set tabstop=3D2 shiftwidth=3D2 " by default indentation is 2, e.g. for H=
TML
>> and XML-based syntaxes like XHTML, XSLT, etc.
>> au BufNewFile,BufRead *.java,*.js,*.css set tabstop=3D4 shiftwidth=3D4 "
>> indentation is 4 for languages using braces for nesting like Java,
>> Javascript, CSS. etc.
>> ---8<---
>>
>> Of course you may want to use an IDE like Eclipse or IntelliJ IntelliJ
>> IDEA instead! :P
>>
>> HTH,
>> Guillaume
>> --
>> Yanel-development mailing list Yanel-development@wyona.com
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
6/e4d12a31/attachment.htm
From bugzilla at wyona.com Tue Apr 6 15:41:15 2010
From: bugzilla at wyona.com (bugzilla@wyona.com)
Date: Tue Apr 6 15:41:16 2010
Subject: [Yanel-dev] [Bug 7551] New: Duplicate Apache commons-io in .m2
Message-ID: <20100406134115.0C22A10CA7F@server1.example.com>
http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
Summary: Duplicate Apache commons-io in .m2
Product: Yanel
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: minor
Priority: P2
Component: General
AssignedTo: michael.wechner@wyona.org
ReportedBy: mehmet.birgi@wyona.com
QAContact: yanel-development@wyona.com
The library Apache commons-io is included twice in the maven repository,
probably due to an inconsistency in the dependencies tree.
--
Configure bugmail: http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
From bugzilla at wyona.com Tue Apr 6 15:43:03 2010
From: bugzilla at wyona.com (bugzilla@wyona.com)
Date: Tue Apr 6 15:43:05 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
Message-ID: <20100406134303.2F0FD10CA7F@server1.example.com>
http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
------- Comment #1 from mehmet.birgi@wyona.com 2010-04-06 14:39 -------
Here is the related output from the build.log:
-----
dependencies:
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from central
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.jar from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.jar from central
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 70K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 53K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 37K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 64K from wyona.remote.repository
--
Configure bugmail: http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
From bugzilla at wyona.com Tue Apr 6 15:46:02 2010
From: bugzilla at wyona.com (bugzilla@wyona.com)
Date: Tue Apr 6 15:46:04 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
Message-ID: <20100406134602.1BB2210CA7F@server1.example.com>
http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
------- Comment #2 from mehmet.birgi@wyona.com 2010-04-06 14:42 -------
This bug is also related to the following bugs:
http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=6896
http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7006
--
Configure bugmail: http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
From bugzilla at wyona.com Tue Apr 6 15:52:19 2010
From: bugzilla at wyona.com (bugzilla@wyona.com)
Date: Tue Apr 6 15:52:22 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
Message-ID: <20100406135219.5908310CAB7@server1.example.com>
http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
michael.wechner@wyona.org changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|michael.wechner@wyona.org |mehmet.birgi@wyona.com
------- Comment #3 from michael.wechner@wyona.org 2010-04-06 14:48 -------
It would be important that you add the piece of the log file where one can see
from where the Maven download is actually started. Right now one can only see,
that it is downloaded, but not which resource or realm or component is actually
triggering the download
--
Configure bugmail: http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
From mehmet.birgi at wyona.com Tue Apr 6 15:44:12 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Tue Apr 6 15:57:58 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To: <20100406135219.5908310CAB7@server1.example.com>
References: <20100406135219.5908310CAB7@server1.example.com>
Message-ID:
Skipped content of type multipart/alternative-------------- next part -----=
---------
A non-text attachment was scrubbed...
Name: build.log
Type: application/octet-stream
Size: 243684 bytes
Desc: not available
Url : http://lists.wyona.org/pipermail/yanel-development/attachments/201004=
06/f6580e94/build-0001.obj
From michael.wechner at wyona.com Tue Apr 6 16:39:48 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Tue Apr 6 16:53:10 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To:
References: <20100406135219.5908310CAB7@server1.example.com>
Message-ID: <4BBB47B4.8020302@wyona.com>
From your log-file it seems that these libraries are downloaded at the
very beginning of the build:
Apache Ant version 1.7.1 compiled on June 27 2008
INFO: Building Yanel...
Buildfile: src/build/build.xml
init:
[echo] INFO: Building with Apache Ant version 1.7.1 compiled on
June 27 2008 and Java version 1.6
[echo] Yanel Home Dir: /Users/memo/Wyona/Work/Yanel/src/build/../../
probe-proxy:
[echo] Check if proxy has been set ...
proxy:
dependencies:
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from central
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.pom
from wyona.remote.repository
[artifact:dependencies] Transferring 0K from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.jar from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.jar from central
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 70K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 53K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 37K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 64K from wyona.remote.repository
[unzip] Expanding:
/Users/memo/.m2/repository/ext/gwtext/2.0.2/gwtext-2.0.2.zip into
/Users/memo/Wyona/Work/Yanel/build/webapps/yanel/htdocs/gwt-ext-2.0.2
Now one has to analyze why. I guess the easiest is to delete the whole
local Maven repo and build/log again and then analyze it again. (I
assume you just deleted this libs instead the whole local repo, right?)
Thanks
Michi
Mehmet Birgi wrote:
> Hi Michael
>
> On Tue, Apr 6, 2010 at 3:52 PM, > wrote:
>
> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
>
>
> michael.wechner@wyona.org changed:
>
> What |Removed |Added
> ----------------------------------------------------------------------------
> AssignedTo|michael.wechner@wyona.org
> |mehmet.birgi@wyona.com
>
>
>
>
>
> ------- Comment #3 from michael.wechner@wyona.org
> 2010-04-06 14:48 -------
> It would be important that you add the piece of the log file where
> one can see
> from where the Maven download is actually started. Right now one
> can only see,
> that it is downloaded, but not which resource or realm or
> component is actually
> triggering the download
>
>
> I am not sure I understand what you mean, I have attached the whole
> log file, can you point me to the proper entries? Maybe this
> information is not logged?
>
> Thanks,
>
> Memo
>
>
>
>
>
>
> --
> Configure bugmail:
> http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
> ------- You are receiving this mail because: -------
> You are the QA contact for the bug, or are watching the QA contact.
> --
> Yanel-development mailing list Yanel-development@wyona.com
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
From mehmet.birgi at wyona.com Tue Apr 6 23:23:14 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Tue Apr 6 23:36:46 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To: <4BBB47B4.8020302@wyona.com>
References: <20100406135219.5908310CAB7@server1.example.com>
<4BBB47B4.8020302@wyona.com>
Message-ID:
Skipped content of type multipart/alternative-------------- next part -----=
---------
A non-text attachment was scrubbed...
Name: build.log
Type: application/octet-stream
Size: 258799 bytes
Desc: not available
Url : http://lists.wyona.org/pipermail/yanel-development/attachments/201004=
06/ea636df5/build-0001.obj
From michael.wechner at wyona.com Wed Apr 7 09:21:31 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Wed Apr 7 09:34:54 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To:
References: <20100406135219.5908310CAB7@server1.example.com> <4BBB47B4.8020302@wyona.com>
Message-ID: <4BBC327B.1070305@wyona.com>
Dear Memo
From your log file I can see
[artifact:dependencies] Downloading:
wyona-org-commons/wyona-org-commons/1.0-dev-r48003/wyona-org-commons-1.0-dev-r48003.pom
from wyona.remote.repo
sitory
[artifact:dependencies] Transferring 1K from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from wyona.remote.repository
[artifact:dependencies] Downloading:
commons-io/commons-io/1.2/commons-io-1.2.pom from central
and checking on
/Users/michaelwechner/.m2/repository/wyona-org-commons/wyona-org-commons/1.0-dev-r48003/wyona-org-commons-1.0-dev-r48003.pom
shows that commons-io-1.2 us referenced there or rather in
https://svn.wyona.com/repos/public/commons/trunk/build.xml
Also I can see
[artifact:dependencies] Downloading:
wyona-org-security/wyona-org-security-core/0.2-dev-r48408/wyona-org-security-core-0.2-dev-r48408.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 17K from wyona.remote.repository
[artifact:dependencies] Downloading:
avalon-framework/avalon-framework-api/4.3/avalon-framework-api-4.3.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 31K from wyona.remote.repository
[artifact:dependencies] Downloading:
avalon-framework/avalon-framework-impl/4.3/avalon-framework-impl-4.3.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 58K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 70K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 53K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.jar
from wyona.remote.repository
[artifact:dependencies] Transferring 37K from wyona.remote.repository
[artifact:dependencies] Downloading:
apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
from wyona.remote.repository
which means apache-jakarta-commons-io-1.2 is referenced from within
https://svn.wyona.com/repos/public/security/trunk/dependencies.xml
Now we can start cleaning, whereas the question is which one we want to
clean and I am concerned that there will be more
such cases ...
Cheers
Michi
Mehmet Birgi wrote:
> What I could find out so far:
>
> 1. The correct artifact-id is "commons-io", according to the Maven
> docs, that point to ibiblio.org/maven2 as
> the reference
> (http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-io/commons-io/maven-metadata.xml)
>
> 2. I have found a reference to the "incorrect" artifact-id,
> "apache-jakarta-commons-io", but there seem to be several others too:
>
> memo@Memos-MacSilver:~/Wyona/Work/Yanel $ grep -riI
> apache-jakarta-commons-io src | grep -v '/\.svn/' | grep -v '\.yarep/'
> src/build/dependencies.xml: groupId="apache-jakarta-commons" artifactId="apache-jakarta-commons-io"
> src/contributions/resources/xinha/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/realms/welcome-admin/yanel/resources/update-webapp/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/add-realm/src/build/dependencies.xml: groupId="apache-jakarta-commons"
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/testing-control/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/tinymce/src/build/dependencies.xml: groupId="apache-jakarta-commons"
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/xml/src/build/dependencies.xml: groupId="apache-jakarta-commons"
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/test/build.xml: artifactId="apache-jakarta-commons-io" version="1.2"/>
>
>
> I am attaching the new build.log after deleting ~/.m2 to this mail, I
> couldn't gain any new insights from it, but I will gladly pursue any
> further hints.
>
> That's it for now, cheers & good night
>
> Memo
>
>
>
>
>
> On Tue, Apr 6, 2010 at 4:39 PM, Michael Wechner
> > wrote:
>
> From your log-file it seems that these libraries are downloaded at
> the very beginning of the build:
>
> Apache Ant version 1.7.1 compiled on June 27 2008
> INFO: Building Yanel...
> Buildfile: src/build/build.xml
>
> init:
> [echo] INFO: Building with Apache Ant version 1.7.1 compiled on
> June 27 2008 and Java version 1.6
> [echo] Yanel Home Dir:
> /Users/memo/Wyona/Work/Yanel/src/build/../../
>
> probe-proxy:
> [echo] Check if proxy has been set ...
>
> proxy:
>
>
> dependencies:
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from central
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.jar from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.jar from central
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 70K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 53K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 37K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 64K from wyona.remote.repository
> [unzip] Expanding:
> /Users/memo/.m2/repository/ext/gwtext/2.0.2/gwtext-2.0.2.zip into
> /Users/memo/Wyona/Work/Yanel/build/webapps/yanel/htdocs/gwt-ext-2.0.2
>
>
> Now one has to analyze why. I guess the easiest is to delete the
> whole local Maven repo and build/log again and then analyze it
> again. (I assume you just deleted this libs instead the whole
> local repo, right?)
>
> Thanks
>
> Michi
>
> Mehmet Birgi wrote:
>
> Hi Michael
>
>
> On Tue, Apr 6, 2010 at 3:52 PM, >> wrote:
>
> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
>
>
> michael.wechner@wyona.org
>
> > changed:
>
>
> What |Removed |Added
>
> ----------------------------------------------------------------------------
> AssignedTo|michael.wechner@wyona.org
>
> > |mehmet.birgi@wyona.com
>
> >
>
>
>
>
>
> ------- Comment #3 from michael.wechner@wyona.org
>
> > 2010-04-06 14:48 -------
>
> It would be important that you add the piece of the log
> file where
> one can see
> from where the Maven download is actually started. Right
> now one
> can only see,
> that it is downloaded, but not which resource or realm or
> component is actually
> triggering the download
>
>
> I am not sure I understand what you mean, I have attached the
> whole log file, can you point me to the proper entries? Maybe
> this information is not logged?
>
> Thanks,
>
> Memo
>
>
>
>
>
> --
> Configure bugmail:
>
> http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
> ------- You are receiving this mail because: -------
> You are the QA contact for the bug, or are watching the QA
> contact.
> --
> Yanel-development mailing list Yanel-development@wyona.com
>
> >
>
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
>
> --
> Yanel-development mailing list Yanel-development@wyona.com
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
From michael.wechner at wyona.com Wed Apr 7 10:36:35 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Wed Apr 7 10:50:05 2010
Subject: [Yanel-dev] Login Zone Link
In-Reply-To: <4BB3D12A.3000702@wyona.com>
References: <4BB3D12A.3000702@wyona.com>
Message-ID: <4BBC4413.6090305@wyona.com>
Hi
I have slightly improved this by moving the code into various
core-webapp files such that it can be re-used more easier.
In order to use it within your own website/realm one can reference it
from the XHTML head
and add it to the body as
Also we have added a new smaller logo displaying our new kangaroo.
Cheers
Michi
Michael Wechner wrote:
> Hi
>
> I have added a login-zone-link to the from scratch realm, which means
> if you hover with the mouse at
> the upper right corner of your browser, then an image will appear
> saying "Login" and allows the user
> to click in order to get to the login screen.
>
> I think this is a very nice for people familiar with Yanel to find the
> login page without having to make
> a link available or remember some hidden URL.
>
> Please give it a try and let me know what you think
>
> Thanks
>
> Michi
From mehmet.birgi at wyona.com Wed Apr 7 10:39:42 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Wed Apr 7 10:53:11 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To: <4BBC327B.1070305@wyona.com>
References: <20100406135219.5908310CAB7@server1.example.com>
<4BBB47B4.8020302@wyona.com>
<4BBC327B.1070305@wyona.com>
Message-ID:
Re which one to use: in the maven documentation, it is suggested (
http://maven.apache.org/guides/getting-started/index.html#How_do_I_use_exte=
rnal_dependencies,
7. paragraph) that one use http://ibiblio.org/maven2 as a reference to what
the artifact id should be for any (apache) dependency. According to that, we
should use "commons-io", rather than "apache-jakarta-commons-io". So I would
suggest that we change all the dependencies referring to
"apache-jakarta-commons-io" to refer to "commons-io". Is that OK, or are
there other things to consider? If you agree, I will try to find out if this
is documented somewhere, and if not, add it to the best practices, OK?
(cont. below)
On Wed, Apr 7, 2010 at 9:21 AM, Michael Wechner
wrote:
> Dear Memo
>
> From your log file I can see
>
> [artifact:dependencies] Downloading:
> wyona-org-commons/wyona-org-commons/1.0-dev-r48003/wyona-org-commons-1.0-=
dev-r48003.pom
> from wyona.remote.repo
> sitory
> [artifact:dependencies] Transferring 1K from wyona.remote.repository
>
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from central
>
> and checking on
>
>
> /Users/michaelwechner/.m2/repository/wyona-org-commons/wyona-org-commons/=
1.0-dev-r48003/wyona-org-commons-1.0-dev-r48003.pom
>
> shows that commons-io-1.2 us referenced there or rather in
>
> https://svn.wyona.com/repos/public/commons/trunk/build.xml
>
this seems to be the correct one, according to the maven docs (see above). I
am guessing that the ant task "wyona-tools:dependencies" in this build.xml
file produces the pom file above?
>
> Also I can see
>
> [artifact:dependencies] Downloading:
> wyona-org-security/wyona-org-security-core/0.2-dev-r48408/wyona-org-secur=
ity-core-0.2-dev-r48408.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 17K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> avalon-framework/avalon-framework-api/4.3/avalon-framework-api-4.3.jar fr=
om
> wyona.remote.repository
> [artifact:dependencies] Transferring 31K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> avalon-framework/avalon-framework-impl/4.3/avalon-framework-impl-4.3.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 58K from wyona.remote.repository
>
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakart=
a-commons-discovery-0.2.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 70K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache=
-jakarta-commons-id-0.1-dev-lcr357257.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 53K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakart=
a-commons-logging-1.0.4.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 37K from wyona.remote.repository
> [artifact:dependencies] Downloading:
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commo=
ns-io-1.2.jar
> from wyona.remote.repository
>
> which means apache-jakarta-commons-io-1.2 is referenced from within
>
> https://svn.wyona.com/repos/public/security/trunk/dependencies.xml
>
yes, this seems to be (one of) the "incorrect" references, if we want to
follow the maven best practices
>
> Now we can start cleaning, whereas the question is which one we want to
> clean and I am concerned that there will be more
> such cases ...
>
I suspect the following as also being non-standard:
apache-jakarta-commons-discovery:
(http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-discovery/commons-di=
scovery/maven-metadata.xml)
apache-jakarta-commons-id:
(http://svn.apache.org/repos/asf/commons/sandbox/id/trunk/pom.xml)
apache-jakarta-commons-logging:
(http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-logging/commons-logg=
ing/maven-metadata.xml)
Of the files above, commons-discovery and commons-logging are downloaded
twice (like commons-io) while commons-id is only downloaded once (but to the
"wrong" path in the maven repository).
Shall I continue looking for inconsistencies? (There is also the grep output
of the src directory below to consider, I think there are a lot of "wrong"
references that might still download to this second location if we correct
the ref in wyona-org-security-core-0.2-dev-r48408.pom) The sure way to clean
this all up would probably be to go through the ~/.m2 directory and check
for each artifact if it is in the proper place, wdyt?
Cheers,
Memo
> Cheers
>
> Michi
>
> Mehmet Birgi wrote:
>
>> What I could find out so far:
>>
>> 1. The correct artifact-id is "commons-io", according to the Maven docs,
>> that point to ibiblio.org/maven2 as the
>> reference (
>> http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-io/commons-io/mave=
n-metadata.xml
>> )
>>
>>
>> 2. I have found a reference to the "incorrect" artifact-id,
>> "apache-jakarta-commons-io", but there seem to be several others too:
>>
>> memo@Memos-MacSilver:~/Wyona/Work/Yanel $ grep -riI
>> apache-jakarta-commons-io src | grep -v '/\.svn/' | grep -v '\.yarep/'
>> src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons" artifactId=3D"apache-jakarta-commons-=
io"
>> src/contributions/resources/xinha/src/build/dependencies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/realms/welcome-admin/yanel/resources/update-webapp/src/build/depende=
ncies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/resources/add-realm/src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons" artifactId=3D"apache-jakarta-commons-=
io"
>> version=3D"1.2"/>
>> src/resources/testing-control/src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons" artifactId=3D"apache-jakarta-commons-=
io"
>> version=3D"1.2"/>
>> src/resources/tinymce/src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons" artifactId=3D"apache-jakarta-commons-=
io"
>> version=3D"1.2"/>
>> src/resources/xml/src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons" artifactId=3D"apache-jakarta-commons-=
io"
>> version=3D"1.2"/>
>> src/test/build.xml: > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>>
>>
>> I am attaching the new build.log after deleting ~/.m2 to this mail, I
>> couldn't gain any new insights from it, but I will gladly pursue any fur=
ther
>> hints.
>>
>> That's it for now, cheers & good night
>>
>> Memo
>>
>>
>>
>>
>>
>> On Tue, Apr 6, 2010 at 4:39 PM, Michael Wechner <
>> michael.wechner@wyona.com > wrote:
>>
>> From your log-file it seems that these libraries are downloaded at
>> the very beginning of the build:
>>
>> Apache Ant version 1.7.1 compiled on June 27 2008
>> INFO: Building Yanel...
>> Buildfile: src/build/build.xml
>>
>> init:
>> [echo] INFO: Building with Apache Ant version 1.7.1 compiled on
>> June 27 2008 and Java version 1.6
>> [echo] Yanel Home Dir:
>> /Users/memo/Wyona/Work/Yanel/src/build/../../
>>
>> probe-proxy:
>> [echo] Check if proxy has been set ...
>>
>> proxy:
>>
>>
>> dependencies:
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.pom from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.pom from central
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jaka=
rta-commons-discovery-0.2.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apac=
he-jakarta-commons-id-0.1-dev-lcr357257.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jaka=
rta-commons-logging-1.0.4.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-com=
mons-io-1.2.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.jar from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.jar from central
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jaka=
rta-commons-discovery-0.2.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 70K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apac=
he-jakarta-commons-id-0.1-dev-lcr357257.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 53K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jaka=
rta-commons-logging-1.0.4.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 37K from wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-com=
mons-io-1.2.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 64K from wyona.remote.repository
>> [unzip] Expanding:
>> /Users/memo/.m2/repository/ext/gwtext/2.0.2/gwtext-2.0.2.zip into
>> /Users/memo/Wyona/Work/Yanel/build/webapps/yanel/htdocs/gwt-ext-2.0.2
>>
>>
>> Now one has to analyze why. I guess the easiest is to delete the
>> whole local Maven repo and build/log again and then analyze it
>> again. (I assume you just deleted this libs instead the whole
>> local repo, right?)
>>
>> Thanks
>>
>> Michi
>>
>> Mehmet Birgi wrote:
>>
>> Hi Michael
>>
>>
>> On Tue, Apr 6, 2010 at 3:52 PM, > >
>> >> wrote:
>>
>> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=3D7=
551
>>
>>
>> michael.wechner@wyona.org
>>
>> > > changed:
>>
>>
>> What |Removed |Added
>>
>> -----------------------------------------------------------------------=
-----
>> AssignedTo|michael.wechner@wyona.org
>>
>> > > |mehmet.birgi@wyona.com
>>
>> > >
>>
>>
>>
>>
>>
>> ------- Comment #3 from michael.wechner@wyona.org
>>
>> > > 2010-04-06 14:48 -------
>>
>> It would be important that you add the piece of the log
>> file where
>> one can see
>> from where the Maven download is actually started. Right
>> now one
>> can only see,
>> that it is downloaded, but not which resource or realm or
>> component is actually
>> triggering the download
>>
>>
>> I am not sure I understand what you mean, I have attached the
>> whole log file, can you point me to the proper entries? Maybe
>> this information is not logged?
>>
>> Thanks,
>>
>> Memo
>>
>>
>>
>>
>> --
>> Configure bugmail:
>>
>> http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=3Demail
>> ------- You are receiving this mail because: -------
>> You are the QA contact for the bug, or are watching the QA
>> contact.
>> --
>> Yanel-development mailing list Yanel-development@wyona.com
>>
>> > >
>>
>>
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>>
>>
>>
>> -- Mehmet Birgi
>> www.wyona.com
>>
>>
>>
>> -- Yanel-development mailing list Yanel-development@wyona.com
>>
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>>
>>
>>
>> --
>> Mehmet Birgi
>> www.wyona.com
>>
>>
> --
> Yanel-development mailing list Yanel-development@wyona.com
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
7/9ef98ff2/attachment-0001.htm
From bruno.vonrotz at wyona.com Wed Apr 7 10:50:33 2010
From: bruno.vonrotz at wyona.com (Bruno von Rotz)
Date: Wed Apr 7 11:03:58 2010
Subject: [Yanel-dev] Login Zone Link
In-Reply-To: <4BBC4413.6090305@wyona.com>
References: <4BB3D12A.3000702@wyona.com> <4BBC4413.6090305@wyona.com>
Message-ID: <4BBC4759.7060503@wyona.com>
Cool. Given this is JS, would this mean it's only visible for human
users, not for bots and other "non-wanted" visitors? Bruno
Michael Wechner schrieb:
> Hi
>
> I have slightly improved this by moving the code into various
> core-webapp files such that it can be re-used more easier.
> In order to use it within your own website/realm one can reference it
> from the XHTML head
>
>
>
>
>
>
>
>
> href="{$yarep.back2realm}{$yanel.reservedPrefix}/yanel-css/toolbar-zone.css"
> rel="stylesheet"/>
>
>
>
> and add it to the body as
>
>
>
>
>
>
> Also we have added a new smaller logo displaying our new kangaroo.
>
> Cheers
>
> Michi
>
> Michael Wechner wrote:
>> Hi
>>
>> I have added a login-zone-link to the from scratch realm, which means
>> if you hover with the mouse at
>> the upper right corner of your browser, then an image will appear
>> saying "Login" and allows the user
>> to click in order to get to the login screen.
>>
>> I think this is a very nice for people familiar with Yanel to find
>> the login page without having to make
>> a link available or remember some hidden URL.
>>
>> Please give it a try and let me know what you think
>>
>> Thanks
>>
>> Michi
>
--
______________________________
Bruno von Rotz
WYONA
Hardstrasse 219
CH-8005 Z?rich
Switzerland
P: +41 44 272 91 61
F: +41 44 272 91 62
skype: wyona-switzerland
email: bruno.vonrotz@wyona.com
www.wyona.com
From michael.wechner at wyona.com Wed Apr 7 11:27:52 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Wed Apr 7 11:43:27 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To:
References: <20100406135219.5908310CAB7@server1.example.com> <4BBB47B4.8020302@wyona.com> <4BBC327B.1070305@wyona.com>
Message-ID: <4BBC5018.2080506@wyona.com>
Mehmet Birgi wrote:
> Re which one to use: in the maven documentation, it is suggested
> (http://maven.apache.org/guides/getting-started/index.html#How_do_I_use_external_dependencies,
> 7. paragraph) that one use http://ibiblio.org/maven2 as a reference to
> what the artifact id should be for any (apache) dependency. According
> to that, we should use "commons-io", rather than
> "apache-jakarta-commons-io".
ibiblio is just one of the many Maven repositories. I think we need to
approach this slightly different. First we should check if these
libs are really the same. One first simple check is to open the jar
files and compare:
jar -tf
/Users/michaelwechner/.m2/repository/apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
another simple one is to count the number of files
jar -tf
/Users/michaelwechner/.m2/repository/apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
| wc -l
and another is to compare the size
ls -l
/Users/michaelwechner/.m2/repository/commons-io/commons-io/1.2/commons-io-1.2.jar
and yes it really seems that these are the same libs -;-)
Yes, ibiblio contains
http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-io/commons-io/
but does not contain apache-jakarta-commons.
Also commons is an ex-subproject of the jakarta project
http://jakarta.apache.org/
which is now
http://commons.apache.org/io/
http://commons.apache.org/io/download_io.cgi
http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-1.4/pom.xml
so based on this I would agree to replace the apache-jakarta-commons-io
by commons-io.
I have done this now at
https://svn.wyona.com/repos/public/yanel/trunk/src/build/dependencies.xml
and
https://svn.wyona.com/repos/public/security/trunk/dependencies.xml
> So I would suggest that we change all the dependencies referring to
> "apache-jakarta-commons-io" to refer to "commons-io". Is that OK, or
> are there other things to consider? If you agree, I will try to find
> out if this is documented somewhere, and if not, add it to the best
> practices, OK?
I am not sure if the best practices are the best place for this, but I
guess it's better to add it there than nowhere
>
>
>
> Of the files above, commons-discovery and commons-logging are
> downloaded twice (like commons-io) while commons-id is only downloaded
> once (but to the "wrong" path in the maven repository).
>
> Shall I continue looking for inconsistencies? (There is also the grep
> output of the src directory below to consider, I think there are a lot
> of "wrong" references that might still download to this second
> location if we correct the ref in
> wyona-org-security-core-0.2-dev-r48408.pom) The sure way to clean this
> all up would probably be to go through the ~/.m2 directory and check
> for each artifact if it is in the proper place, wdyt?
I think we should do it incrementally. If we find something, then let's
replace, otherwise it doesn't hurt.
Re commons-logging and the others we need to first check if these are
really the same libs. Have you done this?
Thanks
Michi
>
> Cheers,
>
> Memo
>
>
>
> Cheers
>
> Michi
>
> Mehmet Birgi wrote:
>
> What I could find out so far:
>
> 1. The correct artifact-id is "commons-io", according to the
> Maven docs, that point to ibiblio.org/maven2
> as the
> reference
> (http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-io/commons-io/maven-metadata.xml)
>
>
>
> 2. I have found a reference to the "incorrect" artifact-id,
> "apache-jakarta-commons-io", but there seem to be several
> others too:
>
> memo@Memos-MacSilver:~/Wyona/Work/Yanel $ grep -riI
> apache-jakarta-commons-io src | grep -v '/\.svn/' | grep -v
> '\.yarep/'
> src/build/dependencies.xml: groupId="apache-jakarta-commons"
> artifactId="apache-jakarta-commons-io"
> src/contributions/resources/xinha/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/realms/welcome-admin/yanel/resources/update-webapp/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/add-realm/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/testing-control/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/tinymce/src/build/dependencies.xml:
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/resources/xml/src/build/dependencies.xml: groupId="apache-jakarta-commons"
> artifactId="apache-jakarta-commons-io" version="1.2"/>
> src/test/build.xml: groupId="apache-jakarta-commons"
> artifactId="apache-jakarta-commons-io" version="1.2"/>
>
>
> I am attaching the new build.log after deleting ~/.m2 to this
> mail, I couldn't gain any new insights from it, but I will
> gladly pursue any further hints.
>
> That's it for now, cheers & good night
>
> Memo
>
>
>
>
>
> On Tue, Apr 6, 2010 at 4:39 PM, Michael Wechner
>
> >> wrote:
>
> From your log-file it seems that these libraries are
> downloaded at
> the very beginning of the build:
>
> Apache Ant version 1.7.1 compiled on June 27 2008
> INFO: Building Yanel...
> Buildfile: src/build/build.xml
>
> init:
> [echo] INFO: Building with Apache Ant version 1.7.1
> compiled on
> June 27 2008 and Java version 1.6
> [echo] Yanel Home Dir:
> /Users/memo/Wyona/Work/Yanel/src/build/../../
>
> probe-proxy:
> [echo] Check if proxy has been set ...
>
> proxy:
>
>
> dependencies:
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.pom from central
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.pom
> from wyona.remote.repository
> [artifact:dependencies] Transferring 0K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.jar from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
> commons-io/commons-io/1.2/commons-io-1.2.jar from central
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jakarta-commons-discovery-0.2.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 70K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apache-jakarta-commons-id-0.1-dev-lcr357257.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 53K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jakarta-commons-logging-1.0.4.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 37K from
> wyona.remote.repository
> [artifact:dependencies] Downloading:
>
> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
> from wyona.remote.repository
> [artifact:dependencies] Transferring 64K from
> wyona.remote.repository
> [unzip] Expanding:
>
> /Users/memo/.m2/repository/ext/gwtext/2.0.2/gwtext-2.0.2.zip into
>
> /Users/memo/Wyona/Work/Yanel/build/webapps/yanel/htdocs/gwt-ext-2.0.2
>
>
> Now one has to analyze why. I guess the easiest is to
> delete the
> whole local Maven repo and build/log again and then analyze it
> again. (I assume you just deleted this libs instead the whole
> local repo, right?)
>
> Thanks
>
> Michi
>
> Mehmet Birgi wrote:
>
> Hi Michael
>
>
> On Tue, Apr 6, 2010 at 3:52 PM,
> >
>
>
> >>> wrote:
>
>
> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=7551
>
>
> michael.wechner@wyona.org
>
> >
>
> >> changed:
>
>
> What |Removed |Added
>
> ----------------------------------------------------------------------------
> AssignedTo|michael.wechner@wyona.org
>
> >
>
> >> |mehmet.birgi@wyona.com
>
> >
>
> >>
>
>
>
>
>
> ------- Comment #3 from michael.wechner@wyona.org
>
> >
>
> >> 2010-04-06 14:48 -------
>
> It would be important that you add the piece of the log
> file where
> one can see
> from where the Maven download is actually started. Right
> now one
> can only see,
> that it is downloaded, but not which resource or
> realm or
> component is actually
> triggering the download
>
>
> I am not sure I understand what you mean, I have
> attached the
> whole log file, can you point me to the proper entries?
> Maybe
> this information is not logged?
>
> Thanks,
>
> Memo
>
>
>
>
> --
> Configure bugmail:
>
> http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=email
> ------- You are receiving this mail because: -------
> You are the QA contact for the bug, or are watching
> the QA
> contact.
> --
> Yanel-development mailing list
> Yanel-development@wyona.com
> >
>
> >>
>
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> -- Mehmet Birgi
> www.wyona.com
>
>
>
>
> -- Yanel-development mailing list
> Yanel-development@wyona.com
> >
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
>
> --
> Yanel-development mailing list Yanel-development@wyona.com
>
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
>
>
>
> --
> Mehmet Birgi
> www.wyona.com
>
From michael.wechner at wyona.com Wed Apr 7 11:44:46 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Wed Apr 7 11:58:08 2010
Subject: [Yanel-dev] Login Zone Link
In-Reply-To: <4BBC4759.7060503@wyona.com>
References: <4BB3D12A.3000702@wyona.com> <4BBC4413.6090305@wyona.com>
<4BBC4759.7060503@wyona.com>
Message-ID: <4BBC540E.1030008@wyona.com>
Bruno von Rotz wrote:
> Cool. Given this is JS, would this mean it's only visible for human
> users, not for bots and other "non-wanted" visitors?
yes, except the bot is javascript enabled.
Cheers
Michi
> Bruno
> Michael Wechner schrieb:
>> Hi
>>
>> I have slightly improved this by moving the code into various
>> core-webapp files such that it can be re-used more easier.
>> In order to use it within your own website/realm one can reference it
>> from the XHTML head
>>
>>
>>
>>
>>
>>
>>
>>
>> > href="{$yarep.back2realm}{$yanel.reservedPrefix}/yanel-css/toolbar-zone.css"
>> rel="stylesheet"/>
>>
>>
>>
>> and add it to the body as
>>
>>
>>
>>
>>
>>
>> Also we have added a new smaller logo displaying our new kangaroo.
>>
>> Cheers
>>
>> Michi
>>
>> Michael Wechner wrote:
>>> Hi
>>>
>>> I have added a login-zone-link to the from scratch realm, which
>>> means if you hover with the mouse at
>>> the upper right corner of your browser, then an image will appear
>>> saying "Login" and allows the user
>>> to click in order to get to the login screen.
>>>
>>> I think this is a very nice for people familiar with Yanel to find
>>> the login page without having to make
>>> a link available or remember some hidden URL.
>>>
>>> Please give it a try and let me know what you think
>>>
>>> Thanks
>>>
>>> Michi
>>
>
>
From mehmet.birgi at wyona.com Wed Apr 7 11:48:09 2010
From: mehmet.birgi at wyona.com (Mehmet Birgi)
Date: Wed Apr 7 12:01:39 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To: <4BBC5018.2080506@wyona.com>
References: <20100406135219.5908310CAB7@server1.example.com>
<4BBB47B4.8020302@wyona.com>
<4BBC327B.1070305@wyona.com>
<4BBC5018.2080506@wyona.com>
Message-ID:
On Wed, Apr 7, 2010 at 11:27 AM, Michael Wechner
wrote:
> Mehmet Birgi wrote:
>
>> Re which one to use: in the maven documentation, it is suggested (
>> http://maven.apache.org/guides/getting-started/index.html#How_do_I_use_e=
xternal_dependencies,
>> 7. paragraph) that one use http://ibiblio.org/maven2 as a reference to
>> what the artifact id should be for any (apache) dependency. According to
>> that, we should use "commons-io", rather than "apache-jakarta-commons-io=
".
>>
>
> ibiblio is just one of the many Maven repositories. I think we need to
> approach this slightly different. First we should check if these
> libs are really the same. One first simple check is to open the jar files
> and compare:
>
> jar -tf
> /Users/michaelwechner/.m2/repository/apache-jakarta-commons/apache-jakart=
a-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
>
> another simple one is to count the number of files
>
> jar -tf
> /Users/michaelwechner/.m2/repository/apache-jakarta-commons/apache-jakart=
a-commons-io/1.2/apache-jakarta-commons-io-1.2.jar
> | wc -l
>
> and another is to compare the size
>
> ls -l
> /Users/michaelwechner/.m2/repository/commons-io/commons-io/1.2/commons-io=
-1.2.jar
>
> and yes it really seems that these are the same libs -;-)
>
> Yes, ibiblio contains
>
>
> http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-io/commons-io/
>
> but does not contain apache-jakarta-commons.
>
> Also commons is an ex-subproject of the jakarta project
>
> http://jakarta.apache.org/
>
> which is now
>
> http://commons.apache.org/io/
> http://commons.apache.org/io/download_io.cgi
>
> http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-1.4/pom=
.xml
>
> so based on this I would agree to replace the apache-jakarta-commons-io =
by
> commons-io.
>
> I have done this now at
>
> https://svn.wyona.com/repos/public/yanel/trunk/src/build/dependencies.xml
>
> and
>
>
> https://svn.wyona.com/repos/public/security/trunk/dependencies.xml
>
Thanks
>
>
>
> So I would suggest that we change all the dependencies referring to
>> "apache-jakarta-commons-io" to refer to "commons-io". Is that OK, or are
>> there other things to consider? If you agree, I will try to find out if =
this
>> is documented somewhere, and if not, add it to the best practices, OK?
>>
>
> I am not sure if the best practices are the best place for this, but I
> guess it's better to add it there than nowhere
We could add it here:
http://wiki.wyona.com/WyonaWiki/Wiki.jsp?page=3DCodingGuidelines
or better make a new page "MavenGuidelines", add it there, and link to it
from here: http://documentation.yanel.wyona.org/wiki/wiki/Guidelines
wdyt?
>
>>
>> Of the files above, commons-discovery and commons-logging are downloaded
>> twice (like commons-io) while commons-id is only downloaded once (but to=
the
>> "wrong" path in the maven repository).
>>
>> Shall I continue looking for inconsistencies? (There is also the grep
>> output of the src directory below to consider, I think there are a lot of
>> "wrong" references that might still download to this second location if =
we
>> correct the ref in wyona-org-security-core-0.2-dev-r48408.pom) The sure =
way
>> to clean this all up would probably be to go through the ~/.m2 directory=
and
>> check for each artifact if it is in the proper place, wdyt?
>>
>
> I think we should do it incrementally. If we find something, then let's
> replace, otherwise it doesn't hurt.
>
> Re commons-logging and the others we need to first check if these are
> really the same libs. Have you done this?
>
no, i will check those and report back
Thanks,
memo
>
> Thanks
>
> Michi
>
>
>
>> Cheers,
>>
>> Memo
>>
>>
>>
>> Cheers
>>
>> Michi
>>
>> Mehmet Birgi wrote:
>>
>> What I could find out so far:
>>
>> 1. The correct artifact-id is "commons-io", according to the
>> Maven docs, that point to ibiblio.org/maven2
>> as the
>>
>> reference
>> (
>> http://mirrors.ibiblio.org/pub/mirrors/maven2/commons-io/commons-io/mave=
n-metadata.xml
>> )
>>
>>
>>
>> 2. I have found a reference to the "incorrect" artifact-id,
>> "apache-jakarta-commons-io", but there seem to be several
>> others too:
>>
>> memo@Memos-MacSilver:~/Wyona/Work/Yanel $ grep -riI
>> apache-jakarta-commons-io src | grep -v '/\.svn/' | grep -v
>> '\.yarep/'
>> src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons"
>> artifactId=3D"apache-jakarta-commons-io"
>> src/contributions/resources/xinha/src/build/dependencies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>>
>> src/realms/welcome-admin/yanel/resources/update-webapp/src/build/depend=
encies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/resources/add-realm/src/build/dependencies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/resources/testing-control/src/build/dependencies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/resources/tinymce/src/build/dependencies.xml:
>> > artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/resources/xml/src/build/dependencies.xml: > groupId=3D"apache-jakarta-commons"
>> artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>> src/test/build.xml: > groupId=3D"apache-jakarta-commons"
>> artifactId=3D"apache-jakarta-commons-io" version=3D"1.2"/>
>>
>>
>> I am attaching the new build.log after deleting ~/.m2 to this
>> mail, I couldn't gain any new insights from it, but I will
>> gladly pursue any further hints.
>>
>> That's it for now, cheers & good night
>>
>> Memo
>>
>>
>>
>>
>>
>> On Tue, Apr 6, 2010 at 4:39 PM, Michael Wechner
>>
>> > >> wrote:
>>
>> From your log-file it seems that these libraries are
>> downloaded at
>> the very beginning of the build:
>>
>> Apache Ant version 1.7.1 compiled on June 27 2008
>> INFO: Building Yanel...
>> Buildfile: src/build/build.xml
>>
>> init:
>> [echo] INFO: Building with Apache Ant version 1.7.1
>> compiled on
>> June 27 2008 and Java version 1.6
>> [echo] Yanel Home Dir:
>> /Users/memo/Wyona/Work/Yanel/src/build/../../
>>
>> probe-proxy:
>> [echo] Check if proxy has been set ...
>>
>> proxy:
>>
>>
>> dependencies:
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.pom from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.pom from central
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jaka=
rta-commons-discovery-0.2.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apac=
he-jakarta-commons-id-0.1-dev-lcr357257.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jaka=
rta-commons-logging-1.0.4.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-com=
mons-io-1.2.pom
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 0K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.jar from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>> commons-io/commons-io/1.2/commons-io-1.2.jar from central
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-discovery/0.2/apache-jaka=
rta-commons-discovery-0.2.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 70K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-id/0.1-dev-lcr357257/apac=
he-jakarta-commons-id-0.1-dev-lcr357257.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 53K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-logging/1.0.4/apache-jaka=
rta-commons-logging-1.0.4.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 37K from
>> wyona.remote.repository
>> [artifact:dependencies] Downloading:
>>
>> apache-jakarta-commons/apache-jakarta-commons-io/1.2/apache-jakarta-com=
mons-io-1.2.jar
>> from wyona.remote.repository
>> [artifact:dependencies] Transferring 64K from
>> wyona.remote.repository
>> [unzip] Expanding:
>>
>> /Users/memo/.m2/repository/ext/gwtext/2.0.2/gwtext-2.0.2.zip into
>>
>> /Users/memo/Wyona/Work/Yanel/build/webapps/yanel/htdocs/gwt-ext-2.0.2
>>
>>
>> Now one has to analyze why. I guess the easiest is to
>> delete the
>> whole local Maven repo and build/log again and then analyze it
>> again. (I assume you just deleted this libs instead the whole
>> local repo, right?)
>>
>> Thanks
>>
>> Michi
>>
>> Mehmet Birgi wrote:
>>
>> Hi Michael
>>
>>
>> On Tue, Apr 6, 2010 at 3:52 PM, >
>> >
>>
>>
>> > >>> wrote:
>>
>>
>> http://bugzilla.wyona.com/cgi-bin/bugzilla/show_bug.cgi?id=3D7551
>>
>>
>> michael.wechner@wyona.org
>>
>> > >
>> >
>> > >> changed:
>>
>>
>> What |Removed |Added
>>
>> -----------------------------------------------------------------------=
-----
>> AssignedTo|michael.wechner@wyona.org
>>
>> > >
>> >
>> > >> |mehmet.birgi@wyona.com
>>
>> > >
>> >
>> > >>
>>
>>
>>
>>
>>
>> ------- Comment #3 from michael.wechner@wyona.org
>>
>> > >
>> >
>> > >> 2010-04-06 14:48 -------
>>
>> It would be important that you add the piece of the log
>> file where
>> one can see
>> from where the Maven download is actually started. Right
>> now one
>> can only see,
>> that it is downloaded, but not which resource or
>> realm or
>> component is actually
>> triggering the download
>>
>>
>> I am not sure I understand what you mean, I have
>> attached the
>> whole log file, can you point me to the proper entries?
>> Maybe
>> this information is not logged?
>>
>> Thanks,
>>
>> Memo
>>
>>
>>
>> --
>> Configure bugmail:
>>
>> http://bugzilla.wyona.com/cgi-bin/bugzilla/userprefs.cgi?tab=3Demail
>> ------- You are receiving this mail because: -------
>> You are the QA contact for the bug, or are watching
>> the QA
>> contact.
>> --
>> Yanel-development mailing list
>> Yanel-development@wyona.com
>> > >
>> >
>> > >>
>>
>>
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>>
>>
>>
>> -- Mehmet Birgi
>> www.wyona.com
>>
>>
>>
>>
>> -- Yanel-development mailing list
>> Yanel-development@wyona.com
>> > >
>>
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>>
>>
>>
>> -- Mehmet Birgi
>> www.wyona.com
>>
>>
>> -- Yanel-development mailing list Yanel-development@wyona.com
>>
>> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>>
>>
>>
>>
>> --
>> Mehmet Birgi
>> www.wyona.com
>>
>>
> --
> Yanel-development mailing list Yanel-development@wyona.com
> http://lists.wyona.org/cgi-bin/mailman/listinfo/yanel-development
>
-- =
Mehmet Birgi
www.wyona.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wyona.org/pipermail/yanel-development/attachments/2010040=
7/859f8f2e/attachment-0001.htm
From michael.wechner at wyona.com Wed Apr 7 11:57:16 2010
From: michael.wechner at wyona.com (Michael Wechner)
Date: Wed Apr 7 12:10:51 2010
Subject: [Yanel-dev] [Bug 7551] Duplicate Apache commons-io in .m2
In-Reply-To:
References: <20100406135219.5908310CAB7@server1.example.com> <4BBB47B4.8020302@wyona.com> <4BBC327B.1070305@wyona.com> <4BBC5018.2080506@wyona.com>