You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2010/08/01 06:25:19 UTC

svn commit: r981145 - in /ant/sandbox/antlibs: ./ all-trunks/ bar/trunk/ bar/trunk/docs/ bar/trunk/src/main/org/apache/ant/bar/

Author: bodewig
Date: Sun Aug  1 04:25:19 2010
New Revision: 981145

URL: http://svn.apache.org/viewvc?rev=981145&view=rev
Log:
files and externals for experiment with trunk

Added:
    ant/sandbox/antlibs/bar/trunk/NOTICE   (with props)
    ant/sandbox/antlibs/bar/trunk/build.xml   (with props)
    ant/sandbox/antlibs/bar/trunk/changes.xml   (with props)
    ant/sandbox/antlibs/bar/trunk/contributors.xml   (with props)
    ant/sandbox/antlibs/bar/trunk/docs/cover.html   (with props)
    ant/sandbox/antlibs/bar/trunk/docs/index.html   (with props)
    ant/sandbox/antlibs/bar/trunk/docs/toc.html   (with props)
    ant/sandbox/antlibs/bar/trunk/src/main/org/apache/ant/bar/antlib.xml   (with props)
    ant/sandbox/antlibs/bar/trunk/version.properties   (with props)
Modified:
    ant/sandbox/antlibs/all-trunks/   (props changed)
    ant/sandbox/antlibs/build.xml

Propchange: ant/sandbox/antlibs/all-trunks/
------------------------------------------------------------------------------
--- svn:externals (original)
+++ svn:externals Sun Aug  1 04:25:19 2010
@@ -1,4 +1,6 @@
 
+
+bar http://svn.apache.org/repos/asf/ant/sandbox/antlibs/bar/trunk
 dbpatch http://svn.apache.org/repos/asf/ant/sandbox/antlibs/dbpatch
 debian http://svn.apache.org/repos/asf/ant/sandbox/antlibs/debian/trunk
 foo http://svn.apache.org/repos/asf/ant/sandbox/antlibs/foo

Added: ant/sandbox/antlibs/bar/trunk/NOTICE
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/NOTICE?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/NOTICE (added)
+++ ant/sandbox/antlibs/bar/trunk/NOTICE Sun Aug  1 04:25:19 2010
@@ -0,0 +1,6 @@
+   Apache experiment with trunk/tags/branches
+   Copyright 2010 The Apache Software Foundation
+
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+

Propchange: ant/sandbox/antlibs/bar/trunk/NOTICE
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/build.xml?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/build.xml (added)
+++ ant/sandbox/antlibs/bar/trunk/build.xml Sun Aug  1 04:25:19 2010
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<project default="compile" name="bar">
+
+  <!-- easy way to override properties -->
+  <property file="build.properties"/>
+
+  <import file="common/build.xml"/>
+
+</project>

Propchange: ant/sandbox/antlibs/bar/trunk/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/changes.xml
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/changes.xml?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/changes.xml (added)
+++ ant/sandbox/antlibs/bar/trunk/changes.xml Sun Aug  1 04:25:19 2010
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<!DOCTYPE document
+[
+<!ELEMENT document (properties?, release+)>
+<!ELEMENT properties (title)>
+<!ELEMENT title (#PCDATA)>
+<!ELEMENT release (action*)>
+<!ELEMENT action (#PCDATA)>
+<!ATTLIST release
+          version CDATA #REQUIRED
+          date CDATA #REQUIRED
+          description CDATA #IMPLIED>
+<!ATTLIST action
+          issue CDATA #IMPLIED
+          type (add|fix|remove|update) #REQUIRED
+          breaks-bwc (true|false) #IMPLIED>
+]
+>
+<document>
+  <properties>
+    <title>Apache AntLib experiment with trunk/tags/branches</title>
+  </properties>
+
+  <release version="SVN trunk" date="unpublished">
+    <action type="add">
+      Initial import of experiment with trunk/tags/branches
+    </action>
+  </release>
+
+</document>

Propchange: ant/sandbox/antlibs/bar/trunk/changes.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/contributors.xml
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/contributors.xml?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/contributors.xml (added)
+++ ant/sandbox/antlibs/bar/trunk/contributors.xml Sun Aug  1 04:25:19 2010
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<!DOCTYPE contributors
+[
+<!ELEMENT name (first?, middle?, last)>
+<!ELEMENT contributors (introduction, name+)>
+<!ELEMENT first (#PCDATA)>
+<!ELEMENT introduction (#PCDATA)>
+<!ELEMENT middle (#PCDATA)>
+<!ELEMENT last (#PCDATA)>
+]
+>
+<contributors>
+  <introduction>
+    These are some of the many people who have helped with this Ant Library.
+  </introduction>
+
+  <name>
+    <first></first>
+    <last></last>
+  </name>
+</contributors>

Propchange: ant/sandbox/antlibs/bar/trunk/contributors.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/docs/cover.html
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/docs/cover.html?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/docs/cover.html (added)
+++ ant/sandbox/antlibs/bar/trunk/docs/cover.html Sun Aug  1 04:25:19 2010
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<html>
+  <head>
+    <meta http-equiv="Content-Language" content="en-us"/>
+    <link rel="stylesheet" type="text/css" href="style.css"/>
+    <title>experiment with trunk/tags/branches</title>
+  </head>
+  <body>
+    <h2>experiment with trunk/tags/branches</h2>
+    <p> TODO: something about this antlib </p>
+    <h3>What's this?</h3>
+    <h3>Building</h3>
+    <p>dependencies on Ant <i>version?</i>, external libs and tools</p>
+    <h3>Using</h3>
+  </body>
+</html>

Propchange: ant/sandbox/antlibs/bar/trunk/docs/cover.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/docs/index.html
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/docs/index.html?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/docs/index.html (added)
+++ ant/sandbox/antlibs/bar/trunk/docs/index.html Sun Aug  1 04:25:19 2010
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<html>
+  <head>
+    <meta http-equiv="Content-Language" content="en-us"/>
+    <link rel="stylesheet" type="text/css" href="style.css"/>
+    <title>User Manual - experiment with trunk/tags/branches</title>
+  </head>
+  <frameset cols="26%,74%">
+    <frame src="toc.html" name="navFrame"/>
+    <frame src="cover.html" name="mainFrame"/>
+  </frameset>
+  <noframes>
+    <H2>User Manual - experiment with trunk/tags/branches</H2>
+    <a href="toc.html">User Manual - experiment with trunk/tags/branches</a>
+  </noframes>
+</html>

Propchange: ant/sandbox/antlibs/bar/trunk/docs/index.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/docs/toc.html
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/docs/toc.html?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/docs/toc.html (added)
+++ ant/sandbox/antlibs/bar/trunk/docs/toc.html Sun Aug  1 04:25:19 2010
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<html>
+  <head>
+    <meta http-equiv="Content-Language" content="en-us"/>
+    <link rel="stylesheet" type="text/css" href="style.css"/>
+    <title>experiment with trunk/tags/branches</title>
+    <base target="mainFrame"/>
+  </head>
+  <body>
+    <a href="cover.html">Overview</a><br/>
+    <h2>Tasks</h2>
+    <a href="task.html">task</a><br/>
+  </body>
+</html>

Propchange: ant/sandbox/antlibs/bar/trunk/docs/toc.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/src/main/org/apache/ant/bar/antlib.xml
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/src/main/org/apache/ant/bar/antlib.xml?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/src/main/org/apache/ant/bar/antlib.xml (added)
+++ ant/sandbox/antlibs/bar/trunk/src/main/org/apache/ant/bar/antlib.xml Sun Aug  1 04:25:19 2010
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<antlib>
+<!--
+  <taskdef
+      name=""
+      classname="org.apache.ant.bar."
+  />
+  <macrodef name="">
+    <attribute name="" default=""/>
+    <element name="" optional="yes"/>
+    <text name="text" optional="yes" trim="true"/>
+    <sequential>
+      <echo/>
+    </sequential>
+  </macrodef>
+  <presetdef name="">
+  </presetdef>
+-->
+</antlib>

Propchange: ant/sandbox/antlibs/bar/trunk/src/main/org/apache/ant/bar/antlib.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ant/sandbox/antlibs/bar/trunk/version.properties
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/bar/trunk/version.properties?rev=981145&view=auto
==============================================================================
--- ant/sandbox/antlibs/bar/trunk/version.properties (added)
+++ ant/sandbox/antlibs/bar/trunk/version.properties Sun Aug  1 04:25:19 2010
@@ -0,0 +1,15 @@
+#  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.
+artifact.version=1.0alpha
\ No newline at end of file

Propchange: ant/sandbox/antlibs/bar/trunk/version.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: ant/sandbox/antlibs/build.xml
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/build.xml?rev=981145&r1=981144&r2=981145&view=diff
==============================================================================
--- ant/sandbox/antlibs/build.xml (original)
+++ ant/sandbox/antlibs/build.xml Sun Aug  1 04:25:19 2010
@@ -108,13 +108,13 @@
       <arg value="ps"/>
       <arg value="svn:externals"/>
       <arg value="common http://svn.apache.org/repos/asf/ant/antlibs/common/trunk"/>
-      <arg value="${antlib.shortname}"/>
+      <arg value="${antlib.trunk}"/>
     </svn>
     <svn>
       <arg value="commit"/>
       <arg value="-m"/>
       <arg value="creating skeleton directory structure for ${antlib.fullname}"/>
-      <arg value="${antlib.trunk}"/>
+      <arg value="${antlib.shortname}"/>
     </svn>
     <!-- need to wait a few seconds to give European svn mirror time to
          catch up -->