eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsMercurial.HgLogBrowserDialog.html

branch
maintenance
changeset 8043
0acf98cd089a
parent 7989
a21d673a8f99
child 8152
0c740fcffd34
equal deleted inserted replaced
7991:866adc8c315b 8043:0acf98cd089a
423 423
424 <p> 424 <p>
425 Private method to get the selected action mode. 425 Private method to get the selected action mode.
426 </p> 426 </p>
427 <dl> 427 <dl>
428 <dt>Returns:</dt> 428 <dt>Return:</dt>
429 <dd> 429 <dd>
430 selected action mode (string, one of filter or find) 430 selected action mode (string, one of filter or find)
431 </dd> 431 </dd>
432 </dl> 432 </dl>
433 <a NAME="HgLogBrowserDialog.__addFinishCallback" ID="HgLogBrowserDialog.__addFinishCallback"></a> 433 <a NAME="HgLogBrowserDialog.__addFinishCallback" ID="HgLogBrowserDialog.__addFinishCallback"></a>
475 <dd> 475 <dd>
476 name of the branch (string) 476 name of the branch (string)
477 </dd> 477 </dd>
478 </dl> 478 </dl>
479 <dl> 479 <dl>
480 <dt>Returns:</dt> 480 <dt>Return:</dt>
481 <dd> 481 <dd>
482 name of the color to use (string) 482 name of the color to use (string)
483 </dd> 483 </dd>
484 </dl> 484 </dl>
485 <a NAME="HgLogBrowserDialog.__bundleActTriggered" ID="HgLogBrowserDialog.__bundleActTriggered"></a> 485 <a NAME="HgLogBrowserDialog.__bundleActTriggered" ID="HgLogBrowserDialog.__bundleActTriggered"></a>
543 <dd> 543 <dd>
544 reference to the item the table should be based on 544 reference to the item the table should be based on
545 </dd> 545 </dd>
546 </dl> 546 </dl>
547 <dl> 547 <dl>
548 <dt>Returns:</dt> 548 <dt>Return:</dt>
549 <dd> 549 <dd>
550 HTML table containing details 550 HTML table containing details
551 </dd> 551 </dd>
552 </dl> 552 </dl>
553 <dl> 553 <dl>
587 <dd> 587 <dd>
588 list of parent revisions (list of integers) 588 list of parent revisions (list of integers)
589 </dd> 589 </dd>
590 </dl> 590 </dl>
591 <dl> 591 <dl>
592 <dt>Returns:</dt> 592 <dt>Return:</dt>
593 <dd> 593 <dd>
594 tuple containing the column and color index for 594 tuple containing the column and color index for
595 the given node and a list of tuples indicating the edges 595 the given node and a list of tuples indicating the edges
596 between the given node and its parents 596 between the given node and its parents
597 (integer, integer, [(integer, integer, integer), ...]) 597 (integer, integer, [(integer, integer, integer), ...])
598 </dd> 598 </dd>
599 </dl> 599 </dl>
600 <a NAME="HgLogBrowserDialog.__generateIcon" ID="HgLogBrowserDialog.__generateIcon"></a> 600 <a NAME="HgLogBrowserDialog.__generateIcon" ID="HgLogBrowserDialog.__generateIcon"></a>
601 <h4>HgLogBrowserDialog.__generateIcon</h4> 601 <h4>HgLogBrowserDialog.__generateIcon</h4>
602 <b>__generateIcon</b>(<i>column, color, bottomedges, topedges, dotColor, currentRev, closed, isDraft</i>) 602 <b>__generateIcon</b>(<i>column, color, bottomedges, topedges, dotColor, currentRev, closed, isPushableDraft</i>)
603 603
604 <p> 604 <p>
605 Private method to generate an icon containing the revision tree for the 605 Private method to generate an icon containing the revision tree for the
606 given data. 606 given data.
607 </p> 607 </p>
635 <dt><i>closed</i> (bool)</dt> 635 <dt><i>closed</i> (bool)</dt>
636 <dd> 636 <dd>
637 flag indicating to draw an icon for a closed 637 flag indicating to draw an icon for a closed
638 branch 638 branch
639 </dd> 639 </dd>
640 <dt><i>isDraft</i> (bool)</dt> 640 <dt><i>isPushableDraft</i> (bool)</dt>
641 <dd> 641 <dd>
642 flag indicating an entry of phase 'draft' 642 flag indicating an entry of phase 'draft',
643 </dd> 643 that can by pushed
644 </dl> 644 </dd>
645 <dl> 645 </dl>
646 <dt>Returns:</dt> 646 <dl>
647 <dt>Return:</dt>
647 <dd> 648 <dd>
648 icon for the node 649 icon for the node
649 </dd> 650 </dd>
650 </dl> 651 </dl>
651 <dl> 652 <dl>
654 QIcon 655 QIcon
655 </dd> 656 </dd>
656 </dl> 657 </dl>
657 <a NAME="HgLogBrowserDialog.__generateLogItem" ID="HgLogBrowserDialog.__generateLogItem"></a> 658 <a NAME="HgLogBrowserDialog.__generateLogItem" ID="HgLogBrowserDialog.__generateLogItem"></a>
658 <h4>HgLogBrowserDialog.__generateLogItem</h4> 659 <h4>HgLogBrowserDialog.__generateLogItem</h4>
659 <b>__generateLogItem</b>(<i>author, date, message, revision, changedPaths, parents, branches, tags, phase, bookmarks, latestTag</i>) 660 <b>__generateLogItem</b>(<i>author, date, message, revision, changedPaths, parents, branches, tags, phase, bookmarks, latestTag, canPush=False</i>)
660 661
661 <p> 662 <p>
662 Private method to generate a log tree entry. 663 Private method to generate a log tree entry.
663 </p> 664 </p>
664 <dl> 665 <dl>
665 666
666 <dt><i>author</i></dt> 667 <dt><i>author</i> (str)</dt>
667 <dd> 668 <dd>
668 author info (string) 669 author info
669 </dd> 670 </dd>
670 <dt><i>date</i></dt> 671 <dt><i>date</i> (str)</dt>
671 <dd> 672 <dd>
672 date info (string) 673 date info
673 </dd> 674 </dd>
674 <dt><i>message</i></dt> 675 <dt><i>message</i> (list of str)</dt>
675 <dd> 676 <dd>
676 text of the log message (list of strings) 677 text of the log message
677 </dd> 678 </dd>
678 <dt><i>revision</i></dt> 679 <dt><i>revision</i> (str)</dt>
679 <dd> 680 <dd>
680 revision info (string) 681 revision info
681 </dd> 682 </dd>
682 <dt><i>changedPaths</i></dt> 683 <dt><i>changedPaths</i> (dict)</dt>
683 <dd> 684 <dd>
684 list of dictionary objects containing 685 list of dictionary objects containing
685 info about the changed files/directories 686 info about the changed files/directories
686 </dd> 687 </dd>
687 <dt><i>parents</i></dt> 688 <dt><i>parents</i> (list of int)</dt>
688 <dd> 689 <dd>
689 list of parent revisions (list of integers) 690 list of parent revisions
690 </dd> 691 </dd>
691 <dt><i>branches</i></dt> 692 <dt><i>branches</i> (list of str)</dt>
692 <dd> 693 <dd>
693 list of branches (list of strings) 694 list of branches
694 </dd> 695 </dd>
695 <dt><i>tags</i></dt> 696 <dt><i>tags</i> (str)</dt>
696 <dd> 697 <dd>
697 list of tags (string) 698 list of tags
698 </dd> 699 </dd>
699 <dt><i>phase</i></dt> 700 <dt><i>phase</i> (str)</dt>
700 <dd> 701 <dd>
701 phase of the entry (string) 702 phase of the entry
702 </dd> 703 </dd>
703 <dt><i>bookmarks</i></dt> 704 <dt><i>bookmarks</i> (str)</dt>
704 <dd> 705 <dd>
705 list of bookmarks (string) 706 list of bookmarks
706 </dd> 707 </dd>
707 <dt><i>latestTag</i></dt> 708 <dt><i>latestTag</i> (list of str)</dt>
708 <dd> 709 <dd>
709 the latest tag(s) reachable from the changeset 710 the latest tag(s) reachable from the changeset
710 (list of strings) 711 </dd>
711 </dd> 712 <dt><i>canPush</i> (bool)</dt>
712 </dl> 713 <dd>
713 <dl> 714 flag indicating that changesets can be pushed
714 <dt>Returns:</dt> 715 </dd>
715 <dd> 716 </dl>
716 reference to the generated item (QTreeWidgetItem) 717 <dl>
718 <dt>Return:</dt>
719 <dd>
720 reference to the generated item
721 </dd>
722 </dl>
723 <dl>
724 <dt>Return Type:</dt>
725 <dd>
726 QTreeWidgetItem
717 </dd> 727 </dd>
718 </dl> 728 </dl>
719 <a NAME="HgLogBrowserDialog.__generatorFinished" ID="HgLogBrowserDialog.__generatorFinished"></a> 729 <a NAME="HgLogBrowserDialog.__generatorFinished" ID="HgLogBrowserDialog.__generatorFinished"></a>
720 <h4>HgLogBrowserDialog.__generatorFinished</h4> 730 <h4>HgLogBrowserDialog.__generatorFinished</h4>
721 <b>__generatorFinished</b>(<i></i>) 731 <b>__generatorFinished</b>(<i></i>)
743 <dd> 753 <dd>
744 color index 754 color index
745 </dd> 755 </dd>
746 </dl> 756 </dl>
747 <dl> 757 <dl>
748 <dt>Returns:</dt> 758 <dt>Return:</dt>
749 <dd> 759 <dd>
750 color name 760 color name
751 </dd> 761 </dd>
752 </dl> 762 </dl>
753 <dl> 763 <dl>
774 784
775 <dt><i>startRev</i></dt> 785 <dt><i>startRev</i></dt>
776 <dd> 786 <dd>
777 revision number to start from (integer, string) 787 revision number to start from (integer, string)
778 </dd> 788 </dd>
779 <dt><i>noEntries=</i></dt> 789 <dt><i>noEntries</i></dt>
780 <dd> 790 <dd>
781 number of entries to get (0 = default) (int) 791 number of entries to get (0 = default) (int)
782 </dd> 792 </dd>
783 </dl> 793 </dl>
784 <a NAME="HgLogBrowserDialog.__getParents" ID="HgLogBrowserDialog.__getParents"></a> 794 <a NAME="HgLogBrowserDialog.__getParents" ID="HgLogBrowserDialog.__getParents"></a>
795 <dd> 805 <dd>
796 revision number to get parents for (string) 806 revision number to get parents for (string)
797 </dd> 807 </dd>
798 </dl> 808 </dl>
799 <dl> 809 <dl>
800 <dt>Returns:</dt> 810 <dt>Return:</dt>
801 <dd> 811 <dd>
802 list of parent revisions (list of integers) 812 list of parent revisions (list of integers)
803 </dd> 813 </dd>
804 </dl> 814 </dl>
805 <a NAME="HgLogBrowserDialog.__getRevisionOfTag" ID="HgLogBrowserDialog.__getRevisionOfTag"></a> 815 <a NAME="HgLogBrowserDialog.__getRevisionOfTag" ID="HgLogBrowserDialog.__getRevisionOfTag"></a>
815 <dd> 825 <dd>
816 tag name 826 tag name
817 </dd> 827 </dd>
818 </dl> 828 </dl>
819 <dl> 829 <dl>
820 <dt>Returns:</dt> 830 <dt>Return:</dt>
821 <dd> 831 <dd>
822 tuple containing the revision and changeset ID 832 tuple containing the revision and changeset ID
823 </dd> 833 </dd>
824 </dl> 834 </dl>
825 <dl> 835 <dl>
898 <dd> 908 <dd>
899 file name to be processed (string) 909 file name to be processed (string)
900 </dd> 910 </dd>
901 </dl> 911 </dl>
902 <dl> 912 <dl>
903 <dt>Returns:</dt> 913 <dt>Return:</dt>
904 <dd> 914 <dd>
905 processed file name (string) 915 processed file name (string)
906 </dd> 916 </dd>
907 </dl> 917 </dl>
908 <a NAME="HgLogBrowserDialog.__phaseActTriggered" ID="HgLogBrowserDialog.__phaseActTriggered"></a> 918 <a NAME="HgLogBrowserDialog.__phaseActTriggered" ID="HgLogBrowserDialog.__phaseActTriggered"></a>
918 928
919 <p> 929 <p>
920 Private slot to prepare the filed search data. 930 Private slot to prepare the filed search data.
921 </p> 931 </p>
922 <dl> 932 <dl>
923 <dt>Returns:</dt> 933 <dt>Return:</dt>
924 <dd> 934 <dd>
925 tuple of field index, search expression and flag indicating 935 tuple of field index, search expression and flag indicating
926 that the field index is a data role (integer, string, boolean) 936 that the field index is a data role (integer, string, boolean)
927 </dd> 937 </dd>
928 </dl> 938 </dl>
1402 <p> 1412 <p>
1403 Public slot to show the dialog. 1413 Public slot to show the dialog.
1404 </p> 1414 </p>
1405 <a NAME="HgLogBrowserDialog.start" ID="HgLogBrowserDialog.start"></a> 1415 <a NAME="HgLogBrowserDialog.start" ID="HgLogBrowserDialog.start"></a>
1406 <h4>HgLogBrowserDialog.start</h4> 1416 <h4>HgLogBrowserDialog.start</h4>
1407 <b>start</b>(<i>fn, bundle=None, isFile=False, noEntries=0</i>) 1417 <b>start</b>(<i>name=None, bundle=None, isFile=False, noEntries=0</i>)
1408 1418
1409 <p> 1419 <p>
1410 Public slot to start the hg log command. 1420 Public slot to start the hg log command.
1411 </p> 1421 </p>
1412 <dl> 1422 <dl>
1413 1423
1414 <dt><i>fn</i></dt> 1424 <dt><i>name</i> (str)</dt>
1415 <dd> 1425 <dd>
1416 filename to show the log for (string) 1426 file/directory name to show the log for
1417 </dd> 1427 </dd>
1418 <dt><i>bundle=</i></dt> 1428 <dt><i>bundle</i> (str)</dt>
1419 <dd> 1429 <dd>
1420 name of a bundle file (string) 1430 name of a bundle file
1421 </dd> 1431 </dd>
1422 <dt><i>isFile=</i></dt> 1432 <dt><i>isFile</i> (bool)</dt>
1423 <dd> 1433 <dd>
1424 flag indicating log for a file is to be shown 1434 flag indicating log for a file is to be shown
1425 (boolean) 1435 </dd>
1426 </dd> 1436 <dt><i>noEntries</i> (int)</dt>
1427 <dt><i>noEntries=</i></dt> 1437 <dd>
1428 <dd> 1438 number of entries to get (0 = default)
1429 number of entries to get (0 = default) (int)
1430 </dd> 1439 </dd>
1431 </dl> 1440 </dl>
1432 <div align="right"><a href="#top">Up</a></div> 1441 <div align="right"><a href="#top">Up</a></div>
1433 <hr /> 1442 <hr />
1434 </body></html> 1443 </body></html>

eric ide

mercurial