summary refs log tree commit diff stats
path: root/lib/pure/ftpclient.nim
Commit message (Expand)AuthorAgeFilesLines
* Use `^` instead of `-` in slicesdef2015-03-281-26/+26
* Fix a few more warningsdef2015-02-171-41/+41
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* docgen should work againAraq2014-10-051-7/+8
* Lots of documentation improvements for asyncdispatch.Dominik Picheta2014-09-121-1/+1
* Ftpclient backwards compatibility fixes.Dominik Picheta2014-08-301-23/+20
* Merge branch 'devel' into bigbreakDominik Picheta2014-08-301-117/+120
|\
| * Add asyncftpclient module.Dominik Picheta2014-08-291-12/+19
| * Ftpclient module now uses generics.Dominik Picheta2014-08-241-93/+89
* | Nimrod renamed to NimAraq2014-08-281-1/+1
* | big renameAraq2014-08-271-30/+35
|/
* fix failed tests due to gcsafeAraq2014-08-121-33/+34
* made large parts of the stdlib gcsafeAraq2014-04-201-4/+7
* Add checks for invalid socket when creating sockets.Dominik Picheta2014-04-151-0/+2
* updated asyncio and ftpclient modulesAraq2014-01-251-10/+10
* Corrected prunesocketset and pruneprocesssetErik O'Leary2014-01-191-2/+2
* Fixed async send in ftpclient module.Dominik Picheta2013-10-111-1/+2
* Fixed recvLine deprecation warnings.Dominik Picheta2013-04-141-8/+7
* bugfix: ftpclient compiles againAraq2013-01-221-1/+1
* Fixed many deprecation warnings. asyncio.recvLine now throws anDominik Picheta2012-12-231-50/+28
* Fixes #268Dominik Picheta2012-12-081-6/+12
* IRC module is now saner at the expense of a little API breakage.Dominik Picheta2012-12-011-0/+4
* Many doc improvements. Changed Threads.joinThreads' param's type to varargs.Dominik Picheta2012-11-041-1/+2
* Ftpclient now fully works both synchronously and asynchronously.Dominik Picheta2012-09-221-158/+178
* ftpclient fixed but causes an issue with the code generator andDominik Picheta2012-09-211-95/+141
* openarray/varargs split; breaks bootstrappingAraq2012-08-161-1/+1
* UDP improvements for the sockets module. Renamed ftpclient.fileExists toDominik Picheta2012-08-121-1/+12
* make tests green againAraq2012-07-171-4/+4
* recvLineAsync for non-blocking sockets implemented, as well as recvLine for a...dom962012-02-181-2/+2
* ftpclient fixes for windows.dom962012-01-281-10/+14
* Added asyncio module; irc, scgi and the ftpclient modules work with it. Added...dom962012-01-221-112/+229
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* Added a `chmod` function to the ftpclient module.dom962011-11-301-1/+22
* Fixed `ftpclient.createDir`.dom962011-11-291-1/+4
* Added new features to the ftpclient module.dom962011-11-151-2/+53
* new FTPClient module compiles in taint modeAraq2011-11-151-21/+34
* Added ftpclient module. Fixed docs in sockets module. Added dll tests to test...dom962011-11-041-0/+359
1' href='#n451'>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