Commit Graph

7516 Commits

Author SHA1 Message Date
Adam Strzelecki
fd1011e940 build.sh: Output error messages to stderr
Just in case we are running this in some CI.
2015-10-30 15:09:34 +01:00
Adam Strzelecki
1608bd99eb build.sh: Use shell built-in command trace
Rather than issuing echo "cmd..." then cmd... itself, we enable shell trace
facility via set -x, which is POSIX shell standard command and is compatible
with all UNIX shells.

This effectively cuts build.sh size twice, since we don't need to double stuff
there, also making it human readable.

We are also setting PS4 (trace prefix) to none, instead final echo "SUCCESS",
we issue : SUCCESS command which outputs its contents in trace.
2015-10-30 15:06:15 +01:00
Araq
8e4b5e10ba updated compiler.nimble file 2015-10-28 14:19:12 +01:00
reactormonk
21755a64fc Merge pull request #3483 from sanxiyn/patch-1
Update website link
2015-10-28 11:28:05 +01:00
Seo Sanghyeon
2309940f02 Update website link 2015-10-28 18:41:42 +09:00
Araq
22a702868b updated todo.txt 2015-10-28 08:13:49 +01:00
Araq
c02e7954af Merge branch 'devel' of https://github.com/nim-lang/Nim into devel 2015-10-27 23:38:25 +01:00
Araq
f03ce85518 news.txt: fixed typo 2015-10-27 23:38:09 +01:00
Dominik Picheta
3892969af4 Merge branch 'devel' 2015-10-27 23:36:00 +01:00
Dominik Picheta
d9415fd5ce Download links for new version. 2015-10-27 23:09:14 +01:00
Dominik Picheta
30cc353831 Prep for v0.12.0 v0.12.0 2015-10-27 22:28:42 +01:00
Dominik Picheta
b186493f01 Merge pull request #3475 from mjoud/shrdoc
fixed shr documentation
2015-10-27 21:03:55 +01:00
Dominik Picheta
82f3cab1ac Improved postgres docs and added untestable tests. 2015-10-27 11:06:00 +01:00
JamesP
a82b9cbda3 fix doco by removing extra ` chars, change a word and
line up multi-line text
2015-10-27 11:06:00 +01:00
JamesP
02d882cfbe add doco outlining the two SQL parameter substitution mechanisms for the db_postgres module
adjust doco note: indent by one space

shorten doco example lines, by splitting across multiple lines

shorten doco line widths by splitting long lines into multi-lines

fix to prepare() example in doco "Note:" section
2015-10-27 11:05:59 +01:00
JamesP
033c461a87 setupQuery() with SqlQuery take parameter substitution with "?"
add instantRows() with SqlPrepared parameter

fix setupQuery() for SqlQuery to produce a unique identiying query name

add rows() iterator with SqlPrepared parameter

add execAffectedRows for SqlPrepared
2015-10-27 11:05:59 +01:00
JamesP
b2a48b0ed6 tryExec() with SqlQuery now takes "?" substitution parameters
add tryExec() with SqlPrepared parameter

exec() with SqlQuery now expects "?" parameter substitution
2015-10-27 11:05:59 +01:00
JamesP
4e19106221 add check to dbFormat() to verify parameter substitution has "?" identifier
add check to prepare() that parameter substitution has "$1" identifier
2015-10-27 11:05:59 +01:00
Araq
86e2d6ee90 fixes #3476 2015-10-27 08:37:56 +01:00
Araq
e94a6ec1f9 added an assertion 2015-10-27 08:37:43 +01:00
Araq
ee08c6eecf tries to fix the travis build 2015-10-26 14:57:22 +01:00
Magnus Jöud
f68330e672 fixed shr documentation
add docs on shr filling with zeros
2015-10-26 00:45:48 +01:00
Araq
aa36e73ecf fixes #3431, fixes #3370, fixes #3468 2015-10-25 02:22:50 +01:00
Araq
77dc0e50ff fixes #3474 2015-10-25 02:38:33 +02:00
Araq
cd7b5ae1eb fixes #1799 properly 2015-10-25 02:35:18 +02:00
Araq
c1c76a20e6 try to make travis generate the tar.xz 2015-10-25 01:29:51 +02:00
Araq
5206c310e6 fixes #1799 2015-10-25 01:26:08 +02:00
Andreas Rumpf
c7eaa8ae03 Merge pull request #3470 from FedericoCeratto/patch-5
Replace "prefix" with "suffix" in endsWith doc
2015-10-23 19:36:17 +02:00
Federico Ceratto
d1bb246c20 Replace "prefix" with "suffix" in endsWith doc 2015-10-23 17:35:55 +01:00
Andreas Rumpf
1c9f05ef13 Merge pull request #3442 from Dhertz/devel
Make sure the json module decodes UTF16 correctly
2015-10-23 02:02:07 +02:00
Andreas Rumpf
ba63ea9e82 Merge pull request #3454 from jlp765/osproc
add simple example for execProcess, exeCmd, execCmdEx
2015-10-23 02:01:26 +02:00
Andreas Rumpf
2dff190512 Merge pull request #3467 from nanoant/patch/fuse-msg-api-n-use-stdout-help
Simplify msg API and always use stdout for help/usage
2015-10-22 22:49:03 +02:00
Adam Strzelecki
24731c5360 compiler/commands: Always write usage to stdout
Usage is compiler command output, not diagnostics, so we shall output it to
stdout. Also this makes: nim -h | less or nim -h | grep ... working.
2015-10-22 22:14:45 +02:00
Adam Strzelecki
acb6a36656 msgs: One msgWriteln with optional flags
Instead of msgWriteln, outWriteln and stdoutWriteln doing essentially the same.
2015-10-22 22:09:15 +02:00
Andreas Rumpf
705cdf8553 Merge pull request #3466 from nanoant/patch/remove-dead-mac-platform-code
system/dyncalls: OS X is already handled as posix
2015-10-22 21:15:31 +02:00
Andreas Rumpf
da33d5ef62 Merge pull request #3464 from yglukhov/disable-failing-tests
Fixed tests for TravisCI.
2015-10-22 21:14:54 +02:00
Adam Strzelecki
a02359b4e1 system/dyncalls: OS X is already handled as posix
So elif defined(mac) has absolutely no effect, also this block uses some legacy
discouraged NSCreateObjectFileImageFromFile function.
2015-10-22 20:40:02 +02:00
Yuriy Glukhov
e5aefbd1d4 Fixed tests for TravisCI 2015-10-22 21:34:37 +03:00
Araq
a90e23a4dd added --reportConceptFailures switch to the manual 2015-10-22 12:14:33 +02:00
Araq
9cc25f8b77 fixes #3452 2015-10-22 12:14:32 +02:00
Araq
ec2d370053 added --reportConceptFailures switch 2015-10-22 12:14:31 +02:00
Araq
e722770fbb doc\advopt.txt
added --reportConceptFailures switch
2015-10-22 12:14:31 +02:00
Dominik Picheta
bf6211df6c Merge pull request #3463 from yglukhov/patch-1
Fixed broken links
2015-10-22 10:38:30 +01:00
Yuriy Glukhov
c894f6fd25 Fixed broken links 2015-10-22 12:09:04 +03:00
Araq
d93507fd2e fixes #3338 2015-10-22 10:24:46 +02:00
Araq
3f24a7ff3e mitigates unclear nimsuggest problem 2015-10-22 10:24:19 +02:00
Araq
3d512a73e6 documentation improvements; system.nim docs adapted to unix's braindead idea of how software should be packaged which didn't work in 1970 and surprise doesn't work in 2015 either 2015-10-21 02:18:38 +02:00
Araq
d221241ac5 fixes wrong doc comments 2015-10-19 16:11:39 +02:00
Araq
3ccd5ca64b make terminal.nim work with --app:gui 2015-10-19 16:09:35 +02:00
Araq
03550f14f8 createThread is more convenient to use with a proc taking no arguments 2015-10-19 16:09:35 +02:00