This commit is contained in:
Thomas Nagy 2011-09-10 20:53:45 +02:00
parent a306a20b23
commit 91c492b60f
4 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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]
---------------

View File

@ -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
---------------

View File

@ -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