diff --git a/README.md b/README.md index 3815c042..7a4dc735 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ Bugs and feature requests can be reported through the [Trac issue tracker](https 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). -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]. +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]. ## Development ## -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)): +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)): git clone https://github.com/boostorg/boost cd boost diff --git a/doc/users.html b/doc/users.html index 497b1d0c..65b23306 100644 --- a/doc/users.html +++ b/doc/users.html @@ -33,7 +33,7 @@ or form.

  • BGL interface for language R.
  • CUJ Article about Electronic Design Automation
  • -
  • A BGL-inspired Ruby Graph Library
  • +
  • A BGL-inspired Ruby Graph Library
  • A BGL-inspired C# Graph Library
  • A BGL-inspired Squeak (Smalltalk) Graph Library
  • BGL course at DataSim
  • diff --git a/doc/write-graphviz.html b/doc/write-graphviz.html index 9af6e7b7..3899fede 100644 --- a/doc/write-graphviz.html +++ b/doc/write-graphviz.html @@ -70,7 +70,7 @@ write_graphviz_dp(std::ostream& out, const Graph& g,

    This is to write a BGL graph object into an output stream in graphviz dot format -so that users can make use of AT&T graphviz +so that users can make use of graphviz to draw a picture with nice layout.

    The first version with two parameters will write the graph into a diff --git a/include/boost/graph/detail/read_graphviz_new.hpp b/include/boost/graph/detail/read_graphviz_new.hpp index 7c7986dc..81221c0b 100644 --- a/include/boost/graph/detail/read_graphviz_new.hpp +++ b/include/boost/graph/detail/read_graphviz_new.hpp @@ -18,7 +18,7 @@ // and page 34 or http://www.graphviz.org/pdf/dotguide.pdf // // See documentation for this code at: -// http://www.boost.org/libs/graph/doc/read-graphviz.html +// http://www.boost.org/libs/graph/doc/read_graphviz.html // // Author: Jeremiah Willcock diff --git a/include/boost/graph/detail/read_graphviz_spirit.hpp b/include/boost/graph/detail/read_graphviz_spirit.hpp index 99464698..2ba09cc0 100644 --- a/include/boost/graph/detail/read_graphviz_spirit.hpp +++ b/include/boost/graph/detail/read_graphviz_spirit.hpp @@ -14,7 +14,7 @@ // http://www.graphviz.org/cvs/doc/info/lang.html // // See documentation for this code at: -// http://www.boost.org/libs/graph/doc/read-graphviz.html +// http://www.boost.org/libs/graph/doc/read_graphviz.html // // Author: Ronald Garcia diff --git a/include/boost/graph/gursoy_atun_layout.hpp b/include/boost/graph/gursoy_atun_layout.hpp index 9f050e1b..d843db7a 100644 --- a/include/boost/graph/gursoy_atun_layout.hpp +++ b/include/boost/graph/gursoy_atun_layout.hpp @@ -10,10 +10,11 @@ #ifndef BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP #define BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP -// Gursoy-Atun graph layout, based on: +// Gürsoy-Atun graph layout, based on: // "Neighbourhood Preserving Load Balancing: A Self-Organizing Approach" -// in EuroPar 2000, p. 234 of LNCS 1900 -// http://springerlink.metapress.com/link.asp?id=pcu07ew5rhexp9yt +// in 6th International Euro-Par Conference Munich, Germany, August 29 – September 1, 2000 Proceedings, +// pp 234-241 +// http://dx.doi.org/10.1007/3-540-44520-X_32 #include #include diff --git a/src/read_graphviz_new.cpp b/src/read_graphviz_new.cpp index 3d59ce28..2881bb12 100644 --- a/src/read_graphviz_new.cpp +++ b/src/read_graphviz_new.cpp @@ -18,7 +18,7 @@ // and page 34 or http://www.graphviz.org/pdf/dotguide.pdf // // See documentation for this code at: -// http://www.boost.org/libs/graph/doc/read-graphviz.html +// http://www.boost.org/libs/graph/doc/read_graphviz.html // // Author: Jeremiah Willcock