From 91c492b60fdbab411ca4f9220b449c6f143b9e69 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 10 Sep 2011 20:53:45 +0200 Subject: [PATCH] docs --- docs/book/conclusion.txt | 2 +- docs/book/configuration.txt | 2 +- docs/book/development.txt | 4 ++-- docs/book/nodes.txt | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/book/conclusion.txt b/docs/book/conclusion.txt index 2c215e78..3a3e4cdd 100644 --- a/docs/book/conclusion.txt +++ b/docs/book/conclusion.txt @@ -6,7 +6,7 @@ Due to the amount of features provided by Waf, this book cannot be both complete [options="header"] |================ |Link|Description -|http://waf.googlecode.com/svn/docs/apidocs/index.html|The apidocs +|http://docs.waf.googlecode.com/git/apidocs_16/index.html|The apidocs |http://code.google.com/p/waf|The Waf project page |http://code.google.com/p/waf/w/list|The Waf wiki, including the frequently asked questions (FAQ) |http://groups.google.com/group/waf-users|The Waf mailing-list diff --git a/docs/book/configuration.txt b/docs/book/configuration.txt index b566d6dc..7b71a677 100644 --- a/docs/book/configuration.txt +++ b/docs/book/configuration.txt @@ -182,7 +182,7 @@ def configure(ctx): ctx.find_file('fstab', ['/opt', '/etc']) --------------- -Although these methods are provided by the context class _waflib.Configure.ConfigurationContext_, they will not appear on it in http://waf.googlecode.com/svn/docs/apidocs/index.html[API documentation]. For modularity reasons, they are defined as simple functions and then bound dynamically: +Although these methods are provided by the context class _waflib.Configure.ConfigurationContext_, they will not appear on it in http://docs.waf.googlecode.com/git/apidocs_16/index.html[API documentation]. For modularity reasons, they are defined as simple functions and then bound dynamically: [source,python] --------------- diff --git a/docs/book/development.txt b/docs/book/development.txt index 3320b1d3..87d330e0 100644 --- a/docs/book/development.txt +++ b/docs/book/development.txt @@ -210,8 +210,8 @@ Waf is hosted on http://code.google.com/p/waf/source[Google code], and uses Subv [source,shishell] --------------- -$ svn checkout http://waf.googlecode.com/svn/trunk/ waf-read-only -$ cd waf-read-only +$ git clone http://code.google.com/p/waf/ wafdir +$ cd wafdir $ ./waf-light --make-waf --------------- diff --git a/docs/book/nodes.txt b/docs/book/nodes.txt index 2f1ef12c..241d4828 100644 --- a/docs/book/nodes.txt +++ b/docs/book/nodes.txt @@ -140,10 +140,10 @@ foo.txt foo.txt None some text -['.lock-wafbuild', 'foo.txt', 'build', 'wscript', '.svn'] +['.lock-wafbuild', 'foo.txt', 'build', 'wscript', '.git'] --------------- -NOTE: More methods may be found in the http://waf.googlecode.com/svn/docs/apidocs/index.html[API documentation] +NOTE: More methods may be found in the http://docs.waf.googlecode.com/git/apidocs_16/index.html[API documentation] WARNING: These methods are not safe for concurrent access. The node class methods are not meant to be thread-safe. @@ -246,7 +246,7 @@ Waf: Leaving directory `/tmp/nested/build' <3> When a configuration set is provided, the absolute path for a directory node is the build directory representation including the variant <4> When no configuration set is provided, the directory node absolute path is the one for the source directory -NOTE: Several other methods such as 'relpath_gen' or 'srcpath' are provided. See the http://waf.googlecode.com/svn/docs/apidocs/index.html[API documentation] +NOTE: Several other methods such as 'relpath_gen' or 'srcpath' are provided. See the http://docs.waf.googlecode.com/git/apidocs_16/index.html[API documentation] === BuildContext-specific methods