Skip to content

Commit 7913228

Browse files
e-kwsmBelcourt
authored andcommitted
Fix dead links (#79)
1 parent 45b600b commit 7913228

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Bugs and feature requests can be reported through the [Trac issue tracker](https
1313

1414
You can submit your changes through a [pull request](https://github.com/boostorg/graph/pulls). One of the maintainers will take a look (remember that it can take some time).
1515

16-
There is no mailing-list specific to Boost Graph, although you can use the general-purpose Boost [mailing-list](https://groups.google.com/forum/#!forum/boost-devel-archive) using the tag [graph].
16+
There is no mailing-list specific to Boost Graph, although you can use the general-purpose Boost [mailing-list](http://lists.boost.org/mailman/listinfo.cgi/boost-users) using the tag [graph].
1717

1818

1919
## Development ##
2020

21-
Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://svn.boost.org/trac/boost/wiki/TryModBoost#InstallingModularBoost)):
21+
Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)):
2222

2323
git clone https://github.com/boostorg/boost
2424
cd boost

Diff for: doc/users.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>Boost Graph Library Users</h1>
3333
<li><a href="http://www.bioconductor.org/repository/devel/vignette/RBGL.pdf">
3434
BGL interface for language R.</a></li>
3535
<li><a href="http://www.cuj.com/documents/s=8470/cuj0307tan/">CUJ Article about Electronic Design Automation</a></li>
36-
<li><a href="http://rubyforge.org/projects/rgl/">A BGL-inspired Ruby Graph Library</a></li>
36+
<li><a href="http://www.rubydoc.info/github/monora/rgl">A BGL-inspired Ruby Graph Library</a></li>
3737
<li><a href="http://www.codeproject.com/cs/miscctrl/quickgraph.asp">A BGL-inspired C# Graph Library</a></li>
3838
<li><a href="http://map1.squeakfoundation.org/sm/package/5729d80a-822b-4bc2-9420-ef7ecaea8553">A BGL-inspired Squeak (Smalltalk) Graph Library</a></li>
3939
<li><a href="http://www.datasim.nl/education/coursedetails.asp?coursecategory=CPP&coursecode=ADCPP">BGL course at DataSim</a></li>

Diff for: doc/write-graphviz.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ <H1><A NAME="sec:write-graphviz">
7070

7171
<p>
7272
This is to write a BGL graph object into an output stream in graphviz dot format
73-
so that users can make use of <a href="http://www.research.att.com/sw/tools/graphviz/">AT&amp;T graphviz</a>
73+
so that users can make use of <a href="http://www.graphviz.org/">graphviz</a>
7474
to draw a picture with nice layout.
7575
<p>
7676
The first version with two parameters will write the graph into a

Diff for: include/boost/graph/detail/read_graphviz_new.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// and page 34 or http://www.graphviz.org/pdf/dotguide.pdf
1919
//
2020
// See documentation for this code at:
21-
// http://www.boost.org/libs/graph/doc/read-graphviz.html
21+
// http://www.boost.org/libs/graph/doc/read_graphviz.html
2222
//
2323

2424
// Author: Jeremiah Willcock

Diff for: include/boost/graph/detail/read_graphviz_spirit.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// http://www.graphviz.org/cvs/doc/info/lang.html
1515
//
1616
// See documentation for this code at:
17-
// http://www.boost.org/libs/graph/doc/read-graphviz.html
17+
// http://www.boost.org/libs/graph/doc/read_graphviz.html
1818
//
1919

2020
// Author: Ronald Garcia

Diff for: include/boost/graph/gursoy_atun_layout.hpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
#ifndef BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP
1111
#define BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP
1212

13-
// Gursoy-Atun graph layout, based on:
13+
// Gürsoy-Atun graph layout, based on:
1414
// "Neighbourhood Preserving Load Balancing: A Self-Organizing Approach"
15-
// in EuroPar 2000, p. 234 of LNCS 1900
16-
// http://springerlink.metapress.com/link.asp?id=pcu07ew5rhexp9yt
15+
// in 6th International Euro-Par Conference Munich, Germany, August 29 – September 1, 2000 Proceedings,
16+
// pp 234-241
17+
// http://dx.doi.org/10.1007/3-540-44520-X_32
1718

1819
#include <boost/config/no_tr1/cmath.hpp>
1920
#include <boost/throw_exception.hpp>

Diff for: src/read_graphviz_new.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// and page 34 or http://www.graphviz.org/pdf/dotguide.pdf
1919
//
2020
// See documentation for this code at:
21-
// http://www.boost.org/libs/graph/doc/read-graphviz.html
21+
// http://www.boost.org/libs/graph/doc/read_graphviz.html
2222
//
2323

2424
// Author: Jeremiah Willcock

0 commit comments

Comments
 (0)