You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by gs...@apache.org on 2008/04/13 19:40:43 UTC

svn commit: r647594 - in /incubator/ivy/site/test: ivyconf-include-http-absolute-file.xml ivyconf-include-http-relative-file.xml ivyconf-include-http-relative-url.xml ivyconf-include-http-url.xml

Author: gscokart
Date: Sun Apr 13 10:40:39 2008
New Revision: 647594

URL: http://svn.apache.org/viewvc?rev=647594&view=rev
Log:
Prepare a test for IVY-372 (include in ivysettings should use relative path)

Added:
    incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml   (with props)
    incubator/ivy/site/test/ivyconf-include-http-relative-file.xml   (with props)
    incubator/ivy/site/test/ivyconf-include-http-relative-url.xml   (with props)
Modified:
    incubator/ivy/site/test/ivyconf-include-http-url.xml

Added: incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml?rev=647594&view=auto
==============================================================================
--- incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml (added)
+++ incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml Sun Apr 13 10:40:39 2008
@@ -0,0 +1,24 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<ivysettings>
+	<include file="${user.dir}/test/java/org/apache/ivy/core/settings/ivysettings-macro.xml"/>
+	<resolvers>
+		<mymacro name="includeworks" mymainrep="included/myrep" mysecondrep="included/secondrep"/>
+	</resolvers>
+</ivysettings>

Propchange: incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/ivy/site/test/ivyconf-include-http-relative-file.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-relative-file.xml?rev=647594&view=auto
==============================================================================
--- incubator/ivy/site/test/ivyconf-include-http-relative-file.xml (added)
+++ incubator/ivy/site/test/ivyconf-include-http-relative-file.xml Sun Apr 13 10:40:39 2008
@@ -0,0 +1,21 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<ivysettings>
+	<include file="ivyconf.xml"/>
+</ivysettings>

Propchange: incubator/ivy/site/test/ivyconf-include-http-relative-file.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/ivy/site/test/ivyconf-include-http-relative-url.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-relative-url.xml?rev=647594&view=auto
==============================================================================
--- incubator/ivy/site/test/ivyconf-include-http-relative-url.xml (added)
+++ incubator/ivy/site/test/ivyconf-include-http-relative-url.xml Sun Apr 13 10:40:39 2008
@@ -0,0 +1,21 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<ivysettings>
+	<include url="ivyconf.xml"/>
+</ivysettings>

Propchange: incubator/ivy/site/test/ivyconf-include-http-relative-url.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/ivy/site/test/ivyconf-include-http-url.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-url.xml?rev=647594&r1=647593&r2=647594&view=diff
==============================================================================
--- incubator/ivy/site/test/ivyconf-include-http-url.xml (original)
+++ incubator/ivy/site/test/ivyconf-include-http-url.xml Sun Apr 13 10:40:39 2008
@@ -16,6 +16,6 @@
    specific language governing permissions and limitations
    under the License.    
 -->
-<ivyconf>
+<ivysettings>
 	<include url="http://incubator.apache.org/ivy/test/ivyconf.xml"/>
-</ivyconf>
+</ivysettings>



Re: Fwd: svn commit: r647594 - in /incubator/ivy/site/test: ivyconf-include-http-absolute-file.xml ivyconf-include-http-relative-file.xml ivyconf-include-http-relative-url.xml ivyconf-include-http-url.xml

Posted by Gilles Scokart <gs...@gmail.com>.
That must be the reason!  I was sure I was missing something...
Thanks, I will fix that immediatly.

Gilles

On 14/04/2008, Stefan Bodewig <bo...@apache.org> wrote:
> On Sun, 13 Apr 2008, Gilles Scokart <gs...@gmail.com> wrote:
>
>  > The notification of commit done in
>  > https://svn.apache.org/repos/asf/incubator/ivy/site/ are still sent
>  > to ivy-commits, and not to notifications@ant.apache.org.
>
>
> but get forwarded from there to notifications.
>
>
>  > Is it something that we should raise to infra (on the list or via a
>  > jira?) or can someone here fix that ?
>
>
> I can fix that, but then again, why are you still committing to
>  something in /infrastructure, the site isn't living there anymore, is
>  it?
>
>  I'd rather completely remove the infrastructure svn tree than changing
>  the notifications scheme.
>
>  Stefan
>
>  ---------------------------------------------------------------------
>  To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
>  For additional commands, e-mail: dev-help@ant.apache.org
>
>


-- 
Gilles Scokart

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org


Re: Fwd: svn commit: r647594 - in /incubator/ivy/site/test: ivyconf-include-http-absolute-file.xml ivyconf-include-http-relative-file.xml ivyconf-include-http-relative-url.xml ivyconf-include-http-url.xml

Posted by Stefan Bodewig <bo...@apache.org>.
On Sun, 13 Apr 2008, Gilles Scokart <gs...@gmail.com> wrote:

> The notification of commit done in
> https://svn.apache.org/repos/asf/incubator/ivy/site/ are still sent
> to ivy-commits, and not to notifications@ant.apache.org.

but get forwarded from there to notifications.

> Is it something that we should raise to infra (on the list or via a
> jira?) or can someone here fix that ?

I can fix that, but then again, why are you still committing to
something in /infrastructure, the site isn't living there anymore, is
it?

I'd rather completely remove the infrastructure svn tree than changing
the notifications scheme.

Stefan

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org


Fwd: svn commit: r647594 - in /incubator/ivy/site/test: ivyconf-include-http-absolute-file.xml ivyconf-include-http-relative-file.xml ivyconf-include-http-relative-url.xml ivyconf-include-http-url.xml

Posted by Gilles Scokart <gs...@gmail.com>.
The notification of commit done in
https://svn.apache.org/repos/asf/incubator/ivy/site/ are still sent to
ivy-commits, and not to notifications@ant.apache.org.

Is it something that we should raise to infra (on the list or via a
jira?) or can someone here fix that ?


Gilles

---------- Forwarded message ----------
From: gscokart@apache.org <gs...@apache.org>
Date: 13 Apr 2008 19:40
Subject: svn commit: r647594 - in /incubator/ivy/site/test:
ivyconf-include-http-absolute-file.xml
ivyconf-include-http-relative-file.xml
ivyconf-include-http-relative-url.xml ivyconf-include-http-url.xml
To: ivy-commits@incubator.apache.org


Author: gscokart
 Date: Sun Apr 13 10:40:39 2008
 New Revision: 647594

 URL: http://svn.apache.org/viewvc?rev=647594&view=rev
 Log:
 Prepare a test for IVY-372 (include in ivysettings should use relative path)

 Added:
    incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml
(with props)
    incubator/ivy/site/test/ivyconf-include-http-relative-file.xml
(with props)
    incubator/ivy/site/test/ivyconf-include-http-relative-url.xml   (with props)
 Modified:
    incubator/ivy/site/test/ivyconf-include-http-url.xml

 Added: incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml
 URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml?rev=647594&view=auto
 ==============================================================================
 --- incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml (added)
 +++ incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml
Sun Apr 13 10:40:39 2008
 @@ -0,0 +1,24 @@
 +<!--
 +   Licensed to the Apache Software Foundation (ASF) under one
 +   or more contributor license agreements.  See the NOTICE file
 +   distributed with this work for additional information
 +   regarding copyright ownership.  The ASF licenses this file
 +   to you under the Apache License, Version 2.0 (the
 +   "License"); you may not use this file except in compliance
 +   with the License.  You may obtain a copy of the License at
 +
 +     http://www.apache.org/licenses/LICENSE-2.0
 +
 +   Unless required by applicable law or agreed to in writing,
 +   software distributed under the License is distributed on an
 +   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 +   KIND, either express or implied.  See the License for the
 +   specific language governing permissions and limitations
 +   under the License.
 +-->
 +<ivysettings>
 +       <include
file="${user.dir}/test/java/org/apache/ivy/core/settings/ivysettings-macro.xml"/>
 +       <resolvers>
 +               <mymacro name="includeworks"
mymainrep="included/myrep" mysecondrep="included/secondrep"/>
 +       </resolvers>
 +</ivysettings>

 Propchange: incubator/ivy/site/test/ivyconf-include-http-absolute-file.xml
 ------------------------------------------------------------------------------
    svn:eol-style = native

 Added: incubator/ivy/site/test/ivyconf-include-http-relative-file.xml
 URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-relative-file.xml?rev=647594&view=auto
 ==============================================================================
 --- incubator/ivy/site/test/ivyconf-include-http-relative-file.xml (added)
 +++ incubator/ivy/site/test/ivyconf-include-http-relative-file.xml
Sun Apr 13 10:40:39 2008
 @@ -0,0 +1,21 @@
 +<!--
 +   Licensed to the Apache Software Foundation (ASF) under one
 +   or more contributor license agreements.  See the NOTICE file
 +   distributed with this work for additional information
 +   regarding copyright ownership.  The ASF licenses this file
 +   to you under the Apache License, Version 2.0 (the
 +   "License"); you may not use this file except in compliance
 +   with the License.  You may obtain a copy of the License at
 +
 +     http://www.apache.org/licenses/LICENSE-2.0
 +
 +   Unless required by applicable law or agreed to in writing,
 +   software distributed under the License is distributed on an
 +   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 +   KIND, either express or implied.  See the License for the
 +   specific language governing permissions and limitations
 +   under the License.
 +-->
 +<ivysettings>
 +       <include file="ivyconf.xml"/>
 +</ivysettings>

 Propchange: incubator/ivy/site/test/ivyconf-include-http-relative-file.xml
 ------------------------------------------------------------------------------
    svn:eol-style = native

 Added: incubator/ivy/site/test/ivyconf-include-http-relative-url.xml
 URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-relative-url.xml?rev=647594&view=auto
 ==============================================================================
 --- incubator/ivy/site/test/ivyconf-include-http-relative-url.xml (added)
 +++ incubator/ivy/site/test/ivyconf-include-http-relative-url.xml Sun
Apr 13 10:40:39 2008
 @@ -0,0 +1,21 @@
 +<!--
 +   Licensed to the Apache Software Foundation (ASF) under one
 +   or more contributor license agreements.  See the NOTICE file
 +   distributed with this work for additional information
 +   regarding copyright ownership.  The ASF licenses this file
 +   to you under the Apache License, Version 2.0 (the
 +   "License"); you may not use this file except in compliance
 +   with the License.  You may obtain a copy of the License at
 +
 +     http://www.apache.org/licenses/LICENSE-2.0
 +
 +   Unless required by applicable law or agreed to in writing,
 +   software distributed under the License is distributed on an
 +   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 +   KIND, either express or implied.  See the License for the
 +   specific language governing permissions and limitations
 +   under the License.
 +-->
 +<ivysettings>
 +       <include url="ivyconf.xml"/>
 +</ivysettings>

 Propchange: incubator/ivy/site/test/ivyconf-include-http-relative-url.xml
 ------------------------------------------------------------------------------
    svn:eol-style = native

 Modified: incubator/ivy/site/test/ivyconf-include-http-url.xml
 URL: http://svn.apache.org/viewvc/incubator/ivy/site/test/ivyconf-include-http-url.xml?rev=647594&r1=647593&r2=647594&view=diff
 ==============================================================================
 --- incubator/ivy/site/test/ivyconf-include-http-url.xml (original)
 +++ incubator/ivy/site/test/ivyconf-include-http-url.xml Sun Apr 13
10:40:39 2008
 @@ -16,6 +16,6 @@
    specific language governing permissions and limitations
    under the License.
  -->
 -<ivyconf>
 +<ivysettings>
        <include url="http://incubator.apache.org/ivy/test/ivyconf.xml"/>
 -</ivyconf>
 +</ivysettings>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org