You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ma...@apache.org on 2006/06/29 16:38:12 UTC

svn commit: r418059 - in /apr/site/trunk: docs/ xdocs/ xdocs/stylesheets/

Author: maxb
Date: Thu Jun 29 07:38:11 2006
New Revision: 418059

URL: http://svn.apache.org/viewvc?rev=418059&view=rev
Log:
Change "SVN" to "Subversion" everywhere it is used as the name of the project
or software, rather than as a specific reference to the executable command,
or as an abbreviation, throughout the website.

* xdocs/anonsvn.xml
* xdocs/compiling_unix.xml
* xdocs/compiling_win32.xml
* xdocs/mailing-lists.xml
* xdocs/stylesheets/project.xml

* docs/: Rebuild.

Modified:
    apr/site/trunk/docs/anonsvn.html
    apr/site/trunk/docs/compiling_unix.html
    apr/site/trunk/docs/compiling_win32.html
    apr/site/trunk/docs/download.html
    apr/site/trunk/docs/guidelines.html
    apr/site/trunk/docs/index.html
    apr/site/trunk/docs/mailing-lists.html
    apr/site/trunk/docs/patches.html
    apr/site/trunk/docs/projects.html
    apr/site/trunk/docs/security_report.html
    apr/site/trunk/docs/versioning.html
    apr/site/trunk/xdocs/anonsvn.xml
    apr/site/trunk/xdocs/compiling_unix.xml
    apr/site/trunk/xdocs/compiling_win32.xml
    apr/site/trunk/xdocs/mailing-lists.xml
    apr/site/trunk/xdocs/stylesheets/project.xml

Modified: apr/site/trunk/docs/anonsvn.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/anonsvn.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/anonsvn.html (original)
+++ apr/site/trunk/docs/anonsvn.html Thu Jun 29 07:38:11 2006
@@ -4,7 +4,7 @@
  <head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
        <meta name="author" content="APR Developers" /><meta name="email" content="dev@apr.apache.org" />
-    <title>How To Use Anonymous SVN - The Apache Portable Runtime Project</title>
+    <title>How To Use Anonymous Subversion - The Apache Portable Runtime Project</title>
  </head>
  <body bgcolor="#ffffff" text="#000000" link="#525D76">
 <p><a href="/"><img src="./images/apr_logo_wide.png" alt="The Apache Portable Runtime Project" border="0"/></a></p>
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>
@@ -48,22 +48,23 @@
                 <table border="0" cellspacing="0" cellpadding="2" width="100%">
  <tr><td bgcolor="#525D76">
   <font color="#ffffff" face="arial,helvetica,sanserif">
-   <a name="svn"><strong>How To Use Anonymous SVN</strong></a>
+   <a name="svn"><strong>How To Use Anonymous Subversion</strong></a>
   </font>
  </td></tr>
  <tr><td>
   <blockquote>
 <p>Developers with commit access to the Apache source tree normally
-use SVN to keep their local copies of the source tree up to date
-automatically.  This is a very useful ability that also allows
-for getting change history of files, diffs between arbitrary 
-versions, etc.  This is also the method used to commit changes 
-to the source tree.</p>
-<p>For those who do not have commit access to the source tree, anonymous
-svn access offers an alternative way to do most of this using read-only
-access to the SVN repository.  The obvious difference is that you can't
-commit changes using anonymous SVN access.</p>
-<p>Anonymous SVN access is available as follows:</p>
+use Subversion to keep their local copies of the source tree up to
+date automatically.  This is a very useful ability that also allows
+for getting change history of files, diffs between arbitrary versions,
+etc.  This is also the method used to commit changes to the source
+tree.</p>
+<p>For those who do not have commit access to the source tree,
+anonymous Subversion access offers an alternative way to do most of
+this using read-only access to the Subversion repository.  The obvious
+difference is that you can't commit changes using anonymous Subversion
+access.</p>
+<p>Anonymous Subversion access is available as follows:</p>
 <pre>
   svn co <a href="http://svn.apache.org/repos/asf/apr/apr/trunk/">http://svn.apache.org/repos/asf/apr/apr/trunk/</a> apr
   svn co <a href="http://svn.apache.org/repos/asf/apr/apr-util/trunk/">http://svn.apache.org/repos/asf/apr/apr-util/trunk/</a> apr-util

Modified: apr/site/trunk/docs/compiling_unix.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/compiling_unix.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/compiling_unix.html (original)
+++ apr/site/trunk/docs/compiling_unix.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>
@@ -66,7 +66,7 @@
    system-wide shared library; it currently works best when tied
    directly to the application using it.
 </p>
-<p>Note that if you are compiling directly from the SVN repository,
+<p>Note that if you are compiling directly from the Subversion repository,
    you'll need GNU autoconf and GNU libtool installed, and you'll need
    to run <code>./buildconf</code> before running the commands listed above.
 </p>

Modified: apr/site/trunk/docs/compiling_win32.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/compiling_win32.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/compiling_win32.html (original)
+++ apr/site/trunk/docs/compiling_win32.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>
@@ -202,11 +202,11 @@
    track down problems.</p>
 <table border="1" cellpadding="5"><tr><td>
 <strong>For Visual Studio C++ 5.0 command line users</strong>:
-   Only the .dsp files are maintained within SVN.  Win32 .mak files
-   are NOT maintained in SVN, due to the tremendous waste of
-   reviewer's time.  Therefore, you cannot rely on the NMAKE commands
-   above to build revised .dsp project files unless you then export
-   all .mak files yourself from the project.
+   Only the .dsp files are maintained within Subversion.  Win32 .mak
+   files are NOT maintained in Subversion, due to the tremendous waste
+   of reviewer's time.  Therefore, you cannot rely on the NMAKE
+   commands above to build revised .dsp project files unless you then
+   export all .mak files yourself from the project.
 
 </td></tr></table>
   </blockquote>

Modified: apr/site/trunk/docs/download.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/download.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/download.html (original)
+++ apr/site/trunk/docs/download.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/docs/guidelines.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/guidelines.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/guidelines.html (original)
+++ apr/site/trunk/docs/guidelines.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/docs/index.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/index.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/index.html (original)
+++ apr/site/trunk/docs/index.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/docs/mailing-lists.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/mailing-lists.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/mailing-lists.html (original)
+++ apr/site/trunk/docs/mailing-lists.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>
@@ -117,9 +117,9 @@
  <tr><td>
   <blockquote>
 <p>
-  This list is used to notify developers of changes to the master SVN
-  repository.  As changes are applied, SVN log messages are sent to
-  everyone who is a member of the list.
+  This list is used to notify developers of changes to the master
+  Subversion repository.  As changes are applied, Subversion log
+  messages are sent to everyone who is a member of the list.
 </p>
 <font color="#000000" size="-1" face="arial,helvetica,sanserif">
 <table width="100%">

Modified: apr/site/trunk/docs/patches.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/patches.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/patches.html (original)
+++ apr/site/trunk/docs/patches.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/docs/projects.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/projects.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/projects.html (original)
+++ apr/site/trunk/docs/projects.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/docs/security_report.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/security_report.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/security_report.html (original)
+++ apr/site/trunk/docs/security_report.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/docs/versioning.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/versioning.html?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/docs/versioning.html (original)
+++ apr/site/trunk/docs/versioning.html Thu Jun 29 07:38:11 2006
@@ -14,7 +14,7 @@
     <td valign="top" nowrap="nowrap">
            <p><b>Get Involved</b></p>
     <menu compact="compact">
-          <li><a href="anonsvn.html">SVN</a></li>
+          <li><a href="anonsvn.html">Subversion</a></li>
           <li><a href="mailing-lists.html">Mailing Lists</a></li>
           <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
           <li><a href="compiling_win32.html">Build on Win32</a></li>

Modified: apr/site/trunk/xdocs/anonsvn.xml
URL: http://svn.apache.org/viewvc/apr/site/trunk/xdocs/anonsvn.xml?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/xdocs/anonsvn.xml (original)
+++ apr/site/trunk/xdocs/anonsvn.xml Thu Jun 29 07:38:11 2006
@@ -2,25 +2,26 @@
 <document>
 <properties>
   <author email="dev@apr.apache.org">APR Developers</author>
-  <title>How To Use Anonymous SVN</title>
+  <title>How To Use Anonymous Subversion</title>
 </properties>
 <body>
 <section id="svn">
-<title>How To Use Anonymous SVN</title>
+<title>How To Use Anonymous Subversion</title>
 
 <p>Developers with commit access to the Apache source tree normally
-use SVN to keep their local copies of the source tree up to date
-automatically.  This is a very useful ability that also allows
-for getting change history of files, diffs between arbitrary 
-versions, etc.  This is also the method used to commit changes 
-to the source tree.</p>
+use Subversion to keep their local copies of the source tree up to
+date automatically.  This is a very useful ability that also allows
+for getting change history of files, diffs between arbitrary versions,
+etc.  This is also the method used to commit changes to the source
+tree.</p>
 
-<p>For those who do not have commit access to the source tree, anonymous
-svn access offers an alternative way to do most of this using read-only
-access to the SVN repository.  The obvious difference is that you can't
-commit changes using anonymous SVN access.</p>
+<p>For those who do not have commit access to the source tree,
+anonymous Subversion access offers an alternative way to do most of
+this using read-only access to the Subversion repository.  The obvious
+difference is that you can't commit changes using anonymous Subversion
+access.</p>
 
-<p>Anonymous SVN access is available as follows:</p>
+<p>Anonymous Subversion access is available as follows:</p>
 
 <pre>
   svn co <a href="http://svn.apache.org/repos/asf/apr/apr/trunk/"

Modified: apr/site/trunk/xdocs/compiling_unix.xml
URL: http://svn.apache.org/viewvc/apr/site/trunk/xdocs/compiling_unix.xml?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/xdocs/compiling_unix.xml (original)
+++ apr/site/trunk/xdocs/compiling_unix.xml Thu Jun 29 07:38:11 2006
@@ -26,7 +26,7 @@
    directly to the application using it.
 </p>
 
-<p>Note that if you are compiling directly from the SVN repository,
+<p>Note that if you are compiling directly from the Subversion repository,
    you'll need GNU autoconf and GNU libtool installed, and you'll need
    to run <code>./buildconf</code> before running the commands listed above.
 </p>

Modified: apr/site/trunk/xdocs/compiling_win32.xml
URL: http://svn.apache.org/viewvc/apr/site/trunk/xdocs/compiling_win32.xml?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/xdocs/compiling_win32.xml (original)
+++ apr/site/trunk/xdocs/compiling_win32.xml Thu Jun 29 07:38:11 2006
@@ -160,11 +160,11 @@
    track down problems.</p>
 
 <note><strong>For Visual Studio C++ 5.0 command line users</strong>:
-   Only the .dsp files are maintained within SVN.  Win32 .mak files
-   are NOT maintained in SVN, due to the tremendous waste of
-   reviewer's time.  Therefore, you cannot rely on the NMAKE commands
-   above to build revised .dsp project files unless you then export
-   all .mak files yourself from the project.
+   Only the .dsp files are maintained within Subversion.  Win32 .mak
+   files are NOT maintained in Subversion, due to the tremendous waste
+   of reviewer's time.  Therefore, you cannot rely on the NMAKE
+   commands above to build revised .dsp project files unless you then
+   export all .mak files yourself from the project.
 </note>
 
 </section>

Modified: apr/site/trunk/xdocs/mailing-lists.xml
URL: http://svn.apache.org/viewvc/apr/site/trunk/xdocs/mailing-lists.xml?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/xdocs/mailing-lists.xml (original)
+++ apr/site/trunk/xdocs/mailing-lists.xml Thu Jun 29 07:38:11 2006
@@ -67,9 +67,9 @@
 <section id="apr-commits">
 <title>Automated Commit Notification Mailing List</title>
 <p>
-  This list is used to notify developers of changes to the master SVN
-  repository.  As changes are applied, SVN log messages are sent to
-  everyone who is a member of the list.
+  This list is used to notify developers of changes to the master
+  Subversion repository.  As changes are applied, Subversion log
+  messages are sent to everyone who is a member of the list.
 </p>
 <table>
  <tr>

Modified: apr/site/trunk/xdocs/stylesheets/project.xml
URL: http://svn.apache.org/viewvc/apr/site/trunk/xdocs/stylesheets/project.xml?rev=418059&r1=418058&r2=418059&view=diff
==============================================================================
--- apr/site/trunk/xdocs/stylesheets/project.xml (original)
+++ apr/site/trunk/xdocs/stylesheets/project.xml Thu Jun 29 07:38:11 2006
@@ -5,7 +5,7 @@
 <body>
 
 <menu><title>Get Involved</title>
-  <li><a href="anonsvn.html">SVN</a></li>
+  <li><a href="anonsvn.html">Subversion</a></li>
   <li><a href="mailing-lists.html">Mailing Lists</a></li>
   <li><a href="http://svn.apache.org/snapshots/apr/">Snapshots</a></li>
   <li><a href="compiling_win32.html">Build on Win32</a></li>