summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* 2nd attempt to fix tryRecvAraq2014-10-201-1/+1
|
* fixes tryRecvAraq2014-10-201-3/+4
|
* Merge pull request #1564 from trustable-code/develAndreas Rumpf2014-10-121-0/+2
|\ | | | | Raise exception on adding a non-existent file to a zip archive
| * Code more cleanerSimon Krauter2014-10-111-4/+1
| |
| * Raise exception on adding a non-existent file to a zip archiveSimon Krauter2014-10-101-0/+5
| |
* | fixes recent regressionAraq2014-10-111-1/+4
| |
* | minor cleanup for cpuinfoAraq2014-10-111-2/+1
| |
* | fixes #1551Araq2014-10-111-3/+3
| |
* | Update cpuinfo.nimLuis Ricardo2014-10-071-1/+8
|/ | | | sys/types.h needed for macosx and freebsd sys/param.h needed for openbsd and netbsd
* Merge pull request #1545 from rbehrends/setjmp-perfAndreas Rumpf2014-10-021-4/+17
|\ | | | | Improve setjmp()/longjmp() performance.
| * Improve setjmp()/longjmp() performance.Reimer Behrends2014-09-251-4/+17
| | | | | | | | | | | | | | | | | | | | | | Exception handling for the C backend used setjmp()/longjmp() unconditionally. However, on POSIX systems, these functions save and restore the signal mask, adding considerable overhead to exception handling, even where no exceptions are involved. The compiler and library now try to use either _setjmp()/_longjmp() or sigsetjmp()/siglongjmp() where possible, marked by the defines "nimRawSetjmp" and "nimSigSetjmp", respectively. The define "nimStdSetjmp" can be used to revert to setjmp()/longjmp() instead.
* | Fix permissions for createDir() on Unix systems.Reimer Behrends2014-09-221-2/+2
|/ | | | | Permissions were set to 0o711 by default; they should be 0o777, with umask being responsible for restricting permissions further.
* Merge pull request #1507 from idlewan/postgresqlAndreas Rumpf2014-09-192-28/+86
|\ | | | | Add postgresql prepared queries
| * Add postgresql prepared queries and stop relying on string formattingErwan Ameil2014-08-292-28/+86
| | | | | | | | for sql parameter passing
* | Various fixes to how the Boehm GC's interface.Reimer Behrends2014-09-181-10/+18
| | | | | | | | | | | | | | The Boehm GC interface did not define the getXXXSharedMem() functions that were needed for compilation with --threads:on. It also used `ppointer` instead of `PPointer`, so it failed to compile with --cs:partial.
* | manual merge of #1526Araq2014-09-111-1/+1
| |
* | Threads work againAraq2014-09-111-32/+46
| |
* | fixes #1444Araq2014-09-112-3/+3
| |
* | Merge pull request #1404 from def-/strutils-countAndreas Rumpf2014-09-051-0/+35
|\ \ | | | | | | Add count procedures to strutils
| * | overlapping as a parameter for count insteaddef2014-07-281-17/+9
| | |
| * | Add count procedures to strutilsdef2014-07-231-0/+43
| | |
* | | Merge pull request #1514 from fuzzthink/develSimon Hafner2014-09-021-2/+2
|\ \ \ | | | | | | | | Pointer -> pointer to fix compile error using --cs:partial
| * | | Pointer -> pointer to fix compile error using --cs:partialfuzzthink2014-09-021-2/+2
| | | |
* | | | Merge pull request #1509 from idlewan/cookiesAndreas Rumpf2014-09-011-6/+9
|\ \ \ \ | | | | | | | | | | Secure and HttpOnly cookies
| * | | | Secure and HttpOnly cookiesErwan Ameil2014-08-301-6/+9
| | | | |
* | | | | Escape ' and / when using escape in xmltreeErwan Ameil2014-08-301-0/+4
|/ / / /
* | | | Add asyncftpclient module.Dominik Picheta2014-08-293-14/+315
| | | |
* | | | Async macro fixes. Added waitFor.Dominik Picheta2014-08-291-7/+17
| |_|/ |/| |
* | | Ftpclient module now uses generics.Dominik Picheta2014-08-241-93/+89
| | |
* | | Fixed gcsafe in asynchttpserver module.Dominik Picheta2014-08-211-2/+3
| | |
* | | Merge pull request #1495 from barcharcraz/fix1491Andreas Rumpf2014-08-201-11/+17
|\ \ \ | | | | | | | | fixed #1491
| * | | fixed #1491Charlie Barto2014-08-191-11/+17
| | | |
* | | | Implements `or` and `and` for futures. Ref #1487.Dominik Picheta2014-08-191-0/+21
|/ / /
* | | fixes #1445Araq2014-08-191-4/+0
| | |
* | | Export `==` from net module for TPort.Dominik Picheta2014-08-171-1/+1
| | |
* | | Merge branch 'devel' of github.com:Araq/Nimrod into develDominik Picheta2014-08-171-5/+29
|\ \ \
| * \ \ Merge pull request #1461 from Varriount/os/add-hiddenFileAndreas Rumpf2014-08-171-5/+29
| |\ \ \ | | | | | | | | | | Add isHidden procedure to os.nim
| | * | | Made the code actually work, updated the docstring to point out that the ↵Clay Sweetser2014-08-101-9/+15
| | | | | | | | | | | | | | | | | | | | given file path must exist *and* be accessible from the current working directory of the running program.
| | * | | Make device and file ID's public.Clay Sweetser2014-08-061-4/+22
| | | | | | | | | | | | | | | | | | | | Added the isHidden() proc
* | | | | Remove irc module. Ref #1486.Dominik Picheta2014-08-171-503/+0
|/ / / /
* | | | Make times module compile with javascript backenddef2014-08-161-38/+38
| | | |
* | | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-141-3/+2
|\ \ \ \
| * | | | Fixes #1158.Dominik Picheta2014-08-141-3/+2
| | | | |
* | | | | some minor fixesAraq2014-08-141-1/+1
|/ / / /
* | | | fixes #1450Araq2014-08-141-1/+1
| | | |
* | | | fixes #1472Araq2014-08-141-9/+0
| | | |
* | | | fixes newly introduced bugsAraq2014-08-141-1/+1
| | | |
* | | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-143-323/+12
|\ \ \ \
| * \ \ \ Merge pull request #1351 from def-/random-openarraysDominik Picheta2014-08-131-1/+6
| |\ \ \ \ | | | | | | | | | | | | Add random() for openarrays
| | * | | | Add random() for openarraysdef2014-07-121-1/+6
| | | | | |
re>30d30133 ^
7a9d127a ^
dab37236 ^
7a9d127a ^
dab37236 ^

78bd151c ^
7a9d127a ^
dab37236 ^
f23f768d ^
b1bf0540 ^
f23f768d ^
b1bf0540 ^

f23f768d ^
f7584469 ^
b1bf0540 ^



f7584469 ^
b1bf0540 ^

f7584469 ^
b1bf0540 ^





f7584469 ^
b1bf0540 ^



f7584469 ^
b1bf0540 ^
f7584469 ^

b1bf0540 ^

f7584469 ^
dab37236 ^












b1bf0540 ^

dab37236 ^
b1bf0540 ^




f23f768d ^
b1bf0540 ^





f23f768d ^

b1bf0540 ^
f23f768d ^
b1bf0540 ^

f23f768d ^

dab37236 ^
2b743ea9 ^
7a9d127a ^
dab37236 ^

2b743ea9 ^
7a9d127a ^




30d30133 ^

e6b076ce ^
30d30133 ^

e6b076ce ^


2b743ea9 ^



e6b076ce ^

2b743ea9 ^




e6b076ce ^
2b743ea9 ^
e6b076ce ^




dab37236 ^
e6b076ce ^


dab37236 ^
e6b076ce ^
dab37236 ^


2b743ea9 ^
dab37236 ^

e6b076ce ^

dab37236 ^
e6b076ce ^

30d30133 ^














1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327