diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-02-07 20:30:05 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-02-07 20:30:05 +0100 |
commit | 7db3d97cf980d11b5196e1f5936e0308f70d7aff (patch) | |
tree | 6ae217f3b9106bff26cfe5f173e72fe989443855 /tools | |
parent | 3644bc7212115aa47a1d5087a4afc31e6d28b6fa (diff) | |
download | Nim-7db3d97cf980d11b5196e1f5936e0308f70d7aff.tar.gz |
httpclient uses strtabs
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/nimweb.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/nimweb.nim b/tools/nimweb.nim index 05b575d16..bebde6cc5 100755 --- a/tools/nimweb.nim +++ b/tools/nimweb.nim @@ -1,7 +1,7 @@ # # # Nimrod Website Generator -# (c) Copyright 2009 Andreas Rumpf +# (c) Copyright 2010 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -41,7 +41,7 @@ include "sunset.tmpl" # ------------------------- configuration file ------------------------------- const - Version = "0.6" + Version = "0.7" Usage = "nimweb - Nimrod Website Generator Version " & version & """ (c) 2009 Andreas Rumpf @@ -170,7 +170,7 @@ proc buildDoc(c: var TConfigData, destPath: string) = proc buildPdfDoc(c: var TConfigData, destPath: string) = if os.execShellCmd("pdflatex -version") != 0: - echo "pdflatex not found; not PDF documentation generated" + echo "pdflatex not found; no PDF documentation generated" else: for d in items(c.pdf): Exec("nimrod rst2tex $# $#" % [c.nimrodArgs, d]) |