summary refs log tree commit diff stats
path: root/lib/pure/cgi.nim
Commit message (Collapse)AuthorAgeFilesLines
* [backport] run nimpretty on the remaining filesnarimiran2019-09-301-5/+5
|
* Fix out of bound access in cgi module (#11578)Gérôme Fournier2019-06-251-0/+2
| | | | | When an HTTP request with a zero CONTENT_LENGTH is made, attempting to access addr(result[0]) raise an exception as the 0 index is out of bound
* Remove long deprecated stuff (#10332)Miran2019-01-181-5/+0
|
* Add readData proc that accepts a string.Konstantin Molchanov2018-11-071-0/+6
|
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-4/+3
|
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-2/+0
|
* cgi module: don't depent on the terminating zeroAndreas Rumpf2018-04-291-10/+10
|
* Moved encodeUrl and decodeUrl from cgi to urlVeladus2017-11-251-42/+2
|
* added a warning that the .deprecate statement is unreliable for routinesAndreas Rumpf2017-11-211-4/+1
|
* udpated the compiler and tester to use getOrDefaultAraq2015-10-131-1/+1
|
* renamed writeln to writeLine in libpatrick dw2015-06-191-3/+3
|
* renamed URLencode to encodeUrlAraq2014-09-101-7/+9
|
* Add depraction warnings for URLencode/decode.Dominik Picheta2014-09-101-1/+2
|
* Fixes case in cgi module.Dominik Picheta2014-09-101-5/+5
|
* Nimrod renamed to NimAraq2014-08-281-4/+4
|
* more modules updatedAraq2014-08-281-8/+8
|
* big renameAraq2014-08-271-5/+7
|
* renamefestAraq2014-08-231-38/+38
|
* made large parts of the stdlib gcsafeAraq2014-04-201-1/+1
|
* merged better html links #850Araq2014-04-081-1/+1
|
* Rework CGI error reporting.Michał Zieliński2013-12-181-9/+27
| | | | | | - remove 'undocumented' stackTraceNL - add 'undocumented' errorMessageWriter - make printing errors for browser optional (for security)
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* made tests green againAraq2012-08-161-2/+2
|
* exported strutils.abbrevAraq2012-02-241-1/+1
|
* sockets.recv optimizations; stdlib now supports taint modeAraq2011-09-241-6/+6
|
* beginning of a taint mode; type system enhancementsAraq2011-09-241-35/+35
|
* lib/pure/cgi.nim: fix typo 'passwort' instead of 'password'Keita Haga2011-08-171-46/+46
|
* newStringOfCap implemented and used to optimize some procsAraq2011-05-081-6/+13
|
* docgen understands and ignores *when false*Araq2010-11-181-23/+7
|
* bugfix: httpclientAraq2010-10-301-0/+5
|
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
|
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
|
* wrappers do not contain invalid identifiersAndreas Rumpf2010-01-171-2/+2
|
* sockets module completeAndreas Rumpf2010-01-131-40/+46
|
* version 0.8.6Andreas Rumpf2009-12-221-1/+1
|
* version 0.8.5: bugfixes; compiler now maintained in NimrodAndreas Rumpf2009-12-071-0/+34
|
* added tools and web dirsAndreas Rumpf2009-09-151-0/+0
|
* version0.7.10Andreas Rumpf2009-06-081-0/+341
/a> 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