summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-04-20 19:26:26 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2016-04-20 19:26:26 +0200
commit75e959e2bf222a54439c69d5cf449d2d5a1cd3da (patch)
tree5f3389f013ccb99550b4f5b91476997694b5e66f
parent175e3e0d385c019cdf986225d50afb047178fd9c (diff)
parenta930e628e416378275575509f683e94d3df6c1b4 (diff)
downloadATCD-75e959e2bf222a54439c69d5cf449d2d5a1cd3da.tar.gz
Merge pull request #240 from jwillemsen/master
Updates for change of ATCD to ACE_TAO
-rw-r--r--ACE/ACE-INSTALL.html4
-rwxr-xr-xACE/bin/make_release.py50
-rw-r--r--ACE/docs/ACE-bug-process.html2
-rw-r--r--ACE/docs/Download.html10
-rw-r--r--ACE/docs/bczar/bczar.html26
-rw-r--r--README.md12
-rw-r--r--TAO/TAO-INSTALL.html2
-rw-r--r--TAO/tao/Transport.h4
-rw-r--r--TAO/tao/Transport_Selection_Guard.h2
9 files changed, 56 insertions, 56 deletions
diff --git a/ACE/ACE-INSTALL.html b/ACE/ACE-INSTALL.html
index 4e0cd614e92..527aa7a96ef 100644
--- a/ACE/ACE-INSTALL.html
+++ b/ACE/ACE-INSTALL.html
@@ -2930,7 +2930,7 @@ show_uninit Lists all uninitialized in object files built for
</p><hr><p>
</p><h2><a name="power">Building from git</a></h2>
-If users are building from our <a href="https://github.com/DOCGroup/ATCD">Git repository</a> the
+If users are building from our <a href="https://github.com/DOCGroup/ACE_TAO">Git repository</a> the
GNUmakefiles, and project files for building on various platforms will
not be available. Git users are expected to <a href="#generate_using_mpc">generate them</a>
using <a href="https://raw.githubusercontent.com/DOCGroup/MPC/master/docs/README">MPC</a> before building ACE, TAO or
@@ -2940,7 +2940,7 @@ quickly.
<ul>
<li>You can clone all code easily from our git repository.
<ul>
- <code>git clone https://github.com/DOCGroup/ATCD.git</code>
+ <code>git clone https://github.com/DOCGroup/ACE_TAO.git</code>
</ul>
</p></li><li>Please make sure that you have <a href="http://www.perl.org/">
perl</a> installed, preferably perl
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index c3f5a9396ed..e1f89b494e9 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -83,7 +83,7 @@ def parse_args ():
parser.add_option ("--root", dest="repo_root", action="store",
help="Specify an alternate repository root",
- default="https://github.com/DOCGroup/ATCD.git")
+ default="https://github.com/DOCGroup/ACE_TAO.git")
parser.add_option ("--mpc_root", dest="mpc_root", action="store",
help="Specify an alternate MPC repository root",
@@ -181,7 +181,7 @@ def check_workspace ():
""" Checks that the DOC and MPC repositories are up to date. """
global opts, doc_root
try:
- ex ("cd $DOC_ROOT/ATCD && git pull -p")
+ ex ("cd $DOC_ROOT/ACE_TAO && git pull -p")
print "Successfully updated ACE/TAO working copy"
except:
print "Unable to update ACE/TAO workspace at " + doc_root
@@ -285,7 +285,7 @@ def update_spec_file ():
global comp_versions, opts
- with open (doc_root + "/ATCD/ACE/rpmbuild/ace-tao.spec", 'r+') as spec_file:
+ with open (doc_root + "/ACE_TAO/ACE/rpmbuild/ace-tao.spec", 'r+') as spec_file:
new_spec = ""
for line in spec_file.readlines ():
if line.find ("define ACEVER ") is not -1:
@@ -308,7 +308,7 @@ def update_spec_file ():
print "New spec file:"
print "".join (new_spec)
- return [doc_root + "/ATCD/ACE/rpmbuild/ace-tao.spec"]
+ return [doc_root + "/ACE_TAO/ACE/rpmbuild/ace-tao.spec"]
def update_debianbuild ():
""" Updates ACE_ROOT/debian directory.
@@ -332,7 +332,7 @@ def update_debianbuild ():
mask = re.compile ("(libace|libkokyu|libtao)(.*)(\d+\.\d+\.\d+)(.*)")
tao = re.compile ("tao", re.IGNORECASE)
- for fname in glob.iglob(doc_root + '/ATCD/ACE/debian/*'):
+ for fname in glob.iglob(doc_root + '/ACE_TAO/ACE/debian/*'):
print "Considering " + fname
match = None
@@ -365,7 +365,7 @@ def update_debianbuild ():
else:
return match.group (1) + match.group (2) + comp_versions["ACE_version"] + match.group (4)
- with open (doc_root + "/ATCD/ACE/debian/debian.control", 'r+') as control_file:
+ with open (doc_root + "/ACE_TAO/ACE/debian/debian.control", 'r+') as control_file:
new_ctrl = ""
for line in control_file.readlines ():
if re.search ("^(Package|Depends|Suggests):", line) is not None:
@@ -384,7 +384,7 @@ def update_debianbuild ():
print "New control file:"
print "".join (new_ctrl)
- files.append (doc_root + "/ATCD/ACE/debian/debian.control")
+ files.append (doc_root + "/ACE_TAO/ACE/debian/debian.control")
# rewrite debian/dsc
dsc_lines = """Format: 1.0
@@ -399,7 +399,7 @@ Files:
""" % (comp_versions["ACE_version"], comp_versions["TAO_version"], comp_versions["ACE_version"])
if opts.take_action:
- with open (doc_root + "/ATCD/ACE/debian/ace.dsc", 'r+') as dsc_file:
+ with open (doc_root + "/ACE_TAO/ACE/debian/ace.dsc", 'r+') as dsc_file:
dsc_file.seek (0)
dsc_file.truncate (0)
dsc_file.writelines (dsc_lines)
@@ -407,7 +407,7 @@ Files:
print "New dsc file:\n"
print dsc_lines
- files.append (doc_root + "/ATCD/ACE/debian/ace.dsc")
+ files.append (doc_root + "/ACE_TAO/ACE/debian/ace.dsc")
return files
@@ -449,7 +449,7 @@ def create_changelog (component):
old_comp_versions["ACE_beta"])
# Generate changelogs per component
- ex ("cd $DOC_ROOT/ATCD && git log " + old_tag + "..HEAD " + component + " > " + component + "/ChangeLogs/" + component + "-" + comp_versions[component + "_version_"])
+ ex ("cd $DOC_ROOT/ACE_TAO && git log " + old_tag + "..HEAD " + component + " > " + component + "/ChangeLogs/" + component + "-" + comp_versions[component + "_version_"])
return ["%s/ChangeLogs/%s-%s" % (component, component, comp_versions[component + "_version_"])]
@@ -558,10 +558,10 @@ def update_latest_tag (which, branch):
# Remove tag locally
vprint ("Removing tag %s" % (tagname))
- ex ("cd $DOC_ROOT/ATCD && git tag -d " + tagname)
+ ex ("cd $DOC_ROOT/ACE_TAO && git tag -d " + tagname)
vprint ("Placing tag %s" % (tagname))
- ex ("cd $DOC_ROOT/ATCD && git tag -a " + tagname + " -m\"" + tagname + "\"")
+ ex ("cd $DOC_ROOT/ACE_TAO && git tag -a " + tagname + " -m\"" + tagname + "\"")
def push_latest_tag (which, branch):
@@ -571,10 +571,10 @@ def push_latest_tag (which, branch):
if opts.push:
# Remove tag in the remote orgin
- ex ("cd $DOC_ROOT/ATCD && git push origin :refs/tags/" + tagname)
+ ex ("cd $DOC_ROOT/ACE_TAO && git push origin :refs/tags/" + tagname)
vprint ("Pushing tag %s" % (tagname))
- ex ("cd $DOC_ROOT/ATCD && git push origin " + tagname)
+ ex ("cd $DOC_ROOT/ACE_TAO && git push origin " + tagname)
def tag ():
""" Tags the DOC and MPC repositories for the version and push that remote """
@@ -586,8 +586,8 @@ def tag ():
if opts.tag:
if opts.take_action:
- vprint ("Placing tag %s on ATCD" % (tagname))
- ex ("cd $DOC_ROOT/ATCD && git tag -a " + tagname + " -m\"" + tagname + "\"")
+ vprint ("Placing tag %s on ACE_TAO" % (tagname))
+ ex ("cd $DOC_ROOT/ACE_TAO && git tag -a " + tagname + " -m\"" + tagname + "\"")
vprint ("Placing tag %s on MPC" % (tagname))
ex ("cd $DOC_ROOT/MPC && git tag -a " + tagname + " -m\"" + tagname + "\"")
@@ -603,7 +603,7 @@ def tag ():
if comp_versions["ACE_beta"] == 1:
update_latest_tag ("BFO", tagname)
else:
- vprint ("Placing tag %s on ATCD" % (tagname))
+ vprint ("Placing tag %s on ACE_TAO" % (tagname))
vprint ("Placing tag %s on MPC" % (tagname))
print "Creating tags:\n"
print "Placing tag " + tagname + "\n"
@@ -618,11 +618,11 @@ def push ():
if opts.push:
if opts.take_action:
- vprint ("Pushing ATCD master to origin")
- ex ("cd $DOC_ROOT/ATCD && git push origin master")
+ vprint ("Pushing ACE_TAO master to origin")
+ ex ("cd $DOC_ROOT/ACE_TAO && git push origin master")
- vprint ("Pushing tag %s on ATCD" % (tagname))
- ex ("cd $DOC_ROOT/ATCD && git push origin tag " + tagname)
+ vprint ("Pushing tag %s on ACE_TAO" % (tagname))
+ ex ("cd $DOC_ROOT/ACE_TAO && git push origin tag " + tagname)
vprint ("Pushing tag %s on MPC" % (tagname))
ex ("cd $DOC_ROOT/MPC && git push origin tag " + tagname)
@@ -638,7 +638,7 @@ def push ():
if comp_versions["ACE_beta"] == 1:
push_latest_tag ("BFO", tagname)
else:
- vprint ("Pushing tag %s on ATCD" % (tagname))
+ vprint ("Pushing tag %s on ACE_TAO" % (tagname))
vprint ("Pushing tag %s on MPC" % (tagname))
print "Pushing tags:\n"
print "Pushing tag " + tagname + "\n"
@@ -656,7 +656,7 @@ def export_wc (stage_dir):
# Clone the ACE repository with the needed tag
print ("Retrieving ACE with tag " + tag)
- ex ("git clone --depth 1 --branch " + tag + " " + opts.repo_root + " " + stage_dir + "/ATCD")
+ ex ("git clone --depth 1 --branch " + tag + " " + opts.repo_root + " " + stage_dir + "/ACE_TAO")
# Clone the MPC repository with the needed tag
print ("Retrieving MPC with tag " + tag)
@@ -664,9 +664,9 @@ def export_wc (stage_dir):
# Settting up stage_dir
print ("Moving ACE")
- ex ("mv " + stage_dir + "/ATCD/ACE " + stage_dir + "/ACE_wrappers")
+ ex ("mv " + stage_dir + "/ACE_TAO/ACE " + stage_dir + "/ACE_wrappers")
print ("Moving TAO")
- ex ("mv " + stage_dir + "/ATCD/TAO " + stage_dir + "/ACE_wrappers/TAO")
+ ex ("mv " + stage_dir + "/ACE_TAO/TAO " + stage_dir + "/ACE_wrappers/TAO")
print ("Moving MPC")
ex ("mv " + stage_dir + "/MPC " + stage_dir + "/ACE_wrappers/MPC")
diff --git a/ACE/docs/ACE-bug-process.html b/ACE/docs/ACE-bug-process.html
index 2a2fdeff04f..af5c8740c01 100644
--- a/ACE/docs/ACE-bug-process.html
+++ b/ACE/docs/ACE-bug-process.html
@@ -153,7 +153,7 @@ with our software here's the process for submitting it:
<LI> Use the latest contents of git repository, i.e.,
what's available from <P>
- <A HREF="https://github.com/DOCGroup/ATCD">https://github.com/DOCGroup/ATCD</A> <P>
+ <A HREF="https://github.com/DOCGroup/ACE_TAO">https://github.com/DOCGroup/ACE_TAO</A> <P>
<LI> Create a fork of the ATCD repository and prepare your fixes including documentation
changes and automated unit tests. For any change in ACE create (or augment) a test program
diff --git a/ACE/docs/Download.html b/ACE/docs/Download.html
index 1d0d744e697..9a7b11f6f27 100644
--- a/ACE/docs/Download.html
+++ b/ACE/docs/Download.html
@@ -78,11 +78,11 @@ HREF="http://www.dre.vanderbilt.edu/Doxygen/">online</A>.
Our process for developing and releasing ACE, TAO, and CIAO, as well
as the role of major, minor, and micro release kits is described in
detail in the DOC group's <A
-HREF="http://htmlpreview.github.com/?https://github.com/DOCGroup/ATCD/blob/master/ACE/docs/ACE-development-process.html">
+HREF="http://htmlpreview.github.com/?https://github.com/DOCGroup/ACE_TAO/blob/master/ACE/docs/ACE-development-process.html">
development and release process</A> document. Please check that
document to decide which version below is more appropriate for your
case. You may want to understand the DOC group's <A
-HREF="http://htmlpreview.github.com/?https://github.com/DOCGroup/ATCD/blob/master/ACE/docs/ACE-bug-process.html">
+HREF="http://htmlpreview.github.com/?https://github.com/DOCGroup/ACE_TAO/blob/master/ACE/docs/ACE-bug-process.html">
bug fixing policies</A> when you make this decision. </P>The full
packages do contain all sources with pre generated makefiles for GNU
make, Visual C++ 12.0/14.0. The
@@ -95,7 +95,7 @@ Windows line feeds. For all other platforms download a .gz/.bz2 package.
<UL>
<LI> <B>Latest Micro Release Kit.</B> The latest <A
- HREF="https://raw.githubusercontent.com/DOCGroup/ATCD/master/ACE/VERSION">version</a>
+ HREF="https://raw.githubusercontent.com/DOCGroup/ACE_TAO/master/ACE/VERSION">version</a>
of the ACE, TAO, and CIAO micro release kit is available for
download below. <P>
@@ -513,11 +513,11 @@ the links below to download it.
<UL>
<LI>The ACE+TAO+CIAO+DAnCE git repository can be browsed
- <A HREF="https://github.com/DOCGroup/ATCD/">
+ <A HREF="https://github.com/DOCGroup/ACE_TAO/">
via the web</A>.
</LI>
<li>ACE+TAO+CIAO+DAnCE source code may be obtained from the
- <a href="http://htmlpreview.github.com/?https://github.com/DOCGroup/ATCD/blob/master/ACE/ACE-INSTALL.html#power">Git repository</a>.</li>
+ <a href="http://htmlpreview.github.com/?https://github.com/DOCGroup/ACE_TAO/blob/master/ACE/ACE-INSTALL.html#power">Git repository</a>.</li>
<LI>Commercially supported versions of ACE+TAO+CIAO+DAnCE are available from
<A HREF="http://www.dre.vanderbilt.edu/support.html">several companies</A>.
<LI>RPMs for CentOS, Fedora, Mandriva, RHEL, SLE, and OpenSuSE are available from the
diff --git a/ACE/docs/bczar/bczar.html b/ACE/docs/bczar/bczar.html
index 3432e87b241..d497e86569d 100644
--- a/ACE/docs/bczar/bczar.html
+++ b/ACE/docs/bczar/bczar.html
@@ -135,9 +135,9 @@
Checkout like this:
<ul>
<li>
- <code>git clone https://github.com/DOCGroup/ATCD.git ATCD</code></li>
+ <code>git clone https://github.com/DOCGroup/ACE_TAO.git ACE_TAO</code></li>
<li>
- <code>git clone https://github.com/DOCGroup/ATCD.git MPC</code></li>
+ <code>git clone https://github.com/DOCGroup/ACE_TAO.git MPC</code></li>
</ul>
</ul>
<li>
@@ -204,8 +204,8 @@
ACE+TAO+CIAO-X_Y_Z (where X is the ACE Major version number, and Y & Z are the
Minor and Beta release numbers of the release that is to be restarted).<p>
E.g.:<br>
- <code>cd ATCD && git tag -d ACE+TAO+CIAO-X_Y_Z<br />
- cd MPC && git tag -d ACE+TAO+CIAO-X_Y_Z<br />
+ <code>cd ACE_TAO && git tag -d ACE+TAO-X_Y_Z<br />
+ cd MPC && git tag -d ACE+TAO-X_Y_Z<br />
</code>
<br>
Note that this <em>only</em> needs to be done if the <em>tagging</em> fails. If
@@ -235,9 +235,9 @@
export DOC_ROOT=$PWD<br>
export SIGNATURE="Johnny Willemsen"<br>
export MAILID=jwillemsen@remedy.nl<br>
- git clone https://github.com/DOCGroup/ATCD.git ATCD<br>
+ git clone https://github.com/DOCGroup/ACE_TAO.git ACE_TAO<br>
git clone https://github.com/DOCGroup/MPC.git MPC<br>
- cd ATCD<br>
+ cd ACE_TAO<br>
ACE/bin/make_release.py --beta --update --verbose<br>
ACE/bin/make_release.py --beta --tag --verbose<br>
ACE/bin/make_release.py --beta --push --verbose<br>
@@ -282,10 +282,10 @@
version number being released e.g. 5_6_7)
<br>
<code>svn co
- git clone https://github.com/DOCGroup/ATCD.git --depth 1 --branch ACE+TAO+CIAO-6_3_3 ATCD<br>
+ git clone https://github.com/DOCGroup/ACE_TAO.git --depth 1 --branch ACE+TAO-6_3_3 ACE_TAO<br>
</li>
- <li>Change to the ATCD directory using <br>
- cd ATCD</li>
+ <li>Change to the ACE_TAO directory using <br>
+ cd ACE_TAO</li>
<li>
Set the needed environment variables using<br>
<code>export ACE_ROOT=$PWD/ACE</code><br>
@@ -313,12 +313,12 @@
rm -rf doxygen<br>
mkdir doxygen<br>
cd doxygen<br>
- git clone https://github.com/DOCGroup/ATCD.git --depth 1 --branch ACE+TAO+CIAO-6_3_3 ATCD<br>
- cd ATCD<br>
+ git clone https://github.com/DOCGroup/ACE_TAO.git --depth 1 --branch ACE+TAO-6_3_3 ACE_TAO<br>
+ cd ACE_TAO<br>
export ACE_ROOT=$PWD/ACE<br>
export TAO_ROOT=$PWD/TAO<br>
- export CIAO_ROOT=$PWD/CIAO<br>
- export DANCE_ROOT=$PWD/DAnCE<br>
+ export CIAO_ROOT=<br>
+ export DANCE_ROOT=<br>
export DDS_ROOT=<br>
cd ACE<br>
$ACE_ROOT/bin/generate_rel_manpages<br>
diff --git a/README.md b/README.md
index edb575f72e8..86b96cbe300 100644
--- a/README.md
+++ b/README.md
@@ -9,12 +9,12 @@ The quality of ACE/TAO is monitored through our distributed [scoreboard](http://
Travis-CI status
================
-master: [![Build Status](https://travis-ci.org/DOCGroup/ATCD.svg?branch=master)](https://travis-ci.org/DOCGroup/ATCD)
+master: [![Build Status](https://travis-ci.org/DOCGroup/ACE_TAO.svg?branch=master)](https://travis-ci.org/DOCGroup/ACE_TAO)
Snap-CI status
================
-master: [![Build Status](https://snap-ci.com/DOCGroup/ATCD/branch/master/build_image)](https://snap-ci.com/DOCGroup/ATCD/branch/master)
+master: [![Build Status](https://snap-ci.com/DOCGroup/ACE_TAO/branch/master/build_image)](https://snap-ci.com/DOCGroup/ACE_TAO/branch/master)
AppVeyor status
================
@@ -50,7 +50,7 @@ Bugzilla for issues is [here](http://bugzilla.dre.vanderbilt.edu/).
These guidelines are for all developers, whether occasional or regular. They have been sourced from various 'best practice' documents but primarily [here](https://github.com/JacORB/JacORB).
-![Warning][warn] As a convention, <i>upstream</i> is used as the name of the <a href="http://github.com/DOCGroup/ATCD">http://github.com/DOCGroup/ATCD</a> repository. This repository is the canonical repository for ATCD. We usually name <i>origin</i> the fork on github of each contributor. So the exact meaning of <i>origin</i> is relative to the developer: you could think of <i>origin</i> as your own fork.
+![Warning][warn] As a convention, <i>upstream</i> is used as the name of the <a href="http://github.com/DOCGroup/ACE_TAO">http://github.com/DOCGroup/ACE_TAO</a> repository. This repository is the canonical repository for ATCD. We usually name <i>origin</i> the fork on github of each contributor. So the exact meaning of <i>origin</i> is relative to the developer: you could think of <i>origin</i> as your own fork.
## Pre-requisites
@@ -58,7 +58,7 @@ This document assumes some working knowledge of git. We recommend Scott Chacon's
## Repositories
-ACE/TAO uses [http://github.com/DOCGroup/ATCD](http://github.com/DOCGroup/ATCD) as its
+ACE/TAO uses [http://github.com/DOCGroup/ACE_TAO](http://github.com/DOCGroup/ACE_TAO) as its
canonical repository, and this repository contains the stable code on master.
Typically, only _Project Admins_ would be able to push to this repo while all else may clone or fork this repo.
@@ -324,7 +324,7 @@ Sometimes work on your topic branch may include several commits. For example, co
Also, it is important to make sure you don't accidentally commit files for which no real changes have happened, but rather, whitespace has been modified. This often happens with some IDEs. `git diff --check` should be run before you issue such a pull request, which will check for such "noise" commits and warn you accordingly. Such files should be reverted and not be committed to the branch.
-Adhering to [ACE/TAO's code style](http://htmlpreview.github.io/?https://github.com/DOCGroup/ATCD/blob/master/ACE/docs/ACE-guidelines.html) guidelines will help minimise "noise" commits. Project Admins are going to ask contributors to reformat their code if necessary.
+Adhering to [ACE/TAO's code style](http://htmlpreview.github.io/?https://github.com/DOCGroup/ACE_TAO/blob/master/ACE/docs/ACE-guidelines.html) guidelines will help minimise "noise" commits. Project Admins are going to ask contributors to reformat their code if necessary.
## Keeping your repo in sync with upstream
@@ -367,7 +367,7 @@ $ git rebase ACE+TAO+CIAO-6_3_1
If you have a fork of upstream, you should probably define upstream as one of your remotes:
```
-$ git remote add upstream git://github.com/DOCGroup/ATCD.git
+$ git remote add upstream git://github.com/DOCGroup/ACE_TAO.git
```
You should now be able to fetch and pull changes from upstream into your local repository, though you should make sure you have no uncommitted changes. (You *do* use topic branches, right?)
diff --git a/TAO/TAO-INSTALL.html b/TAO/TAO-INSTALL.html
index 4037508f4a8..878cbc3e590 100644
--- a/TAO/TAO-INSTALL.html
+++ b/TAO/TAO-INSTALL.html
@@ -535,7 +535,7 @@ required to build ACE and TAO.<p>
<H4><A NAME="svn">Building and Installing TAO from git</H4>
If users are building from our <a
-href="https://github.com/DOCGroup/ATCD">git archive</a> the
+href="https://github.com/DOCGroup/ACE_TAO">git archive</a> the
GNUmakefiles, and project files for building on various platforms will
not be available. Users from git are expected to generate them
using <a href="../MPC/docs/README">MPC</a> before building ACE, TAO or
diff --git a/TAO/tao/Transport.h b/TAO/tao/Transport.h
index 7299996ac35..2060467e00a 100644
--- a/TAO/tao/Transport.h
+++ b/TAO/tao/Transport.h
@@ -315,7 +315,7 @@ namespace TAO
*
* <B>See Also:</B>
*
- * http://htmlpreview.github.com/?https://github.com/DOCGroup/ATCD/blob/master/TAO/docs/pluggable_protocols/index.html
+ * http://htmlpreview.github.com/?https://github.com/DOCGroup/ACE_TAO/blob/master/TAO/docs/pluggable_protocols/index.html
*/
class TAO_Export TAO_Transport
{
@@ -1278,7 +1278,7 @@ namespace TAO
*
* <B>See Also:</B>
*
- * http://htmlpreview.github.com/?https://github.com/DOCGroup/ATCD/blob/master/TAO/docs/transport_current/index.html
+ * http://htmlpreview.github.com/?https://github.com/DOCGroup/ACE_TAO/blob/master/TAO/docs/transport_current/index.html
*
*/
class TAO_Export Stats
diff --git a/TAO/tao/Transport_Selection_Guard.h b/TAO/tao/Transport_Selection_Guard.h
index a4849fd5130..ae80e290c2e 100644
--- a/TAO/tao/Transport_Selection_Guard.h
+++ b/TAO/tao/Transport_Selection_Guard.h
@@ -50,7 +50,7 @@ namespace TAO
*
* <B>See Also:</B>
*
- * http://htmlpreview.github.com/?https://github.com/DOCGroup/ATCD/blob/master/TAO/docs/transport_current/index.html
+ * http://htmlpreview.github.com/?https://github.com/DOCGroup/ACE_TAO/blob/master/TAO/docs/transport_current/index.html
*
*/
class TAO_Export Transport_Selection_Guard