You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general-cvs@xml.apache.org by cr...@apache.org on 2005/10/13 07:25:33 UTC

svn commit: r320667 - /xml/site/publish.xml

Author: crossley
Date: Wed Oct 12 22:25:30 2005
New Revision: 320667

URL: http://svn.apache.org/viewcvs?rev=320667&view=rev
Log:
Do dos2unix and 'svn propset svn:eol-style native'

Modified:
    xml/site/publish.xml   (contents, props changed)

Modified: xml/site/publish.xml
URL: http://svn.apache.org/viewcvs/xml/site/publish.xml?rev=320667&r1=320666&r2=320667&view=diff
==============================================================================
--- xml/site/publish.xml (original)
+++ xml/site/publish.xml Wed Oct 12 22:25:30 2005
@@ -1,74 +1,74 @@
-<?xml version="1.0"?>
-<!--
-  Copyright 2005 The Apache Software Foundation
-
-  Licensed 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.
--->
-<!--
-This is the publishing file for ForrestBot.
-
-Running "ant -f publish.xml" will build the XML site and deploy it using SCP on xml.apache.org.
-
-$Id$
--->
-<project name="forrest-docs" default="main">
-
-  <property name="build.work-dir" location="./build/forrest/work"/>
-  <property name="build.log-dir" location="./build/forrest/log"/>
-
-  <property name="getsrc.local.root-dir" location="."/>
-  <!--property name="getsrc.svn.url" value="http://svn.apache.org/repos/asf/xml/site"/-->
-  <target name="getsrc" depends="getsrc.clean-workdir, getsrc.local"/>
-  
-  <!-- create this secret file to be an ant project (not stored in CVS or SVN)
-    that sets deploy.scp.user and deploy.scp.keyfile properties.
-    See forrest/etc/publishing_our_site.txt
-
-    Here's an example of such a file (place it one directory above the checkout directory):
-    <project>
-      <property name="deploy.scp.user" value="johndoe"/>
-      <property name="deploy.scp.keyfile" value="/path/to/my/private/key"/>
-    </project>
-   -->
-  <import file="../deploy.settings" optional="true"/>
-
-  <property name="deploy.scp.host" value="cvs.apache.org"/>
-  <property name="deploy.scp.dest" value="${deploy.scp.user}@cvs.apache.org:/www/xml.apache.org"/>
-  <target name="deploy.scp-alt" unless="build.failed" description="FB: Deploy to a remote location via scp">
-    <if>
-      <not><isset property="deploy.scp.passphrase"/></not>
-      <then>
-        <input addproperty="deploy.scp.passphrase" message="Enter passphrase for your private key for scp to ${deploy.scp.dest}:"/>
-      </then>
-    </if>
-    <scp todir="${deploy.scp.dest}" keyfile="${deploy.scp.keyfile}" passphrase="${deploy.scp.passphrase}">
-     <fileset dir="${build.site-dir}"/>
-    </scp>
-  </target>
-  <target name="deploy.remote.fix.perms" depends="deploy.scp-alt" unless="build.failed" description="Fixes group permissions on newly uploaded files">
-    <if>
-      <not><isset property="deploy.scp.passphrase"/></not>
-      <then>
-        <input addproperty="deploy.scp.passphrase" message="Enter passphrase for your private key for scp to ${deploy.scp.dest}:"/>
-      </then>
-    </if>
-    <!-- this is necessary because new files are not group writable -->
-    <sshexec host="${deploy.scp.host}" username="${deploy.scp.user}" 
-        keyfile="${deploy.scp.keyfile}" passphrase="${deploy.scp.passphrase}"
-        command="cd /www/xml.apache.org;chgrp -R xml *;chmod -R g+rw *"/>
-  </target>
-  <target name="deploy" depends="deploy.scp-alt, deploy.remote.fix.perms"/>
-
-  <property environment="env"/>
-  <import file="${env.FORREST_HOME}/tools/forrestbot/core/forrestbot.xml"/>
-</project>
\ No newline at end of file
+<?xml version="1.0"?>
+<!--
+  Copyright 2005 The Apache Software Foundation
+
+  Licensed 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.
+-->
+<!--
+This is the publishing file for ForrestBot.
+
+Running "ant -f publish.xml" will build the XML site and deploy it using SCP on xml.apache.org.
+
+$Id$
+-->
+<project name="forrest-docs" default="main">
+
+  <property name="build.work-dir" location="./build/forrest/work"/>
+  <property name="build.log-dir" location="./build/forrest/log"/>
+
+  <property name="getsrc.local.root-dir" location="."/>
+  <!--property name="getsrc.svn.url" value="http://svn.apache.org/repos/asf/xml/site"/-->
+  <target name="getsrc" depends="getsrc.clean-workdir, getsrc.local"/>
+  
+  <!-- create this secret file to be an ant project (not stored in CVS or SVN)
+    that sets deploy.scp.user and deploy.scp.keyfile properties.
+    See forrest/etc/publishing_our_site.txt
+
+    Here's an example of such a file (place it one directory above the checkout directory):
+    <project>
+      <property name="deploy.scp.user" value="johndoe"/>
+      <property name="deploy.scp.keyfile" value="/path/to/my/private/key"/>
+    </project>
+   -->
+  <import file="../deploy.settings" optional="true"/>
+
+  <property name="deploy.scp.host" value="cvs.apache.org"/>
+  <property name="deploy.scp.dest" value="${deploy.scp.user}@cvs.apache.org:/www/xml.apache.org"/>
+  <target name="deploy.scp-alt" unless="build.failed" description="FB: Deploy to a remote location via scp">
+    <if>
+      <not><isset property="deploy.scp.passphrase"/></not>
+      <then>
+        <input addproperty="deploy.scp.passphrase" message="Enter passphrase for your private key for scp to ${deploy.scp.dest}:"/>
+      </then>
+    </if>
+    <scp todir="${deploy.scp.dest}" keyfile="${deploy.scp.keyfile}" passphrase="${deploy.scp.passphrase}">
+     <fileset dir="${build.site-dir}"/>
+    </scp>
+  </target>
+  <target name="deploy.remote.fix.perms" depends="deploy.scp-alt" unless="build.failed" description="Fixes group permissions on newly uploaded files">
+    <if>
+      <not><isset property="deploy.scp.passphrase"/></not>
+      <then>
+        <input addproperty="deploy.scp.passphrase" message="Enter passphrase for your private key for scp to ${deploy.scp.dest}:"/>
+      </then>
+    </if>
+    <!-- this is necessary because new files are not group writable -->
+    <sshexec host="${deploy.scp.host}" username="${deploy.scp.user}" 
+        keyfile="${deploy.scp.keyfile}" passphrase="${deploy.scp.passphrase}"
+        command="cd /www/xml.apache.org;chgrp -R xml *;chmod -R g+rw *"/>
+  </target>
+  <target name="deploy" depends="deploy.scp-alt, deploy.remote.fix.perms"/>
+
+  <property environment="env"/>
+  <import file="${env.FORREST_HOME}/tools/forrestbot/core/forrestbot.xml"/>
+</project>

Propchange: xml/site/publish.xml
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: general-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: general-cvs-help@xml.apache.org