docs (replace 1.6 by 1.7)

This commit is contained in:
Thomas Nagy 2012-02-19 12:44:37 +01:00
parent a1a7e0b2af
commit 242869fd40
5 changed files with 8 additions and 7 deletions

View File

@ -6,6 +6,7 @@ NEW IN WAF 1.7.0
* Utils.writef (similar to Utils.readf)
* Added Node.evict() to provide more control over invalid references
* Do not raise exception on --help when running on python 2.4
* Node.search -> Node.search_node (consistent with make_node and find_node)
NEW IN WAF 1.6.11
-----------------

2
DEVEL
View File

@ -4,7 +4,7 @@ previous branches
old svn repository http://waf.googlecode.com/svn/trunk/ (unused)
branch for waf 1.5 http://waf.googlecode.com/svn/branches/waf-1.5/ (read-only, should be moved to git)
Main repository for waf 1.6 on http://waf.googlecode.com/git/
Main repository for waf 1.7 on http://waf.googlecode.com/git/
-------------------------------------------------------------
waflib the core library

8
README
View File

@ -1,7 +1,7 @@
WHAT YOU WILL FIND HERE
-----------------------
Waf (1.6)
Waf (1.7)
For the manual: http://docs.waf.googlecode.com/git/book_16/single.html
For the api docs: http://docs.waf.googlecode.com/git/apidocs_16/index.html
@ -19,9 +19,9 @@ The Waf tools in waflib/extras are not added to the waf script. To add
some of them, use the --tools switch:
$ ./waf-light --tools=compat15,swig
To add a tool that does not exist in the folder compat15, pass an absolute path
To add a tool that does not exist in the folder extras, pass an absolute path
To customize the initialization, pass the parameter 'prelude'
$ ./waf-light --make-waf --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()'
$ ./waf-light --make-waf --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import compat15\n\print "ok"'
HOW TO TRY THE EXAMPLES
-----------------------
@ -42,5 +42,5 @@ $ git remote add code https://code.google.com/p/waf.docs/
$ git push code
---------------------------
Thomas Nagy, 2011 (ita)
Thomas Nagy, 2012 (ita)

View File

@ -462,7 +462,7 @@ class Task(TaskBase):
try:
return self.uid_
except AttributeError:
# this is not a real hot zone, but we want to avoid surprizes here
# this is not a real hot zone, but we want to avoid surprises here
m = Utils.md5()
up = m.update
up(self.__class__.__name__.encode())

View File

@ -64,7 +64,7 @@ def uid(self):
try:
return self.uid_
except AttributeError:
# this is not a real hot zone, but we want to avoid surprizes here
# this is not a real hot zone, but we want to avoid surprises here
m = Utils.md5()
up = m.update
up(self.__class__.__name__.encode())