about summary refs log tree commit diff stats
path: root/src/event
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into openpgpJames Booth2015-06-051-1/+1
|\
| * Added rooms iq testJames Booth2015-05-241-1/+1
* | Moved pgp signature generation to cl_ev_presence_sendJames Booth2015-05-081-1/+16
* | Merge branch 'master' into openpgpJames Booth2015-05-072-0/+8
|\|
| * Added cl_ev_presence_sendJames Booth2015-05-072-0/+8
* | Moved pgp signature verification to sv_ev_contact_onlineJames Booth2015-05-072-3/+11
|/
* Added ui_contact_onlineJames Booth2015-05-071-32/+2
* Use null check convention in server_events.cJames Booth2015-05-041-7/+7
* Added ui_ev_new_private_win to ui eventsJames Booth2015-05-044-4/+11
* cl_ev_send_muc_msg takes ProfMucWin as argJames Booth2015-05-042-3/+3
* ui_outgoing_chat_msg now takes ProfChatWin as argumentJames Booth2015-05-041-1/+1
* Extract private message hanlding in message.cJames Booth2015-05-032-4/+4
* Pass ProfChatWin to otr_on_message_sendJames Booth2015-05-021-5/+1
* Removed server event delegation functionsJames Booth2015-05-012-272/+0
* Move current win check to event, removed next and prev win functionsJames Booth2015-04-301-1/+4
* Added ui_win_error_line()James Booth2015-04-291-2/+1
* Return result on OTR message sendingJames Booth2015-04-294-8/+16
* Return new window on new chat win eventJames Booth2015-04-292-4/+3
* Added ui events moduleJames Booth2015-04-284-16/+89
* Renamed event functionsJames Booth2015-04-284-144/+144
* Moved otr message send event to otr moduleJames Booth2015-04-271-33/+3
* Removed server_events dependency on libotr headersJames Booth2015-04-271-40/+1
* Renamed incoming otr messageJames Booth2015-04-271-6/+6
* Tidied account loginJames Booth2015-04-232-52/+7
* Moved login events to client events moduleJames Booth2015-04-222-0/+65
* Moved new chat win events to client events moduleJames Booth2015-04-212-0/+16
* Moved all message sending to client events moduleJames Booth2015-04-212-2/+17
* Added client_events module, reuse message sending code for all commandsJames Booth2015-04-192-0/+126
* Renamed server event functionsJames Booth2015-04-192-130/+130
* Moved server_events to event/James Booth2015-04-192-0/+954
> 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