about summary refs log tree commit diff stats
path: root/src/xmpp
Commit message (Expand)AuthorAgeFilesLines
* Fix option handling for room config form parsingJames Booth2014-09-061-1/+2
* Reassign stanza name when looking for field valuesJames Booth2014-09-061-1/+2
* Rewrite form parserJames Booth2014-09-064-69/+224
* Created form moduleJames Booth2014-09-056-102/+193
* Debug room config form fieldsJames Booth2014-09-052-5/+23
* Parse data form for room configurationJames Booth2014-09-043-11/+31
* Added ID handler for room config formJames Booth2014-09-041-2/+32
* Added /room config edit and /room config cancelJames Booth2014-09-044-2/+80
* Fix room config check for servers that don't send 110 statusJames Booth2014-09-041-11/+2
* Added /ping commandJames Booth2014-09-044-3/+45
* Validate usage of /room config command, added UI messagesJames Booth2014-09-032-3/+3
* Handle /room config cancelJames Booth2014-09-031-0/+73
* Send room destroy iq on /room config cancelJames Booth2014-09-034-0/+42
* Send instant room requestJames Booth2014-09-034-0/+44
* Show message when room requires configJames Booth2014-09-033-0/+52
* Removed bookmarks todoJames Booth2014-08-311-1/+0
* Small spelling fixes in code and commentsDariusz Dwornikowski2014-08-271-1/+1
* Added license exemption for OpenSSL to source headersJames Booth2014-08-2417-0/+204
* "/bookmark add foo" crash - fixJan Hacker2014-08-171-1/+3
* Spelling errors fixed and hyphenation used as minus sign fixedDariusz Dwornikowski2014-08-112-4/+4
* Added quote param to autocomplete_completeJames Booth2014-07-092-2/+2
* Removed string allocation in stanza when joining roomJames Booth2014-06-151-1/+1
* Renamed generate_unique_id -> create_unique_idJames Booth2014-06-154-14/+14
* Free string after use in sending caps responseJames Booth2014-06-151-0/+1
* Free jabber_conn.logJames Booth2014-06-151-0/+4
* Free saved account details before replacingJames Booth2014-06-151-0/+6
* Fixed usages of get_unique_id to free resultJames Booth2014-06-153-1/+12
* Added connection details to jabber_shutdownJames Booth2014-06-151-0/+3
* Fixed memleak in _available_handlerJames Booth2014-06-151-0/+1
* Renamed sha1 functions to avoid naming clashesJames Booth2014-06-151-1/+1
* Added notification setting for typing in current windowJames Booth2014-05-241-3/+1
* Use account muc_nick when no nick for bookmarkJames Booth2014-05-231-1/+4
* Refactored bookmarks to use option parser, allow bookmarking rooms with passw...James Booth2014-05-104-41/+134
* Refactroed self presence checks, handle null stanzasJames Booth2014-05-062-108/+73
* Added null check for presence error stanza namespace elementJames Booth2014-05-051-1/+4
* Changed to use gnutls instead of openssl for sha1 hashingJames Booth2014-05-011-15/+1
* Fixed cppcheck warningsJames Booth2014-04-267-83/+10
* Tidied jabber_process_eventsJames Booth2014-04-231-14/+20
* Merge remote-tracking branch 'lucian/master'James Booth2014-04-221-1/+0
|\
| * Added some otr policy functionality, if policy is set to "always"lightb2014-04-191-1/+0
* | Chat room windows now created only after successful joinJames Booth2014-04-213-3/+22
* | Store password with roomJames Booth2014-04-201-1/+1
|/
* Added simple stanza logging to main consoleJames Booth2014-04-151-0/+3
* Fixed handling of room subjectJames Booth2014-04-132-25/+20
* Fixed "/bookmark remove" for disabling autojoinJames Booth2014-04-131-1/+0
* Refactored bookmark_removeJames Booth2014-04-131-10/+8
* Implemented "/bookmark remove" for private storageJames Booth2014-04-131-77/+101
* Clean up after removing bookmarkJames Booth2014-04-131-0/+2
* Implemented "/bookmark add" for private storageJames Booth2014-04-133-89/+169
* Tidied ui dependenciesJames Booth2014-04-062-3/+2
a id='n560' href='#n560'>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