forked from flightaware/tclcurl-fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
executable file
·1246 lines (725 loc) · 33.9 KB
/
ChangeLog.txt
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-10-03 Andres Garcia <[email protected]>
* Release version 7.22.0
2011-10-01 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fix 'bodyvar' bug.
2011-09-29 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLAUTH_NTLM_WB, and CURLOPT_TELNETOPTIONS.
2011-09-29 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/getInfo.tcl: Added support for the 'getinfo' options CURLINFO_PRIMARY_PORT,
CURLINFO_LOCAL_IP and CURLINFO_LOCAL_PORT
2011-09-27 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for the proxy type: socks5_hostname and the new
protocols for '-protocols' and '-protocolsredir'
2011-09-27 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_GSSAPI_DELEGATION.
* configure.in,
generic/tclcurl.h,
generic/tclcurl.c,
generic/tclcurl.tcl: Tclcurl now reports to be version 7.22.0
2011-09-26 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_RESOLVE, CURLOPT_TLSAUTH_USERNAME,
CURLOPT_TLSAUTH_PASSWORD, CURLOPT_TLSAUTH_TYPE and CURLOPT_TRANSFER_ENCODING
2011-09-25 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/ftpWildcard.tcl: Added support for CURLOPT_WILDCARDMATCH, CURLOPT_CHUNK_BGN_FUNCTION,
CURLOPT_CHUNK_END_FUNCTION and CURLOPT_FNMATCH_FUNCTION.
2011-09-24 Andres Garcia <[email protected]>
* pkgIndex.tcl.in: Fixed the reason why 'curl::transfer' didn't work.
2011-09-09 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/pop3.tcl
tests/smtp.tcl: Added support for CURLOPT_MAIL_FROM, CURLOPT_MAIL_RCPT and CURLOPT_FTP_USE_PRET
2011-09-08 Andres Garcia <[email protected]>
* configure.in,
generic/tclcurl.h,
generic/tclcurl.c,
generic/tclcurl.tcl: Tclcurl now reports to be version 7.21.7
2011-09-05 Andres Garcia <[email protected]>
* generic/tclcurl.c: changed a 'ulong' to 'usigned long int'.
* generic/tclcurl.h: removed include to 'curl/types.h'.
2009-09-30 Andres Garcia <[email protected]>
* Release version 7.19.6
2009-09-27 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for http1.0 proxies.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_NOPROXY.
2009-09-25 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Fixed CURLOPT_FTP_SSL_CC and following options
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_PROTOCOLS and
CURLOPT_REDIR_PROTOCOLS
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_SSH_KNOWNHOSTS and
CURLOPT_SSH_KEYFUNCTION.
2009-09-24 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_POSTREDIR
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLAUTH_DIGEST_IE
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_TFTP_BLKSIZE
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_SOCKS5_GSSAPI_SERVICE and
CURLOPT_SOCKS5_GSSAPI_NEC
2009-09-23 Andres Garcia <[email protected]>
* configure.in,
makefile.in: Updated to TEA 3.7
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_CERTINFO and CURLINFO_CERTINFO.
2008-09-08 Andres Garcia <[email protected]>
* Release version 7.19.0
2008-09-07 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_ADDRESS_SCOPE
2008-08-31 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
generic/multi.h,
generic/multi.c: Had to add a lot of 'CONST's to prevent
warnings when compiling with Tcl 8.5.4, pretty much the same
I had to remove because of 8.5.3.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLINFO_PRIMARY_IP and
CURLINFO_APPCONNECT_TIME
2008-08-25 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/getInfo.tcl: Added support for CURLINFO_REDIRECT_URL.
2008-08-25 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Changed the 'anyauth rewind' to use the new
CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA.
2008-08-24 Andres Garcia <[email protected]>
* generic/tclcurl.h: Fixed the writeproc option.
2008-08-23 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/progressProcPause.tcl: Added commands 'pause' and 'resume'.
2008-08-19 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLPROXY_SOCKS4A and
CURLPROXY_SOCKS5_HOSTNAME.
2008-08-19 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
generic/multi.h,
generic/multi.c: I had to remove a lot of 'CONST's from the code
to prevent warnings when compiling against Tcl 8.5.3.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_PROXY_TRANSFER_MODE.
2007-11-01 Andres Garcia <[email protected]>
* Release version 7.17.1
2007-10-25 Andres Garcia <[email protected]>
* generic/tclcurl.h
generic/tclcurl.c: Compensated for the options which changed names.
* generic/tclcurl.h
generic/tclcurl.c: Added support for CURLOPT_POST301 and
CURLOPT_SSH_HOST_PUBLIC_KEY_MD5
* generic/tclcurl.c: Use CURLOPT_COPYPOSTFIELDS instead of
CURLOPT_POSTFIELDS.
2007-10-24 Andres Garcia <[email protected]>
* generic/tclcurl.h
generic/tclcurl.c: Took advantage of libcurl remembering options
passed as strings.
2007-07-19 Andres Garcia <[email protected]>
* Release version 7.16.4
2007-07-16 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Change krb4level to krblevel.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_NEW_FILE_PERMS and
CURLOPT_NEW_DIRECTORY_PERMS.
2007-07-07 Andres Garcia <[email protected]>
* generic/multi.h,
generic/multi.c: Added support for the CURLMOPT_MAXCONNECTS option.
2007-05-22 Sven Hoexter
* doc/tclcurl.n: Fixed a couple of errors in the man page.
2007-04-16 Andres Garcia <[email protected]>
* Release version 7.16.2
2007-04-13 Andres Garcia <[email protected]>
* generic/tclcurl.c: When saving the headers into an array, TclCurl
would only keep the last 'Set-Cookie' header.
2007-04-12 Andres Garcia <[email protected]>
* configure.in,
Makefile.in: Updated the configure scripts to TEA 3.6
* generic/tclcurl.h,
generic/tclcurl.c: Added support for the new SSH options.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_TIMEOUT_MS and
CURLOPT_CONNECTTIMEOUT_MS.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_HTTP_CONTENT_DECODING and
CURLOPT_HTTP_TRANSFER_DECODING.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FTP_SSL_CCC.
* generic/tclcurl.c: Added 'CONV' to the list 'curl::versioninfo' may return.
2007-03-16 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fixed a crash when changing a handle from using
'writeproc' to not using one.
2006-11-15 Andres Garcia <[email protected]>
* Release version 7.16.0
2006-11-11 Andres Garcia <[email protected]>
* generic/tclcurl.c: Use the new curl_easy_escape and
curl_easy_unescape.
2006-11-07 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
generic/multi.h,
generic/multi.c: Added support for CURLMOPT_PIPELINING.
2006-11-05 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Removed support for third party ftp transfers.
2006-10-22 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FTP_ALTERNATIVE_TO_USER.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLINFO_FTP_ENTRY_PATH
2006-10-22 Andres Garcia <[email protected]>
* configure.in: Changed the code to check the installed version of
libcurl to use 'curl-config --checkfor'
2006-10-14 Andres Garcia <[email protected]>
* generic/tclcurl.c: Prevented a few warnings about casts to
and from pointers.
2006-04-17 Andres Garcia <[email protected]>
* Release version 0.15.3
2006-04-16 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLPROXY_SOCKS4.
2006-04-15 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_LOCALPORT,
and CURLOPT_LOCALPORTRANGE.
2006-04-13 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Prevented a few compiler warnings.
2006-04-12 Andres Garcia <[email protected]>
* configure.in,
Makefile.in,
pkIndex.tcl,
tclconfig/: Updated the TEA scripts to version 3.5.
2006-01-10 Andres Garcia <[email protected]>
* Release version 0.15.1
2006-01-09 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FTP_FILEMETHOD.
2006-01-07 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FTP_SKIP_PASV_IP.
2005-12-28 Andres Garcia <[email protected]>
* packages/Windows/tclcurl.mk: Fixed the doc directory.
2005-09-04 Andres Garcia <[email protected]>
* Relase version 0.14.1
2005-09-03 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/getInfo.tcl: Added support for CURLOPT_COOKIELIST and
CURLINFO_COOKIELIST.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_IGNORE_CONTENT_LENGTH.
* generic/tclcurl.h,
generic/tclcurl.c.
tests/httpPost.tcl: Added support for CURLFORM_FILECONTENT.
* generic/tclcurl.h,
generic/tclcurl.c: Fixed memory leaks during http posts.
2005-06-02 Andres Garcia <[email protected]>
* Release version 0.14.0
2005-06-02 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Updated the way 'sslversion' works.
2005-06-02 Andres Garcia <[email protected]>
* configure.in,
Makefile.in: Updated the scripts to the latest version of TEA
2005-05-10 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fixed the options 'httpauth', 'proxyauth',
'ipresolve', 'ftpssl' and 'ftpsslauth'
2005-04-19 Andres Garcia <[email protected]>
* Released version 0.13.2
2005-04-19 Andres Garcia <[email protected]>
* Makefile.in: Daniel A. Steffen's fix for parallel builds.
2005-04-16 Andres Garcia <[email protected]>
* include/tclcurl.h: Fixed the msys-mingw build.
2005-04-12 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: When the user chooses the 'any' auth method,
TclCurl will silently use CURLOPT_IOCTLFUNCTION and
CURLOPT_IOCTLDATA in case libcurl needs to 'rewind' the data.
2005-04-08 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support SSPI in curl::versioninfo.
2005-04-07 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support fot CURLOPT_FTP_ACCOUNT.
2005-04-06 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/ftp3party.tcl: Removed suppport for the obsolete options
"-sourcehost", "-sourcepath", "-sourceport", "-pasvhost" and
added support for the new third party ftp options "-sourceurl"
and "-sourcequote".
* generic/tclcurl.h: Fixed the "-sourcepostquote" option.
2005-04-05 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/getInfo.tcl: Added support for CURLINFO_NUM_CONNECTS,
CURLINFO_SSL_ENGINES and CURLINFO_HTTP_CONNECTCODE.
2004-10-18 Andres Garcia <[email protected]>
* Released version 0.12.2
2004-10-08 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Support for the share interface in threads.
2004-10-07 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fixed the 'cookiejar' option.
2004-10-06 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/strerror.tcl: Added the 'curl::easystrerror', 'curl::sharestrerror'
and 'curl::multistrerror' commands.
2004-10-04 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FTPSSLAUTH.
2004-09-30 Andres Garcia <[email protected]>
* Released version 0.12.1
2004-09-29 Andres Garcia <[email protected]>
* generic/multi.c: Used Tcl_SetMaxBlockTime to improve automatic
transfers.
* tests/ftpUpload: Added an example of ftp upload including commands
to the server.
* generic/tclcurl.h,
generic/tclcurl.c,
tests/ftp3party.tcl: Added support for third party ftp transfers.
2004-09-28 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fixed the 'autoreferer' option.
2004-08-13 Andres Garcia <[email protected]>
* tests/debugProc.tcl: Added the ssl data types.
2004-08-13 Andres Garcia <[email protected]>
* generic/tclcurl.c: Use CURL_READFUNC_ABORT to abort uploads.
2004-08-13 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added 'reset' to the easy interface commands.
2004-08-12 Andres Garcia <[email protected]>
* generic/multi.h,
generic/multi.c: Hooked the multi interface to Tcl's event loop,
doesn't work that well so far.
2004-07-09 Andres Garcia <[email protected]>
* Released version 0.12.0
2004-07-05 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added incomplete support for the share
interface.
2004-07-02 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_PORT,
CURLOPT_TCP_NODELAY, CURLOPT_AUTOREFERER.
* generic/tclcurl.h: Added 'IDN' to the features reported by
'curl::versioninfo'.
2004-04-30 Andres Garcia <[email protected]>
* packages/windows/tclcurl.mk: Uses new curl compilation.
2004-04-06 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fixed ftps support.
2004-02-04 Andres Garcia <[email protected]>
* Released version 0.11.0
2004-01-15 Andres Garcia <[email protected]>
* ReadMeW32.txt: Updated instructions to compile openssl.
2004-01-08 Andres Garcia <[email protected]>
* generic/tclcurl.c,
generic/tclcurl.h: Added support for CURLOP_FTP_SSL.
2004-01-02 Andres Garcia <[email protected]>
* generic/tclcurl.c: Fixed the 'netrc' option.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_NETRC_FILE.
2003-12-29 Andres Garcia <[email protected]>
* Released version 0.10.8
2003-12-19 Andres Garcia <[email protected]>
* generic/tclcurl.h: TclCurl still thought it was in version
0.10.4.
2003-12-18 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLINFO_HTTPAUTH_AVAIL.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLINFO_PROXYAUTH_AVAIL.
* generic/tclcurl.c: 'curl::versioninfo' will now say if there
is support for asynchronus DNS and SPNEGO.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_IPRESOLVE.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_MAXFILESIZE.
2003-12-18 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Fixed the 'httpauth' option.
2003-11-11 Andres Garcia <[email protected]>
* autoconf.in: The configure scripts would sometimes use the
cURL in '/usr/bin' instead of the one in '/usr/local/bin'
despite the '--with-curlprefix' tag.
2003-11-04 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLINFO_RESPONSE_CODE.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FPT_RESPONSE_TIMEOUT.
2003-09-03 Andres Garcia <[email protected]>
* Release TclCurl 0.10.7
2003-09-03 Andres Garcia <[email protected]>
* configure.in: Changed because of the new version string used by
cURL.
2003-08-17 Andres Garcia <[email protected]>
* generic/tclcurl.tcl,
generic/tclcurl.c,
generic/tclcurl.h: Some work on hooking the multi interface
to Tcl's event loop, it isn't even close to working though.
2003-08-14 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURL_FTP_CREATE_MISSING_DIRS.
2003-08-04 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_HTTPAUTH.
2003-07-31 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added 'command' option to 'configure'
to execute a Tcl command after the transfer is done. So
far it only works in blocking transfer which is pretty
much useless.
2003-05-22 Andres Garcia <[email protected]>
* Release TclCurl 0.10.5
2003-05-20 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_FTP_USE_EPTR.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for 'all' in the 'encoding'
option.
* generic/tclcurl.c: Changed the way the http header is dealt
with in the 'headervar' option.
2003-05-13 Andres Garcia <[email protected]>
* generic/tclcurl.c: The 'progressproc' option would crash in
windows machines.
* packages/windows/tclcurl.mk: Changed for OpenSSL 0.9.7b.
* ReadMeW32.txt: New instructions on how to compile OpenSSL 0.9.7b.
2003-05-12 Andres Garcia <[email protected]>
* generic/multi.c: The multihandles couldn't store the data of more
than two easy handles.
* generic/multi.c: The '$multiHandle active' command wasn't returning
anything.
2003-04-07 Andres Garcia <[email protected]>
* Release TclCurl 0.10.4
2003-04-04 Andres Garcia <fandom@retemailes>
* generic/tclcurl.tcl: If there is an error, the 'curl::transfer'
command will now return the code of the error, without the
'Couldn't perform transfer' message.
2003-03-24 Andres Garcia <[email protected]>
* ReadMeW32.txt: Updated build instructions for Windows.
* Makefile.in: Added an 'uninstall' target to the make file.
2003-03-18 Andres Garcia <[email protected]>
* generic/tclcurl.tcl: Added 'getinfo' features to 'curl::transfer'.
2003-02-20 Andres Garcia <[email protected]>
* packages/windows/tclcurl.mk: A make file to create all the Windows
packages.
* packages/windows/SetUp.tcl: The setup script for TclCurl in Windows.
* packages/rpm/tclcurl.spec: The spec file to create the rpm package.
2003-02-04 Andres Garcia <[email protected]>
* configure.in: It will no longer choke with the version
string of cURL's prereleases.
2003-02-03 Andres Garcia <[email protected]>
* tclconfig: Updated to the TEA2 scripts in the CVS.
* generic/tclcurl.tcl: Alex Khassin suggested using fully qualified
names to prevent problems with namespaces.
2003-01-30 Andres Garcia <[email protected]>
* Release TclCurl 0.10.3
2003-01-29 Andres Garcia <[email protected]>
* generic/multi.c: if 'curl_multi_perform' returns '-1' it will be
invoked again to read all data in the queue.
2003-01-28 Andres Garcia <[email protected]>
* generic/tclcurl.c: Changed the source to use the new constant names
CURLOPT_WRITEDATA, CURLOPT_READDATA and CURLOPT_HEADERDATA.
* generic/tclcurl.c: When using '-headervar' in Windows you could end
up with carriage returns in the name of the header.
2003-01-27 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_HTTP200ALIASES.
2003-01-25 Andres Garcia <[email protected]>
* generic/tclcurl.c,
generic/multi.c: Applied Albert Chin-A-Young patch to change C++ style
comments to C style.
* configure.in: If 'curl' is in '/usr/bin/' or '/usr/local/bin' it will no
longer be necessary to use '--with-curlprefix' in Windows.
2003-01-24 Andres Garcia <[email protected]>
* configure.in: If you want to compile TclCurl with ssl support in Windows,
you can now use the '--enable-ssl' option.
2003-01-08 Andres Garcia <[email protected]>
* generic/tclcurl.c: No more crashes when using TclCurl in a threads enabled
Tcl.
2002-10-14 Andres Garcia <[email protected]>
* Release version 0.10.1
2002-10-13 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for 'CURLOPT_PROXYTYPE'.
* doc/tclcurl.n,
doc/tclcurl.html,
doc/tclcurl_multi.n,
doc/tclcurl_multi.html: Updated docs.
* configure.in: Updated version.
* generic/tclcurl.c: Started using 'curl_free' to free memory
allocated by 'curl_escape' and 'curl_unescape'.
* tests/escape.tcl: Added an example for 'curl::escape' and
'curl::unescape'
2002-10-12 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Created the 'curl::versioninfo' command
to support 'curl_version_info'.
2002-10-11 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for 'CURLOPT_ENCODING', it
can either be 'identity' or 'deflated'.
2002-10-10 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
tests/bufferSize.tcl: Added support for CURLOPT_BUFFERSIZE.
* tests/writeProc.tcl: Added a message to the write callback, so
that the difference with bufferSize.tcl can be noticed.
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLOPT_NOSIGNAL.
* generic/tclcurl.tcl,
tests/curlConfig.tcl: Added support for the '-ca' option for
the 'curl::curlConfig' command.
2002-10-06 Andres Garcia <[email protected]>
* generic/multi.h,
generic/multi.c,
tests/multi/single.tcl,
tests/multi/double.tcl: The multi interface tests should now work
as expected.
2002-10-03: Andres Garcia <[email protected]>
* configure.in,
Makefile.in: Asif Haswarey reported that '--with-curlinclude' did not
work and that the 'pkgIndex.tcl' generated would not do in Solaris.
2002-10-01 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c,
generic/multi.h,
generic/multi.c: Added a bunch of CONSTs to prevent warnings when
compiling with Tcl/Tk 8.4.
2002-09-29 Andres Garcia <[email protected]>
* tests/progressProc.tcl: It will skip all that useless decimals now.
* generic/tclcurl.h,
generic/tclcurl.c: The buffer option to post data would not work.
2002-09-26 Andres Garcia <[email protected]>
* tests/headNoHead.tcl: removed the 'header 1' option, it is redundant
if you use 'writeheader', made the output more explicit.
2002-09-24 Andres Garcia <[email protected]>
* doc/tclcurl.n,
doc/tclcurl.html,
tests/debugProc.tcl: The values given for the data types in the
'debugproc' options were wrong, changed the test to show it more clearly.
2002-08-14 Andres Garcia <[email protected]>
* ReadMeW32.txt: New instructions on how to compile TclCurl in Windows.
* configure.in: Changed so that it will configure in msys-mingw
without using a 'curl-config'
2002-06-25 Andres Garcia <[email protected]>
* Release version 0.9.8
2002-06-23 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Changed the parameters of the curlProgressCallback
function from 'size_t' to 'double'.
2002-06-22 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLFORM_BUFFER.
* generic/tclcurl.c: Fix a bug when duplication a curl handle, I was not
allocating space before doing a memcpy.
* generic/tclcurl.c: Changed all the calls to ckalloc, malloc, ckfree to
Tcl_Alloc and Tcl_Free.
2002-06-13 Andres Garcia <[email protected]>
* generic/tclcurl.c: Changed the TIMECOND_IFMODSINCE and
TIMECOND_IFMODSINCE, so that now they have a CURL_
prefix as they do now in libcurl.
2002-06-12 Andres Garcia <[email protected]>
* generic/tclcurl.h,
generic/tclcurl.c: Added support for CURLINFO_REDIRECT_TIME and
CURLINFO_REDIRECT_COUNT.
2002-05-14 Andres Garcia <[email protected]>
* generic/multi.h,
generic/multi.c: Added support for the multi interface.
2002-04-30 Andres Garcia <[email protected]>
* Release version 0.9.6
2002-04-30 Andres Garcia <[email protected]>
* tclcurl.h,
tclcurl.c: Changed the 'interface' field in the 'curlObjData'
struct to 'interfaces', otherwise it wouldn't compile in Windows,
please, don't ask me why (but if you know, please tell me).
* setup.tcl: the setup script for Windows will now work with
older versions of Tcl/Tk.
2002-04-23 Andres Garcia <[email protected]>
* configure.in: fixed a small incompatibility with Solaris.
* tclcurl.c: fixed a seg fault when using the 'httpheader' option
twice.
* tclcurl.h,
tclcurl.c: support for CURLOPT_DNS_CACHE_TIMEOUT and
CURLOPT_DNS_USE_GLOBAL_CACHE.
2002-04-22 Andres Garcia <[email protected]>
* tclcurl.n: Updated the documentation about the error codes.
2002-04-17 Andres Garcia <[email protected]>
* tclcurl.h,
tclcurl.c: added support for CURLOPT_DEBUGFUNCTION.
2002-04-16 Andres Garcia <[email protected]>
* tclcurl.c: If you set the progressproc option to the empty string
the internal progress function will be restored.
2002-04-15 Andres Garcia <[email protected]>
* tclcurl.h,
tclcurl.c: added support for CURLFORM_FILENAME and changed the code
so that all options are passed in a CURLFORM_ARRAY.
2002-04-14 Andres Garcia <[email protected]>
* tclcurl.h: Changed the 'httpPost' structs to their new
name 'curl_httppost'.
2002-04-12 Andres Garcia <[email protected]>
* configure.in,
makefile.in,
tclconfig/tcl.m4: changed the configure scripts to the lastest
CVS version of the sample extension.
* tclcurl.c,
tclcurl.h,
tclcurl.tcl: passed this files to the generic subdirectory as done
in the sample extension.
2002-04-01 Andres Garcia <[email protected]>
* Release version 0.9.5
2002-03-29
* tclcurl.h,
tclcurl.c: Support for CURLOPT_PREQUOTE
* tclcurl.tcl: 'curl::transfer' now returns a '0' if everything
went well.
2002-03-28
* Update the configure.in script to the new TEA scripts by
Jeff Hobbs.
* tclcurl.h, tclcurl.c: Added support for CURLINFO_CONTENT_TYPE.
2002-01-29
* Release version 0.9.3
2002-01-25 Andres Garcia <[email protected]>
* tclcurl.c: Added support for CURLFORM_CONTENTHEADER.
2002-01-24 Andres Garcia <[email protected]>
* tclcurl: the CURLOPT_SSL_VERIFYHOST was misspelled.
* Added support for CURLOPT_SSLCERTTYPE, CURLOPT_SSLKEY,
CURLOPT_SSLKEYTYPE, CURLOPT_SSLKEYPASSWD, CURLOPT_SSL_ENGINE,
CURLOPT_SSL_ENGINEDEFAULT.