Commit Graph

5556 Commits

Author SHA1 Message Date
Dominik Picheta
076f993150 Fixes nim-lang/nimble#84 2015-01-05 18:15:18 +00:00
Dominik Picheta
aaf6d8579e Merge pull request #1867 from def-/httpclient-multipart
Add multipart parameter to httpclient's post and postContent
2015-01-05 17:35:11 +00:00
def
9cf948e0c8 Rename newData() to newMultipartData() 2015-01-05 18:29:17 +01:00
Dominik Picheta
08e7c16d67 Merge pull request #1865 from def-/async-fixes
Async fixes
2015-01-05 16:16:05 +00:00
def
41cf963848 Remove debugging echos again 2015-01-05 13:19:10 +01:00
reactormonk
795256eb7f Merge pull request #1870 from infininight/devel
Add TextMate bundle link
2015-01-05 11:23:49 +05:00
Michael Sheets
e26846d0ac Add TextMate bundle link 2015-01-04 22:01:50 -06:00
Zahary Karadjov
f2fdac531d test cases for generic macros 2015-01-05 03:57:09 +02:00
Zahary Karadjov
f3c55704a0 unstaged file 2015-01-05 03:56:05 +02:00
Zahary Karadjov
5e4ae8dbb4 fix #1858; Add support for generic templates and macros
Implementation notes:
Just after overload resolution, the resolved generic params will be added to the
call expression to be later processed in evalTemplate and evalMacroCall. These
procs have been modified to handle the increased number of parameters, but one
remaining issue is that immediate templates and macros don't go through the same
process. The next commit will outlaw the use of generic parameters with such macros.
2015-01-05 03:53:31 +02:00
Zahary Karadjov
13a18663d2 fix #1859 2015-01-05 03:53:31 +02:00
Araq
4316fdddf3 Merge branch 'devel' of https://github.com/Araq/Nim into devel 2015-01-05 02:27:36 +01:00
Araq
7524610b31 fixes #1796 2015-01-05 02:27:24 +01:00
def
e77eec02f3 A few more fixes to httpclient multipart 2015-01-05 01:58:39 +01:00
def
d4955090ae post should work when extra headers don't have trailing newline 2015-01-05 01:55:52 +01:00
def
a90c388f6b Check that p is not nil in format 2015-01-05 01:40:47 +01:00
def
f223e94ccd Add operator %* to JSON 2015-01-05 01:31:28 +01:00
def
06ad80cc45 indent = 0 looks better for $(node: JsonNode) 2015-01-05 01:30:03 +01:00
def
38392d2d03 Add multipart parameter to httpclient's post and postContent 2015-01-05 00:14:53 +01:00
def
f56dcd1505 Handle interrupt on epoll_wait graciously (allows strace to work) 2015-01-04 23:07:21 +01:00
def
d60d007281 Close async socket on error (instead of looping on epoll_wait with 100% CPU) 2015-01-04 22:59:41 +01:00
Dominik Picheta
5ee4806aa3 Merge pull request #1851 from jpoirier/feature/docs
fix a couple of typos, grammar, and removal of whitespace
2015-01-03 21:21:41 +00:00
reactormonk
0699928b48 Merge pull request #1852 from def-/fix-uri
Remove debug messages. Bad def-.
2015-01-04 02:12:15 +05:00
def
c7fac03abe Remove debug messages 2015-01-03 21:53:40 +01:00
Joseph Poirier
cd73b3b12b fix a couple of typos, grammar, and removal of whitespace 2015-01-03 14:24:02 -06:00
Dominik Picheta
10ba9c4dc1 Merge pull request #1826 from jpoirier/devel
clarify single letter option requirements
2015-01-03 19:27:28 +00:00
Dominik Picheta
76006eeab3 Merge pull request #1849 from rgieseke/patch-1
Fix typo
2015-01-03 18:55:23 +00:00
Robert Gieseke
ad1945f102 Fix typo 2015-01-03 18:06:57 +01:00
Dominik Picheta
51f645d293 Merge pull request #1848 from def-/fix-uri
Fix uri & httpclient
2015-01-03 17:06:20 +00:00
def
ee62d56cad Apply #1824 to fix #1823 2015-01-03 17:44:30 +01:00
def
387d598cfb Minor cleanup 2015-01-03 17:40:33 +01:00
def
76dbce275a Fix (u: Uri), add test cases and make it work for opaque URIs 2015-01-03 17:23:13 +01:00
def
dd82f0c829 Fix httpclient to properly encode queries (path?queries) 2015-01-03 17:21:54 +01:00
Andreas Rumpf
07ccd2dca6 Merge pull request #1847 from def-/md5-fixed
Translate md5 module to unsigned numbers
2015-01-03 14:53:05 +01:00
def
7343aa0e9d Translate md5 module to unsigned numbers
Fixes the bug that files > 256 MB get wrong md5 sum calculated
2015-01-03 14:21:26 +01:00
Joseph Poirier
efe183861c Merge remote-tracking branch 'upstream/devel' into devel 2015-01-02 21:47:09 -06:00
reactormonk
8f82205d12 Merge pull request #1831 from homeworkprod/patch-1
Tutorial: Fixed slices example code.
2015-01-03 04:42:57 +05:00
reactormonk
606688e059 Merge pull request #1830 from arthurtw/devel
Fix typo
2015-01-03 04:33:43 +05:00
Audun Wilhelmsen
7592c9cf22 Added safe implicit conversion of uint8 to int16..int64, uint16 to int32..int64 etc.
Added two new tests for unsigned conversions and comparisons between signed numbers.
2015-01-03 00:10:07 +01:00
def
0a82b6eb62 Add reversed proc to unicode module 2015-01-02 23:52:46 +01:00
Zahary Karadjov
05cbbac4e5 support for static params in the user defined type classes 2015-01-02 23:58:24 +02:00
Zahary Karadjov
2f90be13e2 fix #1820 2015-01-02 23:58:24 +02:00
Zahary Karadjov
1d5ecc0dea fix #1050 2015-01-02 23:58:24 +02:00
Zahary Karadjov
aa69a8a09f expand the test case for bug 1049 2015-01-02 23:58:24 +02:00
Zahary Karadjov
5b32fb1791 re-enable semistatic[T] as a test case 2015-01-02 23:58:24 +02:00
Zahary Karadjov
b21b72dc14 fix #1049 2015-01-02 23:58:24 +02:00
Zahary Karadjov
70b5efa98d fix #544 2015-01-02 23:58:24 +02:00
Zahary Karadjov
1d55fd8d12 use unix line endings 2015-01-02 23:58:24 +02:00
Zahary Karadjov
ad65a20391 fix #419 2015-01-02 23:58:24 +02:00
Audun Wilhelmsen
c461f5a8c6 Merge branch 'devel' of https://github.com/Araq/Nim into devel 2015-01-02 22:12:11 +01:00